ETH Price: $2,529.25 (+0.24%)

Token

BXNFT PASS (BXNFT)
 

Overview

Max Total Supply

384 BXNFT

Holders

226

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BXNFT
0x98a5c59ba7e63af7a00b5142d4c569c037d10424
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:
BXNFT

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 1 of 8: BXNFT.sol
// SPDX-License-Identifier: MIT

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

contract BXNFT is IBXNFT, ERC721A, Ownable {
    using Strings for uint256;

    uint256 public maxSupply = 888;

    uint256 public freeMintCount = 333;

    uint256 public tokenPerAccountLimit = 2;

    uint256 public constant INTERNAL_SUPPLY = 88;

    string public baseURI;

    string public notRevealedURI;

    uint256 public mintPrice = 0.1 ether;

    uint256 public whiteListPrice = 0 ether;

    SaleStatus public saleStatus = SaleStatus.PUBLIC;

    mapping(address => uint256) private _mintedCount;

    bytes32 public merkleRoot = 0x318f270942ad967aa59221c5708ba2db66c03488c49cfb314801572bbdcba8dd;

    address private _paymentAddress;

    bool private _internalMinted = false;

    constructor(address paymentAddress, string memory _notRevealedURI)
        ERC721A("BXNFT PASS", "BXNFT")
    {
        _paymentAddress = paymentAddress;
        notRevealedURI = _notRevealedURI;
    }

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

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

    function setFreeSupply(uint256 supply) external onlyOwner {
        freeMintCount = 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),
            "BXNFT: You are not whitelisted"
        );
        require(
            msg.value >= count * whiteListPrice,
            "BXNFT: 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)
    {
        uint256 requiredValue;
        requiredValue = _totalMinted() + count <= freeMintCount? 0: (count * mintPrice);
        require(
            msg.value >= requiredValue,
            "BXNFT: Ether value sent is not sufficient"
        );
        _mintedCount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }

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

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

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

File 2 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 3 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 4 of 8: IBXNFT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IBXNFT {
    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 withdraw() external;

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

File 5 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 6 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 7 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":"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":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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 IBXNFT.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":"setFreeSupply","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 IBXNFT.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"}]

