ETH Price: $2,671.41 (+9.58%)
Gas: 3 Gwei

Token

MergePunks (MP)
 

Overview

Max Total Supply

55 MP

Holders

46

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
generalweigs.eth
Balance
2 MP
0xEd86d2803a1b2E578622777683B7160173cD0524
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:
PoSGutterPunks

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-15
*/

// SPDX-License-Identifier: MIT

// THE FOURTH NFT COLLECTION DEPLOYED POST-MERGE

/**

                               , &@@@@@@@/  @@@@@   *@@@@@@@@       @@@@@@@&  @@@/ (@@@   *                             
                  @@@, %@@@@@@@@ &/ %@@&    @@@     .@@@  @@@      /@@&  @@@  @@@  @@@*  (@@@ .@@@   @@@.               
      ..     @@@/ .@@@     @@@       @@@    @@@@@*   @@@@@@,       %@@@@@@@&  @@@  @@@   @@@@ @@@&  *@@@  @@@@ .@@@/    
  ,@@@@@@@(   @@@  @@@,    *@@@      @@@    #@@#     @@@  @@@      @@@/..    /@@@ ,@@@   @@@@@@@@   @@@(@@@.  @@@@%@@@# 
  ,@@@  &.    (@@@  @@@     @@@      &@@/   .@@@./#  @@@  @@@      @@@.      %@@/ &@@.  %@@@(@@@&  *@@@@@     @@@@  /@  
   &@@@ @@@@   @@@  @@@.    #@@#      @@@    @@@@@&  #(/  ***      /#%        *@@@@@.   @@@  @@@   @@@ @@@      .@@@#   
    @@@, #@@@   @@@@@@@                                                                      #@&  (@@%  @@@ @@@   %@@(  
     @@@@@@@@                                                                                            ,%* @@@@@@@@   
                                                          *@@@@@#                                                       
                                                  .@@@@@@@@@@@@@@@@@@@@&                                                
                                               @@@@@@@@@@@@@@@@@@@@@@@@@@@@@                                            
                                            @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#                                         
                                          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(                                       
                                        ,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@                                      
                                       *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@                                     
                                       @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&                                    
                                      #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@                                    
                                        . &@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@                                    
                                          &&&&&&&&&&&&&&&&#  &&&&%  &&&&( *&&&&  &                                      
                                          ,&&&&&&&&&&&&&&&&&.  ,   &&&&&&&,  .  &&& .                                   
                                      &&&&&&&&&&&&&&&&&&&&&&&&%   &&&&&&&&&&    &&&.                                    
                                     o/ & &&&&&&&&&&&&&&&&&&&#  &.  &&&&&&&  &&#  /#                                    
                                    . ( /&  &&&(&&&&&&&&&&&&   &&&&&  &&&& *&&&&&&&#                                    
                                         %(*,(*.(%&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&.                                    
                                     .%#&  #, *(((((%&&&&&&&&&&&&&&&&&&&&&&&,  #&&( .                                   
                                      .*(( &&&  ((((((((&&&&&&&&&&&&&&&&&&&  .   .                                      
                                .    *&@@% *&&&&  .(#(#(#(#(##%&&&&&&&&&&%((##   @@#                                    
                            *@@@@@@@@@@@@@   *&&&&&  .((((((((((#((((((((((((#  .     /@@,                              
                          @@ .@@* @@@@. @@@@@@@           (#((((#((((((((#/                , .                          
                         @@ #@@@@@.  %@@@. @@@@@#      .                   /@@@                                         
                        @@@ &@@@@@  %@(    #@@@@@  @@@@@@   ,@@@@@@@@@@@@# *@@@@                                        
                       (.   (@@@   @@       @@@@@@     ,*   ,.           .  ,@@@@                                       
                             @@   @@        @@@@@@ @@@@@@   @@@@@@@@@@@@@@@  &@@@(                                      
                             /   #@         @@@@@@ .*%@@@  %@@@@&(,..,/%&@@   @@@@                                      
                                                                                                                       

*/

pragma solidity ^0.8.17;



error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();



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




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





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



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



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






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






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



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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _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;

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _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 virtual override {
        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

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

    /**
     * @dev 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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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






/**
 * @title Merge Punks contract.
 * @author The Gutter Punks team.
 *
 */
contract PoSGutterPunks is ERC721A, Ownable {
    using Strings for uint256;

    event SetIsRevealed(bool isRevealed);
    event SetBaseURI(string baseURI);
    event SetPlaceholderURI(string placeholderURI);
    event SetContractURI(string contractURI);

    string public constant TOKEN_URI_EXTENSION = ".json";

    uint256 public _mintEndTime;
    bool public _isRevealed = false;
    mapping(address => bool) public _minted;

    string internal _baseTokenURI;
    string internal _placeholderURI;
    string internal _contractURI;

    IERC721 internal _gpContract = IERC721(0x9a54988016E97Fdc388D1b084BcbfE32De91b70c);


    constructor(
        string memory mPlaceholderURI, string memory mContractURI
    ) ERC721A("MergePunks", "MP") {
        _placeholderURI = mPlaceholderURI;
        _contractURI = mContractURI;
        _mintEndTime = block.timestamp + 1 days;
        _mint(msg.sender, 10, '', true);
    }
	
    function _startTokenId() internal view override virtual returns (uint256) {
        return 1;
    }

    function setIsRevealed(bool isRevealed) external onlyOwner {
        _isRevealed = isRevealed;
        emit SetIsRevealed(isRevealed);
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
        emit SetBaseURI(baseURI);
    }

    function setPlaceholderURI(string calldata placeholderURI) external onlyOwner {
        _placeholderURI = placeholderURI;
        emit SetPlaceholderURI(placeholderURI);
    }

    function setContractURI(string calldata newContractURI) external onlyOwner {
        _contractURI = newContractURI;
        emit SetContractURI(newContractURI);
    }

    function mint() external {
        require(block.timestamp < _mintEndTime);
        require(!_minted[msg.sender]);
        require(_gpContract.balanceOf(msg.sender) > 0);
        _minted[msg.sender] = true;
        _mint(msg.sender, 1, '', true);
    }

    function canMint() external view returns (bool) {
        return block.timestamp < _mintEndTime && !_minted[msg.sender] && _gpContract.balanceOf(msg.sender) > 0;
    }

    function hasGutterPunk() external view returns (bool) {
        return _gpContract.balanceOf(msg.sender) > 0;
    }

    function mintActive() external view returns (bool) {
        return block.timestamp < _mintEndTime;
    }

    function contractURI() external view returns (string memory) {
        return _contractURI;
    }

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

        if (!_isRevealed) {
            return _placeholderURI;
        }

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

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


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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"mPlaceholderURI","type":"string"},{"internalType":"string","name":"mContractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"SetBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"contractURI","type":"string"}],"name":"SetContractURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isRevealed","type":"bool"}],"name":"SetIsRevealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"placeholderURI","type":"string"}],"name":"SetPlaceholderURI","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":"TOKEN_URI_EXTENSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasGutterPunk","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintActive","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":"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":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isRevealed","type":"bool"}],"name":"setIsRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"placeholderURI","type":"string"}],"name":"setPlaceholderURI","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":"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"}]

