ETH Price: $2,752.12 (+4.84%)

Token

CryptoCreamz (CC)
 

Overview

Max Total Supply

943 CC

Holders

388

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CC
0x89632e4277d61d3340f1a2a21398b37ce7740467
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:
CryptoCreamz

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : CryptoCreamz.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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



// ____                           __           ____
///\  _`\                        /\ \__       /\  _`\
//\ \ \/\_\  _ __   __  __  _____\ \ ,_\   ___\ \ \/\_\  _ __    __     __      ___ ___   ____
// \ \ \/_/_/\`'__\/\ \/\ \/\ '__`\ \ \/  / __`\ \ \/_/_/\`'__\/'__`\ /'__`\  /' __` __`\/\_ ,`\
//  \ \ \L\ \ \ \/ \ \ \_\ \ \ \L\ \ \ \_/\ \L\ \ \ \L\ \ \ \//\  __//\ \L\.\_/\ \/\ \/\ \/_/  /_
//   \ \____/\ \_\  \/`____ \ \ ,__/\ \__\ \____/\ \____/\ \_\\ \____\ \__/.\_\ \_\ \_\ \_\/\____\
//    \/___/  \/_/   `/___/> \ \ \/  \/__/\/___/  \/___/  \/_/ \/____/\/__/\/_/\/_/\/_/\/_/\/____/
//                      /\___/\ \_\
//                      \/__/  \/_/


//                                                      _     _
//  _ __     ___   __      __   ___   _ __    ___    __| |   | |__    _   _     _ __ ___    ___    __ _   _ __
// | '_ \   / _ \  \ \ /\ / /  / _ \ | '__|  / _ \  / _` |   | '_ \  | | | |   | '_ ` _ \  / __|  / _` | | '_ \
// | |_) | | (_) |  \ V  V /  |  __/ | |    |  __/ | (_| |   | |_) | | |_| |   | | | | | | \__ \ | (_| | | |_) |
// | .__/   \___/    \_/\_/    \___| |_|     \___|  \__,_|   |_.__/   \__, |   |_| |_| |_| |___/  \__, | | .__/
// |_|                                                                |___/                       |___/  |_|
contract CryptoCreamz is Ownable, ERC721A {

    string private _baseTokenURI;
    bool public isMSGPAuthorised = true;
    uint256 public immutable COLLECTION_SIZE = 3333;

    address BROKER_WALLET = 0xaEbA9F5fDcd60B180499Bb16011F2629759200Ea;
    address MARKETING_WALLET = 0x39f81debABb503ddE3520Ad13a7E7eE4ba9e297e;
    address MSGP_COMMUNITY_WALLET = 0x7F74136303A72EC17A079f5742a8136C0F19a21c;
    address MSGP_MINTER_WALLET = 0x9C22CE2DF2d3BED0EB6EEdE5CB36aa15DcC95cA6;
    address PARTNER_WALLET = 0x1852F816671f257E3B43c70A49aC6b6e44A337a4;

    constructor(string memory collectionName, string memory collectionAlias)
        ERC721A(collectionName, collectionAlias, COLLECTION_SIZE) {
    }

    modifier onlyMSGP() {
        require(isMSGPAuthorised, "onlyMSGP: MSGP is not authorised");
        require(MSGP_MINTER_WALLET == _msgSender(), "onlyMSGP: caller is not the MSGP");
        _;
    }

    function bulkMintMap(address[] memory who, uint256[] memory quantityList) public onlyMSGP {
        for (uint256 i = 0; i < who.length; i++) internalMint(who[i], quantityList[i]);
    }

    function internalMint(address to, uint256 quantity) internal virtual {
        require(totalSupply() + quantity <= COLLECTION_SIZE, "reached max supply");
        _safeMint(to, quantity);
    }

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

    function setBaseURIOwner(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setBaseURI(string calldata baseURI) external onlyMSGP {
        _baseTokenURI = baseURI;
    }

    function authoriseMSGPToggle() external onlyOwner {
        isMSGPAuthorised = !isMSGPAuthorised;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "NO FUNDS AVAILABLE");

        payable(msg.sender).transfer((balance * 65)/100);
        payable(PARTNER_WALLET).transfer((balance * 25)/100);
        payable(BROKER_WALLET).transfer((balance * 2)/100);
        payable(MARKETING_WALLET).transfer((balance * 2)/100);
        payable(MSGP_COMMUNITY_WALLET).transfer((balance * 3)/100);
        payable(MSGP_MINTER_WALLET).transfer((balance * 3)/100);
    }

    function setOwnersExplicit(uint256 quantity) external onlyOwner {
        _setOwnersExplicit(quantity);
    }

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

    function getOwnershipData(uint256 tokenId) external  view  returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }

    receive () external payable {}
}

File 2 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // 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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) private _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721A: balance query for the zero address");
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

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

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
     * @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 See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721A: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > currentIndex - 1) {
            endIndex = currentIndex - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(ownership.addr, ownership.startTimestamp);
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 3 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

File 4 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 5 of 12 : 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);
    }
}

