ETH Price: $2,404.06 (-1.41%)

Token

PREMINT BOT (PREMINTBOT)
 

Overview

Max Total Supply

446 PREMINTBOT

Holders

306

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PREMINTBOT
0xa570142f8f8f44139f8a1bf3811339406d87c876
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:
PREMINTBOT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 8: PREMINTBOT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
import "./IPREMINTBOT.sol";
import "./ERC721A.sol";
import "./Ownable.sol";
import "./MerkleProof.sol";
import "./Strings.sol";

contract PREMINTBOT is IPREMINTBOT, ERC721A, Ownable {
    using Strings for uint256;

    uint256 public maxSupply = 888;

    uint256 public tokenPerAccountLimit = 2;

    uint256 public constant INTERNAL_SUPPLY = 88;

    string public baseURI;

    string public notRevealedURI;

    uint256 public mintPrice = 0.02 ether;

    uint256 public whiteListPrice = 0.015 ether;

    SaleStatus public saleStatus = SaleStatus.PAUSED;

    mapping(address => uint256) private _mintedCount;

    bytes32 public merkleRoot = 0xa7a9b330cbf41b67a39fdf89a043a3df16807217a8bbf7f92094fd7064321bd2;

    address private _paymentAddress;

    bool private _internalMinted = false;

    constructor(address paymentAddress, string memory _notRevealedURI)
        ERC721A("PREMINT BOT", "PREMINTBOT")
    {
        _paymentAddress = paymentAddress;
        notRevealedURI = _notRevealedURI;
    }

    modifier mintCheck(SaleStatus status, uint256 count) {
        require(saleStatus == status, "PREMINTBOT: Not operational");
        require(
            count > 0,
            "PREMINTBOT: Count must greater than 0"
        );
        require(
            _totalMinted() + count <= maxSupply,
            "PREMINTBOT: Number of requested tokens will exceed max supply"
        );
        require(
            _mintedCount[msg.sender] + count <= tokenPerAccountLimit,
            "PREMINTBOT: Number of requested tokens will exceed the limit per account"
        );
        _;
    }

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

    function setTokenPerAccountLimit(uint256 limit) external onlyOwner {
        tokenPerAccountLimit = limit;
    }

    function setPaymentAddress(address paymentAddress)
        external
        override
        onlyOwner
    {
        _paymentAddress = paymentAddress;
    }

    function setSaleStatus(SaleStatus status) external override onlyOwner {
        saleStatus = status;
    }

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

    function setWhiteListPrice(uint256 price) external override onlyOwner {
        whiteListPrice = price;
    }

    function setMerkleRoot(bytes32 root) external override onlyOwner {
        merkleRoot = root;
    }

    function setNotRevealedURI(string memory _notRevealedURI)
        external
        override
        onlyOwner
    {
        notRevealedURI = _notRevealedURI;
    }

    function setBaseURL(string memory url) external override onlyOwner {
        baseURI = url;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = baseURI;
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
                : notRevealedURI;
    }

    function mintWhitelist(bytes32[] calldata merkleProof, uint256 count)
        external
        payable
        override
        mintCheck(SaleStatus.PUBLIC, count)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(merkleProof, merkleRoot, leaf),
            "PREMINTBOT: You are not whitelisted"
        );
        require(
            msg.value >= whiteListPrice + ((count - 1) * mintPrice),
            "PREMINTBOT: Ether value sent is not sufficient"
        );
        _mintedCount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }

    function mint(uint256 count)
        external
        payable
        override
        mintCheck(SaleStatus.PUBLIC, count)
    {
        require(
            msg.value >= count * mintPrice,
            "PREMINTBOT: Ether value sent is not sufficient"
        );
        _mintedCount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }

    function internalMint(address receiver) external override onlyOwner {
        require(!_internalMinted, "PREMINTBOT: The interior has been mint");
        _internalMinted = true;
        _safeMint(receiver, INTERNAL_SUPPLY);
    }

    function airdrop(address receiver, uint256 count) external override onlyOwner{
      _mintedCount[receiver] += count;
      _safeMint(receiver, count);
    }

    function withdraw() external override onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "PREMINTBOT: Insufficient balance");
        (bool success, ) = payable(_paymentAddress).call{value: balance}("");
        require(success, "PREMINTBOT: Withdrawal failed");
    }

    function mintedCount(address mintAddress)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _mintedCount[mintAddress];
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

File 4 of 8: IPREMINTBOT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IPREMINTBOT {
    enum SaleStatus {
        PAUSED,
        PRESALE,
        PUBLIC
    }

    function setPaymentAddress(address paymentAddress) external;

    function setSaleStatus(SaleStatus status) external;

    function setMintPrice(uint256) external;

    function setWhiteListPrice(uint256) external;

    function setMerkleRoot(bytes32 root) external;

    function setNotRevealedURI(string memory _notRevealedURI) external;

    function setBaseURL(string memory url) external;

    function mintWhitelist(bytes32[] calldata merkleProof, uint256 count)
        external
        payable;

    function mint(uint256 count) external payable;
    
    function internalMint(address receiver) external;

    function airdrop(address receiver,uint256 count) external;

    function withdraw() external;

    function mintedCount(address mintAddress) external returns (uint256);
}