60806040526000600a60006101000a81548160ff021916908315150217905550739a54988016e97fdc388d1b084bcbfe32de91b70c600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b50604051620046e6380380620046e68339818101604052810190620000a79190620009b9565b6040518060400160405280600a81526020017f4d6572676550756e6b73000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d50000000000000000000000000000000000000000000000000000000000000815250816002908162000124919062000c89565b50806003908162000136919062000c89565b5062000147620001d760201b60201c565b60008190555050506200016f62000163620001e060201b60201c565b620001e860201b60201c565b81600d908162000180919062000c89565b5080600e908162000192919062000c89565b506201518042620001a4919062000d9f565b600981905550620001cf33600a604051806020016040528060008152506001620002ae60201b60201c565b505062000f70565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036200031b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840362000356576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200036b6000868387620006a660201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620005435750620005428773ffffffffffffffffffffffffffffffffffffffff16620006ac60201b620018081760201c565b5b1562000615575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620005c16000888480600101955088620006bf60201b60201c565b620005f8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036200054a5782600054146200060f57600080fd5b62000681565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820362000616575b8160008190555050506200069f60008683876200082060201b60201c565b5050505050565b50505050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006ed620001e060201b60201c565b8786866040518563ffffffff1660e01b815260040162000711949392919062000e8d565b6020604051808303816000875af19250505080156200075057506040513d601f19601f820116820180604052508101906200074d919062000f3e565b60015b620007cd573d806000811462000783576040519150601f19603f3d011682016040523d82523d6000602084013e62000788565b606091505b506000815103620007c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200088f8262000844565b810181811067ffffffffffffffff82111715620008b157620008b062000855565b5b80604052505050565b6000620008c662000826565b9050620008d4828262000884565b919050565b600067ffffffffffffffff821115620008f757620008f662000855565b5b620009028262000844565b9050602081019050919050565b60005b838110156200092f57808201518184015260208101905062000912565b60008484015250505050565b6000620009526200094c84620008d9565b620008ba565b9050828152602081018484840111156200097157620009706200083f565b5b6200097e8482856200090f565b509392505050565b600082601f8301126200099e576200099d6200083a565b5b8151620009b08482602086016200093b565b91505092915050565b60008060408385031215620009d357620009d262000830565b5b600083015167ffffffffffffffff811115620009f457620009f362000835565b5b62000a028582860162000986565b925050602083015167ffffffffffffffff81111562000a265762000a2562000835565b5b62000a348582860162000986565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a9157607f821691505b60208210810362000aa75762000aa662000a49565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ad2565b62000b1d868362000ad2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b6a62000b6462000b5e8462000b35565b62000b3f565b62000b35565b9050919050565b6000819050919050565b62000b868362000b49565b62000b9e62000b958262000b71565b84845462000adf565b825550505050565b600090565b62000bb562000ba6565b62000bc281848462000b7b565b505050565b5b8181101562000bea5762000bde60008262000bab565b60018101905062000bc8565b5050565b601f82111562000c395762000c038162000aad565b62000c0e8462000ac2565b8101602085101562000c1e578190505b62000c3662000c2d8562000ac2565b83018262000bc7565b50505b505050565b600082821c905092915050565b600062000c5e6000198460080262000c3e565b1980831691505092915050565b600062000c79838362000c4b565b9150826002028217905092915050565b62000c948262000a3e565b67ffffffffffffffff81111562000cb05762000caf62000855565b5b62000cbc825462000a78565b62000cc982828562000bee565b600060209050601f83116001811462000d01576000841562000cec578287015190505b62000cf8858262000c6b565b86555062000d68565b601f19841662000d118662000aad565b60005b8281101562000d3b5784890151825560018201915060208501945060208101905062000d14565b8683101562000d5b578489015162000d57601f89168262000c4b565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000dac8262000b35565b915062000db98362000b35565b925082820190508082111562000dd45762000dd362000d70565b5b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e078262000dda565b9050919050565b62000e198162000dfa565b82525050565b62000e2a8162000b35565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000e598262000e30565b62000e65818562000e3b565b935062000e778185602086016200090f565b62000e828162000844565b840191505092915050565b600060808201905062000ea4600083018762000e0e565b62000eb3602083018662000e0e565b62000ec2604083018562000e1f565b818103606083015262000ed6818462000e4c565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000f188162000ee1565b811462000f2457600080fd5b50565b60008151905062000f388162000f0d565b92915050565b60006020828403121562000f575762000f5662000830565b5b600062000f678482850162000f27565b91505092915050565b6137668062000f806000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80637de77ecc11610104578063c87b56dd116100a2578063e8a3d48511610071578063e8a3d4851461051d578063e985e9c51461053b578063f2fde38b1461056b578063fb0afca514610587576101da565b8063c87b56dd14610493578063ca2bbb6f146104c3578063ceb4500a146104e1578063d134dd4a146104ff576101da565b806395d89b41116100de57806395d89b411461041f578063a22cb4651461043d578063b88d4fde14610459578063beb9716d14610475576101da565b80637de77ecc146103b55780638da5cb5b146103e5578063938e3d7b14610403576101da565b806325fd90f31161017c57806355f804b31161014b57806355f804b31461032f5780636352211e1461034b57806370a082311461037b578063715018a6146103ab576101da565b806325fd90f3146102bd5780633574a2dd146102db57806342842e0e146102f757806349a5980a14610313576101da565b8063095ea7b3116101b8578063095ea7b31461025d5780631249c58b1461027957806318160ddd1461028357806323b872dd146102a1576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f4919061290f565b6105a5565b6040516102069190612957565b60405180910390f35b610217610687565b6040516102249190612a02565b60405180910390f35b61024760048036038101906102429190612a5a565b610719565b6040516102549190612ac8565b60405180910390f35b61027760048036038101906102729190612b0f565b610795565b005b61028161089f565b005b61028b610a23565b6040516102989190612b5e565b60405180910390f35b6102bb60048036038101906102b69190612b79565b610a3a565b005b6102c5610a4a565b6040516102d29190612957565b60405180910390f35b6102f560048036038101906102f09190612c31565b610a56565b005b610311600480360381019061030c9190612b79565b610b21565b005b61032d60048036038101906103289190612caa565b610b41565b005b61034960048036038101906103449190612c31565b610c11565b005b61036560048036038101906103609190612a5a565b610cdc565b6040516103729190612ac8565b60405180910390f35b61039560048036038101906103909190612cd7565b610cf2565b6040516103a29190612b5e565b60405180910390f35b6103b3610dc1565b005b6103cf60048036038101906103ca9190612cd7565b610e49565b6040516103dc9190612957565b60405180910390f35b6103ed610e69565b6040516103fa9190612ac8565b60405180910390f35b61041d60048036038101906104189190612c31565b610e93565b005b610427610f5e565b6040516104349190612a02565b60405180910390f35b61045760048036038101906104529190612d04565b610ff0565b005b610473600480360381019061046e9190612e74565b611167565b005b61047d6111e3565b60405161048a9190612957565b60405180910390f35b6104ad60048036038101906104a89190612a5a565b6112ec565b6040516104ba9190612a02565b60405180910390f35b6104cb6114f4565b6040516104d89190612957565b60405180910390f35b6104e9611507565b6040516104f69190612957565b60405180910390f35b6105076115ac565b6040516105149190612a02565b60405180910390f35b6105256115e5565b6040516105329190612a02565b60405180910390f35b61055560048036038101906105509190612ef7565b611677565b6040516105629190612957565b60405180910390f35b61058560048036038101906105809190612cd7565b61170b565b005b61058f611802565b60405161059c9190612b5e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610680575061067f8261181b565b5b9050919050565b60606002805461069690612f66565b80601f01602080910402602001604051908101604052809291908181526020018280546106c290612f66565b801561070f5780601f106106e45761010080835404028352916020019161070f565b820191906000526020600020905b8154815290600101906020018083116106f257829003601f168201915b5050505050905090565b600061072482611885565b61075a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a082610cdc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610807576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108266118d3565b73ffffffffffffffffffffffffffffffffffffffff16141580156108585750610856816108516118d3565b611677565b155b1561088f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61089a8383836118db565b505050565b60095442106108ad57600080fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561090457600080fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016109619190612ac8565b602060405180830381865afa15801561097e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a29190612fac565b116109ac57600080fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610a2133600160405180602001604052806000815250600161198d565b565b6000610a2d611d57565b6001546000540303905090565b610a45838383611d60565b505050565b60006009544210905090565b610a5e6118d3565b73ffffffffffffffffffffffffffffffffffffffff16610a7c610e69565b73ffffffffffffffffffffffffffffffffffffffff1614610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990613025565b60405180910390fd5b8181600d9182610ae39291906131fc565b507f330b2ff4a885bf6f80261e9830cdeec700b2d965f52f12a62f9e9f3b628fcae98282604051610b159291906132f9565b60405180910390a15050565b610b3c83838360405180602001604052806000815250611167565b505050565b610b496118d3565b73ffffffffffffffffffffffffffffffffffffffff16610b67610e69565b73ffffffffffffffffffffffffffffffffffffffff1614610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490613025565b60405180910390fd5b80600a60006101000a81548160ff0219169083151502179055507f40dcfa5db899ec74bc8371886cd6b7550aa92fd52a425b9c498a839183f2886c81604051610c069190612957565b60405180910390a150565b610c196118d3565b73ffffffffffffffffffffffffffffffffffffffff16610c37610e69565b73ffffffffffffffffffffffffffffffffffffffff1614610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490613025565b60405180910390fd5b8181600c9182610c9e9291906131fc565b507f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa8282604051610cd09291906132f9565b60405180910390a15050565b6000610ce78261224f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d59576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610dc96118d3565b73ffffffffffffffffffffffffffffffffffffffff16610de7610e69565b73ffffffffffffffffffffffffffffffffffffffff1614610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3490613025565b60405180910390fd5b610e4760006124de565b565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e9b6118d3565b73ffffffffffffffffffffffffffffffffffffffff16610eb9610e69565b73ffffffffffffffffffffffffffffffffffffffff1614610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690613025565b60405180910390fd5b8181600e9182610f209291906131fc565b507f5ca9f750836b0b7efdace104f07b5c9f0df0650c0fd24f5163e99044ae36ea528282604051610f529291906132f9565b60405180910390a15050565b606060038054610f6d90612f66565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9990612f66565b8015610fe65780601f10610fbb57610100808354040283529160200191610fe6565b820191906000526020600020905b815481529060010190602001808311610fc957829003601f168201915b5050505050905090565b610ff86118d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361105c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110696118d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111166118d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161115b9190612957565b60405180910390a35050565b611172848484611d60565b6111918373ffffffffffffffffffffffffffffffffffffffff16611808565b80156111a657506111a4848484846125a4565b155b156111dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000600954421080156112405750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112e757506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016112a49190612ac8565b602060405180830381865afa1580156112c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e59190612fac565b115b905090565b60606112f782611885565b611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d9061338f565b60405180910390fd5b600a60009054906101000a900460ff166113dc57600d805461135790612f66565b80601f016020809104026020016040519081016040528092919081815260200182805461138390612f66565b80156113d05780601f106113a5576101008083540402835291602001916113d0565b820191906000526020600020905b8154815290600101906020018083116113b357829003601f168201915b505050505090506114ef565b6000600c80546113eb90612f66565b80601f016020809104026020016040519081016040528092919081815260200182805461141790612f66565b80156114645780601f1061143957610100808354040283529160200191611464565b820191906000526020600020905b81548152906001019060200180831161144757829003601f168201915b50505050509050600081511161148957604051806020016040528060008152506114eb565b80611493846126f4565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016114db939291906133eb565b6040516020818303038152906040525b9150505b919050565b600a60009054906101000a900460ff1681565b600080600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016115659190612ac8565b602060405180830381865afa158015611582573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a69190612fac565b11905090565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6060600e80546115f490612f66565b80601f016020809104026020016040519081016040528092919081815260200182805461162090612f66565b801561166d5780601f106116425761010080835404028352916020019161166d565b820191906000526020600020905b81548152906001019060200180831161165057829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117136118d3565b73ffffffffffffffffffffffffffffffffffffffff16611731610e69565b73ffffffffffffffffffffffffffffffffffffffff1614611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90613025565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed9061348e565b60405180910390fd5b6117ff816124de565b50565b60095481565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611890611d57565b1115801561189f575060005482105b80156118cc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036119f9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403611a33576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a406000868387612854565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015611c0a5750611c098773ffffffffffffffffffffffffffffffffffffffff16611808565b5b15611ccf575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c7f60008884806001019550886125a4565b611cb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203611c10578260005414611cca57600080fd5b611d3a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203611cd0575b816000819055505050611d50600086838761285a565b5050505050565b60006001905090565b6000611d6b8261224f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d926118d3565b73ffffffffffffffffffffffffffffffffffffffff161480611dc55750611dc48260000151611dbf6118d3565b611677565b5b80611e0a5750611dd36118d3565b73ffffffffffffffffffffffffffffffffffffffff16611df284610719565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e43576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611eac576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f12576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f1f8585856001612854565b611f2f60008484600001516118db565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036121df576000548110156121de5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612248858585600161285a565b5050505050565b612257612860565b600082905080612265611d57565b11158015612274575060005481105b156124a7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124a557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123895780925050506124d9565b5b6001156124a457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461249f5780925050506124d9565b61238a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125ca6118d3565b8786866040518563ffffffff1660e01b81526004016125ec9493929190613503565b6020604051808303816000875af192505050801561262857506040513d601f19601f820116820180604052508101906126259190613564565b60015b6126a1573d8060008114612658576040519150601f19603f3d011682016040523d82523d6000602084013e61265d565b606091505b506000815103612699576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361273b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061284f565b600082905060005b6000821461276d578080612756906135c0565b915050600a826127669190613637565b9150612743565b60008167ffffffffffffffff81111561278957612788612d49565b5b6040519080825280601f01601f1916602001820160405280156127bb5781602001600182028036833780820191505090505b5090505b60008514612848576001826127d49190613668565b9150600a856127e3919061369c565b60306127ef91906136cd565b60f81b81838151811061280557612804613701565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128419190613637565b94506127bf565b8093505050505b919050565b50505050565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128ec816128b7565b81146128f757600080fd5b50565b600081359050612909816128e3565b92915050565b600060208284031215612925576129246128ad565b5b6000612933848285016128fa565b91505092915050565b60008115159050919050565b6129518161293c565b82525050565b600060208201905061296c6000830184612948565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129ac578082015181840152602081019050612991565b60008484015250505050565b6000601f19601f8301169050919050565b60006129d482612972565b6129de818561297d565b93506129ee81856020860161298e565b6129f7816129b8565b840191505092915050565b60006020820190508181036000830152612a1c81846129c9565b905092915050565b6000819050919050565b612a3781612a24565b8114612a4257600080fd5b50565b600081359050612a5481612a2e565b92915050565b600060208284031215612a7057612a6f6128ad565b5b6000612a7e84828501612a45565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ab282612a87565b9050919050565b612ac281612aa7565b82525050565b6000602082019050612add6000830184612ab9565b92915050565b612aec81612aa7565b8114612af757600080fd5b50565b600081359050612b0981612ae3565b92915050565b60008060408385031215612b2657612b256128ad565b5b6000612b3485828601612afa565b9250506020612b4585828601612a45565b9150509250929050565b612b5881612a24565b82525050565b6000602082019050612b736000830184612b4f565b92915050565b600080600060608486031215612b9257612b916128ad565b5b6000612ba086828701612afa565b9350506020612bb186828701612afa565b9250506040612bc286828701612a45565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612bf157612bf0612bcc565b5b8235905067ffffffffffffffff811115612c0e57612c0d612bd1565b5b602083019150836001820283011115612c2a57612c29612bd6565b5b9250929050565b60008060208385031215612c4857612c476128ad565b5b600083013567ffffffffffffffff811115612c6657612c656128b2565b5b612c7285828601612bdb565b92509250509250929050565b612c878161293c565b8114612c9257600080fd5b50565b600081359050612ca481612c7e565b92915050565b600060208284031215612cc057612cbf6128ad565b5b6000612cce84828501612c95565b91505092915050565b600060208284031215612ced57612cec6128ad565b5b6000612cfb84828501612afa565b91505092915050565b60008060408385031215612d1b57612d1a6128ad565b5b6000612d2985828601612afa565b9250506020612d3a85828601612c95565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d81826129b8565b810181811067ffffffffffffffff82111715612da057612d9f612d49565b5b80604052505050565b6000612db36128a3565b9050612dbf8282612d78565b919050565b600067ffffffffffffffff821115612ddf57612dde612d49565b5b612de8826129b8565b9050602081019050919050565b82818337600083830152505050565b6000612e17612e1284612dc4565b612da9565b905082815260208101848484011115612e3357612e32612d44565b5b612e3e848285612df5565b509392505050565b600082601f830112612e5b57612e5a612bcc565b5b8135612e6b848260208601612e04565b91505092915050565b60008060008060808587031215612e8e57612e8d6128ad565b5b6000612e9c87828801612afa565b9450506020612ead87828801612afa565b9350506040612ebe87828801612a45565b925050606085013567ffffffffffffffff811115612edf57612ede6128b2565b5b612eeb87828801612e46565b91505092959194509250565b60008060408385031215612f0e57612f0d6128ad565b5b6000612f1c85828601612afa565b9250506020612f2d85828601612afa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f7e57607f821691505b602082108103612f9157612f90612f37565b5b50919050565b600081519050612fa681612a2e565b92915050565b600060208284031215612fc257612fc16128ad565b5b6000612fd084828501612f97565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061300f60208361297d565b915061301a82612fd9565b602082019050919050565b6000602082019050818103600083015261303e81613002565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130b27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613075565b6130bc8683613075565b95508019841693508086168417925050509392505050565b6000819050919050565b60006130f96130f46130ef84612a24565b6130d4565b612a24565b9050919050565b6000819050919050565b613113836130de565b61312761311f82613100565b848454613082565b825550505050565b600090565b61313c61312f565b61314781848461310a565b505050565b5b8181101561316b57613160600082613134565b60018101905061314d565b5050565b601f8211156131b05761318181613050565b61318a84613065565b81016020851015613199578190505b6131ad6131a585613065565b83018261314c565b50505b505050565b600082821c905092915050565b60006131d3600019846008026131b5565b1980831691505092915050565b60006131ec83836131c2565b9150826002028217905092915050565b6132068383613045565b67ffffffffffffffff81111561321f5761321e612d49565b5b6132298254612f66565b61323482828561316f565b6000601f8311600181146132635760008415613251578287013590505b61325b85826131e0565b8655506132c3565b601f19841661327186613050565b60005b8281101561329957848901358255600182019150602085019450602081019050613274565b868310156132b657848901356132b2601f8916826131c2565b8355505b6001600288020188555050505b50505050505050565b60006132d8838561297d565b93506132e5838584612df5565b6132ee836129b8565b840190509392505050565b600060208201905081810360008301526133148184866132cc565b90509392505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613379602f8361297d565b91506133848261331d565b604082019050919050565b600060208201905081810360008301526133a88161336c565b9050919050565b600081905092915050565b60006133c582612972565b6133cf81856133af565b93506133df81856020860161298e565b80840191505092915050565b60006133f782866133ba565b915061340382856133ba565b915061340f82846133ba565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061347860268361297d565b91506134838261341c565b604082019050919050565b600060208201905081810360008301526134a78161346b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134d5826134ae565b6134df81856134b9565b93506134ef81856020860161298e565b6134f8816129b8565b840191505092915050565b60006080820190506135186000830187612ab9565b6135256020830186612ab9565b6135326040830185612b4f565b818103606083015261354481846134ca565b905095945050505050565b60008151905061355e816128e3565b92915050565b60006020828403121561357a576135796128ad565b5b60006135888482850161354f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135cb82612a24565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135fd576135fc613591565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061364282612a24565b915061364d83612a24565b92508261365d5761365c613608565b5b828204905092915050565b600061367382612a24565b915061367e83612a24565b925082820390508181111561369657613695613591565b5b92915050565b60006136a782612a24565b91506136b283612a24565b9250826136c2576136c1613608565b5b828206905092915050565b60006136d882612a24565b91506136e383612a24565b92508282019050808211156136fb576136fa613591565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122034eccda0df5abd79f45b9549cdd40cd048ac08ecc3f573cdf40a1488b6386b2c64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f6d696e742e67757474657270756e6b732e636f2f70726572657665616c2e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f6d696e742e67757474657270756e6b732e636f2f636f6e74726163742e6a736f6e0000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80637de77ecc11610104578063c87b56dd116100a2578063e8a3d48511610071578063e8a3d4851461051d578063e985e9c51461053b578063f2fde38b1461056b578063fb0afca514610587576101da565b8063c87b56dd14610493578063ca2bbb6f146104c3578063ceb4500a146104e1578063d134dd4a146104ff576101da565b806395d89b41116100de57806395d89b411461041f578063a22cb4651461043d578063b88d4fde14610459578063beb9716d14610475576101da565b80637de77ecc146103b55780638da5cb5b146103e5578063938e3d7b14610403576101da565b806325fd90f31161017c57806355f804b31161014b57806355f804b31461032f5780636352211e1461034b57806370a082311461037b578063715018a6146103ab576101da565b806325fd90f3146102bd5780633574a2dd146102db57806342842e0e146102f757806349a5980a14610313576101da565b8063095ea7b3116101b8578063095ea7b31461025d5780631249c58b1461027957806318160ddd1461028357806323b872dd146102a1576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f4919061290f565b6105a5565b6040516102069190612957565b60405180910390f35b610217610687565b6040516102249190612a02565b60405180910390f35b61024760048036038101906102429190612a5a565b610719565b6040516102549190612ac8565b60405180910390f35b61027760048036038101906102729190612b0f565b610795565b005b61028161089f565b005b61028b610a23565b6040516102989190612b5e565b60405180910390f35b6102bb60048036038101906102b69190612b79565b610a3a565b005b6102c5610a4a565b6040516102d29190612957565b60405180910390f35b6102f560048036038101906102f09190612c31565b610a56565b005b610311600480360381019061030c9190612b79565b610b21565b005b61032d60048036038101906103289190612caa565b610b41565b005b61034960048036038101906103449190612c31565b610c11565b005b61036560048036038101906103609190612a5a565b610cdc565b6040516103729190612ac8565b60405180910390f35b61039560048036038101906103909190612cd7565b610cf2565b6040516103a29190612b5e565b60405180910390f35b6103b3610dc1565b005b6103cf60048036038101906103ca9190612cd7565b610e49565b6040516103dc9190612957565b60405180910390f35b6103ed610e69565b6040516103fa9190612ac8565b60405180910390f35b61041d60048036038101906104189190612c31565b610e93565b005b610427610f5e565b6040516104349190612a02565b60405180910390f35b61045760048036038101906104529190612d04565b610ff0565b005b610473600480360381019061046e9190612e74565b611167565b005b61047d6111e3565b60405161048a9190612957565b60405180910390f35b6104ad60048036038101906104a89190612a5a565b6112ec565b6040516104ba9190612a02565b60405180910390f35b6104cb6114f4565b6040516104d89190612957565b60405180910390f35b6104e9611507565b6040516104f69190612957565b60405180910390f35b6105076115ac565b6040516105149190612a02565b60405180910390f35b6105256115e5565b6040516105329190612a02565b60405180910390f35b61055560048036038101906105509190612ef7565b611677565b6040516105629190612957565b60405180910390f35b61058560048036038101906105809190612cd7565b61170b565b005b61058f611802565b60405161059c9190612b5e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610680575061067f8261181b565b5b9050919050565b60606002805461069690612f66565b80601f01602080910402602001604051908101604052809291908181526020018280546106c290612f66565b801561070f5780601f106106e45761010080835404028352916020019161070f565b820191906000526020600020905b8154815290600101906020018083116106f257829003601f168201915b5050505050905090565b600061072482611885565b61075a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a082610cdc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610807576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108266118d3565b73ffffffffffffffffffffffffffffffffffffffff16141580156108585750610856816108516118d3565b611677565b155b1561088f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61089a8383836118db565b505050565b60095442106108ad57600080fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561090457600080fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016109619190612ac8565b602060405180830381865afa15801561097e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a29190612fac565b116109ac57600080fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610a2133600160405180602001604052806000815250600161198d565b565b6000610a2d611d57565b6001546000540303905090565b610a45838383611d60565b505050565b60006009544210905090565b610a5e6118d3565b73ffffffffffffffffffffffffffffffffffffffff16610a7c610e69565b73ffffffffffffffffffffffffffffffffffffffff1614610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990613025565b60405180910390fd5b8181600d9182610ae39291906131fc565b507f330b2ff4a885bf6f80261e9830cdeec700b2d965f52f12a62f9e9f3b628fcae98282604051610b159291906132f9565b60405180910390a15050565b610b3c83838360405180602001604052806000815250611167565b505050565b610b496118d3565b73ffffffffffffffffffffffffffffffffffffffff16610b67610e69565b73ffffffffffffffffffffffffffffffffffffffff1614610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490613025565b60405180910390fd5b80600a60006101000a81548160ff0219169083151502179055507f40dcfa5db899ec74bc8371886cd6b7550aa92fd52a425b9c498a839183f2886c81604051610c069190612957565b60405180910390a150565b610c196118d3565b73ffffffffffffffffffffffffffffffffffffffff16610c37610e69565b73ffffffffffffffffffffffffffffffffffffffff1614610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490613025565b60405180910390fd5b8181600c9182610c9e9291906131fc565b507f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa8282604051610cd09291906132f9565b60405180910390a15050565b6000610ce78261224f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d59576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610dc96118d3565b73ffffffffffffffffffffffffffffffffffffffff16610de7610e69565b73ffffffffffffffffffffffffffffffffffffffff1614610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3490613025565b60405180910390fd5b610e4760006124de565b565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e9b6118d3565b73ffffffffffffffffffffffffffffffffffffffff16610eb9610e69565b73ffffffffffffffffffffffffffffffffffffffff1614610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690613025565b60405180910390fd5b8181600e9182610f209291906131fc565b507f5ca9f750836b0b7efdace104f07b5c9f0df0650c0fd24f5163e99044ae36ea528282604051610f529291906132f9565b60405180910390a15050565b606060038054610f6d90612f66565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9990612f66565b8015610fe65780601f10610fbb57610100808354040283529160200191610fe6565b820191906000526020600020905b815481529060010190602001808311610fc957829003601f168201915b5050505050905090565b610ff86118d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361105c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110696118d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111166118d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161115b9190612957565b60405180910390a35050565b611172848484611d60565b6111918373ffffffffffffffffffffffffffffffffffffffff16611808565b80156111a657506111a4848484846125a4565b155b156111dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000600954421080156112405750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112e757506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016112a49190612ac8565b602060405180830381865afa1580156112c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e59190612fac565b115b905090565b60606112f782611885565b611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d9061338f565b60405180910390fd5b600a60009054906101000a900460ff166113dc57600d805461135790612f66565b80601f016020809104026020016040519081016040528092919081815260200182805461138390612f66565b80156113d05780601f106113a5576101008083540402835291602001916113d0565b820191906000526020600020905b8154815290600101906020018083116113b357829003601f168201915b505050505090506114ef565b6000600c80546113eb90612f66565b80601f016020809104026020016040519081016040528092919081815260200182805461141790612f66565b80156114645780601f1061143957610100808354040283529160200191611464565b820191906000526020600020905b81548152906001019060200180831161144757829003601f168201915b50505050509050600081511161148957604051806020016040528060008152506114eb565b80611493846126f4565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016114db939291906133eb565b6040516020818303038152906040525b9150505b919050565b600a60009054906101000a900460ff1681565b600080600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016115659190612ac8565b602060405180830381865afa158015611582573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a69190612fac565b11905090565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6060600e80546115f490612f66565b80601f016020809104026020016040519081016040528092919081815260200182805461162090612f66565b801561166d5780601f106116425761010080835404028352916020019161166d565b820191906000526020600020905b81548152906001019060200180831161165057829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117136118d3565b73ffffffffffffffffffffffffffffffffffffffff16611731610e69565b73ffffffffffffffffffffffffffffffffffffffff1614611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90613025565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed9061348e565b60405180910390fd5b6117ff816124de565b50565b60095481565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611890611d57565b1115801561189f575060005482105b80156118cc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036119f9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403611a33576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a406000868387612854565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015611c0a5750611c098773ffffffffffffffffffffffffffffffffffffffff16611808565b5b15611ccf575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c7f60008884806001019550886125a4565b611cb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203611c10578260005414611cca57600080fd5b611d3a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203611cd0575b816000819055505050611d50600086838761285a565b5050505050565b60006001905090565b6000611d6b8261224f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d926118d3565b73ffffffffffffffffffffffffffffffffffffffff161480611dc55750611dc48260000151611dbf6118d3565b611677565b5b80611e0a5750611dd36118d3565b73ffffffffffffffffffffffffffffffffffffffff16611df284610719565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e43576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611eac576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f12576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f1f8585856001612854565b611f2f60008484600001516118db565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036121df576000548110156121de5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612248858585600161285a565b5050505050565b612257612860565b600082905080612265611d57565b11158015612274575060005481105b156124a7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124a557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123895780925050506124d9565b5b6001156124a457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461249f5780925050506124d9565b61238a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125ca6118d3565b8786866040518563ffffffff1660e01b81526004016125ec9493929190613503565b6020604051808303816000875af192505050801561262857506040513d601f19601f820116820180604052508101906126259190613564565b60015b6126a1573d8060008114612658576040519150601f19603f3d011682016040523d82523d6000602084013e61265d565b606091505b506000815103612699576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361273b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061284f565b600082905060005b6000821461276d578080612756906135c0565b915050600a826127669190613637565b9150612743565b60008167ffffffffffffffff81111561278957612788612d49565b5b6040519080825280601f01601f1916602001820160405280156127bb5781602001600182028036833780820191505090505b5090505b60008514612848576001826127d49190613668565b9150600a856127e3919061369c565b60306127ef91906136cd565b60f81b81838151811061280557612804613701565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128419190613637565b94506127bf565b8093505050505b919050565b50505050565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128ec816128b7565b81146128f757600080fd5b50565b600081359050612909816128e3565b92915050565b600060208284031215612925576129246128ad565b5b6000612933848285016128fa565b91505092915050565b60008115159050919050565b6129518161293c565b82525050565b600060208201905061296c6000830184612948565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129ac578082015181840152602081019050612991565b60008484015250505050565b6000601f19601f8301169050919050565b60006129d482612972565b6129de818561297d565b93506129ee81856020860161298e565b6129f7816129b8565b840191505092915050565b60006020820190508181036000830152612a1c81846129c9565b905092915050565b6000819050919050565b612a3781612a24565b8114612a4257600080fd5b50565b600081359050612a5481612a2e565b92915050565b600060208284031215612a7057612a6f6128ad565b5b6000612a7e84828501612a45565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ab282612a87565b9050919050565b612ac281612aa7565b82525050565b6000602082019050612add6000830184612ab9565b92915050565b612aec81612aa7565b8114612af757600080fd5b50565b600081359050612b0981612ae3565b92915050565b60008060408385031215612b2657612b256128ad565b5b6000612b3485828601612afa565b9250506020612b4585828601612a45565b9150509250929050565b612b5881612a24565b82525050565b6000602082019050612b736000830184612b4f565b92915050565b600080600060608486031215612b9257612b916128ad565b5b6000612ba086828701612afa565b9350506020612bb186828701612afa565b9250506040612bc286828701612a45565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612bf157612bf0612bcc565b5b8235905067ffffffffffffffff811115612c0e57612c0d612bd1565b5b602083019150836001820283011115612c2a57612c29612bd6565b5b9250929050565b60008060208385031215612c4857612c476128ad565b5b600083013567ffffffffffffffff811115612c6657612c656128b2565b5b612c7285828601612bdb565b92509250509250929050565b612c878161293c565b8114612c9257600080fd5b50565b600081359050612ca481612c7e565b92915050565b600060208284031215612cc057612cbf6128ad565b5b6000612cce84828501612c95565b91505092915050565b600060208284031215612ced57612cec6128ad565b5b6000612cfb84828501612afa565b91505092915050565b60008060408385031215612d1b57612d1a6128ad565b5b6000612d2985828601612afa565b9250506020612d3a85828601612c95565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d81826129b8565b810181811067ffffffffffffffff82111715612da057612d9f612d49565b5b80604052505050565b6000612db36128a3565b9050612dbf8282612d78565b919050565b600067ffffffffffffffff821115612ddf57612dde612d49565b5b612de8826129b8565b9050602081019050919050565b82818337600083830152505050565b6000612e17612e1284612dc4565b612da9565b905082815260208101848484011115612e3357612e32612d44565b5b612e3e848285612df5565b509392505050565b600082601f830112612e5b57612e5a612bcc565b5b8135612e6b848260208601612e04565b91505092915050565b60008060008060808587031215612e8e57612e8d6128ad565b5b6000612e9c87828801612afa565b9450506020612ead87828801612afa565b9350506040612ebe87828801612a45565b925050606085013567ffffffffffffffff811115612edf57612ede6128b2565b5b612eeb87828801612e46565b91505092959194509250565b60008060408385031215612f0e57612f0d6128ad565b5b6000612f1c85828601612afa565b9250506020612f2d85828601612afa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f7e57607f821691505b602082108103612f9157612f90612f37565b5b50919050565b600081519050612fa681612a2e565b92915050565b600060208284031215612fc257612fc16128ad565b5b6000612fd084828501612f97565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061300f60208361297d565b915061301a82612fd9565b602082019050919050565b6000602082019050818103600083015261303e81613002565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130b27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613075565b6130bc8683613075565b95508019841693508086168417925050509392505050565b6000819050919050565b60006130f96130f46130ef84612a24565b6130d4565b612a24565b9050919050565b6000819050919050565b613113836130de565b61312761311f82613100565b848454613082565b825550505050565b600090565b61313c61312f565b61314781848461310a565b505050565b5b8181101561316b57613160600082613134565b60018101905061314d565b5050565b601f8211156131b05761318181613050565b61318a84613065565b81016020851015613199578190505b6131ad6131a585613065565b83018261314c565b50505b505050565b600082821c905092915050565b60006131d3600019846008026131b5565b1980831691505092915050565b60006131ec83836131c2565b9150826002028217905092915050565b6132068383613045565b67ffffffffffffffff81111561321f5761321e612d49565b5b6132298254612f66565b61323482828561316f565b6000601f8311600181146132635760008415613251578287013590505b61325b85826131e0565b8655506132c3565b601f19841661327186613050565b60005b8281101561329957848901358255600182019150602085019450602081019050613274565b868310156132b657848901356132b2601f8916826131c2565b8355505b6001600288020188555050505b50505050505050565b60006132d8838561297d565b93506132e5838584612df5565b6132ee836129b8565b840190509392505050565b600060208201905081810360008301526133148184866132cc565b90509392505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613379602f8361297d565b91506133848261331d565b604082019050919050565b600060208201905081810360008301526133a88161336c565b9050919050565b600081905092915050565b60006133c582612972565b6133cf81856133af565b93506133df81856020860161298e565b80840191505092915050565b60006133f782866133ba565b915061340382856133ba565b915061340f82846133ba565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061347860268361297d565b91506134838261341c565b604082019050919050565b600060208201905081810360008301526134a78161346b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134d5826134ae565b6134df81856134b9565b93506134ef81856020860161298e565b6134f8816129b8565b840191505092915050565b60006080820190506135186000830187612ab9565b6135256020830186612ab9565b6135326040830185612b4f565b818103606083015261354481846134ca565b905095945050505050565b60008151905061355e816128e3565b92915050565b60006020828403121561357a576135796128ad565b5b60006135888482850161354f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135cb82612a24565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135fd576135fc613591565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061364282612a24565b915061364d83612a24565b92508261365d5761365c613608565b5b828204905092915050565b600061367382612a24565b915061367e83612a24565b925082820390508181111561369657613695613591565b5b92915050565b60006136a782612a24565b91506136b283612a24565b9250826136c2576136c1613608565b5b828206905092915050565b60006136d882612a24565b91506136e383612a24565b92508282019050808211156136fb576136fa613591565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122034eccda0df5abd79f45b9549cdd40cd048ac08ecc3f573cdf40a1488b6386b2c64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f6d696e742e67757474657270756e6b732e636f2f70726572657665616c2e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f6d696e742e67757474657270756e6b732e636f2f636f6e74726163742e6a736f6e0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : mPlaceholderURI (string): https://mint.gutterpunks.co/prereveal.json
Arg [1] : mContractURI (string): https://mint.gutterpunks.co/contract.json

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000002a
Arg [3] : 68747470733a2f2f6d696e742e67757474657270756e6b732e636f2f70726572
Arg [4] : 657665616c2e6a736f6e00000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000029
Arg [6] : 68747470733a2f2f6d696e742e67757474657270756e6b732e636f2f636f6e74
Arg [7] : 726163742e6a736f6e0000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