File 6 of 12 : 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 7 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 8 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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 9 of 12 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 10 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 11 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"collectionName","type":"string"},{"internalType":"string","name":"collectionAlias","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"COLLECTION_SIZE","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":[],"name":"authoriseMSGPToggle","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":[{"internalType":"address[]","name":"who","type":"address[]"},{"internalType":"uint256[]","name":"quantityList","type":"uint256[]"}],"name":"bulkMintMap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMSGPAuthorised","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURIOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600060015560006008556001600a60006101000a81548160ff021916908315150217905550610d0560a09081525073aeba9f5fdcd60b180499bb16011f2629759200ea600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507339f81debabb503dde3520ad13a7e7ee4ba9e297e600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737f74136303a72ec17a079f5742a8136c0f19a21c600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739c22ce2df2d3bed0eb6eede5cb36aa15dcc95ca6600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731852f816671f257e3b43c70a49ac6b6e44a337a4600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001e857600080fd5b50604051620056183803806200561883398181016040528101906200020e9190620005d7565b818160a0516200023362000227620002be60201b60201c565b620002c660201b60201c565b6000811162000279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027090620006e3565b60405180910390fd5b8260029080519060200190620002919291906200038a565b508160039080519060200190620002aa9291906200038a565b50806080818152505050505050506200076a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003989062000734565b90600052602060002090601f016020900481019282620003bc576000855562000408565b82601f10620003d757805160ff191683800117855562000408565b8280016001018555821562000408579182015b8281111562000407578251825591602001919060010190620003ea565b5b5090506200041791906200041b565b5090565b5b80821115620004365760008160009055506001016200041c565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004a38262000458565b810181811067ffffffffffffffff82111715620004c557620004c462000469565b5b80604052505050565b6000620004da6200043a565b9050620004e8828262000498565b919050565b600067ffffffffffffffff8211156200050b576200050a62000469565b5b620005168262000458565b9050602081019050919050565b60005b838110156200054357808201518184015260208101905062000526565b8381111562000553576000848401525b50505050565b6000620005706200056a84620004ed565b620004ce565b9050828152602081018484840111156200058f576200058e62000453565b5b6200059c84828562000523565b509392505050565b600082601f830112620005bc57620005bb6200044e565b5b8151620005ce84826020860162000559565b91505092915050565b60008060408385031215620005f157620005f062000444565b5b600083015167ffffffffffffffff81111562000612576200061162000449565b5b6200062085828601620005a4565b925050602083015167ffffffffffffffff81111562000644576200064362000449565b5b6200065285828601620005a4565b9150509250929050565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6000620006cb6027836200065c565b9150620006d8826200066d565b604082019050919050565b60006020820190508181036000830152620006fe81620006bc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200074d57607f821691505b6020821081141562000764576200076362000705565b5b50919050565b60805160a051614e73620007a56000396000818161196801526127be015260008181612549015281816125720152612da20152614e736000f3fe6080604052600436106101d15760003560e01c806370a08231116100f7578063b88d4fde11610095578063dc33e68111610064578063dc33e6811461067f578063e176e3ba146106bc578063e985e9c5146106e5578063f2fde38b14610722576101d8565b8063b88d4fde146105c3578063c87b56dd146105ec578063d7224ba014610629578063d8258d9514610654576101d8565b80638da5cb5b116100d15780638da5cb5b146105075780639231ab2a1461053257806395d89b411461056f578063a22cb4651461059a576101d8565b806370a082311461048a578063715018a6146104c757806386d3781e146104de576101d8565b80632d20fb601161016f5780634f6ccce71161013e5780634f6ccce7146103bc57806355f804b3146103f95780636352211e146104225780636eca75651461045f576101d8565b80632d20fb60146103165780632f745c591461033f5780633ccfd60b1461037c57806342842e0e14610393576101d8565b8063081812fc116101ab578063081812fc1461025c578063095ea7b31461029957806318160ddd146102c257806323b872dd146102ed576101d8565b806301ffc9a7146101dd578063056dc27d1461021a57806306fdde0314610231576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190613309565b61074b565b6040516102119190613351565b60405180910390f35b34801561022657600080fd5b5061022f610895565b005b34801561023d57600080fd5b5061024661093d565b6040516102539190613405565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e919061345d565b6109cf565b60405161029091906134cb565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190613512565b610a54565b005b3480156102ce57600080fd5b506102d7610b6d565b6040516102e49190613561565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f919061357c565b610b77565b005b34801561032257600080fd5b5061033d6004803603810190610338919061345d565b610b87565b005b34801561034b57600080fd5b5061036660048036038101906103619190613512565b610c0f565b6040516103739190613561565b60405180910390f35b34801561038857600080fd5b50610391610e0d565b005b34801561039f57600080fd5b506103ba60048036038101906103b5919061357c565b6111b8565b005b3480156103c857600080fd5b506103e360048036038101906103de919061345d565b6111d8565b6040516103f09190613561565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b9190613634565b61122b565b005b34801561042e57600080fd5b506104496004803603810190610444919061345d565b611327565b60405161045691906134cb565b60405180910390f35b34801561046b57600080fd5b5061047461133d565b6040516104819190613351565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190613681565b611350565b6040516104be9190613561565b60405180910390f35b3480156104d357600080fd5b506104dc611439565b005b3480156104ea57600080fd5b50610505600480360381019061050091906138af565b6114c1565b005b34801561051357600080fd5b5061051c611609565b60405161052991906134cb565b60405180910390f35b34801561053e57600080fd5b506105596004803603810190610554919061345d565b611632565b6040516105669190613988565b60405180910390f35b34801561057b57600080fd5b5061058461164a565b6040516105919190613405565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc91906139cf565b6116dc565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190613ac4565b61185d565b005b3480156105f857600080fd5b50610613600480360381019061060e919061345d565b6118b9565b6040516106209190613405565b60405180910390f35b34801561063557600080fd5b5061063e611960565b60405161064b9190613561565b60405180910390f35b34801561066057600080fd5b50610669611966565b6040516106769190613561565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a19190613681565b61198a565b6040516106b39190613561565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190613634565b61199c565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613b47565b611a2e565b6040516107199190613351565b60405180910390f35b34801561072e57600080fd5b5061074960048036038101906107449190613681565b611ac2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088e575061088d82611bba565b5b9050919050565b61089d611c24565b73ffffffffffffffffffffffffffffffffffffffff166108bb611609565b73ffffffffffffffffffffffffffffffffffffffff1614610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090890613bd3565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b60606002805461094c90613c22565b80601f016020809104026020016040519081016040528092919081815260200182805461097890613c22565b80156109c55780601f1061099a576101008083540402835291602001916109c5565b820191906000526020600020905b8154815290600101906020018083116109a857829003601f168201915b5050505050905090565b60006109da82611c2c565b610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090613cc6565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5f82611327565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac790613d58565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aef611c24565b73ffffffffffffffffffffffffffffffffffffffff161480610b1e5750610b1d81610b18611c24565b611a2e565b5b610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5490613dea565b60405180910390fd5b610b68838383611c3a565b505050565b6000600154905090565b610b82838383611cec565b505050565b610b8f611c24565b73ffffffffffffffffffffffffffffffffffffffff16610bad611609565b73ffffffffffffffffffffffffffffffffffffffff1614610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90613bd3565b60405180910390fd5b610c0c816122a5565b50565b6000610c1a83611350565b8210610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290613e7c565b60405180910390fd5b6000610c65610b6d565b905060008060005b83811015610dcb576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d5f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db75786841415610da8578195505050505050610e07565b8380610db390613ecb565b9450505b508080610dc390613ecb565b915050610c6d565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90613f86565b60405180910390fd5b92915050565b610e15611c24565b73ffffffffffffffffffffffffffffffffffffffff16610e33611609565b73ffffffffffffffffffffffffffffffffffffffff1614610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090613bd3565b60405180910390fd5b600047905060008111610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890613ff2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc6064604184610efa9190614012565b610f04919061409b565b9081150290604051600060405180830381858888f19350505050158015610f2f573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601984610f7b9190614012565b610f85919061409b565b9081150290604051600060405180830381858888f19350505050158015610fb0573d6000803e3d6000fd5b50600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600284610ffc9190614012565b611006919061409b565b9081150290604051600060405180830381858888f19350505050158015611031573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460028461107d9190614012565b611087919061409b565b9081150290604051600060405180830381858888f193505050501580156110b2573d6000803e3d6000fd5b50600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646003846110fe9190614012565b611108919061409b565b9081150290604051600060405180830381858888f19350505050158015611133573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460038461117f9190614012565b611189919061409b565b9081150290604051600060405180830381858888f193505050501580156111b4573d6000803e3d6000fd5b5050565b6111d38383836040518060200160405280600081525061185d565b505050565b60006111e2610b6d565b8210611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a9061413e565b60405180910390fd5b819050919050565b600a60009054906101000a900460ff1661127a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611271906141aa565b60405180910390fd5b611282611c24565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130890614216565b60405180910390fd5b8181600991906113229291906131c0565b505050565b6000611332826124f5565b600001519050919050565b600a60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b8906142a8565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611441611c24565b73ffffffffffffffffffffffffffffffffffffffff1661145f611609565b73ffffffffffffffffffffffffffffffffffffffff16146114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90613bd3565b60405180910390fd5b6114bf60006126f8565b565b600a60009054906101000a900460ff16611510576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611507906141aa565b60405180910390fd5b611518611c24565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90614216565b60405180910390fd5b60005b8251811015611604576115f18382815181106115c9576115c86142c8565b5b60200260200101518383815181106115e4576115e36142c8565b5b60200260200101516127bc565b80806115fc90613ecb565b9150506115aa565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61163a613246565b611643826124f5565b9050919050565b60606003805461165990613c22565b80601f016020809104026020016040519081016040528092919081815260200182805461168590613c22565b80156116d25780601f106116a7576101008083540402835291602001916116d2565b820191906000526020600020905b8154815290600101906020018083116116b557829003601f168201915b5050505050905090565b6116e4611c24565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174990614343565b60405180910390fd5b806007600061175f611c24565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661180c611c24565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118519190613351565b60405180910390a35050565b611868848484611cec565b6118748484848461283f565b6118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa906143d5565b60405180910390fd5b50505050565b60606118c482611c2c565b611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90614467565b60405180910390fd5b600061190d6129c7565b9050600081511161192d5760405180602001604052806000815250611958565b8061193784612a59565b6040516020016119489291906144c3565b6040516020818303038152906040525b915050919050565b60085481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061199582612bba565b9050919050565b6119a4611c24565b73ffffffffffffffffffffffffffffffffffffffff166119c2611609565b73ffffffffffffffffffffffffffffffffffffffff1614611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90613bd3565b60405180910390fd5b818160099190611a299291906131c0565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aca611c24565b73ffffffffffffffffffffffffffffffffffffffff16611ae8611609565b73ffffffffffffffffffffffffffffffffffffffff1614611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590613bd3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590614559565b60405180910390fd5b611bb7816126f8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600060015482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611cf7826124f5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d1e611c24565b73ffffffffffffffffffffffffffffffffffffffff161480611d7a5750611d43611c24565b73ffffffffffffffffffffffffffffffffffffffff16611d62846109cf565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d965750611d958260000151611d90611c24565b611a2e565b5b905080611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf906145eb565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e419061467d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb19061470f565b60405180910390fd5b611ec78585856001612ca3565b611ed76000848460000151611c3a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f45919061474b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fe9919061477f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120ef91906147c5565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122355761216581611c2c565b15612234576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461229d8686866001612ca9565b505050505050565b60006008549050600082116122ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e690614867565b60405180910390fd5b6000600183836122ff91906147c5565b6123099190614887565b9050600180546123199190614887565b811115612331576001805461232e9190614887565b90505b61233a81611c2c565b612379576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123709061492d565b60405180910390fd5b60008290505b8181116124dc57600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124c95760006123fc826124f5565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806124d490613ecb565b91505061237f565b506001816124ea91906147c5565b600881905550505050565b6124fd613246565b61250682611c2c565b612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c906149bf565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106125a95760017f00000000000000000000000000000000000000000000000000000000000000008461259c9190614887565b6125a691906147c5565b90505b60008390505b8181106126b7576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126a3578093505050506126f3565b5080806126af906149df565b9150506125af565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ea90614a7b565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f0000000000000000000000000000000000000000000000000000000000000000816127e6610b6d565b6127f091906147c5565b1115612831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282890614ae7565b60405180910390fd5b61283b8282612caf565b5050565b60006128608473ffffffffffffffffffffffffffffffffffffffff16612ccd565b156129ba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612889611c24565b8786866040518563ffffffff1660e01b81526004016128ab9493929190614b5c565b6020604051808303816000875af19250505080156128e757506040513d601f19601f820116820180604052508101906128e49190614bbd565b60015b61296a573d8060008114612917576040519150601f19603f3d011682016040523d82523d6000602084013e61291c565b606091505b50600081511415612962576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612959906143d5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129bf565b600190505b949350505050565b6060600980546129d690613c22565b80601f0160208091040260200160405190810160405280929190818152602001828054612a0290613c22565b8015612a4f5780601f10612a2457610100808354040283529160200191612a4f565b820191906000526020600020905b815481529060010190602001808311612a3257829003601f168201915b5050505050905090565b60606000821415612aa1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bb5565b600082905060005b60008214612ad3578080612abc90613ecb565b915050600a82612acc919061409b565b9150612aa9565b60008167ffffffffffffffff811115612aef57612aee6136ae565b5b6040519080825280601f01601f191660200182016040528015612b215781602001600182028036833780820191505090505b5090505b60008514612bae57600182612b3a9190614887565b9150600a85612b499190614bea565b6030612b5591906147c5565b60f81b818381518110612b6b57612b6a6142c8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ba7919061409b565b9450612b25565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2290614c8d565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612cc9828260405180602001604052806000815250612ce0565b5050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4e90614d1f565b60405180910390fd5b612d6081611c2c565b15612da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9790614d8b565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfa90614e1d565b60405180910390fd5b612e106000858386612ca3565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612f0d919061477f565b6fffffffffffffffffffffffffffffffff168152602001858360200151612f34919061477f565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156131a357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613143600088848861283f565b613182576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613179906143d5565b60405180910390fd5b818061318d90613ecb565b925050808061319b90613ecb565b9150506130d2565b50806001819055506131b86000878588612ca9565b505050505050565b8280546131cc90613c22565b90600052602060002090601f0160209004810192826131ee5760008555613235565b82601f1061320757803560ff1916838001178555613235565b82800160010185558215613235579182015b82811115613234578235825591602001919060010190613219565b5b5090506132429190613280565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613299576000816000905550600101613281565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132e6816132b1565b81146132f157600080fd5b50565b600081359050613303816132dd565b92915050565b60006020828403121561331f5761331e6132a7565b5b600061332d848285016132f4565b91505092915050565b60008115159050919050565b61334b81613336565b82525050565b60006020820190506133666000830184613342565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133a657808201518184015260208101905061338b565b838111156133b5576000848401525b50505050565b6000601f19601f8301169050919050565b60006133d78261336c565b6133e18185613377565b93506133f1818560208601613388565b6133fa816133bb565b840191505092915050565b6000602082019050818103600083015261341f81846133cc565b905092915050565b6000819050919050565b61343a81613427565b811461344557600080fd5b50565b60008135905061345781613431565b92915050565b600060208284031215613473576134726132a7565b5b600061348184828501613448565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134b58261348a565b9050919050565b6134c5816134aa565b82525050565b60006020820190506134e060008301846134bc565b92915050565b6134ef816134aa565b81146134fa57600080fd5b50565b60008135905061350c816134e6565b92915050565b60008060408385031215613529576135286132a7565b5b6000613537858286016134fd565b925050602061354885828601613448565b9150509250929050565b61355b81613427565b82525050565b60006020820190506135766000830184613552565b92915050565b600080600060608486031215613595576135946132a7565b5b60006135a3868287016134fd565b93505060206135b4868287016134fd565b92505060406135c586828701613448565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126135f4576135f36135cf565b5b8235905067ffffffffffffffff811115613611576136106135d4565b5b60208301915083600182028301111561362d5761362c6135d9565b5b9250929050565b6000806020838503121561364b5761364a6132a7565b5b600083013567ffffffffffffffff811115613669576136686132ac565b5b613675858286016135de565b92509250509250929050565b600060208284031215613697576136966132a7565b5b60006136a5848285016134fd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136e6826133bb565b810181811067ffffffffffffffff82111715613705576137046136ae565b5b80604052505050565b600061371861329d565b905061372482826136dd565b919050565b600067ffffffffffffffff821115613744576137436136ae565b5b602082029050602081019050919050565b600061376861376384613729565b61370e565b9050808382526020820190506020840283018581111561378b5761378a6135d9565b5b835b818110156137b457806137a088826134fd565b84526020840193505060208101905061378d565b5050509392505050565b600082601f8301126137d3576137d26135cf565b5b81356137e3848260208601613755565b91505092915050565b600067ffffffffffffffff821115613807576138066136ae565b5b602082029050602081019050919050565b600061382b613826846137ec565b61370e565b9050808382526020820190506020840283018581111561384e5761384d6135d9565b5b835b8181101561387757806138638882613448565b845260208401935050602081019050613850565b5050509392505050565b600082601f830112613896576138956135cf565b5b81356138a6848260208601613818565b91505092915050565b600080604083850312156138c6576138c56132a7565b5b600083013567ffffffffffffffff8111156138e4576138e36132ac565b5b6138f0858286016137be565b925050602083013567ffffffffffffffff811115613911576139106132ac565b5b61391d85828601613881565b9150509250929050565b613930816134aa565b82525050565b600067ffffffffffffffff82169050919050565b61395381613936565b82525050565b60408201600082015161396f6000850182613927565b506020820151613982602085018261394a565b50505050565b600060408201905061399d6000830184613959565b92915050565b6139ac81613336565b81146139b757600080fd5b50565b6000813590506139c9816139a3565b92915050565b600080604083850312156139e6576139e56132a7565b5b60006139f4858286016134fd565b9250506020613a05858286016139ba565b9150509250929050565b600080fd5b600067ffffffffffffffff821115613a2f57613a2e6136ae565b5b613a38826133bb565b9050602081019050919050565b82818337600083830152505050565b6000613a67613a6284613a14565b61370e565b905082815260208101848484011115613a8357613a82613a0f565b5b613a8e848285613a45565b509392505050565b600082601f830112613aab57613aaa6135cf565b5b8135613abb848260208601613a54565b91505092915050565b60008060008060808587031215613ade57613add6132a7565b5b6000613aec878288016134fd565b9450506020613afd878288016134fd565b9350506040613b0e87828801613448565b925050606085013567ffffffffffffffff811115613b2f57613b2e6132ac565b5b613b3b87828801613a96565b91505092959194509250565b60008060408385031215613b5e57613b5d6132a7565b5b6000613b6c858286016134fd565b9250506020613b7d858286016134fd565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bbd602083613377565b9150613bc882613b87565b602082019050919050565b60006020820190508181036000830152613bec81613bb0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c3a57607f821691505b60208210811415613c4e57613c4d613bf3565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613cb0602d83613377565b9150613cbb82613c54565b604082019050919050565b60006020820190508181036000830152613cdf81613ca3565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d42602283613377565b9150613d4d82613ce6565b604082019050919050565b60006020820190508181036000830152613d7181613d35565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613dd4603983613377565b9150613ddf82613d78565b604082019050919050565b60006020820190508181036000830152613e0381613dc7565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e66602283613377565b9150613e7182613e0a565b604082019050919050565b60006020820190508181036000830152613e9581613e59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ed682613427565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f0957613f08613e9c565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613f70602e83613377565b9150613f7b82613f14565b604082019050919050565b60006020820190508181036000830152613f9f81613f63565b9050919050565b7f4e4f2046554e445320415641494c41424c450000000000000000000000000000600082015250565b6000613fdc601283613377565b9150613fe782613fa6565b602082019050919050565b6000602082019050818103600083015261400b81613fcf565b9050919050565b600061401d82613427565b915061402883613427565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561406157614060613e9c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140a682613427565b91506140b183613427565b9250826140c1576140c061406c565b5b828204905092915050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614128602383613377565b9150614133826140cc565b604082019050919050565b600060208201905081810360008301526141578161411b565b9050919050565b7f6f6e6c794d5347503a204d534750206973206e6f7420617574686f7269736564600082015250565b6000614194602083613377565b915061419f8261415e565b602082019050919050565b600060208201905081810360008301526141c381614187565b9050919050565b7f6f6e6c794d5347503a2063616c6c6572206973206e6f7420746865204d534750600082015250565b6000614200602083613377565b915061420b826141ca565b602082019050919050565b6000602082019050818103600083015261422f816141f3565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614292602b83613377565b915061429d82614236565b604082019050919050565b600060208201905081810360008301526142c181614285565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061432d601a83613377565b9150614338826142f7565b602082019050919050565b6000602082019050818103600083015261435c81614320565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006143bf603383613377565b91506143ca82614363565b604082019050919050565b600060208201905081810360008301526143ee816143b2565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614451602f83613377565b915061445c826143f5565b604082019050919050565b6000602082019050818103600083015261448081614444565b9050919050565b600081905092915050565b600061449d8261336c565b6144a78185614487565b93506144b7818560208601613388565b80840191505092915050565b60006144cf8285614492565b91506144db8284614492565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614543602683613377565b915061454e826144e7565b604082019050919050565b6000602082019050818103600083015261457281614536565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006145d5603283613377565b91506145e082614579565b604082019050919050565b60006020820190508181036000830152614604816145c8565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614667602683613377565b91506146728261460b565b604082019050919050565b600060208201905081810360008301526146968161465a565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006146f9602583613377565b91506147048261469d565b604082019050919050565b60006020820190508181036000830152614728816146ec565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006147568261472f565b91506147618361472f565b92508282101561477457614773613e9c565b5b828203905092915050565b600061478a8261472f565b91506147958361472f565b9250826fffffffffffffffffffffffffffffffff038211156147ba576147b9613e9c565b5b828201905092915050565b60006147d082613427565b91506147db83613427565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148105761480f613e9c565b5b828201905092915050565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b6000614851601883613377565b915061485c8261481b565b602082019050919050565b6000602082019050818103600083015261488081614844565b9050919050565b600061489282613427565b915061489d83613427565b9250828210156148b0576148af613e9c565b5b828203905092915050565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b6000614917602683613377565b9150614922826148bb565b604082019050919050565b600060208201905081810360008301526149468161490a565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006149a9602a83613377565b91506149b48261494d565b604082019050919050565b600060208201905081810360008301526149d88161499c565b9050919050565b60006149ea82613427565b915060008214156149fe576149fd613e9c565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614a65602f83613377565b9150614a7082614a09565b604082019050919050565b60006020820190508181036000830152614a9481614a58565b9050919050565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b6000614ad1601283613377565b9150614adc82614a9b565b602082019050919050565b60006020820190508181036000830152614b0081614ac4565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614b2e82614b07565b614b388185614b12565b9350614b48818560208601613388565b614b51816133bb565b840191505092915050565b6000608082019050614b7160008301876134bc565b614b7e60208301866134bc565b614b8b6040830185613552565b8181036060830152614b9d8184614b23565b905095945050505050565b600081519050614bb7816132dd565b92915050565b600060208284031215614bd357614bd26132a7565b5b6000614be184828501614ba8565b91505092915050565b6000614bf582613427565b9150614c0083613427565b925082614c1057614c0f61406c565b5b828206905092915050565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b6000614c77603183613377565b9150614c8282614c1b565b604082019050919050565b60006020820190508181036000830152614ca681614c6a565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d09602183613377565b9150614d1482614cad565b604082019050919050565b60006020820190508181036000830152614d3881614cfc565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614d75601d83613377565b9150614d8082614d3f565b602082019050919050565b60006020820190508181036000830152614da481614d68565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e07602283613377565b9150614e1282614dab565b604082019050919050565b60006020820190508181036000830152614e3681614dfa565b905091905056fea264697066735822122013a4c9dad935fb6a6cf0f7dbf1e8d0b085cba1e7328647772cf6608330afa3e964736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c43727970746f437265616d7a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024343000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d15760003560e01c806370a08231116100f7578063b88d4fde11610095578063dc33e68111610064578063dc33e6811461067f578063e176e3ba146106bc578063e985e9c5146106e5578063f2fde38b14610722576101d8565b8063b88d4fde146105c3578063c87b56dd146105ec578063d7224ba014610629578063d8258d9514610654576101d8565b80638da5cb5b116100d15780638da5cb5b146105075780639231ab2a1461053257806395d89b411461056f578063a22cb4651461059a576101d8565b806370a082311461048a578063715018a6146104c757806386d3781e146104de576101d8565b80632d20fb601161016f5780634f6ccce71161013e5780634f6ccce7146103bc57806355f804b3146103f95780636352211e146104225780636eca75651461045f576101d8565b80632d20fb60146103165780632f745c591461033f5780633ccfd60b1461037c57806342842e0e14610393576101d8565b8063081812fc116101ab578063081812fc1461025c578063095ea7b31461029957806318160ddd146102c257806323b872dd146102ed576101d8565b806301ffc9a7146101dd578063056dc27d1461021a57806306fdde0314610231576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190613309565b61074b565b6040516102119190613351565b60405180910390f35b34801561022657600080fd5b5061022f610895565b005b34801561023d57600080fd5b5061024661093d565b6040516102539190613405565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e919061345d565b6109cf565b60405161029091906134cb565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190613512565b610a54565b005b3480156102ce57600080fd5b506102d7610b6d565b6040516102e49190613561565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f919061357c565b610b77565b005b34801561032257600080fd5b5061033d6004803603810190610338919061345d565b610b87565b005b34801561034b57600080fd5b5061036660048036038101906103619190613512565b610c0f565b6040516103739190613561565b60405180910390f35b34801561038857600080fd5b50610391610e0d565b005b34801561039f57600080fd5b506103ba60048036038101906103b5919061357c565b6111b8565b005b3480156103c857600080fd5b506103e360048036038101906103de919061345d565b6111d8565b6040516103f09190613561565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b9190613634565b61122b565b005b34801561042e57600080fd5b506104496004803603810190610444919061345d565b611327565b60405161045691906134cb565b60405180910390f35b34801561046b57600080fd5b5061047461133d565b6040516104819190613351565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190613681565b611350565b6040516104be9190613561565b60405180910390f35b3480156104d357600080fd5b506104dc611439565b005b3480156104ea57600080fd5b50610505600480360381019061050091906138af565b6114c1565b005b34801561051357600080fd5b5061051c611609565b60405161052991906134cb565b60405180910390f35b34801561053e57600080fd5b506105596004803603810190610554919061345d565b611632565b6040516105669190613988565b60405180910390f35b34801561057b57600080fd5b5061058461164a565b6040516105919190613405565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc91906139cf565b6116dc565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190613ac4565b61185d565b005b3480156105f857600080fd5b50610613600480360381019061060e919061345d565b6118b9565b6040516106209190613405565b60405180910390f35b34801561063557600080fd5b5061063e611960565b60405161064b9190613561565b60405180910390f35b34801561066057600080fd5b50610669611966565b6040516106769190613561565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a19190613681565b61198a565b6040516106b39190613561565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190613634565b61199c565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613b47565b611a2e565b6040516107199190613351565b60405180910390f35b34801561072e57600080fd5b5061074960048036038101906107449190613681565b611ac2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088e575061088d82611bba565b5b9050919050565b61089d611c24565b73ffffffffffffffffffffffffffffffffffffffff166108bb611609565b73ffffffffffffffffffffffffffffffffffffffff1614610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090890613bd3565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b60606002805461094c90613c22565b80601f016020809104026020016040519081016040528092919081815260200182805461097890613c22565b80156109c55780601f1061099a576101008083540402835291602001916109c5565b820191906000526020600020905b8154815290600101906020018083116109a857829003601f168201915b5050505050905090565b60006109da82611c2c565b610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090613cc6565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5f82611327565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac790613d58565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aef611c24565b73ffffffffffffffffffffffffffffffffffffffff161480610b1e5750610b1d81610b18611c24565b611a2e565b5b610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5490613dea565b60405180910390fd5b610b68838383611c3a565b505050565b6000600154905090565b610b82838383611cec565b505050565b610b8f611c24565b73ffffffffffffffffffffffffffffffffffffffff16610bad611609565b73ffffffffffffffffffffffffffffffffffffffff1614610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90613bd3565b60405180910390fd5b610c0c816122a5565b50565b6000610c1a83611350565b8210610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290613e7c565b60405180910390fd5b6000610c65610b6d565b905060008060005b83811015610dcb576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d5f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db75786841415610da8578195505050505050610e07565b8380610db390613ecb565b9450505b508080610dc390613ecb565b915050610c6d565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90613f86565b60405180910390fd5b92915050565b610e15611c24565b73ffffffffffffffffffffffffffffffffffffffff16610e33611609565b73ffffffffffffffffffffffffffffffffffffffff1614610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090613bd3565b60405180910390fd5b600047905060008111610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890613ff2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc6064604184610efa9190614012565b610f04919061409b565b9081150290604051600060405180830381858888f19350505050158015610f2f573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601984610f7b9190614012565b610f85919061409b565b9081150290604051600060405180830381858888f19350505050158015610fb0573d6000803e3d6000fd5b50600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600284610ffc9190614012565b611006919061409b565b9081150290604051600060405180830381858888f19350505050158015611031573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460028461107d9190614012565b611087919061409b565b9081150290604051600060405180830381858888f193505050501580156110b2573d6000803e3d6000fd5b50600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646003846110fe9190614012565b611108919061409b565b9081150290604051600060405180830381858888f19350505050158015611133573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460038461117f9190614012565b611189919061409b565b9081150290604051600060405180830381858888f193505050501580156111b4573d6000803e3d6000fd5b5050565b6111d38383836040518060200160405280600081525061185d565b505050565b60006111e2610b6d565b8210611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a9061413e565b60405180910390fd5b819050919050565b600a60009054906101000a900460ff1661127a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611271906141aa565b60405180910390fd5b611282611c24565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130890614216565b60405180910390fd5b8181600991906113229291906131c0565b505050565b6000611332826124f5565b600001519050919050565b600a60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b8906142a8565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611441611c24565b73ffffffffffffffffffffffffffffffffffffffff1661145f611609565b73ffffffffffffffffffffffffffffffffffffffff16146114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90613bd3565b60405180910390fd5b6114bf60006126f8565b565b600a60009054906101000a900460ff16611510576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611507906141aa565b60405180910390fd5b611518611c24565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90614216565b60405180910390fd5b60005b8251811015611604576115f18382815181106115c9576115c86142c8565b5b60200260200101518383815181106115e4576115e36142c8565b5b60200260200101516127bc565b80806115fc90613ecb565b9150506115aa565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61163a613246565b611643826124f5565b9050919050565b60606003805461165990613c22565b80601f016020809104026020016040519081016040528092919081815260200182805461168590613c22565b80156116d25780601f106116a7576101008083540402835291602001916116d2565b820191906000526020600020905b8154815290600101906020018083116116b557829003601f168201915b5050505050905090565b6116e4611c24565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174990614343565b60405180910390fd5b806007600061175f611c24565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661180c611c24565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118519190613351565b60405180910390a35050565b611868848484611cec565b6118748484848461283f565b6118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa906143d5565b60405180910390fd5b50505050565b60606118c482611c2c565b611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90614467565b60405180910390fd5b600061190d6129c7565b9050600081511161192d5760405180602001604052806000815250611958565b8061193784612a59565b6040516020016119489291906144c3565b6040516020818303038152906040525b915050919050565b60085481565b7f0000000000000000000000000000000000000000000000000000000000000d0581565b600061199582612bba565b9050919050565b6119a4611c24565b73ffffffffffffffffffffffffffffffffffffffff166119c2611609565b73ffffffffffffffffffffffffffffffffffffffff1614611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90613bd3565b60405180910390fd5b818160099190611a299291906131c0565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aca611c24565b73ffffffffffffffffffffffffffffffffffffffff16611ae8611609565b73ffffffffffffffffffffffffffffffffffffffff1614611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590613bd3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590614559565b60405180910390fd5b611bb7816126f8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600060015482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611cf7826124f5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d1e611c24565b73ffffffffffffffffffffffffffffffffffffffff161480611d7a5750611d43611c24565b73ffffffffffffffffffffffffffffffffffffffff16611d62846109cf565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d965750611d958260000151611d90611c24565b611a2e565b5b905080611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf906145eb565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e419061467d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb19061470f565b60405180910390fd5b611ec78585856001612ca3565b611ed76000848460000151611c3a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f45919061474b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fe9919061477f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120ef91906147c5565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122355761216581611c2c565b15612234576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461229d8686866001612ca9565b505050505050565b60006008549050600082116122ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e690614867565b60405180910390fd5b6000600183836122ff91906147c5565b6123099190614887565b9050600180546123199190614887565b811115612331576001805461232e9190614887565b90505b61233a81611c2c565b612379576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123709061492d565b60405180910390fd5b60008290505b8181116124dc57600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124c95760006123fc826124f5565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806124d490613ecb565b91505061237f565b506001816124ea91906147c5565b600881905550505050565b6124fd613246565b61250682611c2c565b612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c906149bf565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000d0583106125a95760017f0000000000000000000000000000000000000000000000000000000000000d058461259c9190614887565b6125a691906147c5565b90505b60008390505b8181106126b7576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126a3578093505050506126f3565b5080806126af906149df565b9150506125af565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ea90614a7b565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f0000000000000000000000000000000000000000000000000000000000000d05816127e6610b6d565b6127f091906147c5565b1115612831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282890614ae7565b60405180910390fd5b61283b8282612caf565b5050565b60006128608473ffffffffffffffffffffffffffffffffffffffff16612ccd565b156129ba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612889611c24565b8786866040518563ffffffff1660e01b81526004016128ab9493929190614b5c565b6020604051808303816000875af19250505080156128e757506040513d601f19601f820116820180604052508101906128e49190614bbd565b60015b61296a573d8060008114612917576040519150601f19603f3d011682016040523d82523d6000602084013e61291c565b606091505b50600081511415612962576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612959906143d5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129bf565b600190505b949350505050565b6060600980546129d690613c22565b80601f0160208091040260200160405190810160405280929190818152602001828054612a0290613c22565b8015612a4f5780601f10612a2457610100808354040283529160200191612a4f565b820191906000526020600020905b815481529060010190602001808311612a3257829003601f168201915b5050505050905090565b60606000821415612aa1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bb5565b600082905060005b60008214612ad3578080612abc90613ecb565b915050600a82612acc919061409b565b9150612aa9565b60008167ffffffffffffffff811115612aef57612aee6136ae565b5b6040519080825280601f01601f191660200182016040528015612b215781602001600182028036833780820191505090505b5090505b60008514612bae57600182612b3a9190614887565b9150600a85612b499190614bea565b6030612b5591906147c5565b60f81b818381518110612b6b57612b6a6142c8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ba7919061409b565b9450612b25565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2290614c8d565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612cc9828260405180602001604052806000815250612ce0565b5050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4e90614d1f565b60405180910390fd5b612d6081611c2c565b15612da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9790614d8b565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000d05831115612e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfa90614e1d565b60405180910390fd5b612e106000858386612ca3565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612f0d919061477f565b6fffffffffffffffffffffffffffffffff168152602001858360200151612f34919061477f565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156131a357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613143600088848861283f565b613182576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613179906143d5565b60405180910390fd5b818061318d90613ecb565b925050808061319b90613ecb565b9150506130d2565b50806001819055506131b86000878588612ca9565b505050505050565b8280546131cc90613c22565b90600052602060002090601f0160209004810192826131ee5760008555613235565b82601f1061320757803560ff1916838001178555613235565b82800160010185558215613235579182015b82811115613234578235825591602001919060010190613219565b5b5090506132429190613280565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613299576000816000905550600101613281565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132e6816132b1565b81146132f157600080fd5b50565b600081359050613303816132dd565b92915050565b60006020828403121561331f5761331e6132a7565b5b600061332d848285016132f4565b91505092915050565b60008115159050919050565b61334b81613336565b82525050565b60006020820190506133666000830184613342565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133a657808201518184015260208101905061338b565b838111156133b5576000848401525b50505050565b6000601f19601f8301169050919050565b60006133d78261336c565b6133e18185613377565b93506133f1818560208601613388565b6133fa816133bb565b840191505092915050565b6000602082019050818103600083015261341f81846133cc565b905092915050565b6000819050919050565b61343a81613427565b811461344557600080fd5b50565b60008135905061345781613431565b92915050565b600060208284031215613473576134726132a7565b5b600061348184828501613448565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134b58261348a565b9050919050565b6134c5816134aa565b82525050565b60006020820190506134e060008301846134bc565b92915050565b6134ef816134aa565b81146134fa57600080fd5b50565b60008135905061350c816134e6565b92915050565b60008060408385031215613529576135286132a7565b5b6000613537858286016134fd565b925050602061354885828601613448565b9150509250929050565b61355b81613427565b82525050565b60006020820190506135766000830184613552565b92915050565b600080600060608486031215613595576135946132a7565b5b60006135a3868287016134fd565b93505060206135b4868287016134fd565b92505060406135c586828701613448565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126135f4576135f36135cf565b5b8235905067ffffffffffffffff811115613611576136106135d4565b5b60208301915083600182028301111561362d5761362c6135d9565b5b9250929050565b6000806020838503121561364b5761364a6132a7565b5b600083013567ffffffffffffffff811115613669576136686132ac565b5b613675858286016135de565b92509250509250929050565b600060208284031215613697576136966132a7565b5b60006136a5848285016134fd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136e6826133bb565b810181811067ffffffffffffffff82111715613705576137046136ae565b5b80604052505050565b600061371861329d565b905061372482826136dd565b919050565b600067ffffffffffffffff821115613744576137436136ae565b5b602082029050602081019050919050565b600061376861376384613729565b61370e565b9050808382526020820190506020840283018581111561378b5761378a6135d9565b5b835b818110156137b457806137a088826134fd565b84526020840193505060208101905061378d565b5050509392505050565b600082601f8301126137d3576137d26135cf565b5b81356137e3848260208601613755565b91505092915050565b600067ffffffffffffffff821115613807576138066136ae565b5b602082029050602081019050919050565b600061382b613826846137ec565b61370e565b9050808382526020820190506020840283018581111561384e5761384d6135d9565b5b835b8181101561387757806138638882613448565b845260208401935050602081019050613850565b5050509392505050565b600082601f830112613896576138956135cf565b5b81356138a6848260208601613818565b91505092915050565b600080604083850312156138c6576138c56132a7565b5b600083013567ffffffffffffffff8111156138e4576138e36132ac565b5b6138f0858286016137be565b925050602083013567ffffffffffffffff811115613911576139106132ac565b5b61391d85828601613881565b9150509250929050565b613930816134aa565b82525050565b600067ffffffffffffffff82169050919050565b61395381613936565b82525050565b60408201600082015161396f6000850182613927565b506020820151613982602085018261394a565b50505050565b600060408201905061399d6000830184613959565b92915050565b6139ac81613336565b81146139b757600080fd5b50565b6000813590506139c9816139a3565b92915050565b600080604083850312156139e6576139e56132a7565b5b60006139f4858286016134fd565b9250506020613a05858286016139ba565b9150509250929050565b600080fd5b600067ffffffffffffffff821115613a2f57613a2e6136ae565b5b613a38826133bb565b9050602081019050919050565b82818337600083830152505050565b6000613a67613a6284613a14565b61370e565b905082815260208101848484011115613a8357613a82613a0f565b5b613a8e848285613a45565b509392505050565b600082601f830112613aab57613aaa6135cf565b5b8135613abb848260208601613a54565b91505092915050565b60008060008060808587031215613ade57613add6132a7565b5b6000613aec878288016134fd565b9450506020613afd878288016134fd565b9350506040613b0e87828801613448565b925050606085013567ffffffffffffffff811115613b2f57613b2e6132ac565b5b613b3b87828801613a96565b91505092959194509250565b60008060408385031215613b5e57613b5d6132a7565b5b6000613b6c858286016134fd565b9250506020613b7d858286016134fd565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bbd602083613377565b9150613bc882613b87565b602082019050919050565b60006020820190508181036000830152613bec81613bb0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c3a57607f821691505b60208210811415613c4e57613c4d613bf3565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613cb0602d83613377565b9150613cbb82613c54565b604082019050919050565b60006020820190508181036000830152613cdf81613ca3565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d42602283613377565b9150613d4d82613ce6565b604082019050919050565b60006020820190508181036000830152613d7181613d35565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613dd4603983613377565b9150613ddf82613d78565b604082019050919050565b60006020820190508181036000830152613e0381613dc7565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e66602283613377565b9150613e7182613e0a565b604082019050919050565b60006020820190508181036000830152613e9581613e59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ed682613427565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f0957613f08613e9c565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613f70602e83613377565b9150613f7b82613f14565b604082019050919050565b60006020820190508181036000830152613f9f81613f63565b9050919050565b7f4e4f2046554e445320415641494c41424c450000000000000000000000000000600082015250565b6000613fdc601283613377565b9150613fe782613fa6565b602082019050919050565b6000602082019050818103600083015261400b81613fcf565b9050919050565b600061401d82613427565b915061402883613427565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561406157614060613e9c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140a682613427565b91506140b183613427565b9250826140c1576140c061406c565b5b828204905092915050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614128602383613377565b9150614133826140cc565b604082019050919050565b600060208201905081810360008301526141578161411b565b9050919050565b7f6f6e6c794d5347503a204d534750206973206e6f7420617574686f7269736564600082015250565b6000614194602083613377565b915061419f8261415e565b602082019050919050565b600060208201905081810360008301526141c381614187565b9050919050565b7f6f6e6c794d5347503a2063616c6c6572206973206e6f7420746865204d534750600082015250565b6000614200602083613377565b915061420b826141ca565b602082019050919050565b6000602082019050818103600083015261422f816141f3565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614292602b83613377565b915061429d82614236565b604082019050919050565b600060208201905081810360008301526142c181614285565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061432d601a83613377565b9150614338826142f7565b602082019050919050565b6000602082019050818103600083015261435c81614320565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006143bf603383613377565b91506143ca82614363565b604082019050919050565b600060208201905081810360008301526143ee816143b2565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614451602f83613377565b915061445c826143f5565b604082019050919050565b6000602082019050818103600083015261448081614444565b9050919050565b600081905092915050565b600061449d8261336c565b6144a78185614487565b93506144b7818560208601613388565b80840191505092915050565b60006144cf8285614492565b91506144db8284614492565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614543602683613377565b915061454e826144e7565b604082019050919050565b6000602082019050818103600083015261457281614536565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006145d5603283613377565b91506145e082614579565b604082019050919050565b60006020820190508181036000830152614604816145c8565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614667602683613377565b91506146728261460b565b604082019050919050565b600060208201905081810360008301526146968161465a565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006146f9602583613377565b91506147048261469d565b604082019050919050565b60006020820190508181036000830152614728816146ec565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006147568261472f565b91506147618361472f565b92508282101561477457614773613e9c565b5b828203905092915050565b600061478a8261472f565b91506147958361472f565b9250826fffffffffffffffffffffffffffffffff038211156147ba576147b9613e9c565b5b828201905092915050565b60006147d082613427565b91506147db83613427565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148105761480f613e9c565b5b828201905092915050565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b6000614851601883613377565b915061485c8261481b565b602082019050919050565b6000602082019050818103600083015261488081614844565b9050919050565b600061489282613427565b915061489d83613427565b9250828210156148b0576148af613e9c565b5b828203905092915050565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b6000614917602683613377565b9150614922826148bb565b604082019050919050565b600060208201905081810360008301526149468161490a565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006149a9602a83613377565b91506149b48261494d565b604082019050919050565b600060208201905081810360008301526149d88161499c565b9050919050565b60006149ea82613427565b915060008214156149fe576149fd613e9c565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614a65602f83613377565b9150614a7082614a09565b604082019050919050565b60006020820190508181036000830152614a9481614a58565b9050919050565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b6000614ad1601283613377565b9150614adc82614a9b565b602082019050919050565b60006020820190508181036000830152614b0081614ac4565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614b2e82614b07565b614b388185614b12565b9350614b48818560208601613388565b614b51816133bb565b840191505092915050565b6000608082019050614b7160008301876134bc565b614b7e60208301866134bc565b614b8b6040830185613552565b8181036060830152614b9d8184614b23565b905095945050505050565b600081519050614bb7816132dd565b92915050565b600060208284031215614bd357614bd26132a7565b5b6000614be184828501614ba8565b91505092915050565b6000614bf582613427565b9150614c0083613427565b925082614c1057614c0f61406c565b5b828206905092915050565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b6000614c77603183613377565b9150614c8282614c1b565b604082019050919050565b60006020820190508181036000830152614ca681614c6a565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d09602183613377565b9150614d1482614cad565b604082019050919050565b60006020820190508181036000830152614d3881614cfc565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614d75601d83613377565b9150614d8082614d3f565b602082019050919050565b60006020820190508181036000830152614da481614d68565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e07602283613377565b9150614e1282614dab565b604082019050919050565b60006020820190508181036000830152614e3681614dfa565b905091905056fea264697066735822122013a4c9dad935fb6a6cf0f7dbf1e8d0b085cba1e7328647772cf6608330afa3e964736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c43727970746f437265616d7a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024343000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : collectionName (string): CryptoCreamz
Arg [1] : collectionAlias (string): CC

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 43727970746f437265616d7a0000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4343000000000000000000000000000000000000000000000000000000000000


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.