608060405261037860095561014d600a556002600b5567016345785d8a0000600e556000600f556002601060006101000a81548160ff021916908360028111156200004f576200004e620005b4565b5b02179055507f318f270942ad967aa59221c5708ba2db66c03488c49cfb314801572bbdcba8dd60001b6012556000601360146101000a81548160ff021916908315150217905550348015620000a357600080fd5b506040516200499d3803806200499d8339818101604052810190620000c9919062000419565b6040518060400160405280600a81526020017f42584e46542050415353000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f42584e465400000000000000000000000000000000000000000000000000000081525081600290805190602001906200014d929190620002d4565b50806003908051906020019062000166929190620002d4565b50620001776200020160201b60201c565b60008190555050506200019f620001936200020660201b60201c565b6200020e60201b60201c565b81601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d9080519060200190620001f8929190620002d4565b50505062000680565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002e29062000548565b90600052602060002090601f01602090048101928262000306576000855562000352565b82601f106200032157805160ff191683800117855562000352565b8280016001018555821562000352579182015b828111156200035157825182559160200191906001019062000334565b5b50905062000361919062000365565b5090565b5b808211156200038057600081600090555060010162000366565b5090565b60006200039b6200039584620004a8565b6200047f565b905082815260208101848484011115620003ba57620003b962000646565b5b620003c784828562000512565b509392505050565b600081519050620003e08162000666565b92915050565b600082601f830112620003fe57620003fd62000641565b5b81516200041084826020860162000384565b91505092915050565b6000806040838503121562000433576200043262000650565b5b60006200044385828601620003cf565b925050602083015167ffffffffffffffff8111156200046757620004666200064b565b5b6200047585828601620003e6565b9150509250929050565b60006200048b6200049e565b90506200049982826200057e565b919050565b6000604051905090565b600067ffffffffffffffff821115620004c657620004c562000612565b5b620004d18262000655565b9050602081019050919050565b6000620004eb82620004f2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200053257808201518184015260208101905062000515565b8381111562000542576000848401525b50505050565b600060028204905060018216806200056157607f821691505b60208210811415620005785762000577620005e3565b5b50919050565b620005898262000655565b810181811067ffffffffffffffff82111715620005ab57620005aa62000612565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200067181620004de565b81146200067d57600080fd5b50565b61430d80620006906000396000f3fe6080604052600436106102515760003560e01c80637cb6475911610139578063beafc89b116100b6578063f2c4ce1e1161007a578063f2c4ce1e1461086e578063f2fde38b14610897578063f4a0a528146108c0578063f676308a146108e9578063f9020e3314610912578063fddcb5ea1461093d57610251565b8063beafc89b14610775578063c87b56dd1461079e578063d5abeb01146107db578063e55f58bb14610806578063e985e9c51461083157610251565b80639cd14e0f116100fd5780639cd14e0f146106c2578063a0712d68146106eb578063a22cb46514610707578063a6d612f914610730578063b88d4fde1461074c57610251565b80637cb64759146105ef5780638da5cb5b146106185780638dc823011461064357806395d89b411461066e5780639c58faa11461069957610251565b80634891ad88116101d2578063685756851161019657806368575685146104f15780636c0360eb1461051c5780636f8b44b01461054757806370a0823114610570578063715018a6146105ad57806372250380146105c457610251565b80634891ad881461040e57806349f2553a146104375780635e1e1004146104605780636352211e146104895780636817c76c146104c657610251565b806323b872dd1161021957806323b872dd1461034f5780632e34979e146103785780632eb4a7ab146103a35780633ccfd60b146103ce57806342842e0e146103e557610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906133fb565b61097a565b60405161028a919061385c565b60405180910390f35b34801561029f57600080fd5b506102a8610a0c565b6040516102b591906138ad565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906134cb565b610a9e565b6040516102f291906137f5565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d919061332e565b610b1a565b005b34801561033057600080fd5b50610339610cc1565b6040516103469190613a2f565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613218565b610cd8565b005b34801561038457600080fd5b5061038d610ce8565b60405161039a9190613a2f565b60405180910390f35b3480156103af57600080fd5b506103b8610ced565b6040516103c59190613877565b60405180910390f35b3480156103da57600080fd5b506103e3610cf3565b005b3480156103f157600080fd5b5061040c60048036038101906104079190613218565b610e89565b005b34801561041a57600080fd5b5061043560048036038101906104309190613455565b610ea9565b005b34801561044357600080fd5b5061045e60048036038101906104599190613482565b610f52565b005b34801561046c57600080fd5b50610487600480360381019061048291906131ab565b610fe8565b005b34801561049557600080fd5b506104b060048036038101906104ab91906134cb565b6110a8565b6040516104bd91906137f5565b60405180910390f35b3480156104d257600080fd5b506104db6110ba565b6040516104e89190613a2f565b60405180910390f35b3480156104fd57600080fd5b506105066110c0565b6040516105139190613a2f565b60405180910390f35b34801561052857600080fd5b506105316110c6565b60405161053e91906138ad565b60405180910390f35b34801561055357600080fd5b5061056e600480360381019061056991906134cb565b611154565b005b34801561057c57600080fd5b50610597600480360381019061059291906131ab565b6111da565b6040516105a49190613a2f565b60405180910390f35b3480156105b957600080fd5b506105c2611293565b005b3480156105d057600080fd5b506105d961131b565b6040516105e691906138ad565b60405180910390f35b3480156105fb57600080fd5b50610616600480360381019061061191906133ce565b6113a9565b005b34801561062457600080fd5b5061062d61142f565b60405161063a91906137f5565b60405180910390f35b34801561064f57600080fd5b50610658611459565b6040516106659190613a2f565b60405180910390f35b34801561067a57600080fd5b5061068361145f565b60405161069091906138ad565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb91906131ab565b6114f1565b005b3480156106ce57600080fd5b506106e960048036038101906106e491906134cb565b6115e6565b005b610705600480360381019061070091906134cb565b61166c565b005b34801561071357600080fd5b5061072e600480360381019061072991906132ee565b6118a9565b005b61074a6004803603810190610745919061336e565b611a21565b005b34801561075857600080fd5b50610773600480360381019061076e919061326b565b611cef565b005b34801561078157600080fd5b5061079c600480360381019061079791906134cb565b611d62565b005b3480156107aa57600080fd5b506107c560048036038101906107c091906134cb565b611de8565b6040516107d291906138ad565b60405180910390f35b3480156107e757600080fd5b506107f0611f8d565b6040516107fd9190613a2f565b60405180910390f35b34801561081257600080fd5b5061081b611f93565b6040516108289190613a2f565b60405180910390f35b34801561083d57600080fd5b50610858600480360381019061085391906131d8565b611f99565b604051610865919061385c565b60405180910390f35b34801561087a57600080fd5b5061089560048036038101906108909190613482565b61202d565b005b3480156108a357600080fd5b506108be60048036038101906108b991906131ab565b6120c3565b005b3480156108cc57600080fd5b506108e760048036038101906108e291906134cb565b6121bb565b005b3480156108f557600080fd5b50610910600480360381019061090b91906134cb565b612241565b005b34801561091e57600080fd5b506109276122c7565b6040516109349190613892565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f91906131ab565b6122da565b6040516109719190613a2f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a055750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a1b90613d19565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4790613d19565b8015610a945780601f10610a6957610100808354040283529160200191610a94565b820191906000526020600020905b815481529060010190602001808311610a7757829003601f168201915b5050505050905090565b6000610aa982612323565b610adf576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2582612382565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b8d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bac612450565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f57610bd881610bd3612450565b611f99565b610c0e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ccb612458565b6001546000540303905090565b610ce383838361245d565b505050565b605881565b60125481565b610cfb612807565b73ffffffffffffffffffffffffffffffffffffffff16610d1961142f565b73ffffffffffffffffffffffffffffffffffffffff1614610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d66906139ef565b60405180910390fd5b600047905060008111610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906139cf565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610dff906137e0565b60006040518083038185875af1925050503d8060008114610e3c576040519150601f19603f3d011682016040523d82523d6000602084013e610e41565b606091505b5050905080610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c9061396f565b60405180910390fd5b5050565b610ea483838360405180602001604052806000815250611cef565b505050565b610eb1612807565b73ffffffffffffffffffffffffffffffffffffffff16610ecf61142f565b73ffffffffffffffffffffffffffffffffffffffff1614610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c906139ef565b60405180910390fd5b80601060006101000a81548160ff02191690836002811115610f4a57610f49613e78565b5b021790555050565b610f5a612807565b73ffffffffffffffffffffffffffffffffffffffff16610f7861142f565b73ffffffffffffffffffffffffffffffffffffffff1614610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc5906139ef565b60405180910390fd5b80600c9080519060200190610fe4929190612f3f565b5050565b610ff0612807565b73ffffffffffffffffffffffffffffffffffffffff1661100e61142f565b73ffffffffffffffffffffffffffffffffffffffff1614611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b906139ef565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006110b382612382565b9050919050565b600e5481565b600f5481565b600c80546110d390613d19565b80601f01602080910402602001604051908101604052809291908181526020018280546110ff90613d19565b801561114c5780601f106111215761010080835404028352916020019161114c565b820191906000526020600020905b81548152906001019060200180831161112f57829003601f168201915b505050505081565b61115c612807565b73ffffffffffffffffffffffffffffffffffffffff1661117a61142f565b73ffffffffffffffffffffffffffffffffffffffff16146111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c7906139ef565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611242576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61129b612807565b73ffffffffffffffffffffffffffffffffffffffff166112b961142f565b73ffffffffffffffffffffffffffffffffffffffff161461130f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611306906139ef565b60405180910390fd5b611319600061280f565b565b600d805461132890613d19565b80601f016020809104026020016040519081016040528092919081815260200182805461135490613d19565b80156113a15780601f10611376576101008083540402835291602001916113a1565b820191906000526020600020905b81548152906001019060200180831161138457829003601f168201915b505050505081565b6113b1612807565b73ffffffffffffffffffffffffffffffffffffffff166113cf61142f565b73ffffffffffffffffffffffffffffffffffffffff1614611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c906139ef565b60405180910390fd5b8060128190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b60606003805461146e90613d19565b80601f016020809104026020016040519081016040528092919081815260200182805461149a90613d19565b80156114e75780601f106114bc576101008083540402835291602001916114e7565b820191906000526020600020905b8154815290600101906020018083116114ca57829003601f168201915b5050505050905090565b6114f9612807565b73ffffffffffffffffffffffffffffffffffffffff1661151761142f565b73ffffffffffffffffffffffffffffffffffffffff161461156d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611564906139ef565b60405180910390fd5b601360149054906101000a900460ff16156115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b4906139af565b60405180910390fd5b6001601360146101000a81548160ff0219169083151502179055506115e38160586128d5565b50565b6115ee612807565b73ffffffffffffffffffffffffffffffffffffffff1661160c61142f565b73ffffffffffffffffffffffffffffffffffffffff1614611662576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611659906139ef565b60405180910390fd5b80600b8190555050565b60028181600281111561168257611681613e78565b5b601060009054906101000a900460ff1660028111156116a4576116a3613e78565b5b146116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db9061394f565b60405180910390fd5b600954816116f06128f3565b6116fa9190613b1f565b111561173b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117329061398f565b60405180910390fd5b600b5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117899190613b1f565b11156117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c1906138cf565b60405180910390fd5b6000600a54846117d86128f3565b6117e29190613b1f565b11156117fb57600e54846117f69190613ba6565b6117fe565b60005b905080341015611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a9061392f565b60405180910390fd5b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118929190613b1f565b925050819055506118a333856128d5565b50505050565b6118b1612450565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611916576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611923612450565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119d0612450565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a15919061385c565b60405180910390a35050565b600281816002811115611a3757611a36613e78565b5b601060009054906101000a900460ff166002811115611a5957611a58613e78565b5b14611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a909061394f565b60405180910390fd5b60095481611aa56128f3565b611aaf9190613b1f565b1115611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae79061398f565b60405180910390fd5b600b5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b3e9190613b1f565b1115611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b76906138cf565b60405180910390fd5b600033604051602001611b9291906137a1565b604051602081830303815290604052805190602001209050611bf8868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060125483612906565b611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e9061390f565b60405180910390fd5b600f5484611c459190613ba6565b341015611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e9061392f565b60405180910390fd5b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd69190613b1f565b92505081905550611ce733856128d5565b505050505050565b611cfa84848461245d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d5c57611d258484848461291d565b611d5b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611d6a612807565b73ffffffffffffffffffffffffffffffffffffffff16611d8861142f565b73ffffffffffffffffffffffffffffffffffffffff1614611dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd5906139ef565b60405180910390fd5b80600f8190555050565b6060611df382612323565b611e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2990613a0f565b60405180910390fd5b6000600c8054611e4190613d19565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6d90613d19565b8015611eba5780601f10611e8f57610100808354040283529160200191611eba565b820191906000526020600020905b815481529060010190602001808311611e9d57829003601f168201915b505050505090506000815111611f5a57600d8054611ed790613d19565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0390613d19565b8015611f505780601f10611f2557610100808354040283529160200191611f50565b820191906000526020600020905b815481529060010190602001808311611f3357829003601f168201915b5050505050611f85565b80611f6484612a7d565b604051602001611f759291906137bc565b6040516020818303038152906040525b915050919050565b60095481565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612035612807565b73ffffffffffffffffffffffffffffffffffffffff1661205361142f565b73ffffffffffffffffffffffffffffffffffffffff16146120a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a0906139ef565b60405180910390fd5b80600d90805190602001906120bf929190612f3f565b5050565b6120cb612807565b73ffffffffffffffffffffffffffffffffffffffff166120e961142f565b73ffffffffffffffffffffffffffffffffffffffff161461213f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612136906139ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a6906138ef565b60405180910390fd5b6121b88161280f565b50565b6121c3612807565b73ffffffffffffffffffffffffffffffffffffffff166121e161142f565b73ffffffffffffffffffffffffffffffffffffffff1614612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222e906139ef565b60405180910390fd5b80600e8190555050565b612249612807565b73ffffffffffffffffffffffffffffffffffffffff1661226761142f565b73ffffffffffffffffffffffffffffffffffffffff16146122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b4906139ef565b60405180910390fd5b80600a8190555050565b601060009054906101000a900460ff1681565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008161232e612458565b1115801561233d575060005482105b801561237b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080612391612458565b11612419576000548110156124185760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612416575b600081141561240c5760046000836001900393508381526020019081526020016000205490506123e1565b809250505061244b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061246882612382565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124cf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124f0612450565b73ffffffffffffffffffffffffffffffffffffffff16148061251f575061251e85612519612450565b611f99565b5b80612564575061252d612450565b73ffffffffffffffffffffffffffffffffffffffff1661254c84610a9e565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061259d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612604576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126118585856001612bde565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61270e86612be4565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612798576000600184019050600060046000838152602001908152602001600020541415612796576000548114612795578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128008585856001612bee565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128ef828260405180602001604052806000815250612bf4565b5050565b60006128fd612458565b60005403905090565b6000826129138584612ea9565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612943612450565b8786866040518563ffffffff1660e01b81526004016129659493929190613810565b602060405180830381600087803b15801561297f57600080fd5b505af19250505080156129b057506040513d601f19601f820116820180604052508101906129ad9190613428565b60015b612a2a573d80600081146129e0576040519150601f19603f3d011682016040523d82523d6000602084013e6129e5565b606091505b50600081511415612a22576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612ac5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bd9565b600082905060005b60008214612af7578080612ae090613d7c565b915050600a82612af09190613b75565b9150612acd565b60008167ffffffffffffffff811115612b1357612b12613f05565b5b6040519080825280601f01601f191660200182016040528015612b455781602001600182028036833780820191505090505b5090505b60008514612bd257600182612b5e9190613c00565b9150600a85612b6d9190613de9565b6030612b799190613b1f565b60f81b818381518110612b8f57612b8e613ed6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bcb9190613b75565b9450612b49565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c61576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612c9c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ca96000858386612bde565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612d0e60018514612f1e565b901b60a042901b612d1e86612be4565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612e22575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dd2600087848060010195508761291d565b612e08576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612d63578260005414612e1d57600080fd5b612e8d565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612e23575b816000819055505050612ea36000858386612bee565b50505050565b60008082905060005b8451811015612f13576000858281518110612ed057612ecf613ed6565b5b60200260200101519050808311612ef257612eeb8382612f28565b9250612eff565b612efc8184612f28565b92505b508080612f0b90613d7c565b915050612eb2565b508091505092915050565b6000819050919050565b600082600052816020526040600020905092915050565b828054612f4b90613d19565b90600052602060002090601f016020900481019282612f6d5760008555612fb4565b82601f10612f8657805160ff1916838001178555612fb4565b82800160010185558215612fb4579182015b82811115612fb3578251825591602001919060010190612f98565b5b509050612fc19190612fc5565b5090565b5b80821115612fde576000816000905550600101612fc6565b5090565b6000612ff5612ff084613a6f565b613a4a565b90508281526020810184848401111561301157613010613f43565b5b61301c848285613cd7565b509392505050565b600061303761303284613aa0565b613a4a565b90508281526020810184848401111561305357613052613f43565b5b61305e848285613cd7565b509392505050565b60008135905061307581614254565b92915050565b60008083601f84011261309157613090613f39565b5b8235905067ffffffffffffffff8111156130ae576130ad613f34565b5b6020830191508360208202830111156130ca576130c9613f3e565b5b9250929050565b6000813590506130e08161426b565b92915050565b6000813590506130f581614282565b92915050565b60008135905061310a81614299565b92915050565b60008151905061311f81614299565b92915050565b600082601f83011261313a57613139613f39565b5b813561314a848260208601612fe2565b91505092915050565b600081359050613162816142b0565b92915050565b600082601f83011261317d5761317c613f39565b5b813561318d848260208601613024565b91505092915050565b6000813590506131a5816142c0565b92915050565b6000602082840312156131c1576131c0613f4d565b5b60006131cf84828501613066565b91505092915050565b600080604083850312156131ef576131ee613f4d565b5b60006131fd85828601613066565b925050602061320e85828601613066565b9150509250929050565b60008060006060848603121561323157613230613f4d565b5b600061323f86828701613066565b935050602061325086828701613066565b925050604061326186828701613196565b9150509250925092565b6000806000806080858703121561328557613284613f4d565b5b600061329387828801613066565b94505060206132a487828801613066565b93505060406132b587828801613196565b925050606085013567ffffffffffffffff8111156132d6576132d5613f48565b5b6132e287828801613125565b91505092959194509250565b6000806040838503121561330557613304613f4d565b5b600061331385828601613066565b9250506020613324858286016130d1565b9150509250929050565b6000806040838503121561334557613344613f4d565b5b600061335385828601613066565b925050602061336485828601613196565b9150509250929050565b60008060006040848603121561338757613386613f4d565b5b600084013567ffffffffffffffff8111156133a5576133a4613f48565b5b6133b18682870161307b565b935093505060206133c486828701613196565b9150509250925092565b6000602082840312156133e4576133e3613f4d565b5b60006133f2848285016130e6565b91505092915050565b60006020828403121561341157613410613f4d565b5b600061341f848285016130fb565b91505092915050565b60006020828403121561343e5761343d613f4d565b5b600061344c84828501613110565b91505092915050565b60006020828403121561346b5761346a613f4d565b5b600061347984828501613153565b91505092915050565b60006020828403121561349857613497613f4d565b5b600082013567ffffffffffffffff8111156134b6576134b5613f48565b5b6134c284828501613168565b91505092915050565b6000602082840312156134e1576134e0613f4d565b5b60006134ef84828501613196565b91505092915050565b61350181613c34565b82525050565b61351861351382613c34565b613dc5565b82525050565b61352781613c46565b82525050565b61353681613c52565b82525050565b600061354782613ad1565b6135518185613ae7565b9350613561818560208601613ce6565b61356a81613f52565b840191505092915050565b61357e81613cc5565b82525050565b600061358f82613adc565b6135998185613b03565b93506135a9818560208601613ce6565b6135b281613f52565b840191505092915050565b60006135c882613adc565b6135d28185613b14565b93506135e2818560208601613ce6565b80840191505092915050565b60006135fb604383613b03565b915061360682613f70565b606082019050919050565b600061361e602683613b03565b915061362982613fe5565b604082019050919050565b6000613641601e83613b03565b915061364c82614034565b602082019050919050565b6000613664602983613b03565b915061366f8261405d565b604082019050919050565b6000613687601683613b03565b9150613692826140ac565b602082019050919050565b60006136aa601883613b03565b91506136b5826140d5565b602082019050919050565b60006136cd603883613b03565b91506136d8826140fe565b604082019050919050565b60006136f0602183613b03565b91506136fb8261414d565b604082019050919050565b6000613713601b83613b03565b915061371e8261419c565b602082019050919050565b6000613736602083613b03565b9150613741826141c5565b602082019050919050565b6000613759602f83613b03565b9150613764826141ee565b604082019050919050565b600061377c600083613af8565b91506137878261423d565b600082019050919050565b61379b81613cbb565b82525050565b60006137ad8284613507565b60148201915081905092915050565b60006137c882856135bd565b91506137d482846135bd565b91508190509392505050565b60006137eb8261376f565b9150819050919050565b600060208201905061380a60008301846134f8565b92915050565b600060808201905061382560008301876134f8565b61383260208301866134f8565b61383f6040830185613792565b8181036060830152613851818461353c565b905095945050505050565b6000602082019050613871600083018461351e565b92915050565b600060208201905061388c600083018461352d565b92915050565b60006020820190506138a76000830184613575565b92915050565b600060208201905081810360008301526138c78184613584565b905092915050565b600060208201905081810360008301526138e8816135ee565b9050919050565b6000602082019050818103600083015261390881613611565b9050919050565b6000602082019050818103600083015261392881613634565b9050919050565b6000602082019050818103600083015261394881613657565b9050919050565b600060208201905081810360008301526139688161367a565b9050919050565b600060208201905081810360008301526139888161369d565b9050919050565b600060208201905081810360008301526139a8816136c0565b9050919050565b600060208201905081810360008301526139c8816136e3565b9050919050565b600060208201905081810360008301526139e881613706565b9050919050565b60006020820190508181036000830152613a0881613729565b9050919050565b60006020820190508181036000830152613a288161374c565b9050919050565b6000602082019050613a446000830184613792565b92915050565b6000613a54613a65565b9050613a608282613d4b565b919050565b6000604051905090565b600067ffffffffffffffff821115613a8a57613a89613f05565b5b613a9382613f52565b9050602081019050919050565b600067ffffffffffffffff821115613abb57613aba613f05565b5b613ac482613f52565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b2a82613cbb565b9150613b3583613cbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b6a57613b69613e1a565b5b828201905092915050565b6000613b8082613cbb565b9150613b8b83613cbb565b925082613b9b57613b9a613e49565b5b828204905092915050565b6000613bb182613cbb565b9150613bbc83613cbb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bf557613bf4613e1a565b5b828202905092915050565b6000613c0b82613cbb565b9150613c1683613cbb565b925082821015613c2957613c28613e1a565b5b828203905092915050565b6000613c3f82613c9b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613c9682614240565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613cd082613c88565b9050919050565b82818337600083830152505050565b60005b83811015613d04578082015181840152602081019050613ce9565b83811115613d13576000848401525b50505050565b60006002820490506001821680613d3157607f821691505b60208210811415613d4557613d44613ea7565b5b50919050565b613d5482613f52565b810181811067ffffffffffffffff82111715613d7357613d72613f05565b5b80604052505050565b6000613d8782613cbb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dba57613db9613e1a565b5b600182019050919050565b6000613dd082613dd7565b9050919050565b6000613de282613f63565b9050919050565b6000613df482613cbb565b9150613dff83613cbb565b925082613e0f57613e0e613e49565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f42584e46543a204e756d626572206f662072657175657374656420746f6b656e60008201527f732077696c6c2065786365656420746865206c696d697420706572206163636f60208201527f756e740000000000000000000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f42584e46543a20596f7520617265206e6f742077686974656c69737465640000600082015250565b7f42584e46543a2045746865722076616c75652073656e74206973206e6f74207360008201527f756666696369656e740000000000000000000000000000000000000000000000602082015250565b7f42584e46543a204e6f74206f7065726174696f6e616c00000000000000000000600082015250565b7f42584e46543a205769746864726177616c206661696c65640000000000000000600082015250565b7f42584e46543a204e756d626572206f662072657175657374656420746f6b656e60008201527f732077696c6c20657863656564206d617820737570706c790000000000000000602082015250565b7f42584e46543a2054686520696e746572696f7220686173206265656e206d696e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f42584e46543a20496e73756666696369656e742062616c616e63650000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b6003811061425157614250613e78565b5b50565b61425d81613c34565b811461426857600080fd5b50565b61427481613c46565b811461427f57600080fd5b50565b61428b81613c52565b811461429657600080fd5b50565b6142a281613c5c565b81146142ad57600080fd5b50565b600381106142bd57600080fd5b50565b6142c981613cbb565b81146142d457600080fd5b5056fea2646970667358221220d76d49a3f8b6f82c45efc6b741fc2bb35179b0bdf429267d3e2e213aaeaf90b864736f6c63430008070033000000000000000000000000c41d68b025713f85baa75f127f6911859b014d4200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d4e657368727363376673415a4348657744384b45795067326b3252356a346f526d46315343577a79554766740000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80637cb6475911610139578063beafc89b116100b6578063f2c4ce1e1161007a578063f2c4ce1e1461086e578063f2fde38b14610897578063f4a0a528146108c0578063f676308a146108e9578063f9020e3314610912578063fddcb5ea1461093d57610251565b8063beafc89b14610775578063c87b56dd1461079e578063d5abeb01146107db578063e55f58bb14610806578063e985e9c51461083157610251565b80639cd14e0f116100fd5780639cd14e0f146106c2578063a0712d68146106eb578063a22cb46514610707578063a6d612f914610730578063b88d4fde1461074c57610251565b80637cb64759146105ef5780638da5cb5b146106185780638dc823011461064357806395d89b411461066e5780639c58faa11461069957610251565b80634891ad88116101d2578063685756851161019657806368575685146104f15780636c0360eb1461051c5780636f8b44b01461054757806370a0823114610570578063715018a6146105ad57806372250380146105c457610251565b80634891ad881461040e57806349f2553a146104375780635e1e1004146104605780636352211e146104895780636817c76c146104c657610251565b806323b872dd1161021957806323b872dd1461034f5780632e34979e146103785780632eb4a7ab146103a35780633ccfd60b146103ce57806342842e0e146103e557610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906133fb565b61097a565b60405161028a919061385c565b60405180910390f35b34801561029f57600080fd5b506102a8610a0c565b6040516102b591906138ad565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906134cb565b610a9e565b6040516102f291906137f5565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d919061332e565b610b1a565b005b34801561033057600080fd5b50610339610cc1565b6040516103469190613a2f565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613218565b610cd8565b005b34801561038457600080fd5b5061038d610ce8565b60405161039a9190613a2f565b60405180910390f35b3480156103af57600080fd5b506103b8610ced565b6040516103c59190613877565b60405180910390f35b3480156103da57600080fd5b506103e3610cf3565b005b3480156103f157600080fd5b5061040c60048036038101906104079190613218565b610e89565b005b34801561041a57600080fd5b5061043560048036038101906104309190613455565b610ea9565b005b34801561044357600080fd5b5061045e60048036038101906104599190613482565b610f52565b005b34801561046c57600080fd5b50610487600480360381019061048291906131ab565b610fe8565b005b34801561049557600080fd5b506104b060048036038101906104ab91906134cb565b6110a8565b6040516104bd91906137f5565b60405180910390f35b3480156104d257600080fd5b506104db6110ba565b6040516104e89190613a2f565b60405180910390f35b3480156104fd57600080fd5b506105066110c0565b6040516105139190613a2f565b60405180910390f35b34801561052857600080fd5b506105316110c6565b60405161053e91906138ad565b60405180910390f35b34801561055357600080fd5b5061056e600480360381019061056991906134cb565b611154565b005b34801561057c57600080fd5b50610597600480360381019061059291906131ab565b6111da565b6040516105a49190613a2f565b60405180910390f35b3480156105b957600080fd5b506105c2611293565b005b3480156105d057600080fd5b506105d961131b565b6040516105e691906138ad565b60405180910390f35b3480156105fb57600080fd5b50610616600480360381019061061191906133ce565b6113a9565b005b34801561062457600080fd5b5061062d61142f565b60405161063a91906137f5565b60405180910390f35b34801561064f57600080fd5b50610658611459565b6040516106659190613a2f565b60405180910390f35b34801561067a57600080fd5b5061068361145f565b60405161069091906138ad565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb91906131ab565b6114f1565b005b3480156106ce57600080fd5b506106e960048036038101906106e491906134cb565b6115e6565b005b610705600480360381019061070091906134cb565b61166c565b005b34801561071357600080fd5b5061072e600480360381019061072991906132ee565b6118a9565b005b61074a6004803603810190610745919061336e565b611a21565b005b34801561075857600080fd5b50610773600480360381019061076e919061326b565b611cef565b005b34801561078157600080fd5b5061079c600480360381019061079791906134cb565b611d62565b005b3480156107aa57600080fd5b506107c560048036038101906107c091906134cb565b611de8565b6040516107d291906138ad565b60405180910390f35b3480156107e757600080fd5b506107f0611f8d565b6040516107fd9190613a2f565b60405180910390f35b34801561081257600080fd5b5061081b611f93565b6040516108289190613a2f565b60405180910390f35b34801561083d57600080fd5b50610858600480360381019061085391906131d8565b611f99565b604051610865919061385c565b60405180910390f35b34801561087a57600080fd5b5061089560048036038101906108909190613482565b61202d565b005b3480156108a357600080fd5b506108be60048036038101906108b991906131ab565b6120c3565b005b3480156108cc57600080fd5b506108e760048036038101906108e291906134cb565b6121bb565b005b3480156108f557600080fd5b50610910600480360381019061090b91906134cb565b612241565b005b34801561091e57600080fd5b506109276122c7565b6040516109349190613892565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f91906131ab565b6122da565b6040516109719190613a2f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a055750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a1b90613d19565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4790613d19565b8015610a945780601f10610a6957610100808354040283529160200191610a94565b820191906000526020600020905b815481529060010190602001808311610a7757829003601f168201915b5050505050905090565b6000610aa982612323565b610adf576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2582612382565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b8d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bac612450565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f57610bd881610bd3612450565b611f99565b610c0e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ccb612458565b6001546000540303905090565b610ce383838361245d565b505050565b605881565b60125481565b610cfb612807565b73ffffffffffffffffffffffffffffffffffffffff16610d1961142f565b73ffffffffffffffffffffffffffffffffffffffff1614610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d66906139ef565b60405180910390fd5b600047905060008111610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906139cf565b60405180910390fd5b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610dff906137e0565b60006040518083038185875af1925050503d8060008114610e3c576040519150601f19603f3d011682016040523d82523d6000602084013e610e41565b606091505b5050905080610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c9061396f565b60405180910390fd5b5050565b610ea483838360405180602001604052806000815250611cef565b505050565b610eb1612807565b73ffffffffffffffffffffffffffffffffffffffff16610ecf61142f565b73ffffffffffffffffffffffffffffffffffffffff1614610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c906139ef565b60405180910390fd5b80601060006101000a81548160ff02191690836002811115610f4a57610f49613e78565b5b021790555050565b610f5a612807565b73ffffffffffffffffffffffffffffffffffffffff16610f7861142f565b73ffffffffffffffffffffffffffffffffffffffff1614610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc5906139ef565b60405180910390fd5b80600c9080519060200190610fe4929190612f3f565b5050565b610ff0612807565b73ffffffffffffffffffffffffffffffffffffffff1661100e61142f565b73ffffffffffffffffffffffffffffffffffffffff1614611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b906139ef565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006110b382612382565b9050919050565b600e5481565b600f5481565b600c80546110d390613d19565b80601f01602080910402602001604051908101604052809291908181526020018280546110ff90613d19565b801561114c5780601f106111215761010080835404028352916020019161114c565b820191906000526020600020905b81548152906001019060200180831161112f57829003601f168201915b505050505081565b61115c612807565b73ffffffffffffffffffffffffffffffffffffffff1661117a61142f565b73ffffffffffffffffffffffffffffffffffffffff16146111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c7906139ef565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611242576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61129b612807565b73ffffffffffffffffffffffffffffffffffffffff166112b961142f565b73ffffffffffffffffffffffffffffffffffffffff161461130f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611306906139ef565b60405180910390fd5b611319600061280f565b565b600d805461132890613d19565b80601f016020809104026020016040519081016040528092919081815260200182805461135490613d19565b80156113a15780601f10611376576101008083540402835291602001916113a1565b820191906000526020600020905b81548152906001019060200180831161138457829003601f168201915b505050505081565b6113b1612807565b73ffffffffffffffffffffffffffffffffffffffff166113cf61142f565b73ffffffffffffffffffffffffffffffffffffffff1614611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c906139ef565b60405180910390fd5b8060128190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b60606003805461146e90613d19565b80601f016020809104026020016040519081016040528092919081815260200182805461149a90613d19565b80156114e75780601f106114bc576101008083540402835291602001916114e7565b820191906000526020600020905b8154815290600101906020018083116114ca57829003601f168201915b5050505050905090565b6114f9612807565b73ffffffffffffffffffffffffffffffffffffffff1661151761142f565b73ffffffffffffffffffffffffffffffffffffffff161461156d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611564906139ef565b60405180910390fd5b601360149054906101000a900460ff16156115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b4906139af565b60405180910390fd5b6001601360146101000a81548160ff0219169083151502179055506115e38160586128d5565b50565b6115ee612807565b73ffffffffffffffffffffffffffffffffffffffff1661160c61142f565b73ffffffffffffffffffffffffffffffffffffffff1614611662576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611659906139ef565b60405180910390fd5b80600b8190555050565b60028181600281111561168257611681613e78565b5b601060009054906101000a900460ff1660028111156116a4576116a3613e78565b5b146116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db9061394f565b60405180910390fd5b600954816116f06128f3565b6116fa9190613b1f565b111561173b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117329061398f565b60405180910390fd5b600b5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117899190613b1f565b11156117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c1906138cf565b60405180910390fd5b6000600a54846117d86128f3565b6117e29190613b1f565b11156117fb57600e54846117f69190613ba6565b6117fe565b60005b905080341015611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a9061392f565b60405180910390fd5b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118929190613b1f565b925050819055506118a333856128d5565b50505050565b6118b1612450565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611916576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611923612450565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119d0612450565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a15919061385c565b60405180910390a35050565b600281816002811115611a3757611a36613e78565b5b601060009054906101000a900460ff166002811115611a5957611a58613e78565b5b14611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a909061394f565b60405180910390fd5b60095481611aa56128f3565b611aaf9190613b1f565b1115611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae79061398f565b60405180910390fd5b600b5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b3e9190613b1f565b1115611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b76906138cf565b60405180910390fd5b600033604051602001611b9291906137a1565b604051602081830303815290604052805190602001209050611bf8868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060125483612906565b611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e9061390f565b60405180910390fd5b600f5484611c459190613ba6565b341015611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e9061392f565b60405180910390fd5b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd69190613b1f565b92505081905550611ce733856128d5565b505050505050565b611cfa84848461245d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d5c57611d258484848461291d565b611d5b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611d6a612807565b73ffffffffffffffffffffffffffffffffffffffff16611d8861142f565b73ffffffffffffffffffffffffffffffffffffffff1614611dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd5906139ef565b60405180910390fd5b80600f8190555050565b6060611df382612323565b611e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2990613a0f565b60405180910390fd5b6000600c8054611e4190613d19565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6d90613d19565b8015611eba5780601f10611e8f57610100808354040283529160200191611eba565b820191906000526020600020905b815481529060010190602001808311611e9d57829003601f168201915b505050505090506000815111611f5a57600d8054611ed790613d19565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0390613d19565b8015611f505780601f10611f2557610100808354040283529160200191611f50565b820191906000526020600020905b815481529060010190602001808311611f3357829003601f168201915b5050505050611f85565b80611f6484612a7d565b604051602001611f759291906137bc565b6040516020818303038152906040525b915050919050565b60095481565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612035612807565b73ffffffffffffffffffffffffffffffffffffffff1661205361142f565b73ffffffffffffffffffffffffffffffffffffffff16146120a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a0906139ef565b60405180910390fd5b80600d90805190602001906120bf929190612f3f565b5050565b6120cb612807565b73ffffffffffffffffffffffffffffffffffffffff166120e961142f565b73ffffffffffffffffffffffffffffffffffffffff161461213f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612136906139ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a6906138ef565b60405180910390fd5b6121b88161280f565b50565b6121c3612807565b73ffffffffffffffffffffffffffffffffffffffff166121e161142f565b73ffffffffffffffffffffffffffffffffffffffff1614612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222e906139ef565b60405180910390fd5b80600e8190555050565b612249612807565b73ffffffffffffffffffffffffffffffffffffffff1661226761142f565b73ffffffffffffffffffffffffffffffffffffffff16146122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b4906139ef565b60405180910390fd5b80600a8190555050565b601060009054906101000a900460ff1681565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008161232e612458565b1115801561233d575060005482105b801561237b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080612391612458565b11612419576000548110156124185760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612416575b600081141561240c5760046000836001900393508381526020019081526020016000205490506123e1565b809250505061244b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061246882612382565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124cf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124f0612450565b73ffffffffffffffffffffffffffffffffffffffff16148061251f575061251e85612519612450565b611f99565b5b80612564575061252d612450565b73ffffffffffffffffffffffffffffffffffffffff1661254c84610a9e565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061259d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612604576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126118585856001612bde565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61270e86612be4565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612798576000600184019050600060046000838152602001908152602001600020541415612796576000548114612795578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128008585856001612bee565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128ef828260405180602001604052806000815250612bf4565b5050565b60006128fd612458565b60005403905090565b6000826129138584612ea9565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612943612450565b8786866040518563ffffffff1660e01b81526004016129659493929190613810565b602060405180830381600087803b15801561297f57600080fd5b505af19250505080156129b057506040513d601f19601f820116820180604052508101906129ad9190613428565b60015b612a2a573d80600081146129e0576040519150601f19603f3d011682016040523d82523d6000602084013e6129e5565b606091505b50600081511415612a22576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612ac5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bd9565b600082905060005b60008214612af7578080612ae090613d7c565b915050600a82612af09190613b75565b9150612acd565b60008167ffffffffffffffff811115612b1357612b12613f05565b5b6040519080825280601f01601f191660200182016040528015612b455781602001600182028036833780820191505090505b5090505b60008514612bd257600182612b5e9190613c00565b9150600a85612b6d9190613de9565b6030612b799190613b1f565b60f81b818381518110612b8f57612b8e613ed6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bcb9190613b75565b9450612b49565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c61576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612c9c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ca96000858386612bde565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612d0e60018514612f1e565b901b60a042901b612d1e86612be4565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612e22575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dd2600087848060010195508761291d565b612e08576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612d63578260005414612e1d57600080fd5b612e8d565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612e23575b816000819055505050612ea36000858386612bee565b50505050565b60008082905060005b8451811015612f13576000858281518110612ed057612ecf613ed6565b5b60200260200101519050808311612ef257612eeb8382612f28565b9250612eff565b612efc8184612f28565b92505b508080612f0b90613d7c565b915050612eb2565b508091505092915050565b6000819050919050565b600082600052816020526040600020905092915050565b828054612f4b90613d19565b90600052602060002090601f016020900481019282612f6d5760008555612fb4565b82601f10612f8657805160ff1916838001178555612fb4565b82800160010185558215612fb4579182015b82811115612fb3578251825591602001919060010190612f98565b5b509050612fc19190612fc5565b5090565b5b80821115612fde576000816000905550600101612fc6565b5090565b6000612ff5612ff084613a6f565b613a4a565b90508281526020810184848401111561301157613010613f43565b5b61301c848285613cd7565b509392505050565b600061303761303284613aa0565b613a4a565b90508281526020810184848401111561305357613052613f43565b5b61305e848285613cd7565b509392505050565b60008135905061307581614254565b92915050565b60008083601f84011261309157613090613f39565b5b8235905067ffffffffffffffff8111156130ae576130ad613f34565b5b6020830191508360208202830111156130ca576130c9613f3e565b5b9250929050565b6000813590506130e08161426b565b92915050565b6000813590506130f581614282565b92915050565b60008135905061310a81614299565b92915050565b60008151905061311f81614299565b92915050565b600082601f83011261313a57613139613f39565b5b813561314a848260208601612fe2565b91505092915050565b600081359050613162816142b0565b92915050565b600082601f83011261317d5761317c613f39565b5b813561318d848260208601613024565b91505092915050565b6000813590506131a5816142c0565b92915050565b6000602082840312156131c1576131c0613f4d565b5b60006131cf84828501613066565b91505092915050565b600080604083850312156131ef576131ee613f4d565b5b60006131fd85828601613066565b925050602061320e85828601613066565b9150509250929050565b60008060006060848603121561323157613230613f4d565b5b600061323f86828701613066565b935050602061325086828701613066565b925050604061326186828701613196565b9150509250925092565b6000806000806080858703121561328557613284613f4d565b5b600061329387828801613066565b94505060206132a487828801613066565b93505060406132b587828801613196565b925050606085013567ffffffffffffffff8111156132d6576132d5613f48565b5b6132e287828801613125565b91505092959194509250565b6000806040838503121561330557613304613f4d565b5b600061331385828601613066565b9250506020613324858286016130d1565b9150509250929050565b6000806040838503121561334557613344613f4d565b5b600061335385828601613066565b925050602061336485828601613196565b9150509250929050565b60008060006040848603121561338757613386613f4d565b5b600084013567ffffffffffffffff8111156133a5576133a4613f48565b5b6133b18682870161307b565b935093505060206133c486828701613196565b9150509250925092565b6000602082840312156133e4576133e3613f4d565b5b60006133f2848285016130e6565b91505092915050565b60006020828403121561341157613410613f4d565b5b600061341f848285016130fb565b91505092915050565b60006020828403121561343e5761343d613f4d565b5b600061344c84828501613110565b91505092915050565b60006020828403121561346b5761346a613f4d565b5b600061347984828501613153565b91505092915050565b60006020828403121561349857613497613f4d565b5b600082013567ffffffffffffffff8111156134b6576134b5613f48565b5b6134c284828501613168565b91505092915050565b6000602082840312156134e1576134e0613f4d565b5b60006134ef84828501613196565b91505092915050565b61350181613c34565b82525050565b61351861351382613c34565b613dc5565b82525050565b61352781613c46565b82525050565b61353681613c52565b82525050565b600061354782613ad1565b6135518185613ae7565b9350613561818560208601613ce6565b61356a81613f52565b840191505092915050565b61357e81613cc5565b82525050565b600061358f82613adc565b6135998185613b03565b93506135a9818560208601613ce6565b6135b281613f52565b840191505092915050565b60006135c882613adc565b6135d28185613b14565b93506135e2818560208601613ce6565b80840191505092915050565b60006135fb604383613b03565b915061360682613f70565b606082019050919050565b600061361e602683613b03565b915061362982613fe5565b604082019050919050565b6000613641601e83613b03565b915061364c82614034565b602082019050919050565b6000613664602983613b03565b915061366f8261405d565b604082019050919050565b6000613687601683613b03565b9150613692826140ac565b602082019050919050565b60006136aa601883613b03565b91506136b5826140d5565b602082019050919050565b60006136cd603883613b03565b91506136d8826140fe565b604082019050919050565b60006136f0602183613b03565b91506136fb8261414d565b604082019050919050565b6000613713601b83613b03565b915061371e8261419c565b602082019050919050565b6000613736602083613b03565b9150613741826141c5565b602082019050919050565b6000613759602f83613b03565b9150613764826141ee565b604082019050919050565b600061377c600083613af8565b91506137878261423d565b600082019050919050565b61379b81613cbb565b82525050565b60006137ad8284613507565b60148201915081905092915050565b60006137c882856135bd565b91506137d482846135bd565b91508190509392505050565b60006137eb8261376f565b9150819050919050565b600060208201905061380a60008301846134f8565b92915050565b600060808201905061382560008301876134f8565b61383260208301866134f8565b61383f6040830185613792565b8181036060830152613851818461353c565b905095945050505050565b6000602082019050613871600083018461351e565b92915050565b600060208201905061388c600083018461352d565b92915050565b60006020820190506138a76000830184613575565b92915050565b600060208201905081810360008301526138c78184613584565b905092915050565b600060208201905081810360008301526138e8816135ee565b9050919050565b6000602082019050818103600083015261390881613611565b9050919050565b6000602082019050818103600083015261392881613634565b9050919050565b6000602082019050818103600083015261394881613657565b9050919050565b600060208201905081810360008301526139688161367a565b9050919050565b600060208201905081810360008301526139888161369d565b9050919050565b600060208201905081810360008301526139a8816136c0565b9050919050565b600060208201905081810360008301526139c8816136e3565b9050919050565b600060208201905081810360008301526139e881613706565b9050919050565b60006020820190508181036000830152613a0881613729565b9050919050565b60006020820190508181036000830152613a288161374c565b9050919050565b6000602082019050613a446000830184613792565b92915050565b6000613a54613a65565b9050613a608282613d4b565b919050565b6000604051905090565b600067ffffffffffffffff821115613a8a57613a89613f05565b5b613a9382613f52565b9050602081019050919050565b600067ffffffffffffffff821115613abb57613aba613f05565b5b613ac482613f52565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b2a82613cbb565b9150613b3583613cbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b6a57613b69613e1a565b5b828201905092915050565b6000613b8082613cbb565b9150613b8b83613cbb565b925082613b9b57613b9a613e49565b5b828204905092915050565b6000613bb182613cbb565b9150613bbc83613cbb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bf557613bf4613e1a565b5b828202905092915050565b6000613c0b82613cbb565b9150613c1683613cbb565b925082821015613c2957613c28613e1a565b5b828203905092915050565b6000613c3f82613c9b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613c9682614240565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613cd082613c88565b9050919050565b82818337600083830152505050565b60005b83811015613d04578082015181840152602081019050613ce9565b83811115613d13576000848401525b50505050565b60006002820490506001821680613d3157607f821691505b60208210811415613d4557613d44613ea7565b5b50919050565b613d5482613f52565b810181811067ffffffffffffffff82111715613d7357613d72613f05565b5b80604052505050565b6000613d8782613cbb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dba57613db9613e1a565b5b600182019050919050565b6000613dd082613dd7565b9050919050565b6000613de282613f63565b9050919050565b6000613df482613cbb565b9150613dff83613cbb565b925082613e0f57613e0e613e49565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f42584e46543a204e756d626572206f662072657175657374656420746f6b656e60008201527f732077696c6c2065786365656420746865206c696d697420706572206163636f60208201527f756e740000000000000000000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f42584e46543a20596f7520617265206e6f742077686974656c69737465640000600082015250565b7f42584e46543a2045746865722076616c75652073656e74206973206e6f74207360008201527f756666696369656e740000000000000000000000000000000000000000000000602082015250565b7f42584e46543a204e6f74206f7065726174696f6e616c00000000000000000000600082015250565b7f42584e46543a205769746864726177616c206661696c65640000000000000000600082015250565b7f42584e46543a204e756d626572206f662072657175657374656420746f6b656e60008201527f732077696c6c20657863656564206d617820737570706c790000000000000000602082015250565b7f42584e46543a2054686520696e746572696f7220686173206265656e206d696e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f42584e46543a20496e73756666696369656e742062616c616e63650000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b6003811061425157614250613e78565b5b50565b61425d81613c34565b811461426857600080fd5b50565b61427481613c46565b811461427f57600080fd5b50565b61428b81613c52565b811461429657600080fd5b50565b6142a281613c5c565b81146142ad57600080fd5b50565b600381106142bd57600080fd5b50565b6142c981613cbb565b81146142d457600080fd5b5056fea2646970667358221220d76d49a3f8b6f82c45efc6b741fc2bb35179b0bdf429267d3e2e213aaeaf90b864736f6c63430008070033

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