File 5 of 8: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"},{"internalType":"string","name":"_notRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INTERNAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"count","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":"nonpayable","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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"internalMint","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"mintAddress","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"enum IPREMINTBOT.SaleStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"setBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum IPREMINTBOT.SaleStatus","name":"status","type":"uint8"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setTokenPerAccountLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setWhiteListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPerAccountLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103786009556002600a5566470de4df820000600d5566354a6ba7a18000600e556000600f60006101000a81548160ff021916908360028111156200004e576200004d620005b3565b5b02179055507fa7a9b330cbf41b67a39fdf89a043a3df16807217a8bbf7f92094fd7064321bd260001b6011556000601260146101000a81548160ff021916908315150217905550348015620000a257600080fd5b5060405162004ae738038062004ae78339818101604052810190620000c8919062000418565b6040518060400160405280600b81526020017f5052454d494e5420424f540000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f5052454d494e54424f540000000000000000000000000000000000000000000081525081600290805190602001906200014c929190620002d3565b50806003908051906020019062000165929190620002d3565b50620001766200020060201b60201c565b60008190555050506200019e620001926200020560201b60201c565b6200020d60201b60201c565b81601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c9080519060200190620001f7929190620002d3565b5050506200067f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002e19062000547565b90600052602060002090601f01602090048101928262000305576000855562000351565b82601f106200032057805160ff191683800117855562000351565b8280016001018555821562000351579182015b828111156200035057825182559160200191906001019062000333565b5b50905062000360919062000364565b5090565b5b808211156200037f57600081600090555060010162000365565b5090565b60006200039a6200039484620004a7565b6200047e565b905082815260208101848484011115620003b957620003b862000645565b5b620003c684828562000511565b509392505050565b600081519050620003df8162000665565b92915050565b600082601f830112620003fd57620003fc62000640565b5b81516200040f84826020860162000383565b91505092915050565b600080604083850312156200043257620004316200064f565b5b60006200044285828601620003ce565b925050602083015167ffffffffffffffff8111156200046657620004656200064a565b5b6200047485828601620003e5565b9150509250929050565b60006200048a6200049d565b90506200049882826200057d565b919050565b6000604051905090565b600067ffffffffffffffff821115620004c557620004c462000611565b5b620004d08262000654565b9050602081019050919050565b6000620004ea82620004f1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200053157808201518184015260208101905062000514565b8381111562000541576000848401525b50505050565b600060028204905060018216806200056057607f821691505b60208210811415620005775762000576620005e2565b5b50919050565b620005888262000654565b810181811067ffffffffffffffff82111715620005aa57620005a962000611565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200067081620004dd565b81146200067c57600080fd5b50565b614458806200068f6000396000f3fe6080604052600436106102465760003560e01c80637225038011610139578063a6d612f9116100b6578063e985e9c51161007a578063e985e9c514610824578063f2c4ce1e14610861578063f2fde38b1461088a578063f4a0a528146108b3578063f9020e33146108dc578063fddcb5ea1461090757610246565b8063a6d612f91461074e578063b88d4fde1461076a578063beafc89b14610793578063c87b56dd146107bc578063d5abeb01146107f957610246565b806395d89b41116100fd57806395d89b411461068c5780639c58faa1146106b75780639cd14e0f146106e0578063a0712d6814610709578063a22cb4651461072557610246565b806372250380146105b95780637cb64759146105e45780638ba4cc3c1461060d5780638da5cb5b146106365780638dc823011461066157610246565b80634891ad88116101c7578063685756851161018b57806368575685146104e65780636c0360eb146105115780636f8b44b01461053c57806370a0823114610565578063715018a6146105a257610246565b80634891ad881461040357806349f2553a1461042c5780635e1e1004146104555780636352211e1461047e5780636817c76c146104bb57610246565b806323b872dd1161020e57806323b872dd146103445780632e34979e1461036d5780632eb4a7ab146103985780633ccfd60b146103c357806342842e0e146103da57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d919061348e565b610944565b60405161027f9190613912565b60405180910390f35b34801561029457600080fd5b5061029d6109d6565b6040516102aa9190613963565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d5919061355e565b610a68565b6040516102e791906138ab565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906133c1565b610ae4565b005b34801561032557600080fd5b5061032e610c8b565b60405161033b9190613b05565b60405180910390f35b34801561035057600080fd5b5061036b600480360381019061036691906132ab565b610ca2565b005b34801561037957600080fd5b50610382610cb2565b60405161038f9190613b05565b60405180910390f35b3480156103a457600080fd5b506103ad610cb7565b6040516103ba919061392d565b60405180910390f35b3480156103cf57600080fd5b506103d8610cbd565b005b3480156103e657600080fd5b5061040160048036038101906103fc91906132ab565b610e53565b005b34801561040f57600080fd5b5061042a600480360381019061042591906134e8565b610e73565b005b34801561043857600080fd5b50610453600480360381019061044e9190613515565b610f1c565b005b34801561046157600080fd5b5061047c6004803603810190610477919061323e565b610fb2565b005b34801561048a57600080fd5b506104a560048036038101906104a0919061355e565b611072565b6040516104b291906138ab565b60405180910390f35b3480156104c757600080fd5b506104d0611084565b6040516104dd9190613b05565b60405180910390f35b3480156104f257600080fd5b506104fb61108a565b6040516105089190613b05565b60405180910390f35b34801561051d57600080fd5b50610526611090565b6040516105339190613963565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e919061355e565b61111e565b005b34801561057157600080fd5b5061058c6004803603810190610587919061323e565b6111a4565b6040516105999190613b05565b60405180910390f35b3480156105ae57600080fd5b506105b761125d565b005b3480156105c557600080fd5b506105ce6112e5565b6040516105db9190613963565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190613461565b611373565b005b34801561061957600080fd5b50610634600480360381019061062f91906133c1565b6113f9565b005b34801561064257600080fd5b5061064b6114d9565b60405161065891906138ab565b60405180910390f35b34801561066d57600080fd5b50610676611503565b6040516106839190613b05565b60405180910390f35b34801561069857600080fd5b506106a1611509565b6040516106ae9190613963565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d9919061323e565b61159b565b005b3480156106ec57600080fd5b506107076004803603810190610702919061355e565b611690565b005b610723600480360381019061071e919061355e565b611716565b005b34801561073157600080fd5b5061074c60048036038101906107479190613381565b61196c565b005b61076860048036038101906107639190613401565b611ae4565b005b34801561077657600080fd5b50610791600480360381019061078c91906132fe565b611e0e565b005b34801561079f57600080fd5b506107ba60048036038101906107b5919061355e565b611e81565b005b3480156107c857600080fd5b506107e360048036038101906107de919061355e565b611f07565b6040516107f09190613963565b60405180910390f35b34801561080557600080fd5b5061080e6120ac565b60405161081b9190613b05565b60405180910390f35b34801561083057600080fd5b5061084b6004803603810190610846919061326b565b6120b2565b6040516108589190613912565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613515565b612146565b005b34801561089657600080fd5b506108b160048036038101906108ac919061323e565b6121dc565b005b3480156108bf57600080fd5b506108da60048036038101906108d5919061355e565b6122d4565b005b3480156108e857600080fd5b506108f161235a565b6040516108fe9190613948565b60405180910390f35b34801561091357600080fd5b5061092e6004803603810190610929919061323e565b61236d565b60405161093b9190613b05565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109cf5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109e590613def565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1190613def565b8015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b820191906000526020600020905b815481529060010190602001808311610a4157829003601f168201915b5050505050905090565b6000610a73826123b6565b610aa9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aef82612415565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b57576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b766124e3565b73ffffffffffffffffffffffffffffffffffffffff1614610bd957610ba281610b9d6124e3565b6120b2565b610bd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c956124eb565b6001546000540303905090565b610cad8383836124f0565b505050565b605881565b60115481565b610cc561289a565b73ffffffffffffffffffffffffffffffffffffffff16610ce36114d9565b73ffffffffffffffffffffffffffffffffffffffff1614610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090613a45565b60405180910390fd5b600047905060008111610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613a05565b60405180910390fd5b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610dc990613896565b60006040518083038185875af1925050503d8060008114610e06576040519150601f19603f3d011682016040523d82523d6000602084013e610e0b565b606091505b5050905080610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e46906139e5565b60405180910390fd5b5050565b610e6e83838360405180602001604052806000815250611e0e565b505050565b610e7b61289a565b73ffffffffffffffffffffffffffffffffffffffff16610e996114d9565b73ffffffffffffffffffffffffffffffffffffffff1614610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690613a45565b60405180910390fd5b80600f60006101000a81548160ff02191690836002811115610f1457610f13613f4e565b5b021790555050565b610f2461289a565b73ffffffffffffffffffffffffffffffffffffffff16610f426114d9565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f90613a45565b60405180910390fd5b80600b9080519060200190610fae929190612fd2565b5050565b610fba61289a565b73ffffffffffffffffffffffffffffffffffffffff16610fd86114d9565b73ffffffffffffffffffffffffffffffffffffffff161461102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590613a45565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061107d82612415565b9050919050565b600d5481565b600e5481565b600b805461109d90613def565b80601f01602080910402602001604051908101604052809291908181526020018280546110c990613def565b80156111165780601f106110eb57610100808354040283529160200191611116565b820191906000526020600020905b8154815290600101906020018083116110f957829003601f168201915b505050505081565b61112661289a565b73ffffffffffffffffffffffffffffffffffffffff166111446114d9565b73ffffffffffffffffffffffffffffffffffffffff161461119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190613a45565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61126561289a565b73ffffffffffffffffffffffffffffffffffffffff166112836114d9565b73ffffffffffffffffffffffffffffffffffffffff16146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090613a45565b60405180910390fd5b6112e360006128a2565b565b600c80546112f290613def565b80601f016020809104026020016040519081016040528092919081815260200182805461131e90613def565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b505050505081565b61137b61289a565b73ffffffffffffffffffffffffffffffffffffffff166113996114d9565b73ffffffffffffffffffffffffffffffffffffffff16146113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e690613a45565b60405180910390fd5b8060118190555050565b61140161289a565b73ffffffffffffffffffffffffffffffffffffffff1661141f6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90613a45565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114c49190613bf5565b925050819055506114d58282612968565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b60606003805461151890613def565b80601f016020809104026020016040519081016040528092919081815260200182805461154490613def565b80156115915780601f1061156657610100808354040283529160200191611591565b820191906000526020600020905b81548152906001019060200180831161157457829003601f168201915b5050505050905090565b6115a361289a565b73ffffffffffffffffffffffffffffffffffffffff166115c16114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90613a45565b60405180910390fd5b601260149054906101000a900460ff1615611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613a25565b60405180910390fd5b6001601260146101000a81548160ff02191690831515021790555061168d816058612968565b50565b61169861289a565b73ffffffffffffffffffffffffffffffffffffffff166116b66114d9565b73ffffffffffffffffffffffffffffffffffffffff161461170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390613a45565b60405180910390fd5b80600a8190555050565b60028181600281111561172c5761172b613f4e565b5b600f60009054906101000a900460ff16600281111561174e5761174d613f4e565b5b1461178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590613ac5565b60405180910390fd5b600081116117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c8906139a5565b60405180910390fd5b600954816117dd612986565b6117e79190613bf5565b1115611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613aa5565b60405180910390fd5b600a5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118769190613bf5565b11156118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae90613a85565b60405180910390fd5b600d54836118c59190613c7c565b341015611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe90613ae5565b60405180910390fd5b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119569190613bf5565b925050819055506119673384612968565b505050565b6119746124e3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119e66124e3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a936124e3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad89190613912565b60405180910390a35050565b600281816002811115611afa57611af9613f4e565b5b600f60009054906101000a900460ff166002811115611b1c57611b1b613f4e565b5b14611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613ac5565b60405180910390fd5b60008111611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b96906139a5565b60405180910390fd5b60095481611bab612986565b611bb59190613bf5565b1115611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed90613aa5565b60405180910390fd5b600a5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c449190613bf5565b1115611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90613a85565b60405180910390fd5b600033604051602001611c989190613857565b604051602081830303815290604052805190602001209050611cfe868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115483612999565b611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490613985565b60405180910390fd5b600d54600185611d4d9190613cd6565b611d579190613c7c565b600e54611d649190613bf5565b341015611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d90613ae5565b60405180910390fd5b83601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df59190613bf5565b92505081905550611e063385612968565b505050505050565b611e198484846124f0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e7b57611e44848484846129b0565b611e7a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611e8961289a565b73ffffffffffffffffffffffffffffffffffffffff16611ea76114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490613a45565b60405180910390fd5b80600e8190555050565b6060611f12826123b6565b611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890613a65565b60405180910390fd5b6000600b8054611f6090613def565b80601f0160208091040260200160405190810160405280929190818152602001828054611f8c90613def565b8015611fd95780601f10611fae57610100808354040283529160200191611fd9565b820191906000526020600020905b815481529060010190602001808311611fbc57829003601f168201915b50505050509050600081511161207957600c8054611ff690613def565b80601f016020809104026020016040519081016040528092919081815260200182805461202290613def565b801561206f5780601f106120445761010080835404028352916020019161206f565b820191906000526020600020905b81548152906001019060200180831161205257829003601f168201915b50505050506120a4565b8061208384612b10565b604051602001612094929190613872565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61214e61289a565b73ffffffffffffffffffffffffffffffffffffffff1661216c6114d9565b73ffffffffffffffffffffffffffffffffffffffff16146121c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b990613a45565b60405180910390fd5b80600c90805190602001906121d8929190612fd2565b5050565b6121e461289a565b73ffffffffffffffffffffffffffffffffffffffff166122026114d9565b73ffffffffffffffffffffffffffffffffffffffff1614612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224f90613a45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf906139c5565b60405180910390fd5b6122d1816128a2565b50565b6122dc61289a565b73ffffffffffffffffffffffffffffffffffffffff166122fa6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790613a45565b60405180910390fd5b80600d8190555050565b600f60009054906101000a900460ff1681565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000816123c16124eb565b111580156123d0575060005482105b801561240e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806124246124eb565b116124ac576000548110156124ab5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156124a9575b600081141561249f576004600083600190039350838152602001908152602001600020549050612474565b80925050506124de565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006124fb82612415565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612562576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166125836124e3565b73ffffffffffffffffffffffffffffffffffffffff1614806125b257506125b1856125ac6124e3565b6120b2565b5b806125f757506125c06124e3565b73ffffffffffffffffffffffffffffffffffffffff166125df84610a68565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612630576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612697576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126a48585856001612c71565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6127a186612c77565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561282b576000600184019050600060046000838152602001908152602001600020541415612829576000548114612828578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128938585856001612c81565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612982828260405180602001604052806000815250612c87565b5050565b60006129906124eb565b60005403905090565b6000826129a68584612f3c565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129d66124e3565b8786866040518563ffffffff1660e01b81526004016129f894939291906138c6565b602060405180830381600087803b158015612a1257600080fd5b505af1925050508015612a4357506040513d601f19601f82011682018060405250810190612a4091906134bb565b60015b612abd573d8060008114612a73576040519150601f19603f3d011682016040523d82523d6000602084013e612a78565b606091505b50600081511415612ab5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612b58576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c6c565b600082905060005b60008214612b8a578080612b7390613e52565b915050600a82612b839190613c4b565b9150612b60565b60008167ffffffffffffffff811115612ba657612ba5613fdb565b5b6040519080825280601f01601f191660200182016040528015612bd85781602001600182028036833780820191505090505b5090505b60008514612c6557600182612bf19190613cd6565b9150600a85612c009190613ebf565b6030612c0c9190613bf5565b60f81b818381518110612c2257612c21613fac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c5e9190613c4b565b9450612bdc565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612cf4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612d2f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d3c6000858386612c71565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612da160018514612fb1565b901b60a042901b612db186612c77565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612eb5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e6560008784806001019550876129b0565b612e9b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612df6578260005414612eb057600080fd5b612f20565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612eb6575b816000819055505050612f366000858386612c81565b50505050565b60008082905060005b8451811015612fa6576000858281518110612f6357612f62613fac565b5b60200260200101519050808311612f8557612f7e8382612fbb565b9250612f92565b612f8f8184612fbb565b92505b508080612f9e90613e52565b915050612f45565b508091505092915050565b6000819050919050565b600082600052816020526040600020905092915050565b828054612fde90613def565b90600052602060002090601f0160209004810192826130005760008555613047565b82601f1061301957805160ff1916838001178555613047565b82800160010185558215613047579182015b8281111561304657825182559160200191906001019061302b565b5b5090506130549190613058565b5090565b5b80821115613071576000816000905550600101613059565b5090565b600061308861308384613b45565b613b20565b9050828152602081018484840111156130a4576130a3614019565b5b6130af848285613dad565b509392505050565b60006130ca6130c584613b76565b613b20565b9050828152602081018484840111156130e6576130e5614019565b5b6130f1848285613dad565b509392505050565b6000813590506131088161439f565b92915050565b60008083601f8401126131245761312361400f565b5b8235905067ffffffffffffffff8111156131415761314061400a565b5b60208301915083602082028301111561315d5761315c614014565b5b9250929050565b600081359050613173816143b6565b92915050565b600081359050613188816143cd565b92915050565b60008135905061319d816143e4565b92915050565b6000815190506131b2816143e4565b92915050565b600082601f8301126131cd576131cc61400f565b5b81356131dd848260208601613075565b91505092915050565b6000813590506131f5816143fb565b92915050565b600082601f8301126132105761320f61400f565b5b81356132208482602086016130b7565b91505092915050565b6000813590506132388161440b565b92915050565b60006020828403121561325457613253614023565b5b6000613262848285016130f9565b91505092915050565b6000806040838503121561328257613281614023565b5b6000613290858286016130f9565b92505060206132a1858286016130f9565b9150509250929050565b6000806000606084860312156132c4576132c3614023565b5b60006132d2868287016130f9565b93505060206132e3868287016130f9565b92505060406132f486828701613229565b9150509250925092565b6000806000806080858703121561331857613317614023565b5b6000613326878288016130f9565b9450506020613337878288016130f9565b935050604061334887828801613229565b925050606085013567ffffffffffffffff8111156133695761336861401e565b5b613375878288016131b8565b91505092959194509250565b6000806040838503121561339857613397614023565b5b60006133a6858286016130f9565b92505060206133b785828601613164565b9150509250929050565b600080604083850312156133d8576133d7614023565b5b60006133e6858286016130f9565b92505060206133f785828601613229565b9150509250929050565b60008060006040848603121561341a57613419614023565b5b600084013567ffffffffffffffff8111156134385761343761401e565b5b6134448682870161310e565b9350935050602061345786828701613229565b9150509250925092565b60006020828403121561347757613476614023565b5b600061348584828501613179565b91505092915050565b6000602082840312156134a4576134a3614023565b5b60006134b28482850161318e565b91505092915050565b6000602082840312156134d1576134d0614023565b5b60006134df848285016131a3565b91505092915050565b6000602082840312156134fe576134fd614023565b5b600061350c848285016131e6565b91505092915050565b60006020828403121561352b5761352a614023565b5b600082013567ffffffffffffffff8111156135495761354861401e565b5b613555848285016131fb565b91505092915050565b60006020828403121561357457613573614023565b5b600061358284828501613229565b91505092915050565b61359481613d0a565b82525050565b6135ab6135a682613d0a565b613e9b565b82525050565b6135ba81613d1c565b82525050565b6135c981613d28565b82525050565b60006135da82613ba7565b6135e48185613bbd565b93506135f4818560208601613dbc565b6135fd81614028565b840191505092915050565b61361181613d9b565b82525050565b600061362282613bb2565b61362c8185613bd9565b935061363c818560208601613dbc565b61364581614028565b840191505092915050565b600061365b82613bb2565b6136658185613bea565b9350613675818560208601613dbc565b80840191505092915050565b600061368e602383613bd9565b915061369982614046565b604082019050919050565b60006136b1602583613bd9565b91506136bc82614095565b604082019050919050565b60006136d4602683613bd9565b91506136df826140e4565b604082019050919050565b60006136f7601d83613bd9565b915061370282614133565b602082019050919050565b600061371a602083613bd9565b91506137258261415c565b602082019050919050565b600061373d602683613bd9565b915061374882614185565b604082019050919050565b6000613760602083613bd9565b915061376b826141d4565b602082019050919050565b6000613783602f83613bd9565b915061378e826141fd565b604082019050919050565b60006137a6604883613bd9565b91506137b18261424c565b606082019050919050565b60006137c9603d83613bd9565b91506137d4826142c1565b604082019050919050565b60006137ec600083613bce565b91506137f782614310565b600082019050919050565b600061380f601b83613bd9565b915061381a82614313565b602082019050919050565b6000613832602e83613bd9565b915061383d8261433c565b604082019050919050565b61385181613d91565b82525050565b6000613863828461359a565b60148201915081905092915050565b600061387e8285613650565b915061388a8284613650565b91508190509392505050565b60006138a1826137df565b9150819050919050565b60006020820190506138c0600083018461358b565b92915050565b60006080820190506138db600083018761358b565b6138e8602083018661358b565b6138f56040830185613848565b818103606083015261390781846135cf565b905095945050505050565b600060208201905061392760008301846135b1565b92915050565b600060208201905061394260008301846135c0565b92915050565b600060208201905061395d6000830184613608565b92915050565b6000602082019050818103600083015261397d8184613617565b905092915050565b6000602082019050818103600083015261399e81613681565b9050919050565b600060208201905081810360008301526139be816136a4565b9050919050565b600060208201905081810360008301526139de816136c7565b9050919050565b600060208201905081810360008301526139fe816136ea565b9050919050565b60006020820190508181036000830152613a1e8161370d565b9050919050565b60006020820190508181036000830152613a3e81613730565b9050919050565b60006020820190508181036000830152613a5e81613753565b9050919050565b60006020820190508181036000830152613a7e81613776565b9050919050565b60006020820190508181036000830152613a9e81613799565b9050919050565b60006020820190508181036000830152613abe816137bc565b9050919050565b60006020820190508181036000830152613ade81613802565b9050919050565b60006020820190508181036000830152613afe81613825565b9050919050565b6000602082019050613b1a6000830184613848565b92915050565b6000613b2a613b3b565b9050613b368282613e21565b919050565b6000604051905090565b600067ffffffffffffffff821115613b6057613b5f613fdb565b5b613b6982614028565b9050602081019050919050565b600067ffffffffffffffff821115613b9157613b90613fdb565b5b613b9a82614028565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c0082613d91565b9150613c0b83613d91565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c4057613c3f613ef0565b5b828201905092915050565b6000613c5682613d91565b9150613c6183613d91565b925082613c7157613c70613f1f565b5b828204905092915050565b6000613c8782613d91565b9150613c9283613d91565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ccb57613cca613ef0565b5b828202905092915050565b6000613ce182613d91565b9150613cec83613d91565b925082821015613cff57613cfe613ef0565b5b828203905092915050565b6000613d1582613d71565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613d6c8261438b565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613da682613d5e565b9050919050565b82818337600083830152505050565b60005b83811015613dda578082015181840152602081019050613dbf565b83811115613de9576000848401525b50505050565b60006002820490506001821680613e0757607f821691505b60208210811415613e1b57613e1a613f7d565b5b50919050565b613e2a82614028565b810181811067ffffffffffffffff82111715613e4957613e48613fdb565b5b80604052505050565b6000613e5d82613d91565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e9057613e8f613ef0565b5b600182019050919050565b6000613ea682613ead565b9050919050565b6000613eb882614039565b9050919050565b6000613eca82613d91565b9150613ed583613d91565b925082613ee557613ee4613f1f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5052454d494e54424f543a20596f7520617265206e6f742077686974656c697360008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b7f5052454d494e54424f543a20436f756e74206d7573742067726561746572207460008201527f68616e2030000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5052454d494e54424f543a205769746864726177616c206661696c6564000000600082015250565b7f5052454d494e54424f543a20496e73756666696369656e742062616c616e6365600082015250565b7f5052454d494e54424f543a2054686520696e746572696f72206861732062656560008201527f6e206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5052454d494e54424f543a204e756d626572206f66207265717565737465642060008201527f746f6b656e732077696c6c2065786365656420746865206c696d69742070657260208201527f206163636f756e74000000000000000000000000000000000000000000000000604082015250565b7f5052454d494e54424f543a204e756d626572206f66207265717565737465642060008201527f746f6b656e732077696c6c20657863656564206d617820737570706c79000000602082015250565b50565b7f5052454d494e54424f543a204e6f74206f7065726174696f6e616c0000000000600082015250565b7f5052454d494e54424f543a2045746865722076616c75652073656e742069732060008201527f6e6f742073756666696369656e74000000000000000000000000000000000000602082015250565b6003811061439c5761439b613f4e565b5b50565b6143a881613d0a565b81146143b357600080fd5b50565b6143bf81613d1c565b81146143ca57600080fd5b50565b6143d681613d28565b81146143e157600080fd5b50565b6143ed81613d32565b81146143f857600080fd5b50565b6003811061440857600080fd5b50565b61441481613d91565b811461441f57600080fd5b5056fea26469706673582212202a9e6ca7288b5ad95bc71f19aa8752b9d4d8947610a3272a1c80c66f206db69864736f6c634300080700330000000000000000000000005970ffc7992c013f1f255d673fc233e00eb8e4040000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f697066732e696f2f697066732f516d5766796d74524a42725672557a57364355596566336e7938676941454a734b624a756a45674272347a634e343f66696c656e616d653d7065726d696e74626f742e6a736f6e00000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c80637225038011610139578063a6d612f9116100b6578063e985e9c51161007a578063e985e9c514610824578063f2c4ce1e14610861578063f2fde38b1461088a578063f4a0a528146108b3578063f9020e33146108dc578063fddcb5ea1461090757610246565b8063a6d612f91461074e578063b88d4fde1461076a578063beafc89b14610793578063c87b56dd146107bc578063d5abeb01146107f957610246565b806395d89b41116100fd57806395d89b411461068c5780639c58faa1146106b75780639cd14e0f146106e0578063a0712d6814610709578063a22cb4651461072557610246565b806372250380146105b95780637cb64759146105e45780638ba4cc3c1461060d5780638da5cb5b146106365780638dc823011461066157610246565b80634891ad88116101c7578063685756851161018b57806368575685146104e65780636c0360eb146105115780636f8b44b01461053c57806370a0823114610565578063715018a6146105a257610246565b80634891ad881461040357806349f2553a1461042c5780635e1e1004146104555780636352211e1461047e5780636817c76c146104bb57610246565b806323b872dd1161020e57806323b872dd146103445780632e34979e1461036d5780632eb4a7ab146103985780633ccfd60b146103c357806342842e0e146103da57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d919061348e565b610944565b60405161027f9190613912565b60405180910390f35b34801561029457600080fd5b5061029d6109d6565b6040516102aa9190613963565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d5919061355e565b610a68565b6040516102e791906138ab565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906133c1565b610ae4565b005b34801561032557600080fd5b5061032e610c8b565b60405161033b9190613b05565b60405180910390f35b34801561035057600080fd5b5061036b600480360381019061036691906132ab565b610ca2565b005b34801561037957600080fd5b50610382610cb2565b60405161038f9190613b05565b60405180910390f35b3480156103a457600080fd5b506103ad610cb7565b6040516103ba919061392d565b60405180910390f35b3480156103cf57600080fd5b506103d8610cbd565b005b3480156103e657600080fd5b5061040160048036038101906103fc91906132ab565b610e53565b005b34801561040f57600080fd5b5061042a600480360381019061042591906134e8565b610e73565b005b34801561043857600080fd5b50610453600480360381019061044e9190613515565b610f1c565b005b34801561046157600080fd5b5061047c6004803603810190610477919061323e565b610fb2565b005b34801561048a57600080fd5b506104a560048036038101906104a0919061355e565b611072565b6040516104b291906138ab565b60405180910390f35b3480156104c757600080fd5b506104d0611084565b6040516104dd9190613b05565b60405180910390f35b3480156104f257600080fd5b506104fb61108a565b6040516105089190613b05565b60405180910390f35b34801561051d57600080fd5b50610526611090565b6040516105339190613963565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e919061355e565b61111e565b005b34801561057157600080fd5b5061058c6004803603810190610587919061323e565b6111a4565b6040516105999190613b05565b60405180910390f35b3480156105ae57600080fd5b506105b761125d565b005b3480156105c557600080fd5b506105ce6112e5565b6040516105db9190613963565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190613461565b611373565b005b34801561061957600080fd5b50610634600480360381019061062f91906133c1565b6113f9565b005b34801561064257600080fd5b5061064b6114d9565b60405161065891906138ab565b60405180910390f35b34801561066d57600080fd5b50610676611503565b6040516106839190613b05565b60405180910390f35b34801561069857600080fd5b506106a1611509565b6040516106ae9190613963565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d9919061323e565b61159b565b005b3480156106ec57600080fd5b506107076004803603810190610702919061355e565b611690565b005b610723600480360381019061071e919061355e565b611716565b005b34801561073157600080fd5b5061074c60048036038101906107479190613381565b61196c565b005b61076860048036038101906107639190613401565b611ae4565b005b34801561077657600080fd5b50610791600480360381019061078c91906132fe565b611e0e565b005b34801561079f57600080fd5b506107ba60048036038101906107b5919061355e565b611e81565b005b3480156107c857600080fd5b506107e360048036038101906107de919061355e565b611f07565b6040516107f09190613963565b60405180910390f35b34801561080557600080fd5b5061080e6120ac565b60405161081b9190613b05565b60405180910390f35b34801561083057600080fd5b5061084b6004803603810190610846919061326b565b6120b2565b6040516108589190613912565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613515565b612146565b005b34801561089657600080fd5b506108b160048036038101906108ac919061323e565b6121dc565b005b3480156108bf57600080fd5b506108da60048036038101906108d5919061355e565b6122d4565b005b3480156108e857600080fd5b506108f161235a565b6040516108fe9190613948565b60405180910390f35b34801561091357600080fd5b5061092e6004803603810190610929919061323e565b61236d565b60405161093b9190613b05565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109cf5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109e590613def565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1190613def565b8015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b820191906000526020600020905b815481529060010190602001808311610a4157829003601f168201915b5050505050905090565b6000610a73826123b6565b610aa9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aef82612415565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b57576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b766124e3565b73ffffffffffffffffffffffffffffffffffffffff1614610bd957610ba281610b9d6124e3565b6120b2565b610bd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c956124eb565b6001546000540303905090565b610cad8383836124f0565b505050565b605881565b60115481565b610cc561289a565b73ffffffffffffffffffffffffffffffffffffffff16610ce36114d9565b73ffffffffffffffffffffffffffffffffffffffff1614610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090613a45565b60405180910390fd5b600047905060008111610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613a05565b60405180910390fd5b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610dc990613896565b60006040518083038185875af1925050503d8060008114610e06576040519150601f19603f3d011682016040523d82523d6000602084013e610e0b565b606091505b5050905080610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e46906139e5565b60405180910390fd5b5050565b610e6e83838360405180602001604052806000815250611e0e565b505050565b610e7b61289a565b73ffffffffffffffffffffffffffffffffffffffff16610e996114d9565b73ffffffffffffffffffffffffffffffffffffffff1614610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690613a45565b60405180910390fd5b80600f60006101000a81548160ff02191690836002811115610f1457610f13613f4e565b5b021790555050565b610f2461289a565b73ffffffffffffffffffffffffffffffffffffffff16610f426114d9565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f90613a45565b60405180910390fd5b80600b9080519060200190610fae929190612fd2565b5050565b610fba61289a565b73ffffffffffffffffffffffffffffffffffffffff16610fd86114d9565b73ffffffffffffffffffffffffffffffffffffffff161461102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590613a45565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061107d82612415565b9050919050565b600d5481565b600e5481565b600b805461109d90613def565b80601f01602080910402602001604051908101604052809291908181526020018280546110c990613def565b80156111165780601f106110eb57610100808354040283529160200191611116565b820191906000526020600020905b8154815290600101906020018083116110f957829003601f168201915b505050505081565b61112661289a565b73ffffffffffffffffffffffffffffffffffffffff166111446114d9565b73ffffffffffffffffffffffffffffffffffffffff161461119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190613a45565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61126561289a565b73ffffffffffffffffffffffffffffffffffffffff166112836114d9565b73ffffffffffffffffffffffffffffffffffffffff16146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090613a45565b60405180910390fd5b6112e360006128a2565b565b600c80546112f290613def565b80601f016020809104026020016040519081016040528092919081815260200182805461131e90613def565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b505050505081565b61137b61289a565b73ffffffffffffffffffffffffffffffffffffffff166113996114d9565b73ffffffffffffffffffffffffffffffffffffffff16146113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e690613a45565b60405180910390fd5b8060118190555050565b61140161289a565b73ffffffffffffffffffffffffffffffffffffffff1661141f6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90613a45565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114c49190613bf5565b925050819055506114d58282612968565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b60606003805461151890613def565b80601f016020809104026020016040519081016040528092919081815260200182805461154490613def565b80156115915780601f1061156657610100808354040283529160200191611591565b820191906000526020600020905b81548152906001019060200180831161157457829003601f168201915b5050505050905090565b6115a361289a565b73ffffffffffffffffffffffffffffffffffffffff166115c16114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90613a45565b60405180910390fd5b601260149054906101000a900460ff1615611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613a25565b60405180910390fd5b6001601260146101000a81548160ff02191690831515021790555061168d816058612968565b50565b61169861289a565b73ffffffffffffffffffffffffffffffffffffffff166116b66114d9565b73ffffffffffffffffffffffffffffffffffffffff161461170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390613a45565b60405180910390fd5b80600a8190555050565b60028181600281111561172c5761172b613f4e565b5b600f60009054906101000a900460ff16600281111561174e5761174d613f4e565b5b1461178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590613ac5565b60405180910390fd5b600081116117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c8906139a5565b60405180910390fd5b600954816117dd612986565b6117e79190613bf5565b1115611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613aa5565b60405180910390fd5b600a5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118769190613bf5565b11156118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae90613a85565b60405180910390fd5b600d54836118c59190613c7c565b341015611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe90613ae5565b60405180910390fd5b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119569190613bf5565b925050819055506119673384612968565b505050565b6119746124e3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119e66124e3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a936124e3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad89190613912565b60405180910390a35050565b600281816002811115611afa57611af9613f4e565b5b600f60009054906101000a900460ff166002811115611b1c57611b1b613f4e565b5b14611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613ac5565b60405180910390fd5b60008111611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b96906139a5565b60405180910390fd5b60095481611bab612986565b611bb59190613bf5565b1115611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed90613aa5565b60405180910390fd5b600a5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c449190613bf5565b1115611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90613a85565b60405180910390fd5b600033604051602001611c989190613857565b604051602081830303815290604052805190602001209050611cfe868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115483612999565b611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490613985565b60405180910390fd5b600d54600185611d4d9190613cd6565b611d579190613c7c565b600e54611d649190613bf5565b341015611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d90613ae5565b60405180910390fd5b83601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df59190613bf5565b92505081905550611e063385612968565b505050505050565b611e198484846124f0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e7b57611e44848484846129b0565b611e7a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611e8961289a565b73ffffffffffffffffffffffffffffffffffffffff16611ea76114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490613a45565b60405180910390fd5b80600e8190555050565b6060611f12826123b6565b611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890613a65565b60405180910390fd5b6000600b8054611f6090613def565b80601f0160208091040260200160405190810160405280929190818152602001828054611f8c90613def565b8015611fd95780601f10611fae57610100808354040283529160200191611fd9565b820191906000526020600020905b815481529060010190602001808311611fbc57829003601f168201915b50505050509050600081511161207957600c8054611ff690613def565b80601f016020809104026020016040519081016040528092919081815260200182805461202290613def565b801561206f5780601f106120445761010080835404028352916020019161206f565b820191906000526020600020905b81548152906001019060200180831161205257829003601f168201915b50505050506120a4565b8061208384612b10565b604051602001612094929190613872565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61214e61289a565b73ffffffffffffffffffffffffffffffffffffffff1661216c6114d9565b73ffffffffffffffffffffffffffffffffffffffff16146121c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b990613a45565b60405180910390fd5b80600c90805190602001906121d8929190612fd2565b5050565b6121e461289a565b73ffffffffffffffffffffffffffffffffffffffff166122026114d9565b73ffffffffffffffffffffffffffffffffffffffff1614612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224f90613a45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf906139c5565b60405180910390fd5b6122d1816128a2565b50565b6122dc61289a565b73ffffffffffffffffffffffffffffffffffffffff166122fa6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790613a45565b60405180910390fd5b80600d8190555050565b600f60009054906101000a900460ff1681565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000816123c16124eb565b111580156123d0575060005482105b801561240e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806124246124eb565b116124ac576000548110156124ab5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156124a9575b600081141561249f576004600083600190039350838152602001908152602001600020549050612474565b80925050506124de565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006124fb82612415565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612562576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166125836124e3565b73ffffffffffffffffffffffffffffffffffffffff1614806125b257506125b1856125ac6124e3565b6120b2565b5b806125f757506125c06124e3565b73ffffffffffffffffffffffffffffffffffffffff166125df84610a68565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612630576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612697576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126a48585856001612c71565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6127a186612c77565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561282b576000600184019050600060046000838152602001908152602001600020541415612829576000548114612828578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128938585856001612c81565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612982828260405180602001604052806000815250612c87565b5050565b60006129906124eb565b60005403905090565b6000826129a68584612f3c565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129d66124e3565b8786866040518563ffffffff1660e01b81526004016129f894939291906138c6565b602060405180830381600087803b158015612a1257600080fd5b505af1925050508015612a4357506040513d601f19601f82011682018060405250810190612a4091906134bb565b60015b612abd573d8060008114612a73576040519150601f19603f3d011682016040523d82523d6000602084013e612a78565b606091505b50600081511415612ab5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612b58576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c6c565b600082905060005b60008214612b8a578080612b7390613e52565b915050600a82612b839190613c4b565b9150612b60565b60008167ffffffffffffffff811115612ba657612ba5613fdb565b5b6040519080825280601f01601f191660200182016040528015612bd85781602001600182028036833780820191505090505b5090505b60008514612c6557600182612bf19190613cd6565b9150600a85612c009190613ebf565b6030612c0c9190613bf5565b60f81b818381518110612c2257612c21613fac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c5e9190613c4b565b9450612bdc565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612cf4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612d2f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d3c6000858386612c71565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612da160018514612fb1565b901b60a042901b612db186612c77565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612eb5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e6560008784806001019550876129b0565b612e9b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612df6578260005414612eb057600080fd5b612f20565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612eb6575b816000819055505050612f366000858386612c81565b50505050565b60008082905060005b8451811015612fa6576000858281518110612f6357612f62613fac565b5b60200260200101519050808311612f8557612f7e8382612fbb565b9250612f92565b612f8f8184612fbb565b92505b508080612f9e90613e52565b915050612f45565b508091505092915050565b6000819050919050565b600082600052816020526040600020905092915050565b828054612fde90613def565b90600052602060002090601f0160209004810192826130005760008555613047565b82601f1061301957805160ff1916838001178555613047565b82800160010185558215613047579182015b8281111561304657825182559160200191906001019061302b565b5b5090506130549190613058565b5090565b5b80821115613071576000816000905550600101613059565b5090565b600061308861308384613b45565b613b20565b9050828152602081018484840111156130a4576130a3614019565b5b6130af848285613dad565b509392505050565b60006130ca6130c584613b76565b613b20565b9050828152602081018484840111156130e6576130e5614019565b5b6130f1848285613dad565b509392505050565b6000813590506131088161439f565b92915050565b60008083601f8401126131245761312361400f565b5b8235905067ffffffffffffffff8111156131415761314061400a565b5b60208301915083602082028301111561315d5761315c614014565b5b9250929050565b600081359050613173816143b6565b92915050565b600081359050613188816143cd565b92915050565b60008135905061319d816143e4565b92915050565b6000815190506131b2816143e4565b92915050565b600082601f8301126131cd576131cc61400f565b5b81356131dd848260208601613075565b91505092915050565b6000813590506131f5816143fb565b92915050565b600082601f8301126132105761320f61400f565b5b81356132208482602086016130b7565b91505092915050565b6000813590506132388161440b565b92915050565b60006020828403121561325457613253614023565b5b6000613262848285016130f9565b91505092915050565b6000806040838503121561328257613281614023565b5b6000613290858286016130f9565b92505060206132a1858286016130f9565b9150509250929050565b6000806000606084860312156132c4576132c3614023565b5b60006132d2868287016130f9565b93505060206132e3868287016130f9565b92505060406132f486828701613229565b9150509250925092565b6000806000806080858703121561331857613317614023565b5b6000613326878288016130f9565b9450506020613337878288016130f9565b935050604061334887828801613229565b925050606085013567ffffffffffffffff8111156133695761336861401e565b5b613375878288016131b8565b91505092959194509250565b6000806040838503121561339857613397614023565b5b60006133a6858286016130f9565b92505060206133b785828601613164565b9150509250929050565b600080604083850312156133d8576133d7614023565b5b60006133e6858286016130f9565b92505060206133f785828601613229565b9150509250929050565b60008060006040848603121561341a57613419614023565b5b600084013567ffffffffffffffff8111156134385761343761401e565b5b6134448682870161310e565b9350935050602061345786828701613229565b9150509250925092565b60006020828403121561347757613476614023565b5b600061348584828501613179565b91505092915050565b6000602082840312156134a4576134a3614023565b5b60006134b28482850161318e565b91505092915050565b6000602082840312156134d1576134d0614023565b5b60006134df848285016131a3565b91505092915050565b6000602082840312156134fe576134fd614023565b5b600061350c848285016131e6565b91505092915050565b60006020828403121561352b5761352a614023565b5b600082013567ffffffffffffffff8111156135495761354861401e565b5b613555848285016131fb565b91505092915050565b60006020828403121561357457613573614023565b5b600061358284828501613229565b91505092915050565b61359481613d0a565b82525050565b6135ab6135a682613d0a565b613e9b565b82525050565b6135ba81613d1c565b82525050565b6135c981613d28565b82525050565b60006135da82613ba7565b6135e48185613bbd565b93506135f4818560208601613dbc565b6135fd81614028565b840191505092915050565b61361181613d9b565b82525050565b600061362282613bb2565b61362c8185613bd9565b935061363c818560208601613dbc565b61364581614028565b840191505092915050565b600061365b82613bb2565b6136658185613bea565b9350613675818560208601613dbc565b80840191505092915050565b600061368e602383613bd9565b915061369982614046565b604082019050919050565b60006136b1602583613bd9565b91506136bc82614095565b604082019050919050565b60006136d4602683613bd9565b91506136df826140e4565b604082019050919050565b60006136f7601d83613bd9565b915061370282614133565b602082019050919050565b600061371a602083613bd9565b91506137258261415c565b602082019050919050565b600061373d602683613bd9565b915061374882614185565b604082019050919050565b6000613760602083613bd9565b915061376b826141d4565b602082019050919050565b6000613783602f83613bd9565b915061378e826141fd565b604082019050919050565b60006137a6604883613bd9565b91506137b18261424c565b606082019050919050565b60006137c9603d83613bd9565b91506137d4826142c1565b604082019050919050565b60006137ec600083613bce565b91506137f782614310565b600082019050919050565b600061380f601b83613bd9565b915061381a82614313565b602082019050919050565b6000613832602e83613bd9565b915061383d8261433c565b604082019050919050565b61385181613d91565b82525050565b6000613863828461359a565b60148201915081905092915050565b600061387e8285613650565b915061388a8284613650565b91508190509392505050565b60006138a1826137df565b9150819050919050565b60006020820190506138c0600083018461358b565b92915050565b60006080820190506138db600083018761358b565b6138e8602083018661358b565b6138f56040830185613848565b818103606083015261390781846135cf565b905095945050505050565b600060208201905061392760008301846135b1565b92915050565b600060208201905061394260008301846135c0565b92915050565b600060208201905061395d6000830184613608565b92915050565b6000602082019050818103600083015261397d8184613617565b905092915050565b6000602082019050818103600083015261399e81613681565b9050919050565b600060208201905081810360008301526139be816136a4565b9050919050565b600060208201905081810360008301526139de816136c7565b9050919050565b600060208201905081810360008301526139fe816136ea565b9050919050565b60006020820190508181036000830152613a1e8161370d565b9050919050565b60006020820190508181036000830152613a3e81613730565b9050919050565b60006020820190508181036000830152613a5e81613753565b9050919050565b60006020820190508181036000830152613a7e81613776565b9050919050565b60006020820190508181036000830152613a9e81613799565b9050919050565b60006020820190508181036000830152613abe816137bc565b9050919050565b60006020820190508181036000830152613ade81613802565b9050919050565b60006020820190508181036000830152613afe81613825565b9050919050565b6000602082019050613b1a6000830184613848565b92915050565b6000613b2a613b3b565b9050613b368282613e21565b919050565b6000604051905090565b600067ffffffffffffffff821115613b6057613b5f613fdb565b5b613b6982614028565b9050602081019050919050565b600067ffffffffffffffff821115613b9157613b90613fdb565b5b613b9a82614028565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c0082613d91565b9150613c0b83613d91565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c4057613c3f613ef0565b5b828201905092915050565b6000613c5682613d91565b9150613c6183613d91565b925082613c7157613c70613f1f565b5b828204905092915050565b6000613c8782613d91565b9150613c9283613d91565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ccb57613cca613ef0565b5b828202905092915050565b6000613ce182613d91565b9150613cec83613d91565b925082821015613cff57613cfe613ef0565b5b828203905092915050565b6000613d1582613d71565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613d6c8261438b565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613da682613d5e565b9050919050565b82818337600083830152505050565b60005b83811015613dda578082015181840152602081019050613dbf565b83811115613de9576000848401525b50505050565b60006002820490506001821680613e0757607f821691505b60208210811415613e1b57613e1a613f7d565b5b50919050565b613e2a82614028565b810181811067ffffffffffffffff82111715613e4957613e48613fdb565b5b80604052505050565b6000613e5d82613d91565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e9057613e8f613ef0565b5b600182019050919050565b6000613ea682613ead565b9050919050565b6000613eb882614039565b9050919050565b6000613eca82613d91565b9150613ed583613d91565b925082613ee557613ee4613f1f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5052454d494e54424f543a20596f7520617265206e6f742077686974656c697360008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b7f5052454d494e54424f543a20436f756e74206d7573742067726561746572207460008201527f68616e2030000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5052454d494e54424f543a205769746864726177616c206661696c6564000000600082015250565b7f5052454d494e54424f543a20496e73756666696369656e742062616c616e6365600082015250565b7f5052454d494e54424f543a2054686520696e746572696f72206861732062656560008201527f6e206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5052454d494e54424f543a204e756d626572206f66207265717565737465642060008201527f746f6b656e732077696c6c2065786365656420746865206c696d69742070657260208201527f206163636f756e74000000000000000000000000000000000000000000000000604082015250565b7f5052454d494e54424f543a204e756d626572206f66207265717565737465642060008201527f746f6b656e732077696c6c20657863656564206d617820737570706c79000000602082015250565b50565b7f5052454d494e54424f543a204e6f74206f7065726174696f6e616c0000000000600082015250565b7f5052454d494e54424f543a2045746865722076616c75652073656e742069732060008201527f6e6f742073756666696369656e74000000000000000000000000000000000000602082015250565b6003811061439c5761439b613f4e565b5b50565b6143a881613d0a565b81146143b357600080fd5b50565b6143bf81613d1c565b81146143ca57600080fd5b50565b6143d681613d28565b81146143e157600080fd5b50565b6143ed81613d32565b81146143f857600080fd5b50565b6003811061440857600080fd5b50565b61441481613d91565b811461441f57600080fd5b5056fea26469706673582212202a9e6ca7288b5ad95bc71f19aa8752b9d4d8947610a3272a1c80c66f206db69864736f6c63430008070033

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