37327:3017:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19772:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23157:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24660:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24223:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39059:258;;;:::i;:::-;;19021:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25517:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39627:107;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38696:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25758:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38396:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38547:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22966:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20141:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15223:103;;;:::i;:::-;;37729:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14572:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38882:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23326:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24936:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26014:369;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39325:169;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39849:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37691:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39502:117;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37596:52;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39742:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25286:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15481:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37657:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19772:305;19874:4;19926:25;19911:40;;;:11;:40;;;;:105;;;;19983:33;19968:48;;;:11;:48;;;;19911:105;:158;;;;20033:36;20057:11;20033:23;:36::i;:::-;19911:158;19891:178;;19772:305;;;:::o;23157:100::-;23211:13;23244:5;23237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23157:100;:::o;24660:204::-;24728:7;24753:16;24761:7;24753;:16::i;:::-;24748:64;;24778:34;;;;;;;;;;;;;;24748:64;24832:15;:24;24848:7;24832:24;;;;;;;;;;;;;;;;;;;;;24825:31;;24660:204;;;:::o;24223:371::-;24296:13;24312:24;24328:7;24312:15;:24::i;:::-;24296:40;;24357:5;24351:11;;:2;:11;;;24347:48;;24371:24;;;;;;;;;;;;;;24347:48;24428:5;24412:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;24438:37;24455:5;24462:12;:10;:12::i;:::-;24438:16;:37::i;:::-;24437:38;24412:63;24408:138;;;24499:35;;;;;;;;;;;;;;24408:138;24558:28;24567:2;24571:7;24580:5;24558:8;:28::i;:::-;24285:309;24223:371;;:::o;39059:258::-;39121:12;;39103:15;:30;39095:39;;;;;;39154:7;:19;39162:10;39154:19;;;;;;;;;;;;;;;;;;;;;;;;;39153:20;39145:29;;;;;;39229:1;39193:11;;;;;;;;;;;:21;;;39215:10;39193:33;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;39185:46;;;;;;39264:4;39242:7;:19;39250:10;39242:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;39279:30;39285:10;39297:1;39279:30;;;;;;;;;;;;39304:4;39279:5;:30::i;:::-;39059:258::o;19021:303::-;19065:7;19290:15;:13;:15::i;:::-;19275:12;;19259:13;;:28;:46;19252:53;;19021:303;:::o;25517:170::-;25651:28;25661:4;25667:2;25671:7;25651:9;:28::i;:::-;25517:170;;;:::o;39627:107::-;39672:4;39714:12;;39696:15;:30;39689:37;;39627:107;:::o;38696:178::-;14803:12;:10;:12::i;:::-;14792:23;;:7;:5;:7::i;:::-;:23;;;14784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38803:14:::1;;38785:15;:32;;;;;;;:::i;:::-;;38833:33;38851:14;;38833:33;;;;;;;:::i;:::-;;;;;;;;38696:178:::0;;:::o;25758:185::-;25896:39;25913:4;25919:2;25923:7;25896:39;;;;;;;;;;;;:16;:39::i;:::-;25758:185;;;:::o;38396:143::-;14803:12;:10;:12::i;:::-;14792:23;;:7;:5;:7::i;:::-;:23;;;14784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38480:10:::1;38466:11;;:24;;;;;;;;;;;;;;;;;;38506:25;38520:10;38506:25;;;;;;:::i;:::-;;;;;;;;38396:143:::0;:::o;38547:141::-;14803:12;:10;:12::i;:::-;14792:23;;:7;:5;:7::i;:::-;:23;;;14784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38638:7:::1;;38622:13;:23;;;;;;;:::i;:::-;;38661:19;38672:7;;38661:19;;;;;;;:::i;:::-;;;;;;;;38547:141:::0;;:::o;22966:124::-;23030:7;23057:20;23069:7;23057:11;:20::i;:::-;:25;;;23050:32;;22966:124;;;:::o;20141:206::-;20205:7;20246:1;20229:19;;:5;:19;;;20225:60;;20257:28;;;;;;;;;;;;;;20225:60;20311:12;:19;20324:5;20311:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;20303:36;;20296:43;;20141:206;;;:::o;15223:103::-;14803:12;:10;:12::i;:::-;14792:23;;:7;:5;:7::i;:::-;:23;;;14784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15288:30:::1;15315:1;15288:18;:30::i;:::-;15223:103::o:0;37729:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;14572:87::-;14618:7;14645:6;;;;;;;;;;;14638:13;;14572:87;:::o;38882:169::-;14803:12;:10;:12::i;:::-;14792:23;;:7;:5;:7::i;:::-;:23;;;14784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38983:14:::1;;38968:12;:29;;;;;;;:::i;:::-;;39013:30;39028:14;;39013:30;;;;;;;:::i;:::-;;;;;;;;38882:169:::0;;:::o;23326:104::-;23382:13;23415:7;23408:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23326:104;:::o;24936:279::-;25039:12;:10;:12::i;:::-;25027:24;;:8;:24;;;25023:54;;25060:17;;;;;;;;;;;;;;25023:54;25135:8;25090:18;:32;25109:12;:10;:12::i;:::-;25090:32;;;;;;;;;;;;;;;:42;25123:8;25090:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25188:8;25159:48;;25174:12;:10;:12::i;:::-;25159:48;;;25198:8;25159:48;;;;;;:::i;:::-;;;;;;;;24936:279;;:::o;26014:369::-;26181:28;26191:4;26197:2;26201:7;26181:9;:28::i;:::-;26224:15;:2;:13;;;:15::i;:::-;:76;;;;;26244:56;26275:4;26281:2;26285:7;26294:5;26244:30;:56::i;:::-;26243:57;26224:76;26220:156;;;26324:40;;;;;;;;;;;;;;26220:156;26014:369;;;;:::o;39325:169::-;39367:4;39409:12;;39391:15;:30;:54;;;;;39426:7;:19;39434:10;39426:19;;;;;;;;;;;;;;;;;;;;;;;;;39425:20;39391:54;:95;;;;;39485:1;39449:11;;;;;;;;;;;:21;;;39471:10;39449:33;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;39391:95;39384:102;;39325:169;:::o;39849:492::-;39914:13;39962:16;39970:7;39962;:16::i;:::-;39940:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;40071:11;;;;;;;;;;;40066:67;;40106:15;40099:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40066:67;40145:21;40169:13;40145:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40224:1;40206:7;40200:21;:25;:133;;;;;;;;;;;;;;;;;40265:7;40274:18;:7;:16;:18::i;:::-;40294:19;;;;;;;;;;;;;;;;;40248:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40200:133;40193:140;;;39849:492;;;;:::o;37691:31::-;;;;;;;;;;;;;:::o;39502:117::-;39550:4;39610:1;39574:11;;;;;;;;;;;:21;;;39596:10;39574:33;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;39567:44;;39502:117;:::o;37596:52::-;;;;;;;;;;;;;;;;;;;:::o;39742:99::-;39788:13;39821:12;39814:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39742:99;:::o;25286:164::-;25383:4;25407:18;:25;25426:5;25407:25;;;;;;;;;;;;;;;:35;25433:8;25407:35;;;;;;;;;;;;;;;;;;;;;;;;;25400:42;;25286:164;;;;:::o;15481:201::-;14803:12;:10;:12::i;:::-;14792:23;;:7;:5;:7::i;:::-;:23;;;14784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15590:1:::1;15570:22;;:8;:22;;::::0;15562:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15646:28;15665:8;15646:18;:28::i;:::-;15481:201:::0;:::o;37657:27::-;;;;:::o;43016:387::-;43076:4;43284:12;43351:7;43339:20;43331:28;;43394:1;43387:4;:8;43380:15;;;43016:387;;;:::o;13479:157::-;13564:4;13603:25;13588:40;;;:11;:40;;;;13581:47;;13479:157;;;:::o;26638:187::-;26695:4;26738:7;26719:15;:13;:15::i;:::-;:26;;:53;;;;;26759:13;;26749:7;:23;26719:53;:98;;;;;26790:11;:20;26802:7;26790:20;;;;;;;;;;;:27;;;;;;;;;;;;26789:28;26719:98;26712:105;;26638:187;;;:::o;5596:98::-;5649:7;5676:10;5669:17;;5596:98;:::o;34249:196::-;34391:2;34364:15;:24;34380:7;34364:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34429:7;34425:2;34409:28;;34418:5;34409:28;;;;;;;;;;;;34249:196;;;:::o;27722:1775::-;27861:20;27884:13;;27861:36;;27926:1;27912:16;;:2;:16;;;27908:48;;27937:19;;;;;;;;;;;;;;27908:48;27983:1;27971:8;:13;27967:44;;27993:18;;;;;;;;;;;;;;27967:44;28024:61;28054:1;28058:2;28062:12;28076:8;28024:21;:61::i;:::-;28397:8;28362:12;:16;28375:2;28362:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28461:8;28421:12;:16;28434:2;28421:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28520:2;28487:11;:25;28499:12;28487:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28587:15;28537:11;:25;28549:12;28537:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;28620:20;28643:12;28620:35;;28670:11;28699:8;28684:12;:23;28670:37;;28728:4;:23;;;;;28736:15;:2;:13;;;:15::i;:::-;28728:23;28724:641;;;28772:314;28828:12;28824:2;28803:38;;28820:1;28803:38;;;;;;;;;;;;28869:69;28908:1;28912:2;28916:14;;;;;;28932:5;28869:30;:69::i;:::-;28864:174;;28974:40;;;;;;;;;;;;;;28864:174;29081:3;29065:12;:19;28772:314;;29167:12;29150:13;;:29;29146:43;;29181:8;;;29146:43;28724:641;;;29230:120;29286:14;;;;;;29282:2;29261:40;;29278:1;29261:40;;;;;;;;;;;;29345:3;29329:12;:19;29230:120;;28724:641;29395:12;29379:13;:28;;;;28337:1082;;29429:60;29458:1;29462:2;29466:12;29480:8;29429:20;:60::i;:::-;27850:1647;27722:1775;;;;:::o;38287:101::-;38352:7;38379:1;38372:8;;38287:101;:::o;29751:2112::-;29866:35;29904:20;29916:7;29904:11;:20::i;:::-;29866:58;;29937:22;29979:13;:18;;;29963:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;30014:50;30031:13;:18;;;30051:12;:10;:12::i;:::-;30014:16;:50::i;:::-;29963:101;:154;;;;30105:12;:10;:12::i;:::-;30081:36;;:20;30093:7;30081:11;:20::i;:::-;:36;;;29963:154;29937:181;;30136:17;30131:66;;30162:35;;;;;;;;;;;;;;30131:66;30234:4;30212:26;;:13;:18;;;:26;;;30208:67;;30247:28;;;;;;;;;;;;;;30208:67;30304:1;30290:16;;:2;:16;;;30286:52;;30315:23;;;;;;;;;;;;;;30286:52;30351:43;30373:4;30379:2;30383:7;30392:1;30351:21;:43::i;:::-;30459:49;30476:1;30480:7;30489:13;:18;;;30459:8;:49::i;:::-;30834:1;30804:12;:18;30817:4;30804:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30878:1;30850:12;:16;30863:2;30850:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30924:2;30896:11;:20;30908:7;30896:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;30986:15;30941:11;:20;30953:7;30941:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;31254:19;31286:1;31276:7;:11;31254:33;;31347:1;31306:43;;:11;:24;31318:11;31306:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;31302:445;;31531:13;;31517:11;:27;31513:219;;;31601:13;:18;;;31569:11;:24;31581:11;31569:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;31684:13;:28;;;31642:11;:24;31654:11;31642:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;31513:219;31302:445;30779:979;31794:7;31790:2;31775:27;;31784:4;31775:27;;;;;;;;;;;;31813:42;31834:4;31840:2;31844:7;31853:1;31813:20;:42::i;:::-;29855:2008;;29751:2112;;;:::o;21796:1108::-;21857:21;;:::i;:::-;21891:12;21906:7;21891:22;;21974:4;21955:15;:13;:15::i;:::-;:23;;:47;;;;;21989:13;;21982:4;:20;21955:47;21951:886;;;22023:31;22057:11;:17;22069:4;22057:17;;;;;;;;;;;22023:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22098:9;:16;;;22093:729;;22169:1;22143:28;;:9;:14;;;:28;;;22139:101;;22207:9;22200:16;;;;;;22139:101;22542:261;22549:4;22542:261;;;22582:6;;;;;;;;22627:11;:17;22639:4;22627:17;;;;;;;;;;;22615:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22701:1;22675:28;;:9;:14;;;:28;;;22671:109;;22743:9;22736:16;;;;;;22671:109;22542:261;;;22093:729;22004:833;21951:886;22865:31;;;;;;;;;;;;;;21796:1108;;;;:::o;15842:191::-;15916:16;15935:6;;;;;;;;;;;15916:25;;15961:8;15952:6;;:17;;;;;;;;;;;;;;;;;;16016:8;15985:40;;16006:8;15985:40;;;;;;;;;;;;15905:128;15842:191;:::o;34937:667::-;35100:4;35137:2;35121:36;;;35158:12;:10;:12::i;:::-;35172:4;35178:7;35187:5;35121:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35117:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35372:1;35355:6;:13;:18;35351:235;;35401:40;;;;;;;;;;;;;;35351:235;35544:6;35538:13;35529:6;35525:2;35521:15;35514:38;35117:480;35250:45;;;35240:55;;;:6;:55;;;;35233:62;;;34937:667;;;;;;:::o;40574:723::-;40630:13;40860:1;40851:5;:10;40847:53;;40878:10;;;;;;;;;;;;;;;;;;;;;40847:53;40910:12;40925:5;40910:20;;40941:14;40966:78;40981:1;40973:4;:9;40966:78;;40999:8;;;;;:::i;:::-;;;;41030:2;41022:10;;;;;:::i;:::-;;;40966:78;;;41054:19;41086:6;41076:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41054:39;;41104:154;41120:1;41111:5;:10;41104:154;;41148:1;41138:11;;;;;:::i;:::-;;;41215:2;41207:5;:10;;;;:::i;:::-;41194:2;:24;;;;:::i;:::-;41181:39;;41164:6;41171;41164:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;41244:2;41235:11;;;;;:::i;:::-;;;41104:154;;;41282:6;41268:21;;;;;40574:723;;;;:::o;36252:159::-;;;;;:::o;37070:158::-;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:116::-;7414:21;7429:5;7414:21;:::i;:::-;7407:5;7404:32;7394:60;;7450:1;7447;7440:12;7394:60;7344:116;:::o;7466:133::-;7509:5;7547:6;7534:20;7525:29;;7563:30;7587:5;7563:30;:::i;:::-;7466:133;;;;:::o;7605:323::-;7661:6;7710:2;7698:9;7689:7;7685:23;7681:32;7678:119;;;7716:79;;:::i;:::-;7678:119;7836:1;7861:50;7903:7;7894:6;7883:9;7879:22;7861:50;:::i;:::-;7851:60;;7807:114;7605:323;;;;:::o;7934:329::-;7993:6;8042:2;8030:9;8021:7;8017:23;8013:32;8010:119;;;8048:79;;:::i;:::-;8010:119;8168:1;8193:53;8238:7;8229:6;8218:9;8214:22;8193:53;:::i;:::-;8183:63;;8139:117;7934:329;;;;:::o;8269:468::-;8334:6;8342;8391:2;8379:9;8370:7;8366:23;8362:32;8359:119;;;8397:79;;:::i;:::-;8359:119;8517:1;8542:53;8587:7;8578:6;8567:9;8563:22;8542:53;:::i;:::-;8532:63;;8488:117;8644:2;8670:50;8712:7;8703:6;8692:9;8688:22;8670:50;:::i;:::-;8660:60;;8615:115;8269:468;;;;;:::o;8743:117::-;8852:1;8849;8842:12;8866:180;8914:77;8911:1;8904:88;9011:4;9008:1;9001:15;9035:4;9032:1;9025:15;9052:281;9135:27;9157:4;9135:27;:::i;:::-;9127:6;9123:40;9265:6;9253:10;9250:22;9229:18;9217:10;9214:34;9211:62;9208:88;;;9276:18;;:::i;:::-;9208:88;9316:10;9312:2;9305:22;9095:238;9052:281;;:::o;9339:129::-;9373:6;9400:20;;:::i;:::-;9390:30;;9429:33;9457:4;9449:6;9429:33;:::i;:::-;9339:129;;;:::o;9474:307::-;9535:4;9625:18;9617:6;9614:30;9611:56;;;9647:18;;:::i;:::-;9611:56;9685:29;9707:6;9685:29;:::i;:::-;9677:37;;9769:4;9763;9759:15;9751:23;;9474:307;;;:::o;9787:146::-;9884:6;9879:3;9874;9861:30;9925:1;9916:6;9911:3;9907:16;9900:27;9787:146;;;:::o;9939:423::-;10016:5;10041:65;10057:48;10098:6;10057:48;:::i;:::-;10041:65;:::i;:::-;10032:74;;10129:6;10122:5;10115:21;10167:4;10160:5;10156:16;10205:3;10196:6;10191:3;10187:16;10184:25;10181:112;;;10212:79;;:::i;:::-;10181:112;10302:54;10349:6;10344:3;10339;10302:54;:::i;:::-;10022:340;9939:423;;;;;:::o;10381:338::-;10436:5;10485:3;10478:4;10470:6;10466:17;10462:27;10452:122;;10493:79;;:::i;:::-;10452:122;10610:6;10597:20;10635:78;10709:3;10701:6;10694:4;10686:6;10682:17;10635:78;:::i;:::-;10626:87;;10442:277;10381:338;;;;:::o;10725:943::-;10820:6;10828;10836;10844;10893:3;10881:9;10872:7;10868:23;10864:33;10861:120;;;10900:79;;:::i;:::-;10861:120;11020:1;11045:53;11090:7;11081:6;11070:9;11066:22;11045:53;:::i;:::-;11035:63;;10991:117;11147:2;11173:53;11218:7;11209:6;11198:9;11194:22;11173:53;:::i;:::-;11163:63;;11118:118;11275:2;11301:53;11346:7;11337:6;11326:9;11322:22;11301:53;:::i;:::-;11291:63;;11246:118;11431:2;11420:9;11416:18;11403:32;11462:18;11454:6;11451:30;11448:117;;;11484:79;;:::i;:::-;11448:117;11589:62;11643:7;11634:6;11623:9;11619:22;11589:62;:::i;:::-;11579:72;;11374:287;10725:943;;;;;;;:::o;11674:474::-;11742:6;11750;11799:2;11787:9;11778:7;11774:23;11770:32;11767:119;;;11805:79;;:::i;:::-;11767:119;11925:1;11950:53;11995:7;11986:6;11975:9;11971:22;11950:53;:::i;:::-;11940:63;;11896:117;12052:2;12078:53;12123:7;12114:6;12103:9;12099:22;12078:53;:::i;:::-;12068:63;;12023:118;11674:474;;;;;:::o;12154:180::-;12202:77;12199:1;12192:88;12299:4;12296:1;12289:15;12323:4;12320:1;12313:15;12340:320;12384:6;12421:1;12415:4;12411:12;12401:22;;12468:1;12462:4;12458:12;12489:18;12479:81;;12545:4;12537:6;12533:17;12523:27;;12479:81;12607:2;12599:6;12596:14;12576:18;12573:38;12570:84;;12626:18;;:::i;:::-;12570:84;12391:269;12340:320;;;:::o;12666:143::-;12723:5;12754:6;12748:13;12739:22;;12770:33;12797:5;12770:33;:::i;:::-;12666:143;;;;:::o;12815:351::-;12885:6;12934:2;12922:9;12913:7;12909:23;12905:32;12902:119;;;12940:79;;:::i;:::-;12902:119;13060:1;13085:64;13141:7;13132:6;13121:9;13117:22;13085:64;:::i;:::-;13075:74;;13031:128;12815:351;;;;:::o;13172:182::-;13312:34;13308:1;13300:6;13296:14;13289:58;13172:182;:::o;13360:366::-;13502:3;13523:67;13587:2;13582:3;13523:67;:::i;:::-;13516:74;;13599:93;13688:3;13599:93;:::i;:::-;13717:2;13712:3;13708:12;13701:19;;13360:366;;;:::o;13732:419::-;13898:4;13936:2;13925:9;13921:18;13913:26;;13985:9;13979:4;13975:20;13971:1;13960:9;13956:17;13949:47;14013:131;14139:4;14013:131;:::i;:::-;14005:139;;13732:419;;;:::o;14157:97::-;14216:6;14244:3;14234:13;;14157:97;;;;:::o;14260:141::-;14309:4;14332:3;14324:11;;14355:3;14352:1;14345:14;14389:4;14386:1;14376:18;14368:26;;14260:141;;;:::o;14407:93::-;14444:6;14491:2;14486;14479:5;14475:14;14471:23;14461:33;;14407:93;;;:::o;14506:107::-;14550:8;14600:5;14594:4;14590:16;14569:37;;14506:107;;;;:::o;14619:393::-;14688:6;14738:1;14726:10;14722:18;14761:97;14791:66;14780:9;14761:97;:::i;:::-;14879:39;14909:8;14898:9;14879:39;:::i;:::-;14867:51;;14951:4;14947:9;14940:5;14936:21;14927:30;;15000:4;14990:8;14986:19;14979:5;14976:30;14966:40;;14695:317;;14619:393;;;;;:::o;15018:60::-;15046:3;15067:5;15060:12;;15018:60;;;:::o;15084:142::-;15134:9;15167:53;15185:34;15194:24;15212:5;15194:24;:::i;:::-;15185:34;:::i;:::-;15167:53;:::i;:::-;15154:66;;15084:142;;;:::o;15232:75::-;15275:3;15296:5;15289:12;;15232:75;;;:::o;15313:269::-;15423:39;15454:7;15423:39;:::i;:::-;15484:91;15533:41;15557:16;15533:41;:::i;:::-;15525:6;15518:4;15512:11;15484:91;:::i;:::-;15478:4;15471:105;15389:193;15313:269;;;:::o;15588:73::-;15633:3;15588:73;:::o;15667:189::-;15744:32;;:::i;:::-;15785:65;15843:6;15835;15829:4;15785:65;:::i;:::-;15720:136;15667:189;;:::o;15862:186::-;15922:120;15939:3;15932:5;15929:14;15922:120;;;15993:39;16030:1;16023:5;15993:39;:::i;:::-;15966:1;15959:5;15955:13;15946:22;;15922:120;;;15862:186;;:::o;16054:543::-;16155:2;16150:3;16147:11;16144:446;;;16189:38;16221:5;16189:38;:::i;:::-;16273:29;16291:10;16273:29;:::i;:::-;16263:8;16259:44;16456:2;16444:10;16441:18;16438:49;;;16477:8;16462:23;;16438:49;16500:80;16556:22;16574:3;16556:22;:::i;:::-;16546:8;16542:37;16529:11;16500:80;:::i;:::-;16159:431;;16144:446;16054:543;;;:::o;16603:117::-;16657:8;16707:5;16701:4;16697:16;16676:37;;16603:117;;;;:::o;16726:169::-;16770:6;16803:51;16851:1;16847:6;16839:5;16836:1;16832:13;16803:51;:::i;:::-;16799:56;16884:4;16878;16874:15;16864:25;;16777:118;16726:169;;;;:::o;16900:295::-;16976:4;17122:29;17147:3;17141:4;17122:29;:::i;:::-;17114:37;;17184:3;17181:1;17177:11;17171:4;17168:21;17160:29;;16900:295;;;;:::o;17200:1403::-;17324:44;17364:3;17359;17324:44;:::i;:::-;17433:18;17425:6;17422:30;17419:56;;;17455:18;;:::i;:::-;17419:56;17499:38;17531:4;17525:11;17499:38;:::i;:::-;17584:67;17644:6;17636;17630:4;17584:67;:::i;:::-;17678:1;17707:2;17699:6;17696:14;17724:1;17719:632;;;;18395:1;18412:6;18409:84;;;18468:9;18463:3;18459:19;18446:33;18437:42;;18409:84;18519:67;18579:6;18572:5;18519:67;:::i;:::-;18513:4;18506:81;18368:229;17689:908;;17719:632;17771:4;17767:9;17759:6;17755:22;17805:37;17837:4;17805:37;:::i;:::-;17864:1;17878:215;17892:7;17889:1;17886:14;17878:215;;;17978:9;17973:3;17969:19;17956:33;17948:6;17941:49;18029:1;18021:6;18017:14;18007:24;;18076:2;18065:9;18061:18;18048:31;;17915:4;17912:1;17908:12;17903:17;;17878:215;;;18121:6;18112:7;18109:19;18106:186;;;18186:9;18181:3;18177:19;18164:33;18229:48;18271:4;18263:6;18259:17;18248:9;18229:48;:::i;:::-;18221:6;18214:64;18129:163;18106:186;18338:1;18334;18326:6;18322:14;18318:22;18312:4;18305:36;17726:625;;;17689:908;;17299:1304;;;17200:1403;;;:::o;18633:317::-;18731:3;18752:71;18816:6;18811:3;18752:71;:::i;:::-;18745:78;;18833:56;18882:6;18877:3;18870:5;18833:56;:::i;:::-;18914:29;18936:6;18914:29;:::i;:::-;18909:3;18905:39;18898:46;;18633:317;;;;;:::o;18956:333::-;19079:4;19117:2;19106:9;19102:18;19094:26;;19166:9;19160:4;19156:20;19152:1;19141:9;19137:17;19130:47;19194:88;19277:4;19268:6;19260;19194:88;:::i;:::-;19186:96;;18956:333;;;;;:::o;19295:234::-;19435:34;19431:1;19423:6;19419:14;19412:58;19504:17;19499:2;19491:6;19487:15;19480:42;19295:234;:::o;19535:366::-;19677:3;19698:67;19762:2;19757:3;19698:67;:::i;:::-;19691:74;;19774:93;19863:3;19774:93;:::i;:::-;19892:2;19887:3;19883:12;19876:19;;19535:366;;;:::o;19907:419::-;20073:4;20111:2;20100:9;20096:18;20088:26;;20160:9;20154:4;20150:20;20146:1;20135:9;20131:17;20124:47;20188:131;20314:4;20188:131;:::i;:::-;20180:139;;19907:419;;;:::o;20332:148::-;20434:11;20471:3;20456:18;;20332:148;;;;:::o;20486:390::-;20592:3;20620:39;20653:5;20620:39;:::i;:::-;20675:89;20757:6;20752:3;20675:89;:::i;:::-;20668:96;;20773:65;20831:6;20826:3;20819:4;20812:5;20808:16;20773:65;:::i;:::-;20863:6;20858:3;20854:16;20847:23;;20596:280;20486:390;;;;:::o;20882:595::-;21110:3;21132:95;21223:3;21214:6;21132:95;:::i;:::-;21125:102;;21244:95;21335:3;21326:6;21244:95;:::i;:::-;21237:102;;21356:95;21447:3;21438:6;21356:95;:::i;:::-;21349:102;;21468:3;21461:10;;20882:595;;;;;;:::o;21483:225::-;21623:34;21619:1;21611:6;21607:14;21600:58;21692:8;21687:2;21679:6;21675:15;21668:33;21483:225;:::o;21714:366::-;21856:3;21877:67;21941:2;21936:3;21877:67;:::i;:::-;21870:74;;21953:93;22042:3;21953:93;:::i;:::-;22071:2;22066:3;22062:12;22055:19;;21714:366;;;:::o;22086:419::-;22252:4;22290:2;22279:9;22275:18;22267:26;;22339:9;22333:4;22329:20;22325:1;22314:9;22310:17;22303:47;22367:131;22493:4;22367:131;:::i;:::-;22359:139;;22086:419;;;:::o;22511:98::-;22562:6;22596:5;22590:12;22580:22;;22511:98;;;:::o;22615:168::-;22698:11;22732:6;22727:3;22720:19;22772:4;22767:3;22763:14;22748:29;;22615:168;;;;:::o;22789:373::-;22875:3;22903:38;22935:5;22903:38;:::i;:::-;22957:70;23020:6;23015:3;22957:70;:::i;:::-;22950:77;;23036:65;23094:6;23089:3;23082:4;23075:5;23071:16;23036:65;:::i;:::-;23126:29;23148:6;23126:29;:::i;:::-;23121:3;23117:39;23110:46;;22879:283;22789:373;;;;:::o;23168:640::-;23363:4;23401:3;23390:9;23386:19;23378:27;;23415:71;23483:1;23472:9;23468:17;23459:6;23415:71;:::i;:::-;23496:72;23564:2;23553:9;23549:18;23540:6;23496:72;:::i;:::-;23578;23646:2;23635:9;23631:18;23622:6;23578:72;:::i;:::-;23697:9;23691:4;23687:20;23682:2;23671:9;23667:18;23660:48;23725:76;23796:4;23787:6;23725:76;:::i;:::-;23717:84;;23168:640;;;;;;;:::o;23814:141::-;23870:5;23901:6;23895:13;23886:22;;23917:32;23943:5;23917:32;:::i;:::-;23814:141;;;;:::o;23961:349::-;24030:6;24079:2;24067:9;24058:7;24054:23;24050:32;24047:119;;;24085:79;;:::i;:::-;24047:119;24205:1;24230:63;24285:7;24276:6;24265:9;24261:22;24230:63;:::i;:::-;24220:73;;24176:127;23961:349;;;;:::o;24316:180::-;24364:77;24361:1;24354:88;24461:4;24458:1;24451:15;24485:4;24482:1;24475:15;24502:233;24541:3;24564:24;24582:5;24564:24;:::i;:::-;24555:33;;24610:66;24603:5;24600:77;24597:103;;24680:18;;:::i;:::-;24597:103;24727:1;24720:5;24716:13;24709:20;;24502:233;;;:::o;24741:180::-;24789:77;24786:1;24779:88;24886:4;24883:1;24876:15;24910:4;24907:1;24900:15;24927:185;24967:1;24984:20;25002:1;24984:20;:::i;:::-;24979:25;;25018:20;25036:1;25018:20;:::i;:::-;25013:25;;25057:1;25047:35;;25062:18;;:::i;:::-;25047:35;25104:1;25101;25097:9;25092:14;;24927:185;;;;:::o;25118:194::-;25158:4;25178:20;25196:1;25178:20;:::i;:::-;25173:25;;25212:20;25230:1;25212:20;:::i;:::-;25207:25;;25256:1;25253;25249:9;25241:17;;25280:1;25274:4;25271:11;25268:37;;;25285:18;;:::i;:::-;25268:37;25118:194;;;;:::o;25318:176::-;25350:1;25367:20;25385:1;25367:20;:::i;:::-;25362:25;;25401:20;25419:1;25401:20;:::i;:::-;25396:25;;25440:1;25430:35;;25445:18;;:::i;:::-;25430:35;25486:1;25483;25479:9;25474:14;;25318:176;;;;:::o;25500:191::-;25540:3;25559:20;25577:1;25559:20;:::i;:::-;25554:25;;25593:20;25611:1;25593:20;:::i;:::-;25588:25;;25636:1;25633;25629:9;25622:16;;25657:3;25654:1;25651:10;25648:36;;;25664:18;;:::i;:::-;25648:36;25500:191;;;;:::o;25697:180::-;25745:77;25742:1;25735:88;25842:4;25839:1;25832:15;25866:4;25863:1;25856:15

Swarm Source

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