000000000000000000000000c41d68b025713f85baa75f127f6911859b014d4200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d4e657368727363376673415a4348657744384b45795067326b3252356a346f526d46315343577a79554766740000000000000000000000

-----Decoded View---------------
Arg [0] : paymentAddress (address): 0xc41D68B025713f85bAA75F127F6911859b014D42
Arg [1] : _notRevealedURI (string): ipfs://QmNeshrsc7fsAZCHewD8KEyPg2k2R5j4oRmF1SCWzyUGft

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000c41d68b025713f85baa75f127f6911859b014d42
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d4e657368727363376673415a4348657744384b45795067
Arg [4] : 326b3252356a346f526d46315343577a79554766740000000000000000000000


Deployed Bytecode Sourcemap

190:5005:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5031:615:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10044:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12112:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11572:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4085:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12998:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;404:44:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;731:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4692:302;;;;;;;;;;;;;:::i;:::-;;13239:185:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2117:108:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2747:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1947:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9833:144:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;524:36:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;569:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;457:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1616:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5710:224:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:6;;;;;;;;;;;;;:::i;:::-;;487:28:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2461:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1029:85:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;356:39:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10213:104:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4455:229:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1825:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3974:473;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12388:308:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3360:606:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13495:396:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2342:111:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2854:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;274:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;313:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12767:164:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2570:169:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1911:198:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2233:101:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1718:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;617:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5002:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5031:615:2;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;404:44:0:-;446:2;404:44;:::o;731:94::-;;;;:::o;4692:302::-;1252:12:6;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4751:15:0::1;4769:21;4751:39;;4819:1;4809:7;:11;4801:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;4864:12;4890:15;;;;;;;;;;;4882:29;;4919:7;4882:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4863:68;;;4950:7;4942:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;4740:254;;4692:302::o:0;13239:185:2:-;13377:39;13394:4;13400:2;13404:7;13377:39;;;;;;;;;;;;:16;:39::i;:::-;13239:185;;;:::o;2117:108:0:-;1252:12:6;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2211:6:0::1;2198:10;;:19;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;2117:108:::0;:::o;2747:99::-;1252:12:6;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2835:3:0::1;2825:7;:13;;;;;;;;;;;;:::i;:::-;;2747:99:::0;:::o;1947:162::-;1252:12:6;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2087:14:0::1;2069:15;;:32;;;;;;;;;;;;;;;;;;1947:162:::0;:::o;9833:144:2:-;9897:7;9940:27;9959:7;9940:18;:27::i;:::-;9917:52;;9833:144;;;:::o;524:36:0:-;;;;:::o;569:39::-;;;;:::o;457:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1616:94::-;1252:12:6;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1696:6:0::1;1684:9;:18;;;;1616:94:::0;:::o;5710:224:2:-;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;1661:101:6:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;487:28:0:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2461:101::-;1252:12:6;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2550:4:0::1;2537:10;:17;;;;2461:101:::0;:::o;1029:85:6:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;356:39:0:-;;;;:::o;10213:104:2:-;10269:13;10302:7;10295:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10213:104;:::o;4455:229:0:-;1252:12:6;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4543:15:0::1;;;;;;;;;;;4542:16;4534:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4625:4;4607:15;;:22;;;;;;;;;;;;;;;;;;4640:36;4650:8;446:2;4640:9;:36::i;:::-;4455:229:::0;:::o;1825:114::-;1252:12:6;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1926:5:0::1;1903:20;:28;;;;1825:114:::0;:::o;3974:473::-;4075:17;4094:5;1219:6;1205:20;;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:20;;;;;;;;:::i;:::-;;;1197:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1311:9;;1302:5;1285:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;1263:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;1473:20;;1464:5;1437:12;:24;1450:10;1437:24;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:56;;1415:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;4117:21:::1;4191:13;;4182:5;4165:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:39;;:63;;4218:9;;4210:5;:17;;;;:::i;:::-;4165:63;;;4206:1;4165:63;4149:79;;4274:13;4261:9;:26;;4239:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;4395:5;4367:12;:24;4380:10;4367:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;4411:28;4421:10;4433:5;4411:9;:28::i;:::-;4106:341;3974:473:::0;;;:::o;12388:308:2:-;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;3360:606:0:-;3502:17;3521:5;1219:6;1205:20;;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:20;;;;;;;;:::i;:::-;;;1197:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1311:9;;1302:5;1285:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;1263:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;1473:20;;1464:5;1437:12;:24;1450:10;1437:24;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:56;;1415:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;3544:12:::1;3586:10;3569:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;3559:39;;;;;;3544:54;;3631:49;3650:11;;3631:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3663:10;;3675:4;3631:18;:49::i;:::-;3609:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;3792:14;;3784:5;:22;;;;:::i;:::-;3771:9;:35;;3749:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;3914:5;3886:12;:24;3899:10;3886:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;3930:28;3940:10;3952:5;3930:9;:28::i;:::-;3533:433;3360:606:::0;;;;;:::o;13495:396:2:-;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;2342:111:0:-;1252:12:6;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2440:5:0::1;2423:14;:22;;;;2342:111:::0;:::o;2854:498::-;2972:13;3025:16;3033:7;3025;:16::i;:::-;3003:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;3129:28;3160:7;3129:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3229:1;3204:14;3198:28;:32;:146;;3330:14;3198:146;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3274:14;3290:18;:7;:16;:18::i;:::-;3257:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3198:146;3178:166;;;2854:498;;;:::o;274:30::-;;;;:::o;313:34::-;;;;:::o;12767:164:2:-;12864:4;12888:18;:25;12907:5;12888:25;;;;;;;;;;;;;;;:35;12914:8;12888:35;;;;;;;;;;;;;;;;;;;;;;;;;12881:42;;12767:164;;;;:::o;2570:169:0:-;1252:12:6;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2716:15:0::1;2699:14;:32;;;;;;;;;;;;:::i;:::-;;2570:169:::0;:::o;1911:198:6:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2019:1:::1;1999:22;;:8;:22;;;;1991:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;2233:101:0:-;1252:12:6;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2321:5:0::1;2309:9;:17;;;;2233:101:::0;:::o;1718:99::-;1252:12:6;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1803:6:0::1;1787:13;:22;;;;1718:99:::0;:::o;617:48::-;;;;;;;;;;;;;:::o;5002:190::-;5127:7;5159:12;:25;5172:11;5159:25;;;;;;;;;;;;;;;;5152:32;;5002:190;;;:::o;14146:273:2:-;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;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;2263:187:6:-;2336:16;2355:6;;;;;;;;;;;2336:25;;2380:8;2371:6;;:17;;;;;;;;;;;;;;;;;;2434:8;2403:40;;2424:8;2403:40;;;;;;;;;;;;2326:124;2263:187;:::o;14503:104:2:-;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;1154:184:5:-;1275:4;1327;1298:25;1311:5;1318:4;1298:12;:25::i;:::-;:33;1291:40;;1154:184;;;;;:::o;25597:716:2:-;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;328:703:7:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;26961:159:2:-;;;;;:::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;1689:662:5:-;1772:7;1791:20;1814:4;1791:27;;1833:9;1828:488;1852:5;:12;1848:1;:16;1828:488;;;1885:20;1908:5;1914:1;1908:8;;;;;;;;:::i;:::-;;;;;;;;1885:31;;1950:12;1934;:28;1930:376;;2075:42;2090:12;2104;2075:14;:42::i;:::-;2060:57;;1930:376;;;2249:42;2264:12;2278;2249:14;:42::i;:::-;2234:57;;1930:376;1871:445;1866:3;;;;;:::i;:::-;;;;1828:488;;;;2332:12;2325:19;;;1689:662;;;;:::o;11368:142:2:-;11426:14;11487:5;11477:15;;11368:142;;;:::o;2357:218:5:-;2425:13;2486:1;2480:4;2473:15;2514:1;2508:4;2501:15;2554:4;2548;2538:21;2529:30;;2357:218;;;;:::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:::-;15149:3;15170:67;15234:2;15229:3;15170:67;:::i;:::-;15163:74;;15246:93;15335:3;15246:93;:::i;:::-;15364:2;15359:3;15355:12;15348:19;;15007:366;;;:::o;15379:398::-;15538:3;15559:83;15640:1;15635:3;15559:83;:::i;:::-;15552:90;;15651:93;15740:3;15651:93;:::i;:::-;15769:1;15764:3;15760:11;15753:18;;15379:398;;;:::o;15783:118::-;15870:24;15888:5;15870:24;:::i;:::-;15865:3;15858:37;15783:118;;:::o;15907:256::-;16019:3;16034:75;16105:3;16096:6;16034:75;:::i;:::-;16134:2;16129:3;16125:12;16118:19;;16154:3;16147:10;;15907:256;;;;:::o;16169:435::-;16349:3;16371:95;16462:3;16453:6;16371:95;:::i;:::-;16364:102;;16483:95;16574:3;16565:6;16483:95;:::i;:::-;16476:102;;16595:3;16588:10;;16169:435;;;;;:::o;16610:379::-;16794:3;16816:147;16959:3;16816:147;:::i;:::-;16809:154;;16980:3;16973:10;;16610:379;;;:::o;16995:222::-;17088:4;17126:2;17115:9;17111:18;17103:26;;17139:71;17207:1;17196:9;17192:17;17183:6;17139:71;:::i;:::-;16995:222;;;;:::o;17223:640::-;17418:4;17456:3;17445:9;17441:19;17433:27;;17470:71;17538:1;17527:9;17523:17;17514:6;17470:71;:::i;:::-;17551:72;17619:2;17608:9;17604:18;17595:6;17551:72;:::i;:::-;17633;17701:2;17690:9;17686:18;17677:6;17633:72;:::i;:::-;17752:9;17746:4;17742:20;17737:2;17726:9;17722:18;17715:48;17780:76;17851:4;17842:6;17780:76;:::i;:::-;17772:84;;17223:640;;;;;;;:::o;17869:210::-;17956:4;17994:2;17983:9;17979:18;17971:26;;18007:65;18069:1;18058:9;18054:17;18045:6;18007:65;:::i;:::-;17869:210;;;;:::o;18085:222::-;18178:4;18216:2;18205:9;18201:18;18193:26;;18229:71;18297:1;18286:9;18282:17;18273:6;18229:71;:::i;:::-;18085:222;;;;:::o;18313:248::-;18419:4;18457:2;18446:9;18442:18;18434:26;;18470:84;18551:1;18540:9;18536:17;18527:6;18470:84;:::i;:::-;18313:248;;;;:::o;18567:313::-;18680:4;18718:2;18707:9;18703:18;18695:26;;18767:9;18761:4;18757:20;18753:1;18742:9;18738:17;18731:47;18795:78;18868:4;18859:6;18795:78;:::i;:::-;18787:86;;18567:313;;;;:::o;18886:419::-;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:131;19293:4;19167:131;:::i;:::-;19159:139;;18886:419;;;:::o;19311:::-;19477:4;19515:2;19504:9;19500:18;19492:26;;19564:9;19558:4;19554:20;19550:1;19539:9;19535:17;19528:47;19592:131;19718:4;19592:131;:::i;:::-;19584:139;;19311:419;;;:::o;19736:::-;19902:4;19940:2;19929:9;19925:18;19917:26;;19989:9;19983:4;19979:20;19975:1;19964:9;19960:17;19953:47;20017:131;20143:4;20017:131;:::i;:::-;20009:139;;19736:419;;;:::o;20161:::-;20327:4;20365:2;20354:9;20350:18;20342:26;;20414:9;20408:4;20404:20;20400:1;20389:9;20385:17;20378:47;20442:131;20568:4;20442:131;:::i;:::-;20434:139;;20161:419;;;:::o;20586:::-;20752:4;20790:2;20779:9;20775:18;20767:26;;20839:9;20833:4;20829:20;20825:1;20814:9;20810:17;20803:47;20867:131;20993:4;20867:131;:::i;:::-;20859:139;;20586:419;;;:::o;21011:::-;21177:4;21215:2;21204:9;21200:18;21192:26;;21264:9;21258:4;21254:20;21250:1;21239:9;21235:17;21228:47;21292:131;21418:4;21292:131;:::i;:::-;21284:139;;21011:419;;;:::o;21436:::-;21602:4;21640:2;21629:9;21625:18;21617:26;;21689:9;21683:4;21679:20;21675:1;21664:9;21660:17;21653:47;21717:131;21843:4;21717:131;:::i;:::-;21709:139;;21436:419;;;:::o;21861:::-;22027:4;22065:2;22054:9;22050:18;22042:26;;22114:9;22108:4;22104:20;22100:1;22089:9;22085:17;22078:47;22142:131;22268:4;22142:131;:::i;:::-;22134:139;;21861:419;;;:::o;22286:::-;22452:4;22490:2;22479:9;22475:18;22467:26;;22539:9;22533:4;22529:20;22525:1;22514:9;22510:17;22503:47;22567:131;22693:4;22567:131;:::i;:::-;22559:139;;22286:419;;;:::o;22711:::-;22877:4;22915:2;22904:9;22900:18;22892:26;;22964:9;22958:4;22954:20;22950:1;22939:9;22935:17;22928:47;22992:131;23118:4;22992:131;:::i;:::-;22984:139;;22711:419;;;:::o;23136:::-;23302:4;23340:2;23329:9;23325:18;23317:26;;23389:9;23383:4;23379:20;23375:1;23364:9;23360:17;23353:47;23417:131;23543:4;23417:131;:::i;:::-;23409:139;;23136:419;;;:::o;23561:222::-;23654:4;23692:2;23681:9;23677:18;23669:26;;23705:71;23773:1;23762:9;23758:17;23749:6;23705:71;:::i;:::-;23561:222;;;;:::o;23789:129::-;23823:6;23850:20;;:::i;:::-;23840:30;;23879:33;23907:4;23899:6;23879:33;:::i;:::-;23789:129;;;:::o;23924:75::-;23957:6;23990:2;23984:9;23974:19;;23924:75;:::o;24005:307::-;24066:4;24156:18;24148:6;24145:30;24142:56;;;24178:18;;:::i;:::-;24142:56;24216:29;24238:6;24216:29;:::i;:::-;24208:37;;24300:4;24294;24290:15;24282:23;;24005:307;;;:::o;24318:308::-;24380:4;24470:18;24462:6;24459:30;24456:56;;;24492:18;;:::i;:::-;24456:56;24530:29;24552:6;24530:29;:::i;:::-;24522:37;;24614:4;24608;24604:15;24596:23;;24318:308;;;:::o;24632:98::-;24683:6;24717:5;24711:12;24701:22;;24632:98;;;:::o;24736:99::-;24788:6;24822:5;24816:12;24806:22;;24736:99;;;:::o;24841:168::-;24924:11;24958:6;24953:3;24946:19;24998:4;24993:3;24989:14;24974:29;;24841:168;;;;:::o;25015:147::-;25116:11;25153:3;25138:18;;25015:147;;;;:::o;25168:169::-;25252:11;25286:6;25281:3;25274:19;25326:4;25321:3;25317:14;25302:29;;25168:169;;;;:::o;25343:148::-;25445:11;25482:3;25467:18;;25343:148;;;;:::o;25497:305::-;25537:3;25556:20;25574:1;25556:20;:::i;:::-;25551:25;;25590:20;25608:1;25590:20;:::i;:::-;25585:25;;25744:1;25676:66;25672:74;25669:1;25666:81;25663:107;;;25750:18;;:::i;:::-;25663:107;25794:1;25791;25787:9;25780:16;;25497:305;;;;:::o;25808:185::-;25848:1;25865:20;25883:1;25865:20;:::i;:::-;25860:25;;25899:20;25917:1;25899:20;:::i;:::-;25894:25;;25938:1;25928:35;;25943:18;;:::i;:::-;25928:35;25985:1;25982;25978:9;25973:14;;25808:185;;;;:::o;25999:348::-;26039:7;26062:20;26080:1;26062:20;:::i;:::-;26057:25;;26096:20;26114:1;26096:20;:::i;:::-;26091:25;;26284:1;26216:66;26212:74;26209:1;26206:81;26201:1;26194:9;26187:17;26183:105;26180:131;;;26291:18;;:::i;:::-;26180:131;26339:1;26336;26332:9;26321:20;;25999:348;;;;:::o;26353:191::-;26393:4;26413:20;26431:1;26413:20;:::i;:::-;26408:25;;26447:20;26465:1;26447:20;:::i;:::-;26442:25;;26486:1;26483;26480:8;26477:34;;;26491:18;;:::i;:::-;26477:34;26536:1;26533;26529:9;26521:17;;26353:191;;;;:::o;26550:96::-;26587:7;26616:24;26634:5;26616:24;:::i;:::-;26605:35;;26550:96;;;:::o;26652:90::-;26686:7;26729:5;26722:13;26715:21;26704:32;;26652:90;;;:::o;26748:77::-;26785:7;26814:5;26803:16;;26748:77;;;:::o;26831:149::-;26867:7;26907:66;26900:5;26896:78;26885:89;;26831:149;;;:::o;26986:141::-;27038:7;27067:5;27056:16;;27073:48;27115:5;27073:48;:::i;:::-;26986:141;;;:::o;27133:126::-;27170:7;27210:42;27203:5;27199:54;27188:65;;27133:126;;;:::o;27265:77::-;27302:7;27331:5;27320:16;;27265:77;;;:::o;27348:141::-;27411:9;27444:39;27477:5;27444:39;:::i;:::-;27431:52;;27348:141;;;:::o;27495:154::-;27579:6;27574:3;27569;27556:30;27641:1;27632:6;27627:3;27623:16;27616:27;27495:154;;;:::o;27655:307::-;27723:1;27733:113;27747:6;27744:1;27741:13;27733:113;;;27832:1;27827:3;27823:11;27817:18;27813:1;27808:3;27804:11;27797:39;27769:2;27766:1;27762:10;27757:15;;27733:113;;;27864:6;27861:1;27858:13;27855:101;;;27944:1;27935:6;27930:3;27926:16;27919:27;27855:101;27704:258;27655:307;;;:::o;27968:320::-;28012:6;28049:1;28043:4;28039:12;28029:22;;28096:1;28090:4;28086:12;28117:18;28107:81;;28173:4;28165:6;28161:17;28151:27;;28107:81;28235:2;28227:6;28224:14;28204:18;28201:38;28198:84;;;28254:18;;:::i;:::-;28198:84;28019:269;27968:320;;;:::o;28294:281::-;28377:27;28399:4;28377:27;:::i;:::-;28369:6;28365:40;28507:6;28495:10;28492:22;28471:18;28459:10;28456:34;28453:62;28450:88;;;28518:18;;:::i;:::-;28450:88;28558:10;28554:2;28547:22;28337:238;28294:281;;:::o;28581:233::-;28620:3;28643:24;28661:5;28643:24;:::i;:::-;28634:33;;28689:66;28682:5;28679:77;28676:103;;;28759:18;;:::i;:::-;28676:103;28806:1;28799:5;28795:13;28788:20;;28581:233;;;:::o;28820:100::-;28859:7;28888:26;28908:5;28888:26;:::i;:::-;28877:37;;28820:100;;;:::o;28926:94::-;28965:7;28994:20;29008:5;28994:20;:::i;:::-;28983:31;;28926:94;;;:::o;29026:176::-;29058:1;29075:20;29093:1;29075:20;:::i;:::-;29070:25;;29109:20;29127:1;29109:20;:::i;:::-;29104:25;;29148:1;29138:35;;29153:18;;:::i;:::-;29138:35;29194:1;29191;29187:9;29182:14;;29026:176;;;;:::o;29208:180::-;29256:77;29253:1;29246:88;29353:4;29350:1;29343:15;29377:4;29374:1;29367:15;29394:180;29442:77;29439:1;29432:88;29539:4;29536:1;29529:15;29563:4;29560:1;29553:15;29580:180;29628:77;29625:1;29618:88;29725:4;29722:1;29715:15;29749:4;29746:1;29739:15;29766:180;29814:77;29811:1;29804:88;29911:4;29908:1;29901:15;29935:4;29932:1;29925:15;29952:180;30000:77;29997:1;29990:88;30097:4;30094:1;30087:15;30121:4;30118:1;30111:15;30138:180;30186:77;30183:1;30176:88;30283:4;30280:1;30273:15;30307:4;30304:1;30297:15;30324:117;30433:1;30430;30423:12;30447:117;30556:1;30553;30546:12;30570:117;30679:1;30676;30669:12;30693:117;30802:1;30799;30792:12;30816:117;30925:1;30922;30915:12;30939:117;31048:1;31045;31038:12;31062:102;31103:6;31154:2;31150:7;31145:2;31138:5;31134:14;31130:28;31120:38;;31062:102;;;:::o;31170:94::-;31203:8;31251:5;31247:2;31243:14;31222:35;;31170:94;;;:::o;31270:291::-;31410:34;31406:1;31398:6;31394:14;31387:58;31479:34;31474:2;31466:6;31462:15;31455:59;31548:5;31543:2;31535:6;31531:15;31524:30;31270:291;:::o;31567:225::-;31707:34;31703:1;31695:6;31691:14;31684:58;31776:8;31771:2;31763:6;31759:15;31752:33;31567:225;:::o;31798:180::-;31938:32;31934:1;31926:6;31922:14;31915:56;31798:180;:::o;31984:228::-;32124:34;32120:1;32112:6;32108:14;32101:58;32193:11;32188:2;32180:6;32176:15;32169:36;31984:228;:::o;32218:172::-;32358:24;32354:1;32346:6;32342:14;32335:48;32218:172;:::o;32396:174::-;32536:26;32532:1;32524:6;32520:14;32513:50;32396:174;:::o;32576:243::-;32716:34;32712:1;32704:6;32700:14;32693:58;32785:26;32780:2;32772:6;32768:15;32761:51;32576:243;:::o;32825:220::-;32965:34;32961:1;32953:6;32949:14;32942:58;33034:3;33029:2;33021:6;33017:15;33010:28;32825:220;:::o;33051:177::-;33191:29;33187:1;33179:6;33175:14;33168:53;33051:177;:::o;33234:182::-;33374:34;33370:1;33362:6;33358:14;33351:58;33234:182;:::o;33422:234::-;33562:34;33558:1;33550:6;33546:14;33539:58;33631:17;33626:2;33618:6;33614:15;33607:42;33422:234;:::o;33662:114::-;;:::o;33782:120::-;33870:1;33863:5;33860:12;33850:46;;33876:18;;:::i;:::-;33850:46;33782:120;:::o;33908:122::-;33981:24;33999:5;33981:24;:::i;:::-;33974:5;33971:35;33961:63;;34020:1;34017;34010:12;33961:63;33908:122;:::o;34036:116::-;34106:21;34121:5;34106:21;:::i;:::-;34099:5;34096:32;34086:60;;34142:1;34139;34132:12;34086:60;34036:116;:::o;34158:122::-;34231:24;34249:5;34231:24;:::i;:::-;34224:5;34221:35;34211:63;;34270:1;34267;34260:12;34211:63;34158:122;:::o;34286:120::-;34358:23;34375:5;34358:23;:::i;:::-;34351:5;34348:34;34338:62;;34396:1;34393;34386:12;34338:62;34286:120;:::o;34412:114::-;34500:1;34493:5;34490:12;34480:40;;34516:1;34513;34506:12;34480:40;34412:114;:::o;34532:122::-;34605:24;34623:5;34605:24;:::i;:::-;34598:5;34595:35;34585:63;;34644:1;34641;34634:12;34585:63;34532:122;:::o

Swarm Source

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