0000000000000000000000005970ffc7992c013f1f255d673fc233e00eb8e4040000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f697066732e696f2f697066732f516d5766796d74524a42725672557a57364355596566336e7938676941454a734b624a756a45674272347a634e343f66696c656e616d653d7065726d696e74626f742e6a736f6e00000000

-----Decoded View---------------
Arg [0] : paymentAddress (address): 0x5970ffc7992C013F1f255D673Fc233e00Eb8e404
Arg [1] : _notRevealedURI (string): https://ipfs.io/ipfs/QmWfymtRJBrVrUzW6CUYef3ny8giAEJsKbJujEgBr4zcN4?filename=permintbot.json

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000005970ffc7992c013f1f255d673fc233e00eb8e404
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 000000000000000000000000000000000000000000000000000000000000005c
Arg [3] : 68747470733a2f2f697066732e696f2f697066732f516d5766796d74524a4272
Arg [4] : 5672557a57364355596566336e7938676941454a734b624a756a45674272347a
Arg [5] : 634e343f66696c656e616d653d7065726d696e74626f742e6a736f6e00000000


Deployed Bytecode Sourcemap

195:5098:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5031:615:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10044:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12112:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11572:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4085:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12998:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;376:44:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;708:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4780:312;;;;;;;;;;;;;:::i;:::-;;13239:185:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2115:108:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2745:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1945:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9833:144:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;496:37:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;542:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;429:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1721:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5710:224:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:5;;;;;;;;;;;;;:::i;:::-;;459:28:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2459:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4612:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1063:87:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;328:39:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10213:104:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4370:234:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1823:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4002:360;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12388:308:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3358:636:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13495:396:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2340:111:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2852:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;289:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12767:164:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2568:169:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1972:201:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2231:101:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;594:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5100:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5031:615:1;5116:4;5431:10;5416:25;;:11;:25;;;;:102;;;;5508:10;5493:25;;:11;:25;;;;5416:102;:179;;;;5585:10;5570:25;;:11;:25;;;;5416:179;5396:199;;5031:615;;;:::o;10044:100::-;10098:13;10131:5;10124:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10044:100;:::o;12112:204::-;12180:7;12205:16;12213:7;12205;:16::i;:::-;12200:64;;12230:34;;;;;;;;;;;;;;12200:64;12284:15;:24;12300:7;12284:24;;;;;;;;;;;;;;;;;;;;;12277:31;;12112:204;;;:::o;11572:474::-;11645:13;11677:27;11696:7;11677:18;:27::i;:::-;11645:61;;11727:5;11721:11;;:2;:11;;;11717:48;;;11741:24;;;;;;;;;;;;;;11717:48;11805:5;11782:28;;:19;:17;:19::i;:::-;:28;;;11778:175;;11830:44;11847:5;11854:19;:17;:19::i;:::-;11830:16;:44::i;:::-;11825:128;;11902:35;;;;;;;;;;;;;;11825:128;11778:175;11992:2;11965:15;:24;11981:7;11965:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;12030:7;12026:2;12010:28;;12019:5;12010:28;;;;;;;;;;;;11634:412;11572:474;;:::o;4085:315::-;4138:7;4366:15;:13;:15::i;:::-;4351:12;;4335:13;;:28;:46;4328:53;;4085:315;:::o;12998:170::-;13132:28;13142:4;13148:2;13152:7;13132:9;:28::i;:::-;12998:170;;;:::o;376:44:6:-;418:2;376:44;:::o;708:94::-;;;;:::o;4780:312::-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4839:15:6::1;4857:21;4839:39;;4907:1;4897:7;:11;4889:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;4957:12;4983:15;;;;;;;;;;;4975:29;;5012:7;4975:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4956:68;;;5043:7;5035:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;4828:264;;4780:312::o:0;13239:185:1:-;13377:39;13394:4;13400:2;13404:7;13377:39;;;;;;;;;;;;:16;:39::i;:::-;13239:185;;;:::o;2115:108:6:-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2209:6:6::1;2196:10;;:19;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;2115:108:::0;:::o;2745:99::-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2833:3:6::1;2823:7;:13;;;;;;;;;;;;:::i;:::-;;2745:99:::0;:::o;1945:162::-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2085:14:6::1;2067:15;;:32;;;;;;;;;;;;;;;;;;1945:162:::0;:::o;9833:144:1:-;9897:7;9940:27;9959:7;9940:18;:27::i;:::-;9917:52;;9833:144;;;:::o;496:37:6:-;;;;:::o;542:43::-;;;;:::o;429:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1721:94::-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1801:6:6::1;1789:9;:18;;;;1721:94:::0;:::o;5710:224:1:-;5774:7;5815:1;5798:19;;:5;:19;;;5794:60;;;5826:28;;;;;;;;;;;;;;5794:60;1049:13;5872:18;:25;5891:5;5872:25;;;;;;;;;;;;;;;;:54;5865:61;;5710:224;;;:::o;1714:103:5:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;459:28:6:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2459:101::-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2548:4:6::1;2535:10;:17;;;;2459:101:::0;:::o;4612:160::-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4724:5:6::1;4698:12;:22;4711:8;4698:22;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;4738:26;4748:8;4758:5;4738:9;:26::i;:::-;4612:160:::0;;:::o;1063:87:5:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;328:39:6:-;;;;:::o;10213:104:1:-;10269:13;10302:7;10295:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10213:104;:::o;4370:234:6:-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4458:15:6::1;;;;;;;;;;;4457:16;4449:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;4545:4;4527:15;;:22;;;;;;;;;;;;;;;;;;4560:36;4570:8;418:2;4560:9;:36::i;:::-;4370:234:::0;:::o;1823:114::-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1924:5:6::1;1901:20;:28;;;;1823:114:::0;:::o;4002:360::-;4103:17;4122:5;1202:6;1188:20;;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:20;;;;;;;;:::i;:::-;;;1180:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;1281:1;1273:5;:9;1251:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;1406:9;;1397:5;1380:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;1358:146;;;;;;;;;;;;:::i;:::-;;;;;;;;;1573:20;;1564:5;1537:12;:24;1550:10;1537:24;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:56;;1515:178;;;;;;;;;;;;:::i;:::-;;;;;;;;;4188:9:::1;;4180:5;:17;;;;:::i;:::-;4167:9;:30;;4145:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;4310:5;4282:12;:24;4295:10;4282:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;4326:28;4336:10;4348:5;4326:9;:28::i;:::-;4002:360:::0;;;:::o;12388:308:1:-;12499:19;:17;:19::i;:::-;12487:31;;:8;:31;;;12483:61;;;12527:17;;;;;;;;;;;;;;12483:61;12609:8;12557:18;:39;12576:19;:17;:19::i;:::-;12557:39;;;;;;;;;;;;;;;:49;12597:8;12557:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;12669:8;12633:55;;12648:19;:17;:19::i;:::-;12633:55;;;12679:8;12633:55;;;;;;:::i;:::-;;;;;;;;12388:308;;:::o;3358:636:6:-;3500:17;3519:5;1202:6;1188:20;;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:20;;;;;;;;:::i;:::-;;;1180:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;1281:1;1273:5;:9;1251:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;1406:9;;1397:5;1380:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;1358:146;;;;;;;;;;;;:::i;:::-;;;;;;;;;1573:20;;1564:5;1537:12;:24;1550:10;1537:24;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:56;;1515:178;;;;;;;;;;;;:::i;:::-;;;;;;;;;3542:12:::1;3584:10;3567:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;3557:39;;;;;;3542:54;;3629:49;3648:11;;3629:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3661:10;;3673:4;3629:18;:49::i;:::-;3607:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;3819:9;;3814:1;3806:5;:9;;;;:::i;:::-;3805:23;;;;:::i;:::-;3787:14;;:42;;;;:::i;:::-;3774:9;:55;;3752:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;3942:5;3914:12;:24;3927:10;3914:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;3958:28;3968:10;3980:5;3958:9;:28::i;:::-;3531:463;3358:636:::0;;;;;:::o;13495:396:1:-;13662:28;13672:4;13678:2;13682:7;13662:9;:28::i;:::-;13723:1;13705:2;:14;;;:19;13701:183;;13744:56;13775:4;13781:2;13785:7;13794:5;13744:30;:56::i;:::-;13739:145;;13828:40;;;;;;;;;;;;;;13739:145;13701:183;13495:396;;;;:::o;2340:111:6:-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2438:5:6::1;2421:14;:22;;;;2340:111:::0;:::o;2852:498::-;2970:13;3023:16;3031:7;3023;:16::i;:::-;3001:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;3127:28;3158:7;3127:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3227:1;3202:14;3196:28;:32;:146;;3328:14;3196:146;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3272:14;3288:18;:7;:16;:18::i;:::-;3255:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3196:146;3176:166;;;2852:498;;;:::o;289:30::-;;;;:::o;12767:164:1:-;12864:4;12888:18;:25;12907:5;12888:25;;;;;;;;;;;;;;;:35;12914:8;12888:35;;;;;;;;;;;;;;;;;;;;;;;;;12881:42;;12767:164;;;;:::o;2568:169:6:-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2714:15:6::1;2697:14;:32;;;;;;;;;;;;:::i;:::-;;2568:169:::0;:::o;1972:201:5:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;2231:101:6:-;1294:12:5;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2319:5:6::1;2307:9;:17;;;;2231:101:::0;:::o;594:48::-;;;;;;;;;;;;;:::o;5100:190::-;5225:7;5257:12;:25;5270:11;5257:25;;;;;;;;;;;;;;;;5250:32;;5100:190;;;:::o;14146:273:1:-;14203:4;14259:7;14240:15;:13;:15::i;:::-;:26;;:66;;;;;14293:13;;14283:7;:23;14240:66;:152;;;;;14391:1;1819:8;14344:17;:26;14362:7;14344:26;;;;;;;;;;;;:43;:48;14240:152;14220:172;;14146:273;;;:::o;7348:1129::-;7415:7;7435:12;7450:7;7435:22;;7518:4;7499:15;:13;:15::i;:::-;:23;7495:915;;7552:13;;7545:4;:20;7541:869;;;7590:14;7607:17;:23;7625:4;7607:23;;;;;;;;;;;;7590:40;;7723:1;1819:8;7696:6;:23;:28;7692:699;;;8215:113;8232:1;8222:6;:11;8215:113;;;8275:17;:25;8293:6;;;;;;;8275:25;;;;;;;;;;;;8266:34;;8215:113;;;8361:6;8354:13;;;;;;7692:699;7567:843;7541:869;7495:915;8438:31;;;;;;;;;;;;;;7348:1129;;;;:::o;28128:105::-;28188:7;28215:10;28208:17;;28128:105;:::o;3608:92::-;3664:7;3608:92;:::o;19385:2515::-;19500:27;19530;19549:7;19530:18;:27::i;:::-;19500:57;;19615:4;19574:45;;19590:19;19574:45;;;19570:86;;19628:28;;;;;;;;;;;;;;19570:86;19669:22;19718:4;19695:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;19739:43;19756:4;19762:19;:17;:19::i;:::-;19739:16;:43::i;:::-;19695:87;:147;;;;19823:19;:17;:19::i;:::-;19799:43;;:20;19811:7;19799:11;:20::i;:::-;:43;;;19695:147;19669:174;;19861:17;19856:66;;19887:35;;;;;;;;;;;;;;19856:66;19951:1;19937:16;;:2;:16;;;19933:52;;;19962:23;;;;;;;;;;;;;;19933:52;19998:43;20020:4;20026:2;20030:7;20039:1;19998:21;:43::i;:::-;20114:15;:24;20130:7;20114:24;;;;;;;;;;;;20107:31;;;;;;;;;;;20506:18;:24;20525:4;20506:24;;;;;;;;;;;;;;;;20504:26;;;;;;;;;;;;20575:18;:22;20594:2;20575:22;;;;;;;;;;;;;;;;20573:24;;;;;;;;;;;2101:8;1703:3;20956:15;:41;;20914:21;20932:2;20914:17;:21::i;:::-;:84;:128;20868:17;:26;20886:7;20868:26;;;;;;;;;;;:174;;;;21212:1;2101:8;21162:19;:46;:51;21158:626;;;21234:19;21266:1;21256:7;:11;21234:33;;21423:1;21389:17;:30;21407:11;21389:30;;;;;;;;;;;;:35;21385:384;;;21527:13;;21512:11;:28;21508:242;;21707:19;21674:17;:30;21692:11;21674:30;;;;;;;;;;;:52;;;;21508:242;21385:384;21215:569;21158:626;21831:7;21827:2;21812:27;;21821:4;21812:27;;;;;;;;;;;;21850:42;21871:4;21877:2;21881:7;21890:1;21850:20;:42::i;:::-;19489:2411;;19385:2515;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;2333:191:5:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;14503:104:1:-;14572:27;14582:2;14586:8;14572:27;;;;;;;;;;;;:9;:27::i;:::-;14503:104;;:::o;4498:285::-;4545:7;4749:15;:13;:15::i;:::-;4733:13;;:31;4726:38;;4498:285;:::o;1180:190:4:-;1305:4;1358;1329:25;1342:5;1349:4;1329:12;:25::i;:::-;:33;1322:40;;1180:190;;;;;:::o;25597:716:1:-;25760:4;25806:2;25781:45;;;25827:19;:17;:19::i;:::-;25848:4;25854:7;25863:5;25781:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;25777:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26081:1;26064:6;:13;:18;26060:235;;;26110:40;;;;;;;;;;;;;;26060:235;26253:6;26247:13;26238:6;26234:2;26230:15;26223:38;25777:529;25950:54;;;25940:64;;;:6;:64;;;;25933:71;;;25597:716;;;;;;:::o;342:723:7:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;26961:159:1:-;;;;;:::o;11133:148::-;11197:14;11258:5;11248:15;;11133:148;;;:::o;27779:158::-;;;;;:::o;14980:2236::-;15103:20;15126:13;;15103:36;;15168:1;15154:16;;:2;:16;;;15150:48;;;15179:19;;;;;;;;;;;;;;15150:48;15225:1;15213:8;:13;15209:44;;;15235:18;;;;;;;;;;;;;;15209:44;15266:61;15296:1;15300:2;15304:12;15318:8;15266:21;:61::i;:::-;15870:1;1186:2;15841:1;:25;;15840:31;15828:8;:44;15802:18;:22;15821:2;15802:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;1966:3;16271:29;16298:1;16286:8;:13;16271:14;:29::i;:::-;:56;;1703:3;16208:15;:41;;16166:21;16184:2;16166:17;:21::i;:::-;:84;:162;16115:17;:31;16133:12;16115:31;;;;;;;;;;;:213;;;;16345:20;16368:12;16345:35;;16395:11;16424:8;16409:12;:23;16395:37;;16471:1;16453:2;:14;;;:19;16449:635;;16493:313;16549:12;16545:2;16524:38;;16541:1;16524:38;;;;;;;;;;;;16590:69;16629:1;16633:2;16637:14;;;;;;16653:5;16590:30;:69::i;:::-;16585:174;;16695:40;;;;;;;;;;;;;;16585:174;16801:3;16786:12;:18;16493:313;;16887:12;16870:13;;:29;16866:43;;16901:8;;;16866:43;16449:635;;;16950:119;17006:14;;;;;;17002:2;16981:40;;16998:1;16981:40;;;;;;;;;;;;17064:3;17049:12;:18;16950:119;;16449:635;17114:12;17098:13;:28;;;;15579:1559;;17148:60;17177:1;17181:2;17185:12;17199:8;17148:20;:60::i;:::-;15092:2124;14980:2236;;;:::o;1731:675:4:-;1814:7;1834:20;1857:4;1834:27;;1877:9;1872:497;1896:5;:12;1892:1;:16;1872:497;;;1930:20;1953:5;1959:1;1953:8;;;;;;;;:::i;:::-;;;;;;;;1930:31;;1996:12;1980;:28;1976:382;;2123:42;2138:12;2152;2123:14;:42::i;:::-;2108:57;;1976:382;;;2300:42;2315:12;2329;2300:14;:42::i;:::-;2285:57;;1976:382;1915:454;1910:3;;;;;:::i;:::-;;;;1872:497;;;;2386:12;2379:19;;;1731:675;;;;:::o;11368:142:1:-;11426:14;11487:5;11477:15;;11368:142;;;:::o;2414:224:4:-;2482:13;2545:1;2539:4;2532:15;2574:1;2568:4;2561:15;2615:4;2609;2599:21;2590:30;;2414:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:8:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2508:169::-;2569:5;2607:6;2594:20;2585:29;;2623:48;2665:5;2623:48;:::i;:::-;2508:169;;;;:::o;2697:340::-;2753:5;2802:3;2795:4;2787:6;2783:17;2779:27;2769:122;;2810:79;;:::i;:::-;2769:122;2927:6;2914:20;2952:79;3027:3;3019:6;3012:4;3004:6;3000:17;2952:79;:::i;:::-;2943:88;;2759:278;2697:340;;;;:::o;3043:139::-;3089:5;3127:6;3114:20;3105:29;;3143:33;3170:5;3143:33;:::i;:::-;3043:139;;;;:::o;3188:329::-;3247:6;3296:2;3284:9;3275:7;3271:23;3267:32;3264:119;;;3302:79;;:::i;:::-;3264:119;3422:1;3447:53;3492:7;3483:6;3472:9;3468:22;3447:53;:::i;:::-;3437:63;;3393:117;3188:329;;;;:::o;3523:474::-;3591:6;3599;3648:2;3636:9;3627:7;3623:23;3619:32;3616:119;;;3654:79;;:::i;:::-;3616:119;3774:1;3799:53;3844:7;3835:6;3824:9;3820:22;3799:53;:::i;:::-;3789:63;;3745:117;3901:2;3927:53;3972:7;3963:6;3952:9;3948:22;3927:53;:::i;:::-;3917:63;;3872:118;3523:474;;;;;:::o;4003:619::-;4080:6;4088;4096;4145:2;4133:9;4124:7;4120:23;4116:32;4113:119;;;4151:79;;:::i;:::-;4113:119;4271:1;4296:53;4341:7;4332:6;4321:9;4317:22;4296:53;:::i;:::-;4286:63;;4242:117;4398:2;4424:53;4469:7;4460:6;4449:9;4445:22;4424:53;:::i;:::-;4414:63;;4369:118;4526:2;4552:53;4597:7;4588:6;4577:9;4573:22;4552:53;:::i;:::-;4542:63;;4497:118;4003:619;;;;;:::o;4628:943::-;4723:6;4731;4739;4747;4796:3;4784:9;4775:7;4771:23;4767:33;4764:120;;;4803:79;;:::i;:::-;4764:120;4923:1;4948:53;4993:7;4984:6;4973:9;4969:22;4948:53;:::i;:::-;4938:63;;4894:117;5050:2;5076:53;5121:7;5112:6;5101:9;5097:22;5076:53;:::i;:::-;5066:63;;5021:118;5178:2;5204:53;5249:7;5240:6;5229:9;5225:22;5204:53;:::i;:::-;5194:63;;5149:118;5334:2;5323:9;5319:18;5306:32;5365:18;5357:6;5354:30;5351:117;;;5387:79;;:::i;:::-;5351:117;5492:62;5546:7;5537:6;5526:9;5522:22;5492:62;:::i;:::-;5482:72;;5277:287;4628:943;;;;;;;:::o;5577:468::-;5642:6;5650;5699:2;5687:9;5678:7;5674:23;5670:32;5667:119;;;5705:79;;:::i;:::-;5667:119;5825:1;5850:53;5895:7;5886:6;5875:9;5871:22;5850:53;:::i;:::-;5840:63;;5796:117;5952:2;5978:50;6020:7;6011:6;6000:9;5996:22;5978:50;:::i;:::-;5968:60;;5923:115;5577:468;;;;;:::o;6051:474::-;6119:6;6127;6176:2;6164:9;6155:7;6151:23;6147:32;6144:119;;;6182:79;;:::i;:::-;6144:119;6302:1;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6273:117;6429:2;6455:53;6500:7;6491:6;6480:9;6476:22;6455:53;:::i;:::-;6445:63;;6400:118;6051:474;;;;;:::o;6531:704::-;6626:6;6634;6642;6691:2;6679:9;6670:7;6666:23;6662:32;6659:119;;;6697:79;;:::i;:::-;6659:119;6845:1;6834:9;6830:17;6817:31;6875:18;6867:6;6864:30;6861:117;;;6897:79;;:::i;:::-;6861:117;7010:80;7082:7;7073:6;7062:9;7058:22;7010:80;:::i;:::-;6992:98;;;;6788:312;7139:2;7165:53;7210:7;7201:6;7190:9;7186:22;7165:53;:::i;:::-;7155:63;;7110:118;6531:704;;;;;:::o;7241:329::-;7300:6;7349:2;7337:9;7328:7;7324:23;7320:32;7317:119;;;7355:79;;:::i;:::-;7317:119;7475:1;7500:53;7545:7;7536:6;7525:9;7521:22;7500:53;:::i;:::-;7490:63;;7446:117;7241:329;;;;:::o;7576:327::-;7634:6;7683:2;7671:9;7662:7;7658:23;7654:32;7651:119;;;7689:79;;:::i;:::-;7651:119;7809:1;7834:52;7878:7;7869:6;7858:9;7854:22;7834:52;:::i;:::-;7824:62;;7780:116;7576:327;;;;:::o;7909:349::-;7978:6;8027:2;8015:9;8006:7;8002:23;7998:32;7995:119;;;8033:79;;:::i;:::-;7995:119;8153:1;8178:63;8233:7;8224:6;8213:9;8209:22;8178:63;:::i;:::-;8168:73;;8124:127;7909:349;;;;:::o;8264:359::-;8338:6;8387:2;8375:9;8366:7;8362:23;8358:32;8355:119;;;8393:79;;:::i;:::-;8355:119;8513:1;8538:68;8598:7;8589:6;8578:9;8574:22;8538:68;:::i;:::-;8528:78;;8484:132;8264:359;;;;:::o;8629:509::-;8698:6;8747:2;8735:9;8726:7;8722:23;8718:32;8715:119;;;8753:79;;:::i;:::-;8715:119;8901:1;8890:9;8886:17;8873:31;8931:18;8923:6;8920:30;8917:117;;;8953:79;;:::i;:::-;8917:117;9058:63;9113:7;9104:6;9093:9;9089:22;9058:63;:::i;:::-;9048:73;;8844:287;8629:509;;;;:::o;9144:329::-;9203:6;9252:2;9240:9;9231:7;9227:23;9223:32;9220:119;;;9258:79;;:::i;:::-;9220:119;9378:1;9403:53;9448:7;9439:6;9428:9;9424:22;9403:53;:::i;:::-;9393:63;;9349:117;9144:329;;;;:::o;9479:118::-;9566:24;9584:5;9566:24;:::i;:::-;9561:3;9554:37;9479:118;;:::o;9603:157::-;9708:45;9728:24;9746:5;9728:24;:::i;:::-;9708:45;:::i;:::-;9703:3;9696:58;9603:157;;:::o;9766:109::-;9847:21;9862:5;9847:21;:::i;:::-;9842:3;9835:34;9766:109;;:::o;9881:118::-;9968:24;9986:5;9968:24;:::i;:::-;9963:3;9956:37;9881:118;;:::o;10005:360::-;10091:3;10119:38;10151:5;10119:38;:::i;:::-;10173:70;10236:6;10231:3;10173:70;:::i;:::-;10166:77;;10252:52;10297:6;10292:3;10285:4;10278:5;10274:16;10252:52;:::i;:::-;10329:29;10351:6;10329:29;:::i;:::-;10324:3;10320:39;10313:46;;10095:270;10005:360;;;;:::o;10371:157::-;10471:50;10515:5;10471:50;:::i;:::-;10466:3;10459:63;10371:157;;:::o;10534:364::-;10622:3;10650:39;10683:5;10650:39;:::i;:::-;10705:71;10769:6;10764:3;10705:71;:::i;:::-;10698:78;;10785:52;10830:6;10825:3;10818:4;10811:5;10807:16;10785:52;:::i;:::-;10862:29;10884:6;10862:29;:::i;:::-;10857:3;10853:39;10846:46;;10626:272;10534:364;;;;:::o;10904:377::-;11010:3;11038:39;11071:5;11038:39;:::i;:::-;11093:89;11175:6;11170:3;11093:89;:::i;:::-;11086:96;;11191:52;11236:6;11231:3;11224:4;11217:5;11213:16;11191:52;:::i;:::-;11268:6;11263:3;11259:16;11252:23;;11014:267;10904:377;;;;:::o;11287:366::-;11429:3;11450:67;11514:2;11509:3;11450:67;:::i;:::-;11443:74;;11526:93;11615:3;11526:93;:::i;:::-;11644:2;11639:3;11635:12;11628:19;;11287:366;;;:::o;11659:::-;11801:3;11822:67;11886:2;11881:3;11822:67;:::i;:::-;11815:74;;11898:93;11987:3;11898:93;:::i;:::-;12016:2;12011:3;12007:12;12000:19;;11659:366;;;:::o;12031:::-;12173:3;12194:67;12258:2;12253:3;12194:67;:::i;:::-;12187:74;;12270:93;12359:3;12270:93;:::i;:::-;12388:2;12383:3;12379:12;12372:19;;12031:366;;;:::o;12403:::-;12545:3;12566:67;12630:2;12625:3;12566:67;:::i;:::-;12559:74;;12642:93;12731:3;12642:93;:::i;:::-;12760:2;12755:3;12751:12;12744:19;;12403:366;;;:::o;12775:::-;12917:3;12938:67;13002:2;12997:3;12938:67;:::i;:::-;12931:74;;13014:93;13103:3;13014:93;:::i;:::-;13132:2;13127:3;13123:12;13116:19;;12775:366;;;:::o;13147:::-;13289:3;13310:67;13374:2;13369:3;13310:67;:::i;:::-;13303:74;;13386:93;13475:3;13386:93;:::i;:::-;13504:2;13499:3;13495:12;13488:19;;13147:366;;;:::o;13519:::-;13661:3;13682:67;13746:2;13741:3;13682:67;:::i;:::-;13675:74;;13758:93;13847:3;13758:93;:::i;:::-;13876:2;13871:3;13867:12;13860:19;;13519:366;;;:::o;13891:::-;14033:3;14054:67;14118:2;14113:3;14054:67;:::i;:::-;14047:74;;14130:93;14219:3;14130:93;:::i;:::-;14248:2;14243:3;14239:12;14232:19;;13891:366;;;:::o;14263:::-;14405:3;14426:67;14490:2;14485:3;14426:67;:::i;:::-;14419:74;;14502:93;14591:3;14502:93;:::i;:::-;14620:2;14615:3;14611:12;14604:19;;14263:366;;;:::o;14635:::-;14777:3;14798:67;14862:2;14857:3;14798:67;:::i;:::-;14791:74;;14874:93;14963:3;14874:93;:::i;:::-;14992:2;14987:3;14983:12;14976:19;;14635:366;;;:::o;15007:398::-;15166:3;15187:83;15268:1;15263:3;15187:83;:::i;:::-;15180:90;;15279:93;15368:3;15279:93;:::i;:::-;15397:1;15392:3;15388:11;15381:18;;15007:398;;;:::o;15411:366::-;15553:3;15574:67;15638:2;15633:3;15574:67;:::i;:::-;15567:74;;15650:93;15739:3;15650:93;:::i;:::-;15768:2;15763:3;15759:12;15752:19;;15411:366;;;:::o;15783:::-;15925:3;15946:67;16010:2;16005:3;15946:67;:::i;:::-;15939:74;;16022:93;16111:3;16022:93;:::i;:::-;16140:2;16135:3;16131:12;16124:19;;15783:366;;;:::o;16155:118::-;16242:24;16260:5;16242:24;:::i;:::-;16237:3;16230:37;16155:118;;:::o;16279:256::-;16391:3;16406:75;16477:3;16468:6;16406:75;:::i;:::-;16506:2;16501:3;16497:12;16490:19;;16526:3;16519:10;;16279:256;;;;:::o;16541:435::-;16721:3;16743:95;16834:3;16825:6;16743:95;:::i;:::-;16736:102;;16855:95;16946:3;16937:6;16855:95;:::i;:::-;16848:102;;16967:3;16960:10;;16541:435;;;;;:::o;16982:379::-;17166:3;17188:147;17331:3;17188:147;:::i;:::-;17181:154;;17352:3;17345:10;;16982:379;;;:::o;17367:222::-;17460:4;17498:2;17487:9;17483:18;17475:26;;17511:71;17579:1;17568:9;17564:17;17555:6;17511:71;:::i;:::-;17367:222;;;;:::o;17595:640::-;17790:4;17828:3;17817:9;17813:19;17805:27;;17842:71;17910:1;17899:9;17895:17;17886:6;17842:71;:::i;:::-;17923:72;17991:2;17980:9;17976:18;17967:6;17923:72;:::i;:::-;18005;18073:2;18062:9;18058:18;18049:6;18005:72;:::i;:::-;18124:9;18118:4;18114:20;18109:2;18098:9;18094:18;18087:48;18152:76;18223:4;18214:6;18152:76;:::i;:::-;18144:84;;17595:640;;;;;;;:::o;18241:210::-;18328:4;18366:2;18355:9;18351:18;18343:26;;18379:65;18441:1;18430:9;18426:17;18417:6;18379:65;:::i;:::-;18241:210;;;;:::o;18457:222::-;18550:4;18588:2;18577:9;18573:18;18565:26;;18601:71;18669:1;18658:9;18654:17;18645:6;18601:71;:::i;:::-;18457:222;;;;:::o;18685:248::-;18791:4;18829:2;18818:9;18814:18;18806:26;;18842:84;18923:1;18912:9;18908:17;18899:6;18842:84;:::i;:::-;18685:248;;;;:::o;18939:313::-;19052:4;19090:2;19079:9;19075:18;19067:26;;19139:9;19133:4;19129:20;19125:1;19114:9;19110:17;19103:47;19167:78;19240:4;19231:6;19167:78;:::i;:::-;19159:86;;18939:313;;;;:::o;19258:419::-;19424:4;19462:2;19451:9;19447:18;19439:26;;19511:9;19505:4;19501:20;19497:1;19486:9;19482:17;19475:47;19539:131;19665:4;19539:131;:::i;:::-;19531:139;;19258:419;;;:::o;19683:::-;19849:4;19887:2;19876:9;19872:18;19864:26;;19936:9;19930:4;19926:20;19922:1;19911:9;19907:17;19900:47;19964:131;20090:4;19964:131;:::i;:::-;19956:139;;19683:419;;;:::o;20108:::-;20274:4;20312:2;20301:9;20297:18;20289:26;;20361:9;20355:4;20351:20;20347:1;20336:9;20332:17;20325:47;20389:131;20515:4;20389:131;:::i;:::-;20381:139;;20108:419;;;:::o;20533:::-;20699:4;20737:2;20726:9;20722:18;20714:26;;20786:9;20780:4;20776:20;20772:1;20761:9;20757:17;20750:47;20814:131;20940:4;20814:131;:::i;:::-;20806:139;;20533:419;;;:::o;20958:::-;21124:4;21162:2;21151:9;21147:18;21139:26;;21211:9;21205:4;21201:20;21197:1;21186:9;21182:17;21175:47;21239:131;21365:4;21239:131;:::i;:::-;21231:139;;20958:419;;;:::o;21383:::-;21549:4;21587:2;21576:9;21572:18;21564:26;;21636:9;21630:4;21626:20;21622:1;21611:9;21607:17;21600:47;21664:131;21790:4;21664:131;:::i;:::-;21656:139;;21383:419;;;:::o;21808:::-;21974:4;22012:2;22001:9;21997:18;21989:26;;22061:9;22055:4;22051:20;22047:1;22036:9;22032:17;22025:47;22089:131;22215:4;22089:131;:::i;:::-;22081:139;;21808:419;;;:::o;22233:::-;22399:4;22437:2;22426:9;22422:18;22414:26;;22486:9;22480:4;22476:20;22472:1;22461:9;22457:17;22450:47;22514:131;22640:4;22514:131;:::i;:::-;22506:139;;22233:419;;;:::o;22658:::-;22824:4;22862:2;22851:9;22847:18;22839:26;;22911:9;22905:4;22901:20;22897:1;22886:9;22882:17;22875:47;22939:131;23065:4;22939:131;:::i;:::-;22931:139;;22658:419;;;:::o;23083:::-;23249:4;23287:2;23276:9;23272:18;23264:26;;23336:9;23330:4;23326:20;23322:1;23311:9;23307:17;23300:47;23364:131;23490:4;23364:131;:::i;:::-;23356:139;;23083:419;;;:::o;23508:::-;23674:4;23712:2;23701:9;23697:18;23689:26;;23761:9;23755:4;23751:20;23747:1;23736:9;23732:17;23725:47;23789:131;23915:4;23789:131;:::i;:::-;23781:139;;23508:419;;;:::o;23933:::-;24099:4;24137:2;24126:9;24122:18;24114:26;;24186:9;24180:4;24176:20;24172:1;24161:9;24157:17;24150:47;24214:131;24340:4;24214:131;:::i;:::-;24206:139;;23933:419;;;:::o;24358:222::-;24451:4;24489:2;24478:9;24474:18;24466:26;;24502:71;24570:1;24559:9;24555:17;24546:6;24502:71;:::i;:::-;24358:222;;;;:::o;24586:129::-;24620:6;24647:20;;:::i;:::-;24637:30;;24676:33;24704:4;24696:6;24676:33;:::i;:::-;24586:129;;;:::o;24721:75::-;24754:6;24787:2;24781:9;24771:19;;24721:75;:::o;24802:307::-;24863:4;24953:18;24945:6;24942:30;24939:56;;;24975:18;;:::i;:::-;24939:56;25013:29;25035:6;25013:29;:::i;:::-;25005:37;;25097:4;25091;25087:15;25079:23;;24802:307;;;:::o;25115:308::-;25177:4;25267:18;25259:6;25256:30;25253:56;;;25289:18;;:::i;:::-;25253:56;25327:29;25349:6;25327:29;:::i;:::-;25319:37;;25411:4;25405;25401:15;25393:23;;25115:308;;;:::o;25429:98::-;25480:6;25514:5;25508:12;25498:22;;25429:98;;;:::o;25533:99::-;25585:6;25619:5;25613:12;25603:22;;25533:99;;;:::o;25638:168::-;25721:11;25755:6;25750:3;25743:19;25795:4;25790:3;25786:14;25771:29;;25638:168;;;;:::o;25812:147::-;25913:11;25950:3;25935:18;;25812:147;;;;:::o;25965:169::-;26049:11;26083:6;26078:3;26071:19;26123:4;26118:3;26114:14;26099:29;;25965:169;;;;:::o;26140:148::-;26242:11;26279:3;26264:18;;26140:148;;;;:::o;26294:305::-;26334:3;26353:20;26371:1;26353:20;:::i;:::-;26348:25;;26387:20;26405:1;26387:20;:::i;:::-;26382:25;;26541:1;26473:66;26469:74;26466:1;26463:81;26460:107;;;26547:18;;:::i;:::-;26460:107;26591:1;26588;26584:9;26577:16;;26294:305;;;;:::o;26605:185::-;26645:1;26662:20;26680:1;26662:20;:::i;:::-;26657:25;;26696:20;26714:1;26696:20;:::i;:::-;26691:25;;26735:1;26725:35;;26740:18;;:::i;:::-;26725:35;26782:1;26779;26775:9;26770:14;;26605:185;;;;:::o;26796:348::-;26836:7;26859:20;26877:1;26859:20;:::i;:::-;26854:25;;26893:20;26911:1;26893:20;:::i;:::-;26888:25;;27081:1;27013:66;27009:74;27006:1;27003:81;26998:1;26991:9;26984:17;26980:105;26977:131;;;27088:18;;:::i;:::-;26977:131;27136:1;27133;27129:9;27118:20;;26796:348;;;;:::o;27150:191::-;27190:4;27210:20;27228:1;27210:20;:::i;:::-;27205:25;;27244:20;27262:1;27244:20;:::i;:::-;27239:25;;27283:1;27280;27277:8;27274:34;;;27288:18;;:::i;:::-;27274:34;27333:1;27330;27326:9;27318:17;;27150:191;;;;:::o;27347:96::-;27384:7;27413:24;27431:5;27413:24;:::i;:::-;27402:35;;27347:96;;;:::o;27449:90::-;27483:7;27526:5;27519:13;27512:21;27501:32;;27449:90;;;:::o;27545:77::-;27582:7;27611:5;27600:16;;27545:77;;;:::o;27628:149::-;27664:7;27704:66;27697:5;27693:78;27682:89;;27628:149;;;:::o;27783:141::-;27835:7;27864:5;27853:16;;27870:48;27912:5;27870:48;:::i;:::-;27783:141;;;:::o;27930:126::-;27967:7;28007:42;28000:5;27996:54;27985:65;;27930:126;;;:::o;28062:77::-;28099:7;28128:5;28117:16;;28062:77;;;:::o;28145:141::-;28208:9;28241:39;28274:5;28241:39;:::i;:::-;28228:52;;28145:141;;;:::o;28292:154::-;28376:6;28371:3;28366;28353:30;28438:1;28429:6;28424:3;28420:16;28413:27;28292:154;;;:::o;28452:307::-;28520:1;28530:113;28544:6;28541:1;28538:13;28530:113;;;28629:1;28624:3;28620:11;28614:18;28610:1;28605:3;28601:11;28594:39;28566:2;28563:1;28559:10;28554:15;;28530:113;;;28661:6;28658:1;28655:13;28652:101;;;28741:1;28732:6;28727:3;28723:16;28716:27;28652:101;28501:258;28452:307;;;:::o;28765:320::-;28809:6;28846:1;28840:4;28836:12;28826:22;;28893:1;28887:4;28883:12;28914:18;28904:81;;28970:4;28962:6;28958:17;28948:27;;28904:81;29032:2;29024:6;29021:14;29001:18;28998:38;28995:84;;;29051:18;;:::i;:::-;28995:84;28816:269;28765:320;;;:::o;29091:281::-;29174:27;29196:4;29174:27;:::i;:::-;29166:6;29162:40;29304:6;29292:10;29289:22;29268:18;29256:10;29253:34;29250:62;29247:88;;;29315:18;;:::i;:::-;29247:88;29355:10;29351:2;29344:22;29134:238;29091:281;;:::o;29378:233::-;29417:3;29440:24;29458:5;29440:24;:::i;:::-;29431:33;;29486:66;29479:5;29476:77;29473:103;;;29556:18;;:::i;:::-;29473:103;29603:1;29596:5;29592:13;29585:20;;29378:233;;;:::o;29617:100::-;29656:7;29685:26;29705:5;29685:26;:::i;:::-;29674:37;;29617:100;;;:::o;29723:94::-;29762:7;29791:20;29805:5;29791:20;:::i;:::-;29780:31;;29723:94;;;:::o;29823:176::-;29855:1;29872:20;29890:1;29872:20;:::i;:::-;29867:25;;29906:20;29924:1;29906:20;:::i;:::-;29901:25;;29945:1;29935:35;;29950:18;;:::i;:::-;29935:35;29991:1;29988;29984:9;29979:14;;29823:176;;;;:::o;30005:180::-;30053:77;30050:1;30043:88;30150:4;30147:1;30140:15;30174:4;30171:1;30164:15;30191:180;30239:77;30236:1;30229:88;30336:4;30333:1;30326:15;30360:4;30357:1;30350:15;30377:180;30425:77;30422:1;30415:88;30522:4;30519:1;30512:15;30546:4;30543:1;30536:15;30563:180;30611:77;30608:1;30601:88;30708:4;30705:1;30698:15;30732:4;30729:1;30722:15;30749:180;30797:77;30794:1;30787:88;30894:4;30891:1;30884:15;30918:4;30915:1;30908:15;30935:180;30983:77;30980:1;30973:88;31080:4;31077:1;31070:15;31104:4;31101:1;31094:15;31121:117;31230:1;31227;31220:12;31244:117;31353:1;31350;31343:12;31367:117;31476:1;31473;31466:12;31490:117;31599:1;31596;31589:12;31613:117;31722:1;31719;31712:12;31736:117;31845:1;31842;31835:12;31859:102;31900:6;31951:2;31947:7;31942:2;31935:5;31931:14;31927:28;31917:38;;31859:102;;;:::o;31967:94::-;32000:8;32048:5;32044:2;32040:14;32019:35;;31967:94;;;:::o;32067:222::-;32207:34;32203:1;32195:6;32191:14;32184:58;32276:5;32271:2;32263:6;32259:15;32252:30;32067:222;:::o;32295:224::-;32435:34;32431:1;32423:6;32419:14;32412:58;32504:7;32499:2;32491:6;32487:15;32480:32;32295:224;:::o;32525:225::-;32665:34;32661:1;32653:6;32649:14;32642:58;32734:8;32729:2;32721:6;32717:15;32710:33;32525:225;:::o;32756:179::-;32896:31;32892:1;32884:6;32880:14;32873:55;32756:179;:::o;32941:182::-;33081:34;33077:1;33069:6;33065:14;33058:58;32941:182;:::o;33129:225::-;33269:34;33265:1;33257:6;33253:14;33246:58;33338:8;33333:2;33325:6;33321:15;33314:33;33129:225;:::o;33360:182::-;33500:34;33496:1;33488:6;33484:14;33477:58;33360:182;:::o;33548:234::-;33688:34;33684:1;33676:6;33672:14;33665:58;33757:17;33752:2;33744:6;33740:15;33733:42;33548:234;:::o;33788:296::-;33928:34;33924:1;33916:6;33912:14;33905:58;33997:34;33992:2;33984:6;33980:15;33973:59;34066:10;34061:2;34053:6;34049:15;34042:35;33788:296;:::o;34090:248::-;34230:34;34226:1;34218:6;34214:14;34207:58;34299:31;34294:2;34286:6;34282:15;34275:56;34090:248;:::o;34344:114::-;;:::o;34464:177::-;34604:29;34600:1;34592:6;34588:14;34581:53;34464:177;:::o;34647:233::-;34787:34;34783:1;34775:6;34771:14;34764:58;34856:16;34851:2;34843:6;34839:15;34832:41;34647:233;:::o;34886:120::-;34974:1;34967:5;34964:12;34954:46;;34980:18;;:::i;:::-;34954:46;34886:120;:::o;35012:122::-;35085:24;35103:5;35085:24;:::i;:::-;35078:5;35075:35;35065:63;;35124:1;35121;35114:12;35065:63;35012:122;:::o;35140:116::-;35210:21;35225:5;35210:21;:::i;:::-;35203:5;35200:32;35190:60;;35246:1;35243;35236:12;35190:60;35140:116;:::o;35262:122::-;35335:24;35353:5;35335:24;:::i;:::-;35328:5;35325:35;35315:63;;35374:1;35371;35364:12;35315:63;35262:122;:::o;35390:120::-;35462:23;35479:5;35462:23;:::i;:::-;35455:5;35452:34;35442:62;;35500:1;35497;35490:12;35442:62;35390:120;:::o;35516:114::-;35604:1;35597:5;35594:12;35584:40;;35620:1;35617;35610:12;35584:40;35516:114;:::o;35636:122::-;35709:24;35727:5;35709:24;:::i;:::-;35702:5;35699:35;35689:63;;35748:1;35745;35738:12;35689:63;35636:122;:::o

Swarm Source

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