ETH Price: $3,340.93 (-0.77%)
Gas: 5 Gwei

Contract

0x126Ca81e08E777b6F75da7854CA749A920A5F734
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...140252092022-01-17 20:31:47924 days ago1642451507IN
0x126Ca81e...920A5F734
0 ETH0.00844851181.36468001
Set Approval For...139779332022-01-10 13:06:14931 days ago1641819974IN
0x126Ca81e...920A5F734
0 ETH0.01029754221.05792062
Mint121092962021-03-25 16:57:151222 days ago1616691435IN
0x126Ca81e...920A5F734
0 ETH0.02123731159
Mint121061042021-03-25 5:07:031223 days ago1616648823IN
0x126Ca81e...920A5F734
0 ETH0.01375388116
Set Approval For...121045722021-03-24 23:25:031223 days ago1616628303IN
0x126Ca81e...920A5F734
0 ETH0.00815094180
Set Approval For...121030712021-03-24 17:58:401223 days ago1616608720IN
0x126Ca81e...920A5F734
0 ETH0.00833207184
Mint120993192021-03-24 3:57:131224 days ago1616558233IN
0x126Ca81e...920A5F734
0 ETH0.01402338105
0x60806040120928792021-03-23 4:13:301225 days ago1616472810IN
 Create: MarioXCantBuyThis
0 ETH0.30331132113

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MarioXCantBuyThis

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-23
*/

// Sources flattened with hardhat v2.1.1 https://hardhat.org
// SPDX-License-Identifier: MIT
pragma solidity 0.8.0;

// File src/contracts/tokens/erc721.sol

/**
 * @dev ERC-721 non-fungible token standard.
 * See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md.
 */
interface ERC721 {
  /**
   * @dev Emits when ownership of any NFT changes by any mechanism. This event emits when NFTs are
   * created (`from` == 0) and destroyed (`to` == 0). Exception: during contract creation, any
   * number of NFTs may be created and assigned without emitting Transfer. At the time of any
   * transfer, the approved address for that NFT (if any) is reset to none.
   */
  event Transfer(address indexed _from, address indexed _to, uint256 indexed _tokenId);

  /**
   * @dev This emits when the approved address for an NFT is changed or reaffirmed. The zero
   * address indicates there is no approved address. When a Transfer event emits, this also
   * indicates that the approved address for that NFT (if any) is reset to none.
   */
  event Approval(address indexed _owner, address indexed _approved, uint256 indexed _tokenId);

  /**
   * @dev This emits when an operator is enabled or disabled for an owner. The operator can manage
   * all NFTs of the owner.
   */
  event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);

  /**
   * @dev Transfers the ownership of an NFT from one address to another address.
   * @notice Throws unless `msg.sender` is the current owner, an authorized operator, or the
   * approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is
   * the zero address. Throws if `_tokenId` is not a valid NFT. When transfer is complete, this
   * function checks if `_to` is a smart contract (code size > 0). If so, it calls
   * `onERC721Received` on `_to` and throws if the return value is not
   * `bytes4(keccak256("onERC721Received(address,uint256,bytes)"))`.
   * @param _from The current owner of the NFT.
   * @param _to The new owner.
   * @param _tokenId The NFT to transfer.
   * @param _data Additional data with no specified format, sent in call to `_to`.
   */
  function safeTransferFrom(
    address _from,
    address _to,
    uint256 _tokenId,
    bytes calldata _data
  ) external;

  /**
   * @dev Transfers the ownership of an NFT from one address to another address.
   * @notice This works identically to the other function with an extra data parameter, except this
   * function just sets data to ""
   * @param _from The current owner of the NFT.
   * @param _to The new owner.
   * @param _tokenId The NFT to transfer.
   */
  function safeTransferFrom(
    address _from,
    address _to,
    uint256 _tokenId
  ) external;

  /**
   * @dev Throws unless `msg.sender` is the current owner, an authorized operator, or the approved
   * address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero
   * address. Throws if `_tokenId` is not a valid NFT.
   * @notice The caller is responsible to confirm that `_to` is capable of receiving NFTs or else
   * they mayb be permanently lost.
   * @param _from The current owner of the NFT.
   * @param _to The new owner.
   * @param _tokenId The NFT to transfer.
   */
  function transferFrom(
    address _from,
    address _to,
    uint256 _tokenId
  ) external;

  /**
   * @dev Set or reaffirm the approved address for an NFT.
   * @notice The zero address indicates there is no approved address. Throws unless `msg.sender` is
   * the current NFT owner, or an authorized operator of the current owner.
   * @param _approved The new approved NFT controller.
   * @param _tokenId The NFT to approve.
   */
  function approve(address _approved, uint256 _tokenId) external;

  /**
   * @dev Enables or disables approval for a third party ("operator") to manage all of
   * `msg.sender`'s assets. It also emits the ApprovalForAll event.
   * @notice The contract MUST allow multiple operators per owner.
   * @param _operator Address to add to the set of authorized operators.
   * @param _approved True if the operators is approved, false to revoke approval.
   */
  function setApprovalForAll(address _operator, bool _approved) external;

  /**
   * @dev Returns the number of NFTs owned by `_owner`. NFTs assigned to the zero address are
   * considered invalid, and this function throws for queries about the zero address.
   * @param _owner Address for whom to query the balance.
   * @return Balance of _owner.
   */
  function balanceOf(address _owner) external view returns (uint256);

  /**
   * @dev Returns the address of the owner of the NFT. NFTs assigned to zero address are considered
   * invalid, and queries about them do throw.
   * @param _tokenId The identifier for an NFT.
   * @return Address of _tokenId owner.
   */
  function ownerOf(uint256 _tokenId) external view returns (address);

  /**
   * @dev Get the approved address for a single NFT.
   * @notice Throws if `_tokenId` is not a valid NFT.
   * @param _tokenId The NFT to find the approved address for.
   * @return Address that _tokenId is approved for.
   */
  function getApproved(uint256 _tokenId) external view returns (address);

  /**
   * @dev Returns true if `_operator` is an approved operator for `_owner`, false otherwise.
   * @param _owner The address that owns the NFTs.
   * @param _operator The address that acts on behalf of the owner.
   * @return True if approved for all, false otherwise.
   */
  function isApprovedForAll(address _owner, address _operator) external view returns (bool);
}


// File src/contracts/tokens/erc721-token-receiver.sol

/**
 * @dev ERC-721 interface for accepting safe transfers.
 * See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md.
 */
interface ERC721TokenReceiver {
  /**
   * @dev Handle the receipt of a NFT. The ERC721 smart contract calls this function on the
   * recipient after a `transfer`. This function MAY throw to revert and reject the transfer. Return
   * of other than the magic value MUST result in the transaction being reverted.
   * Returns `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` unless throwing.
   * @notice The contract address is always the message sender. A wallet/broker/auction application
   * MUST implement the wallet interface if it will accept safe transfers.
   * @param _operator The address which called `safeTransferFrom` function.
   * @param _from The address which previously owned the token.
   * @param _tokenId The NFT identifier which is being transferred.
   * @param _data Additional data with no specified format.
   * @return Returns `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`.
   */
  function onERC721Received(
    address _operator,
    address _from,
    uint256 _tokenId,
    bytes calldata _data
  ) external returns (bytes4);
}


// File src/contracts/utils/erc165.sol

/**
 * @dev A standard for detecting smart contract interfaces.
 * See: https://eips.ethereum.org/EIPS/eip-165.
 */
interface ERC165 {
  /**
   * @dev Checks if the smart contract includes a specific interface.
   * This function uses less than 30,000 gas.
   * @param _interfaceID The interface identifier, as specified in ERC-165.
   * @return True if _interfaceID is supported, false otherwise.
   */
  function supportsInterface(bytes4 _interfaceID) external view returns (bool);
}


// File src/contracts/utils/supports-interface.sol

/**
 * @dev Implementation of standard for detect smart contract interfaces.
 */
contract SupportsInterface is ERC165 {
  /**
   * @dev Mapping of supported intefraces. You must not set element 0xffffffff to true.
   */
  mapping(bytes4 => bool) internal supportedInterfaces;

  /**
   * @dev Contract constructor.
   */
  constructor() {
    supportedInterfaces[0x01ffc9a7] = true; // ERC165
  }

  /**
   * @dev Function to check which interfaces are suported by this contract.
   * @param _interfaceID Id of the interface.
   * @return True if _interfaceID is supported, false otherwise.
   */
  function supportsInterface(bytes4 _interfaceID) external view override returns (bool) {
    return supportedInterfaces[_interfaceID];
  }
}


// File src/contracts/utils/address-utils.sol

/**
 * @dev Utility library of inline functions on addresses.
 * @notice Based on:
 * https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol
 * Requires EIP-1052.
 */
library AddressUtils {
  /**
   * @dev Returns whether the target address is a contract.
   * @param _addr Address to check.
   * @return addressCheck True if _addr is a contract, false if not.
   */
  function isContract(address _addr) internal view returns (bool addressCheck) {
    // This method relies in extcodesize, which returns 0 for contracts in
    // construction, since the code is only stored at the end of the
    // constructor execution.

    // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
    // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
    // for accounts without code, i.e. `keccak256('')`
    bytes32 codehash;
    bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
    assembly {
      codehash := extcodehash(_addr)
    } // solhint-disable-line
    addressCheck = (codehash != 0x0 && codehash != accountHash);
  }
}


// File src/contracts/tokens/nf-token.sol

/**
 * @dev Implementation of ERC-721 non-fungible token standard.
 */
contract NFToken is ERC721, SupportsInterface {
  using AddressUtils for address;

  /**
   * @dev List of revert message codes. Implementing dApp should handle showing the correct message.
   * Based on 0xcert framework error codes.
   */
  string constant ZERO_ADDRESS = "003001";
  string constant NOT_VALID_NFT = "003002";
  string constant NOT_OWNER_OR_OPERATOR = "003003";
  string constant NOT_OWNER_APPROVED_OR_OPERATOR = "003004";
  string constant NOT_ABLE_TO_RECEIVE_NFT = "003005";
  string constant NFT_ALREADY_EXISTS = "003006";
  string constant NOT_OWNER = "003007";
  string constant IS_OWNER = "003008";

  /**
   * @dev Magic value of a smart contract that can recieve NFT.
   * Equal to: bytes4(keccak256("onERC721Received(address,address,uint256,bytes)")).
   */
  bytes4 internal constant MAGIC_ON_ERC721_RECEIVED = 0x150b7a02;

  /**
   * @dev A mapping from NFT ID to the address that owns it.
   */
  mapping(uint256 => address) internal idToOwner;

  /**
   * @dev Mapping from NFT ID to approved address.
   */
  mapping(uint256 => address) internal idToApproval;

  /**
   * @dev Mapping from owner address to count of his tokens.
   */
  mapping(address => uint256) private ownerToNFTokenCount;

  /**
   * @dev Mapping from owner address to mapping of operator addresses.
   */
  mapping(address => mapping(address => bool)) internal ownerToOperators;

  /**
   * @dev Guarantees that the msg.sender is an owner or operator of the given NFT.
   * @param _tokenId ID of the NFT to validate.
   */
  modifier canOperate(uint256 _tokenId) {
    address tokenOwner = idToOwner[_tokenId];
    require(
      tokenOwner == msg.sender || ownerToOperators[tokenOwner][msg.sender],
      NOT_OWNER_OR_OPERATOR
    );
    _;
  }

  /**
   * @dev Guarantees that the msg.sender is allowed to transfer NFT.
   * @param _tokenId ID of the NFT to transfer.
   */
  modifier canTransfer(uint256 _tokenId) {
    address tokenOwner = idToOwner[_tokenId];
    require(
      tokenOwner == msg.sender ||
        idToApproval[_tokenId] == msg.sender ||
        ownerToOperators[tokenOwner][msg.sender],
      NOT_OWNER_APPROVED_OR_OPERATOR
    );
    _;
  }

  /**
   * @dev Guarantees that _tokenId is a valid Token.
   * @param _tokenId ID of the NFT to validate.
   */
  modifier validNFToken(uint256 _tokenId) {
    require(idToOwner[_tokenId] != address(0), NOT_VALID_NFT);
    _;
  }

  /**
   * @dev Contract constructor.
   */
  constructor() {
    supportedInterfaces[0x80ac58cd] = true; // ERC721
  }

  /**
   * @dev Transfers the ownership of an NFT from one address to another address. This function can
   * be changed to payable.
   * @notice Throws unless `msg.sender` is the current owner, an authorized operator, or the
   * approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is
   * the zero address. Throws if `_tokenId` is not a valid NFT. When transfer is complete, this
   * function checks if `_to` is a smart contract (code size > 0). If so, it calls
   * `onERC721Received` on `_to` and throws if the return value is not
   * `bytes4(keccak256("onERC721Received(address,uint256,bytes)"))`.
   * @param _from The current owner of the NFT.
   * @param _to The new owner.
   * @param _tokenId The NFT to transfer.
   * @param _data Additional data with no specified format, sent in call to `_to`.
   */
  function safeTransferFrom(
    address _from,
    address _to,
    uint256 _tokenId,
    bytes calldata _data
  ) external override {
    _safeTransferFrom(_from, _to, _tokenId, _data);
  }

  /**
   * @dev Transfers the ownership of an NFT from one address to another address. This function can
   * be changed to payable.
   * @notice This works identically to the other function with an extra data parameter, except this
   * function just sets data to ""
   * @param _from The current owner of the NFT.
   * @param _to The new owner.
   * @param _tokenId The NFT to transfer.
   */
  function safeTransferFrom(
    address _from,
    address _to,
    uint256 _tokenId
  ) external override {
    _safeTransferFrom(_from, _to, _tokenId, "");
  }

  /**
   * @dev Throws unless `msg.sender` is the current owner, an authorized operator, or the approved
   * address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero
   * address. Throws if `_tokenId` is not a valid NFT. This function can be changed to payable.
   * @notice The caller is responsible to confirm that `_to` is capable of receiving NFTs or else
   * they maybe be permanently lost.
   * @param _from The current owner of the NFT.
   * @param _to The new owner.
   * @param _tokenId The NFT to transfer.
   */
  function transferFrom(
    address _from,
    address _to,
    uint256 _tokenId
  ) external override canTransfer(_tokenId) validNFToken(_tokenId) {
    address tokenOwner = idToOwner[_tokenId];
    require(tokenOwner == _from, NOT_OWNER);
    require(_to != address(0), ZERO_ADDRESS);

    if (tokenOwner == msg.sender) {
      _transfer(_to, _tokenId);
    } else {
      _fakeTransfer(_to, _tokenId);
    }
  }

  /**
   * @dev Set or reaffirm the approved address for an NFT. This function can be changed to payable.
   * @notice The zero address indicates there is no approved address. Throws unless `msg.sender` is
   * the current NFT owner, or an authorized operator of the current owner.
   * @param _approved Address to be approved for the given NFT ID.
   * @param _tokenId ID of the token to be approved.
   */
  function approve(address _approved, uint256 _tokenId)
    external
    override
    canOperate(_tokenId)
    validNFToken(_tokenId)
  {
    address tokenOwner = idToOwner[_tokenId];
    require(_approved != tokenOwner, IS_OWNER);

    idToApproval[_tokenId] = _approved;
    emit Approval(tokenOwner, _approved, _tokenId);
  }

  /**
   * @dev Enables or disables approval for a third party ("operator") to manage all of
   * `msg.sender`'s assets. It also emits the ApprovalForAll event.
   * @notice This works even if sender doesn't own any tokens at the time.
   * @param _operator Address to add to the set of authorized operators.
   * @param _approved True if the operators is approved, false to revoke approval.
   */
  function setApprovalForAll(address _operator, bool _approved) external override {
    ownerToOperators[msg.sender][_operator] = _approved;
    emit ApprovalForAll(msg.sender, _operator, _approved);
  }

  /**
   * @dev Returns the number of NFTs owned by `_owner`. NFTs assigned to the zero address are
   * considered invalid, and this function throws for queries about the zero address.
   * @param _owner Address for whom to query the balance.
   * @return Balance of _owner.
   */
  function balanceOf(address _owner) external view override returns (uint256) {
    require(_owner != address(0), ZERO_ADDRESS);
    return _getOwnerNFTCount(_owner);
  }

  /**
   * @dev Returns the address of the owner of the NFT. NFTs assigned to zero address are considered
   * invalid, and queries about them do throw.
   * @param _tokenId The identifier for an NFT.
   * @return _owner Address of _tokenId owner.
   */
  function ownerOf(uint256 _tokenId) external view override returns (address _owner) {
    _owner = idToOwner[_tokenId];
    require(_owner != address(0), NOT_VALID_NFT);
  }

  /**
   * @dev Get the approved address for a single NFT.
   * @notice Throws if `_tokenId` is not a valid NFT.
   * @param _tokenId ID of the NFT to query the approval of.
   * @return Address that _tokenId is approved for.
   */
  function getApproved(uint256 _tokenId)
    external
    view
    override
    validNFToken(_tokenId)
    returns (address)
  {
    return idToApproval[_tokenId];
  }

  /**
   * @dev Checks if `_operator` is an approved operator for `_owner`.
   * @param _owner The address that owns the NFTs.
   * @param _operator The address that acts on behalf of the owner.
   * @return True if approved for all, false otherwise.
   */
  function isApprovedForAll(address _owner, address _operator)
    external
    view
    override
    returns (bool)
  {
    return ownerToOperators[_owner][_operator];
  }

  /**
   * @dev Actually preforms the transfer.
   * @notice Does NO checks.
   * @param _to Address of a new owner.
   * @param _tokenId The NFT that is being transferred.
   */
  function _transfer(address _to, uint256 _tokenId) internal {
    address from = idToOwner[_tokenId];
    _clearApproval(_tokenId);

    _removeNFToken(from, _tokenId);
    _addNFToken(_to, _tokenId);

    emit Transfer(from, _to, _tokenId);
  }

  /**
   * @dev Perform a fake transfer
   * @notice Does NO checks.
   * @param _to Address of what might have been the new owner.
   * @param _tokenId The NFT that is not going to be transferred.
   */
  function _fakeTransfer(address _to, uint256 _tokenId) internal {
    address tokenOwner = idToOwner[_tokenId];
    address approved = idToApproval[_tokenId];

    emit Transfer(tokenOwner, _to, _tokenId);
    emit Transfer(_to, tokenOwner, _tokenId);

    if (approved != address(0)) {
      emit Approval(tokenOwner, approved, _tokenId);
    }
  }

  /**
   * @dev Mints a new NFT.
   * @notice This is an internal function which should be called from user-implemented external
   * mint function. Its purpose is to show and properly initialize data structures when using this
   * implementation.
   * @param _to The address that will own the minted NFT.
   * @param _tokenId of the NFT to be minted by the msg.sender.
   */
  function _mint(address _to, uint256 _tokenId) internal virtual {
    require(_to != address(0), ZERO_ADDRESS);
    require(idToOwner[_tokenId] == address(0), NFT_ALREADY_EXISTS);

    _addNFToken(_to, _tokenId);

    emit Transfer(address(0), _to, _tokenId);
  }

  /**
   * @dev Burns a NFT.
   * @notice This is an internal function which should be called from user-implemented external burn
   * function. Its purpose is to show and properly initialize data structures when using this
   * implementation. Also, note that this burn implementation allows the minter to re-mint a burned
   * NFT.
   * @param _tokenId ID of the NFT to be burned.
   */
  function _burn(uint256 _tokenId) internal virtual validNFToken(_tokenId) {
    address tokenOwner = idToOwner[_tokenId];
    _clearApproval(_tokenId);
    _removeNFToken(tokenOwner, _tokenId);
    emit Transfer(tokenOwner, address(0), _tokenId);
  }

  /**
   * @dev Removes a NFT from owner.
   * @notice Use and override this function with caution. Wrong usage can have serious consequences.
   * @param _from Address from wich we want to remove the NFT.
   * @param _tokenId Which NFT we want to remove.
   */
  function _removeNFToken(address _from, uint256 _tokenId) internal virtual {
    require(idToOwner[_tokenId] == _from, NOT_OWNER);
    ownerToNFTokenCount[_from] = ownerToNFTokenCount[_from] - 1;
    delete idToOwner[_tokenId];
  }

  /**
   * @dev Assignes a new NFT to owner.
   * @notice Use and override this function with caution. Wrong usage can have serious consequences.
   * @param _to Address to wich we want to add the NFT.
   * @param _tokenId Which NFT we want to add.
   */
  function _addNFToken(address _to, uint256 _tokenId) internal virtual {
    require(idToOwner[_tokenId] == address(0), NFT_ALREADY_EXISTS);

    idToOwner[_tokenId] = _to;
    ownerToNFTokenCount[_to] = ownerToNFTokenCount[_to] + 1;
  }

  /**
   * @dev Helper function that gets NFT count of owner. This is needed for overriding in enumerable
   * extension to remove double storage (gas optimization) of owner nft count.
   * @param _owner Address for whom to query the count.
   * @return Number of _owner NFTs.
   */
  function _getOwnerNFTCount(address _owner) internal view virtual returns (uint256) {
    return ownerToNFTokenCount[_owner];
  }

  /**
   * @dev Actually perform the safeTransferFrom.
   * @param _from The current owner of the NFT.
   * @param _to The new owner.
   * @param _tokenId The NFT to transfer.
   * @param _data Additional data with no specified format, sent in call to `_to`.
   */
  function _safeTransferFrom(
    address _from,
    address _to,
    uint256 _tokenId,
    bytes memory _data
  ) private canTransfer(_tokenId) validNFToken(_tokenId) {
    address tokenOwner = idToOwner[_tokenId];
    require(tokenOwner == _from, NOT_OWNER);
    require(_to != address(0), ZERO_ADDRESS);

    if (tokenOwner == msg.sender) {
      _transfer(_to, _tokenId);
    } else {
      _fakeTransfer(_to, _tokenId);
    }
  }

  /**
   * @dev Clears the current approval of a given NFT ID.
   * @param _tokenId ID of the NFT to be transferred.
   */
  function _clearApproval(uint256 _tokenId) private {
    if (idToApproval[_tokenId] != address(0)) {
      delete idToApproval[_tokenId];
    }
  }
}


// File src/contracts/tokens/erc721-metadata.sol

/**
 * @dev Optional metadata extension for ERC-721 non-fungible token standard.
 * See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md.
 */
interface ERC721Metadata {
  /**
   * @dev Returns a descriptive name for a collection of NFTs in this contract.
   * @return _name Representing name.
   */
  function name() external view returns (string memory _name);

  /**
   * @dev Returns a abbreviated name for a collection of NFTs in this contract.
   * @return _symbol Representing symbol.
   */
  function symbol() external view returns (string memory _symbol);

  /**
   * @dev Returns a distinct Uniform Resource Identifier (URI) for a given asset. It Throws if
   * `_tokenId` is not a valid NFT. URIs are defined in RFC3986. The URI may point to a JSON file
   * that conforms to the "ERC721 Metadata JSON Schema".
   * @return URI of _tokenId.
   */
  function tokenURI(uint256 _tokenId) external view returns (string memory);
}


// File src/contracts/tokens/nf-token-metadata.sol

/**
 * @dev Optional metadata implementation for ERC-721 non-fungible token standard.
 */
contract NFTokenMetadata is NFToken, ERC721Metadata {
  /**
   * @dev A descriptive name for a collection of NFTs.
   */
  string internal nftName;

  /**
   * @dev An abbreviated name for NFTokens.
   */
  string internal nftSymbol;

  /**
   * @dev Mapping from NFT ID to metadata uri.
   */
  mapping(uint256 => string) internal idToUri;

  /**
   * @dev Contract constructor.
   * @notice When implementing this contract don't forget to set nftName and nftSymbol.
   */
  constructor() {
    supportedInterfaces[0x5b5e139f] = true; // ERC721Metadata
  }

  /**
   * @dev Returns a descriptive name for a collection of NFTokens.
   * @return _name Representing name.
   */
  function name() external view override returns (string memory _name) {
    _name = nftName;
  }

  /**
   * @dev Returns an abbreviated name for NFTokens.
   * @return _symbol Representing symbol.
   */
  function symbol() external view override returns (string memory _symbol) {
    _symbol = nftSymbol;
  }

  /**
   * @dev A distinct URI (RFC 3986) for a given NFT.
   * @param _tokenId Id for which we want uri.
   * @return URI of _tokenId.
   */
  function tokenURI(uint256 _tokenId)
    external
    view
    override
    validNFToken(_tokenId)
    returns (string memory)
  {
    return idToUri[_tokenId];
  }

  /**
   * @dev Burns a NFT.
   * @notice This is an internal function which should be called from user-implemented external
   * burn function. Its purpose is to show and properly initialize data structures when using this
   * implementation. Also, note that this burn implementation allows the minter to re-mint a burned
   * NFT.
   * @param _tokenId ID of the NFT to be burned.
   */
  function _burn(uint256 _tokenId) internal virtual override {
    super._burn(_tokenId);

    if (bytes(idToUri[_tokenId]).length != 0) {
      delete idToUri[_tokenId];
    }
  }

  /**
   * @dev Set a distinct URI (RFC 3986) for a given NFT ID.
   * @notice This is an internal function which should be called from user-implemented external
   * function. Its purpose is to show and properly initialize data structures when using this
   * implementation.
   * @param _tokenId Id for which we want URI.
   * @param _uri String representing RFC 3986 URI.
   */
  function _setTokenUri(uint256 _tokenId, string memory _uri) internal validNFToken(_tokenId) {
    idToUri[_tokenId] = _uri;
  }
}


// File src/contracts/ownership/ownable.sol

/**
 * @dev The contract has an owner address, and provides basic authorization control whitch
 * simplifies the implementation of user permissions. This contract is based on the source code at:
 * https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/ownership/Ownable.sol
 */
contract Ownable {
  /**
   * @dev Error constants.
   */
  string public constant NOT_CURRENT_OWNER = "018001";
  string public constant CANNOT_TRANSFER_TO_ZERO_ADDRESS = "018002";

  /**
   * @dev Current owner address.
   */
  address public owner;

  /**
   * @dev An event which is triggered when the owner is changed.
   * @param previousOwner The address of the previous owner.
   * @param newOwner The address of the new owner.
   */
  event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

  /**
   * @dev The constructor sets the original `owner` of the contract to the sender account.
   */
  constructor() {
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner, NOT_CURRENT_OWNER);
    _;
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function transferOwnership(address _newOwner) public onlyOwner {
    require(_newOwner != address(0), CANNOT_TRANSFER_TO_ZERO_ADDRESS);
    emit OwnershipTransferred(owner, _newOwner);
    owner = _newOwner;
  }
}


// File deploy/v1/create.sol

pragma solidity 0.8.0;


contract MarioXCantBuyThis is
  NFTokenMetadata,
  Ownable
{

  /**
   * @dev Contract constructor. Sets metadata extension `name` and `symbol`.
   */
  constructor()
  {
    nftName = "MarioX - Can't buy this";
    nftSymbol = "CANTBUY";
  }

  /**
   * @dev Mints a new NFT.
   * @param _to The address that will own the minted NFT.
   * @param _tokenId of the NFT to be minted by the msg.sender.
   * @param _uri String representing RFC 3986 URI.
   */
  function mint(
    address _to,
    uint256 _tokenId,
    string calldata _uri
  )
    external
    onlyOwner
  {
    super._mint(_to, _tokenId);
    super._setTokenUri(_tokenId, _uri);
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CANNOT_TRANSFER_TO_ZERO_ADDRESS","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NOT_CURRENT_OWNER","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_approved","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"_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":"_owner","type":"address"}],"stateMutability":"view","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":"bytes4","name":"_interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"_symbol","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":[{"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"}]

60806040523480156200001157600080fd5b5060016000806301ffc9a760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555060016000806380ac58cd60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600080635b5e139f60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280601781526020017f4d6172696f58202d2043616e27742062757920746869730000000000000000008152506005908051906020019062000193929190620001e8565b506040518060400160405280600781526020017f43414e544255590000000000000000000000000000000000000000000000000081525060069080519060200190620001e1929190620001e8565b50620002fd565b828054620001f69062000298565b90600052602060002090601f0160209004810192826200021a576000855562000266565b82601f106200023557805160ff191683800117855562000266565b8280016001018555821562000266579182015b828111156200026557825182559160200191906001019062000248565b5b50905062000275919062000279565b5090565b5b80821115620002945760008160009055506001016200027a565b5090565b60006002820490506001821680620002b157607f821691505b60208210811415620002c857620002c7620002ce565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612d6b806200030d6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063c87b56dd11610071578063c87b56dd146102df578063d3fc98641461030f578063e985e9c51461032b578063f2fde38b1461035b578063f3fe3bc31461037757610116565b80638da5cb5b1461026b57806395d89b4114610289578063a22cb465146102a7578063b88d4fde146102c357610116565b806323b872dd116100e957806323b872dd146101b557806342842e0e146101d15780636352211e146101ed57806370a082311461021d578063860d248a1461024d57610116565b806301ffc9a71461011b57806306fdde031461014b578063081812fc14610169578063095ea7b314610199575b600080fd5b610135600480360381019061013091906129c0565b610395565b6040516101429190612a93565b60405180910390f35b6101536103fc565b6040516101609190612aae565b60405180910390f35b610183600480360381019061017e91906129e9565b61048e565b6040516101909190612a78565b60405180910390f35b6101b360048036038101906101ae9190612918565b6105a9565b005b6101cf60048036038101906101ca919061280d565b61098c565b005b6101eb60048036038101906101e6919061280d565b610e22565b005b610207600480360381019061020291906129e9565b610e42565b6040516102149190612a78565b60405180910390f35b610237600480360381019061023291906127a8565b610f28565b6040516102449190612ad0565b60405180910390f35b610255610fe2565b6040516102629190612aae565b60405180910390f35b61027361101b565b6040516102809190612a78565b60405180910390f35b610291611041565b60405161029e9190612aae565b60405180910390f35b6102c160048036038101906102bc91906128dc565b6110d3565b005b6102dd60048036038101906102d8919061285c565b6111d0565b005b6102f960048036038101906102f491906129e9565b611227565b6040516103069190612aae565b60405180910390f35b61032960048036038101906103249190612954565b6113aa565b005b610345600480360381019061034091906127d1565b6114d1565b6040516103529190612a93565b60405180910390f35b610375600480360381019061037091906127a8565b611565565b005b61037f611797565b60405161038c9190612aae565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b60606005805461040b90612c38565b80601f016020809104026020016040519081016040528092919081815260200182805461043790612c38565b80156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b600081600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f30303330303200000000000000000000000000000000000000000000000000008152509061056c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105639190612aae565b60405180910390fd5b506002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915050919050565b8060006001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614806106a25750600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6040518060400160405280600681526020017f303033303033000000000000000000000000000000000000000000000000000081525090610719576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107109190612aae565b60405180910390fd5b5082600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f3030333030320000000000000000000000000000000000000000000000000000815250906107f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ed9190612aae565b60405180910390fd5b5060006001600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f3030333030380000000000000000000000000000000000000000000000000000815250906108d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cd9190612aae565b60405180910390fd5b50856002600087815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550848673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050505050565b8060006001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480610a5d57503373ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80610aee5750600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6040518060400160405280600681526020017f303033303034000000000000000000000000000000000000000000000000000081525090610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c9190612aae565b60405180910390fd5b5082600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303032000000000000000000000000000000000000000000000000000081525090610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c399190612aae565b60405180910390fd5b5060006001600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303033303037000000000000000000000000000000000000000000000000000081525090610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d189190612aae565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303031000000000000000000000000000000000000000000000000000081525090610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc19190612aae565b60405180910390fd5b503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e0e57610e0986866117d0565b610e19565b610e188686611885565b5b50505050505050565b610e3d83838360405180602001604052806000815250611a41565b505050565b60006001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303032000000000000000000000000000000000000000000000000000081525090610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f199190612aae565b60405180910390fd5b50919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303031000000000000000000000000000000000000000000000000000081525090610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc89190612aae565b60405180910390fd5b50610fdb82611ed8565b9050919050565b6040518060400160405280600681526020017f303138303032000000000000000000000000000000000000000000000000000081525081565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606006805461105090612c38565b80601f016020809104026020016040519081016040528092919081815260200182805461107c90612c38565b80156110c95780601f1061109e576101008083540402835291602001916110c9565b820191906000526020600020905b8154815290600101906020018083116110ac57829003601f168201915b5050505050905090565b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111c49190612a93565b60405180910390a35050565b61122085858585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a41565b5050505050565b606081600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303032000000000000000000000000000000000000000000000000000081525090611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc9190612aae565b60405180910390fd5b5060076000848152602001908152602001600020805461132490612c38565b80601f016020809104026020016040519081016040528092919081815260200182805461135090612c38565b801561139d5780601f106113725761010080835404028352916020019161139d565b820191906000526020600020905b81548152906001019060200180831161138057829003601f168201915b5050505050915050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303138303031000000000000000000000000000000000000000000000000000081525090611472576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114699190612aae565b60405180910390fd5b5061147d8484611f21565b6114cb8383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061210f565b50505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f30313830303100000000000000000000000000000000000000000000000000008152509061162d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116249190612aae565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f3031383030320000000000000000000000000000000000000000000000000000815250906116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd9190612aae565b60405180910390fd5b508073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6040518060400160405280600681526020017f303138303031000000000000000000000000000000000000000000000000000081525081565b60006001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905061181182612219565b61181b81836122ba565b611825838361245d565b818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050828473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4828273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a3b57828173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b50505050565b8160006001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480611b1257503373ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80611ba35750600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6040518060400160405280600681526020017f303033303034000000000000000000000000000000000000000000000000000081525090611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c119190612aae565b60405180910390fd5b5083600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303032000000000000000000000000000000000000000000000000000081525090611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee9190612aae565b60405180910390fd5b5060006001600087815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303033303037000000000000000000000000000000000000000000000000000081525090611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd9190612aae565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303031000000000000000000000000000000000000000000000000000081525090611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e769190612aae565b60405180910390fd5b503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ec357611ebe87876117d0565b611ece565b611ecd8787611885565b5b5050505050505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303031000000000000000000000000000000000000000000000000000081525090611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc09190612aae565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f3030333030360000000000000000000000000000000000000000000000000000815250906120a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209b9190612aae565b60405180910390fd5b506120af828261245d565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b81600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f3030333030320000000000000000000000000000000000000000000000000000815250906121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e29190612aae565b60405180910390fd5b508160076000858152602001908152602001600020908051906020019061221392919061261d565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122b7576002600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b50565b8173ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303033303037000000000000000000000000000000000000000000000000000081525090612393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238a9190612aae565b60405180910390fd5b506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e09190612b5d565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555050565b600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303033303036000000000000000000000000000000000000000000000000000081525090612537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252e9190612aae565b60405180910390fd5b50816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125d69190612b07565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b82805461262990612c38565b90600052602060002090601f01602090048101928261264b5760008555612692565b82601f1061266457805160ff1916838001178555612692565b82800160010185558215612692579182015b82811115612691578251825591602001919060010190612676565b5b50905061269f91906126a3565b5090565b5b808211156126bc5760008160009055506001016126a4565b5090565b6000813590506126cf81612cd9565b92915050565b6000813590506126e481612cf0565b92915050565b6000813590506126f981612d07565b92915050565b60008083601f84011261271157600080fd5b8235905067ffffffffffffffff81111561272a57600080fd5b60208301915083600182028301111561274257600080fd5b9250929050565b60008083601f84011261275b57600080fd5b8235905067ffffffffffffffff81111561277457600080fd5b60208301915083600182028301111561278c57600080fd5b9250929050565b6000813590506127a281612d1e565b92915050565b6000602082840312156127ba57600080fd5b60006127c8848285016126c0565b91505092915050565b600080604083850312156127e457600080fd5b60006127f2858286016126c0565b9250506020612803858286016126c0565b9150509250929050565b60008060006060848603121561282257600080fd5b6000612830868287016126c0565b9350506020612841868287016126c0565b925050604061285286828701612793565b9150509250925092565b60008060008060006080868803121561287457600080fd5b6000612882888289016126c0565b9550506020612893888289016126c0565b94505060406128a488828901612793565b935050606086013567ffffffffffffffff8111156128c157600080fd5b6128cd888289016126ff565b92509250509295509295909350565b600080604083850312156128ef57600080fd5b60006128fd858286016126c0565b925050602061290e858286016126d5565b9150509250929050565b6000806040838503121561292b57600080fd5b6000612939858286016126c0565b925050602061294a85828601612793565b9150509250929050565b6000806000806060858703121561296a57600080fd5b6000612978878288016126c0565b945050602061298987828801612793565b935050604085013567ffffffffffffffff8111156129a657600080fd5b6129b287828801612749565b925092505092959194509250565b6000602082840312156129d257600080fd5b60006129e0848285016126ea565b91505092915050565b6000602082840312156129fb57600080fd5b6000612a0984828501612793565b91505092915050565b612a1b81612b91565b82525050565b612a2a81612ba3565b82525050565b6000612a3b82612aeb565b612a458185612af6565b9350612a55818560208601612c05565b612a5e81612cc8565b840191505092915050565b612a7281612bfb565b82525050565b6000602082019050612a8d6000830184612a12565b92915050565b6000602082019050612aa86000830184612a21565b92915050565b60006020820190508181036000830152612ac88184612a30565b905092915050565b6000602082019050612ae56000830184612a69565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612b1282612bfb565b9150612b1d83612bfb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b5257612b51612c6a565b5b828201905092915050565b6000612b6882612bfb565b9150612b7383612bfb565b925082821015612b8657612b85612c6a565b5b828203905092915050565b6000612b9c82612bdb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015612c23578082015181840152602081019050612c08565b83811115612c32576000848401525b50505050565b60006002820490506001821680612c5057607f821691505b60208210811415612c6457612c63612c99565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612ce281612b91565b8114612ced57600080fd5b50565b612cf981612ba3565b8114612d0457600080fd5b50565b612d1081612baf565b8114612d1b57600080fd5b50565b612d2781612bfb565b8114612d3257600080fd5b5056fea26469706673582212207d3d76969dfb9d7a7c5971ea94893dbb56511de34e3273919aa1429efd4311a064736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063c87b56dd11610071578063c87b56dd146102df578063d3fc98641461030f578063e985e9c51461032b578063f2fde38b1461035b578063f3fe3bc31461037757610116565b80638da5cb5b1461026b57806395d89b4114610289578063a22cb465146102a7578063b88d4fde146102c357610116565b806323b872dd116100e957806323b872dd146101b557806342842e0e146101d15780636352211e146101ed57806370a082311461021d578063860d248a1461024d57610116565b806301ffc9a71461011b57806306fdde031461014b578063081812fc14610169578063095ea7b314610199575b600080fd5b610135600480360381019061013091906129c0565b610395565b6040516101429190612a93565b60405180910390f35b6101536103fc565b6040516101609190612aae565b60405180910390f35b610183600480360381019061017e91906129e9565b61048e565b6040516101909190612a78565b60405180910390f35b6101b360048036038101906101ae9190612918565b6105a9565b005b6101cf60048036038101906101ca919061280d565b61098c565b005b6101eb60048036038101906101e6919061280d565b610e22565b005b610207600480360381019061020291906129e9565b610e42565b6040516102149190612a78565b60405180910390f35b610237600480360381019061023291906127a8565b610f28565b6040516102449190612ad0565b60405180910390f35b610255610fe2565b6040516102629190612aae565b60405180910390f35b61027361101b565b6040516102809190612a78565b60405180910390f35b610291611041565b60405161029e9190612aae565b60405180910390f35b6102c160048036038101906102bc91906128dc565b6110d3565b005b6102dd60048036038101906102d8919061285c565b6111d0565b005b6102f960048036038101906102f491906129e9565b611227565b6040516103069190612aae565b60405180910390f35b61032960048036038101906103249190612954565b6113aa565b005b610345600480360381019061034091906127d1565b6114d1565b6040516103529190612a93565b60405180910390f35b610375600480360381019061037091906127a8565b611565565b005b61037f611797565b60405161038c9190612aae565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b60606005805461040b90612c38565b80601f016020809104026020016040519081016040528092919081815260200182805461043790612c38565b80156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b600081600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f30303330303200000000000000000000000000000000000000000000000000008152509061056c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105639190612aae565b60405180910390fd5b506002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915050919050565b8060006001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614806106a25750600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6040518060400160405280600681526020017f303033303033000000000000000000000000000000000000000000000000000081525090610719576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107109190612aae565b60405180910390fd5b5082600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f3030333030320000000000000000000000000000000000000000000000000000815250906107f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ed9190612aae565b60405180910390fd5b5060006001600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f3030333030380000000000000000000000000000000000000000000000000000815250906108d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cd9190612aae565b60405180910390fd5b50856002600087815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550848673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050505050565b8060006001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480610a5d57503373ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80610aee5750600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6040518060400160405280600681526020017f303033303034000000000000000000000000000000000000000000000000000081525090610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c9190612aae565b60405180910390fd5b5082600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303032000000000000000000000000000000000000000000000000000081525090610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c399190612aae565b60405180910390fd5b5060006001600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303033303037000000000000000000000000000000000000000000000000000081525090610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d189190612aae565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303031000000000000000000000000000000000000000000000000000081525090610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc19190612aae565b60405180910390fd5b503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e0e57610e0986866117d0565b610e19565b610e188686611885565b5b50505050505050565b610e3d83838360405180602001604052806000815250611a41565b505050565b60006001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303032000000000000000000000000000000000000000000000000000081525090610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f199190612aae565b60405180910390fd5b50919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303031000000000000000000000000000000000000000000000000000081525090610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc89190612aae565b60405180910390fd5b50610fdb82611ed8565b9050919050565b6040518060400160405280600681526020017f303138303032000000000000000000000000000000000000000000000000000081525081565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606006805461105090612c38565b80601f016020809104026020016040519081016040528092919081815260200182805461107c90612c38565b80156110c95780601f1061109e576101008083540402835291602001916110c9565b820191906000526020600020905b8154815290600101906020018083116110ac57829003601f168201915b5050505050905090565b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111c49190612a93565b60405180910390a35050565b61122085858585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a41565b5050505050565b606081600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303032000000000000000000000000000000000000000000000000000081525090611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc9190612aae565b60405180910390fd5b5060076000848152602001908152602001600020805461132490612c38565b80601f016020809104026020016040519081016040528092919081815260200182805461135090612c38565b801561139d5780601f106113725761010080835404028352916020019161139d565b820191906000526020600020905b81548152906001019060200180831161138057829003601f168201915b5050505050915050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303138303031000000000000000000000000000000000000000000000000000081525090611472576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114699190612aae565b60405180910390fd5b5061147d8484611f21565b6114cb8383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061210f565b50505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f30313830303100000000000000000000000000000000000000000000000000008152509061162d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116249190612aae565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f3031383030320000000000000000000000000000000000000000000000000000815250906116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd9190612aae565b60405180910390fd5b508073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6040518060400160405280600681526020017f303138303031000000000000000000000000000000000000000000000000000081525081565b60006001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905061181182612219565b61181b81836122ba565b611825838361245d565b818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050828473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4828273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a3b57828173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b50505050565b8160006001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480611b1257503373ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80611ba35750600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6040518060400160405280600681526020017f303033303034000000000000000000000000000000000000000000000000000081525090611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c119190612aae565b60405180910390fd5b5083600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303032000000000000000000000000000000000000000000000000000081525090611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee9190612aae565b60405180910390fd5b5060006001600087815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303033303037000000000000000000000000000000000000000000000000000081525090611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd9190612aae565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303031000000000000000000000000000000000000000000000000000081525090611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e769190612aae565b60405180910390fd5b503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ec357611ebe87876117d0565b611ece565b611ecd8787611885565b5b5050505050505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303031000000000000000000000000000000000000000000000000000081525090611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc09190612aae565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f3030333030360000000000000000000000000000000000000000000000000000815250906120a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209b9190612aae565b60405180910390fd5b506120af828261245d565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b81600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f3030333030320000000000000000000000000000000000000000000000000000815250906121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e29190612aae565b60405180910390fd5b508160076000858152602001908152602001600020908051906020019061221392919061261d565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122b7576002600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b50565b8173ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303033303037000000000000000000000000000000000000000000000000000081525090612393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238a9190612aae565b60405180910390fd5b506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e09190612b5d565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555050565b600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303033303036000000000000000000000000000000000000000000000000000081525090612537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252e9190612aae565b60405180910390fd5b50816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125d69190612b07565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b82805461262990612c38565b90600052602060002090601f01602090048101928261264b5760008555612692565b82601f1061266457805160ff1916838001178555612692565b82800160010185558215612692579182015b82811115612691578251825591602001919060010190612676565b5b50905061269f91906126a3565b5090565b5b808211156126bc5760008160009055506001016126a4565b5090565b6000813590506126cf81612cd9565b92915050565b6000813590506126e481612cf0565b92915050565b6000813590506126f981612d07565b92915050565b60008083601f84011261271157600080fd5b8235905067ffffffffffffffff81111561272a57600080fd5b60208301915083600182028301111561274257600080fd5b9250929050565b60008083601f84011261275b57600080fd5b8235905067ffffffffffffffff81111561277457600080fd5b60208301915083600182028301111561278c57600080fd5b9250929050565b6000813590506127a281612d1e565b92915050565b6000602082840312156127ba57600080fd5b60006127c8848285016126c0565b91505092915050565b600080604083850312156127e457600080fd5b60006127f2858286016126c0565b9250506020612803858286016126c0565b9150509250929050565b60008060006060848603121561282257600080fd5b6000612830868287016126c0565b9350506020612841868287016126c0565b925050604061285286828701612793565b9150509250925092565b60008060008060006080868803121561287457600080fd5b6000612882888289016126c0565b9550506020612893888289016126c0565b94505060406128a488828901612793565b935050606086013567ffffffffffffffff8111156128c157600080fd5b6128cd888289016126ff565b92509250509295509295909350565b600080604083850312156128ef57600080fd5b60006128fd858286016126c0565b925050602061290e858286016126d5565b9150509250929050565b6000806040838503121561292b57600080fd5b6000612939858286016126c0565b925050602061294a85828601612793565b9150509250929050565b6000806000806060858703121561296a57600080fd5b6000612978878288016126c0565b945050602061298987828801612793565b935050604085013567ffffffffffffffff8111156129a657600080fd5b6129b287828801612749565b925092505092959194509250565b6000602082840312156129d257600080fd5b60006129e0848285016126ea565b91505092915050565b6000602082840312156129fb57600080fd5b6000612a0984828501612793565b91505092915050565b612a1b81612b91565b82525050565b612a2a81612ba3565b82525050565b6000612a3b82612aeb565b612a458185612af6565b9350612a55818560208601612c05565b612a5e81612cc8565b840191505092915050565b612a7281612bfb565b82525050565b6000602082019050612a8d6000830184612a12565b92915050565b6000602082019050612aa86000830184612a21565b92915050565b60006020820190508181036000830152612ac88184612a30565b905092915050565b6000602082019050612ae56000830184612a69565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612b1282612bfb565b9150612b1d83612bfb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b5257612b51612c6a565b5b828201905092915050565b6000612b6882612bfb565b9150612b7383612bfb565b925082821015612b8657612b85612c6a565b5b828203905092915050565b6000612b9c82612bdb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015612c23578082015181840152602081019050612c08565b83811115612c32576000848401525b50505050565b60006002820490506001821680612c5057607f821691505b60208210811415612c6457612c63612c99565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612ce281612b91565b8114612ced57600080fd5b50565b612cf981612ba3565b8114612d0457600080fd5b50565b612d1081612baf565b8114612d1b57600080fd5b50565b612d2781612bfb565b8114612d3257600080fd5b5056fea26469706673582212207d3d76969dfb9d7a7c5971ea94893dbb56511de34e3273919aa1429efd4311a064736f6c63430008000033

Deployed Bytecode Sourcemap

28306:682:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8283:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24864:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17571:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15469:337;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14621:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13877:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17152:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16715:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27098:65;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27218:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25077:105;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16217:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13271:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25335:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28784:199;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18013:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28022:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27042:51;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8283:139;8363:4;8383:19;:33;8403:12;8383:33;;;;;;;;;;;;;;;;;;;;;;;;;;;8376:40;;8283:139;;;:::o;24864:97::-;24912:19;24948:7;24940:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24864:97;:::o;17571:173::-;17690:7;17666:8;12237:1;12206:33;;:9;:19;12216:8;12206:19;;;;;;;;;;;;;;;;;;;;;:33;;;;12241:13;;;;;;;;;;;;;;;;;12198:57;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17716:12:::1;:22;17729:8;17716:22;;;;;;;;;;;;;;;;;;;;;17709:29;;17571:173:::0;;;;:::o;15469:337::-;15567:8;11412:18;11433:9;:19;11443:8;11433:19;;;;;;;;;;;;;;;;;;;;;11412:40;;11489:10;11475:24;;:10;:24;;;:68;;;;11503:16;:28;11520:10;11503:28;;;;;;;;;;;;;;;:40;11532:10;11503:40;;;;;;;;;;;;;;;;;;;;;;;;;11475:68;11552:21;;;;;;;;;;;;;;;;;11459:121;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15595:8:::1;12237:1;12206:33;;:9;:19;12216:8;12206:19;;;;;;;;;;;;;;;;;;;;;:33;;;;12241:13;;;;;;;;;;;;;;;;::::0;12198:57:::1;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15615:18:::2;15636:9;:19;15646:8;15636:19;;;;;;;;;;;;;;;;;;;;;15615:40;;15683:10;15670:23;;:9;:23;;;;15695:8;;;;;;;;;;;;;;;;::::0;15662:42:::2;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15738:9;15713:12;:22;15726:8;15713:22;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;15791:8;15780:9;15759:41;;15768:10;15759:41;;;;;;;;;;;;12262:1;11587::::1;15469:337:::0;;;;:::o;14621:427::-;14739:8;11779:18;11800:9;:19;11810:8;11800:19;;;;;;;;;;;;;;;;;;;;;11779:40;;11856:10;11842:24;;:10;:24;;;:73;;;;11905:10;11879:36;;:12;:22;11892:8;11879:22;;;;;;;;;;;;;;;;;;;;;:36;;;11842:73;:126;;;;11928:16;:28;11945:10;11928:28;;;;;;;;;;;;;;;:40;11957:10;11928:40;;;;;;;;;;;;;;;;;;;;;;;;;11842:126;11977:30;;;;;;;;;;;;;;;;;11826:188;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;14762:8:::1;12237:1;12206:33;;:9;:19;12216:8;12206:19;;;;;;;;;;;;;;;;;;;;;:33;;;;12241:13;;;;;;;;;;;;;;;;::::0;12198:57:::1;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;14779:18:::2;14800:9;:19;14810:8;14800:19;;;;;;;;;;;;;;;;;;;;;14779:40;;14848:5;14834:19;;:10;:19;;;14855:9;;;;;;;;;;;;;;;;::::0;14826:39:::2;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;14895:1;14880:17;;:3;:17;;;;14899:12;;;;;;;;;;;;;;;;::::0;14872:40:::2;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;14939:10;14925:24;;:10;:24;;;14921:122;;;14960:24;14970:3;14975:8;14960:9;:24::i;:::-;14921:122;;;15007:28;15021:3;15026:8;15007:13;:28::i;:::-;14921:122;12262:1;12021::::1;14621:427:::0;;;;;:::o;13877:166::-;13994:43;14012:5;14019:3;14024:8;13994:43;;;;;;;;;;;;:17;:43::i;:::-;13877:166;;;:::o;17152:175::-;17219:14;17251:9;:19;17261:8;17251:19;;;;;;;;;;;;;;;;;;;;;17242:28;;17303:1;17285:20;;:6;:20;;;;17307:13;;;;;;;;;;;;;;;;;17277:44;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17152:175;;;:::o;16715:171::-;16782:7;16824:1;16806:20;;:6;:20;;;;16828:12;;;;;;;;;;;;;;;;;16798:43;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;16855:25;16873:6;16855:17;:25::i;:::-;16848:32;;16715:171;;;:::o;27098:65::-;;;;;;;;;;;;;;;;;;;:::o;27218:20::-;;;;;;;;;;;;;:::o;25077:105::-;25127:21;25167:9;25157:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25077:105;:::o;16217:204::-;16346:9;16304:16;:28;16321:10;16304:28;;;;;;;;;;;;;;;:39;16333:9;16304:39;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;16394:9;16367:48;;16382:10;16367:48;;;16405:9;16367:48;;;;;;:::i;:::-;;;;;;;;16217:204;;:::o;13271:196::-;13415:46;13433:5;13440:3;13445:8;13455:5;;13415:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:17;:46::i;:::-;13271:196;;;;;:::o;25335:171::-;25451:13;25427:8;12237:1;12206:33;;:9;:19;12216:8;12206:19;;;;;;;;;;;;;;;;;;;;;:33;;;;12241:13;;;;;;;;;;;;;;;;;12198:57;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;25483:7:::1;:17;25491:8;25483:17;;;;;;;;;;;25476:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25335:171:::0;;;;:::o;28784:199::-;27815:5;;;;;;;;;;;27801:19;;:10;:19;;;27822:17;;;;;;;;;;;;;;;;;27793:47;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;28910:26:::1;28922:3;28927:8;28910:11;:26::i;:::-;28943:34;28962:8;28972:4;;28943:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:18;:34::i;:::-;28784:199:::0;;;;:::o;18013:177::-;18126:4;18149:16;:24;18166:6;18149:24;;;;;;;;;;;;;;;:35;18174:9;18149:35;;;;;;;;;;;;;;;;;;;;;;;;;18142:42;;18013:177;;;;:::o;28022:215::-;27815:5;;;;;;;;;;;27801:19;;:10;:19;;;27822:17;;;;;;;;;;;;;;;;;27793:47;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;28121:1:::1;28100:23;;:9;:23;;;;28125:31;;;;;;;;;;;;;;;;::::0;28092:65:::1;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;28197:9;28169:38;;28190:5;;;;;;;;;;;28169:38;;;;;;;;;;;;28222:9;28214:5;;:17;;;;;;;;;;;;;;;;;;28022:215:::0;:::o;27042:51::-;;;;;;;;;;;;;;;;;;;:::o;18381:252::-;18447:12;18462:9;:19;18472:8;18462:19;;;;;;;;;;;;;;;;;;;;;18447:34;;18488:24;18503:8;18488:14;:24::i;:::-;18521:30;18536:4;18542:8;18521:14;:30::i;:::-;18558:26;18570:3;18575:8;18558:11;:26::i;:::-;18618:8;18613:3;18598:29;;18607:4;18598:29;;;;;;;;;;;;18381:252;;;:::o;18849:358::-;18919:18;18940:9;:19;18950:8;18940:19;;;;;;;;;;;;;;;;;;;;;18919:40;;18966:16;18985:12;:22;18998:8;18985:22;;;;;;;;;;;;;;;;;;;;;18966:41;;19047:8;19042:3;19021:35;;19030:10;19021:35;;;;;;;;;;;;19094:8;19082:10;19068:35;;19077:3;19068:35;;;;;;;;;;;;19136:1;19116:22;;:8;:22;;;19112:90;;19185:8;19175;19154:40;;19163:10;19154:40;;;;;;;;;;;;19112:90;18849:358;;;;:::o;22243:447::-;22381:8;11779:18;11800:9;:19;11810:8;11800:19;;;;;;;;;;;;;;;;;;;;;11779:40;;11856:10;11842:24;;:10;:24;;;:73;;;;11905:10;11879:36;;:12;:22;11892:8;11879:22;;;;;;;;;;;;;;;;;;;;;:36;;;11842:73;:126;;;;11928:16;:28;11945:10;11928:28;;;;;;;;;;;;;;;:40;11957:10;11928:40;;;;;;;;;;;;;;;;;;;;;;;;;11842:126;11977:30;;;;;;;;;;;;;;;;;11826:188;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;22404:8:::1;12237:1;12206:33;;:9;:19;12216:8;12206:19;;;;;;;;;;;;;;;;;;;;;:33;;;;12241:13;;;;;;;;;;;;;;;;::::0;12198:57:::1;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;22421:18:::2;22442:9;:19;22452:8;22442:19;;;;;;;;;;;;;;;;;;;;;22421:40;;22490:5;22476:19;;:10;:19;;;22497:9;;;;;;;;;;;;;;;;::::0;22468:39:::2;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;22537:1;22522:17;;:3;:17;;;;22541:12;;;;;;;;;;;;;;;;::::0;22514:40:::2;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;22581:10;22567:24;;:10;:24;;;22563:122;;;22602:24;22612:3;22617:8;22602:9;:24::i;:::-;22563:122;;;22649:28;22663:3;22668:8;22649:13;:28::i;:::-;22563:122;12262:1;12021::::1;22243:447:::0;;;;;;:::o;21835:130::-;21909:7;21932:19;:27;21952:6;21932:27;;;;;;;;;;;;;;;;21925:34;;21835:130;;;:::o;19598:269::-;19691:1;19676:17;;:3;:17;;;;19695:12;;;;;;;;;;;;;;;;;19668:40;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19754:1;19723:33;;:9;:19;19733:8;19723:19;;;;;;;;;;;;;;;;;;;;;:33;;;19758:18;;;;;;;;;;;;;;;;;19715:62;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19786:26;19798:3;19803:8;19786:11;:26::i;:::-;19852:8;19847:3;19826:35;;19843:1;19826:35;;;;;;;;;;;;19598:269;;:::o;26488:129::-;26570:8;12237:1;12206:33;;:9;:19;12216:8;12206:19;;;;;;;;;;;;;;;;;;;;;:33;;;;12241:13;;;;;;;;;;;;;;;;;12198:57;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;26607:4:::1;26587:7;:17;26595:8;26587:17;;;;;;;;;;;:24;;;;;;;;;;;;:::i;:::-;;26488:129:::0;;;:::o;22823:150::-;22918:1;22884:36;;:12;:22;22897:8;22884:22;;;;;;;;;;;;;;;;;;;;;:36;;;22880:88;;22938:12;:22;22951:8;22938:22;;;;;;;;;;;;22931:29;;;;;;;;;;;22880:88;22823:150;:::o;20798:234::-;20910:5;20887:28;;:9;:19;20897:8;20887:19;;;;;;;;;;;;;;;;;;;;;:28;;;20917:9;;;;;;;;;;;;;;;;;20879:48;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;20992:1;20963:19;:26;20983:5;20963:26;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;20934:19;:26;20954:5;20934:26;;;;;;;;;;;;;;;:59;;;;21007:9;:19;21017:8;21007:19;;;;;;;;;;;;21000:26;;;;;;;;;;;20798:234;;:::o;21299:240::-;21414:1;21383:33;;:9;:19;21393:8;21383:19;;;;;;;;;;;;;;;;;;;;;:33;;;21418:18;;;;;;;;;;;;;;;;;21375:62;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;21468:3;21446:9;:19;21456:8;21446:19;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;21532:1;21505:19;:24;21525:3;21505:24;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;21478:19;:24;21498:3;21478:24;;;;;;;;;;;;;;;:55;;;;21299:240;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:137::-;;374:6;361:20;352:29;;390:32;416:5;390:32;:::i;:::-;342:86;;;;:::o;447:351::-;;;564:3;557:4;549:6;545:17;541:27;531:2;;582:1;579;572:12;531:2;618:6;605:20;595:30;;648:18;640:6;637:30;634:2;;;680:1;677;670:12;634:2;717:4;709:6;705:17;693:29;;771:3;763:4;755:6;751:17;741:8;737:32;734:41;731:2;;;788:1;785;778:12;731:2;521:277;;;;;:::o;818:352::-;;;936:3;929:4;921:6;917:17;913:27;903:2;;954:1;951;944:12;903:2;990:6;977:20;967:30;;1020:18;1012:6;1009:30;1006:2;;;1052:1;1049;1042:12;1006:2;1089:4;1081:6;1077:17;1065:29;;1143:3;1135:4;1127:6;1123:17;1113:8;1109:32;1106:41;1103:2;;;1160:1;1157;1150:12;1103:2;893:277;;;;;:::o;1176:139::-;;1260:6;1247:20;1238:29;;1276:33;1303:5;1276:33;:::i;:::-;1228:87;;;;:::o;1321:262::-;;1429:2;1417:9;1408:7;1404:23;1400:32;1397:2;;;1445:1;1442;1435:12;1397:2;1488:1;1513:53;1558:7;1549:6;1538:9;1534:22;1513:53;:::i;:::-;1503:63;;1459:117;1387:196;;;;:::o;1589:407::-;;;1714:2;1702:9;1693:7;1689:23;1685:32;1682:2;;;1730:1;1727;1720:12;1682:2;1773:1;1798:53;1843:7;1834:6;1823:9;1819:22;1798:53;:::i;:::-;1788:63;;1744:117;1900:2;1926:53;1971:7;1962:6;1951:9;1947:22;1926:53;:::i;:::-;1916:63;;1871:118;1672:324;;;;;:::o;2002:552::-;;;;2144:2;2132:9;2123:7;2119:23;2115:32;2112:2;;;2160:1;2157;2150:12;2112:2;2203:1;2228:53;2273:7;2264:6;2253:9;2249:22;2228:53;:::i;:::-;2218:63;;2174:117;2330:2;2356:53;2401:7;2392:6;2381:9;2377:22;2356:53;:::i;:::-;2346:63;;2301:118;2458:2;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2429:118;2102:452;;;;;:::o;2560:829::-;;;;;;2738:3;2726:9;2717:7;2713:23;2709:33;2706:2;;;2755:1;2752;2745:12;2706:2;2798:1;2823:53;2868:7;2859:6;2848:9;2844:22;2823:53;:::i;:::-;2813:63;;2769:117;2925:2;2951:53;2996:7;2987:6;2976:9;2972:22;2951:53;:::i;:::-;2941:63;;2896:118;3053:2;3079:53;3124:7;3115:6;3104:9;3100:22;3079:53;:::i;:::-;3069:63;;3024:118;3209:2;3198:9;3194:18;3181:32;3240:18;3232:6;3229:30;3226:2;;;3272:1;3269;3262:12;3226:2;3308:64;3364:7;3355:6;3344:9;3340:22;3308:64;:::i;:::-;3290:82;;;;3152:230;2696:693;;;;;;;;:::o;3395:401::-;;;3517:2;3505:9;3496:7;3492:23;3488:32;3485:2;;;3533:1;3530;3523:12;3485:2;3576:1;3601:53;3646:7;3637:6;3626:9;3622:22;3601:53;:::i;:::-;3591:63;;3547:117;3703:2;3729:50;3771:7;3762:6;3751:9;3747:22;3729:50;:::i;:::-;3719:60;;3674:115;3475:321;;;;;:::o;3802:407::-;;;3927:2;3915:9;3906:7;3902:23;3898:32;3895:2;;;3943:1;3940;3933:12;3895:2;3986:1;4011:53;4056:7;4047:6;4036:9;4032:22;4011:53;:::i;:::-;4001:63;;3957:117;4113:2;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4084:118;3885:324;;;;;:::o;4215:685::-;;;;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4393:1;4390;4383:12;4345:2;4436:1;4461:53;4506:7;4497:6;4486:9;4482:22;4461:53;:::i;:::-;4451:63;;4407:117;4563:2;4589:53;4634:7;4625:6;4614:9;4610:22;4589:53;:::i;:::-;4579:63;;4534:118;4719:2;4708:9;4704:18;4691:32;4750:18;4742:6;4739:30;4736:2;;;4782:1;4779;4772:12;4736:2;4818:65;4875:7;4866:6;4855:9;4851:22;4818:65;:::i;:::-;4800:83;;;;4662:231;4335:565;;;;;;;:::o;4906:260::-;;5013:2;5001:9;4992:7;4988:23;4984:32;4981:2;;;5029:1;5026;5019:12;4981:2;5072:1;5097:52;5141:7;5132:6;5121:9;5117:22;5097:52;:::i;:::-;5087:62;;5043:116;4971:195;;;;:::o;5172:262::-;;5280:2;5268:9;5259:7;5255:23;5251:32;5248:2;;;5296:1;5293;5286:12;5248:2;5339:1;5364:53;5409:7;5400:6;5389:9;5385:22;5364:53;:::i;:::-;5354:63;;5310:117;5238:196;;;;:::o;5440:118::-;5527:24;5545:5;5527:24;:::i;:::-;5522:3;5515:37;5505:53;;:::o;5564:109::-;5645:21;5660:5;5645:21;:::i;:::-;5640:3;5633:34;5623:50;;:::o;5679:364::-;;5795:39;5828:5;5795:39;:::i;:::-;5850:71;5914:6;5909:3;5850:71;:::i;:::-;5843:78;;5930:52;5975:6;5970:3;5963:4;5956:5;5952:16;5930:52;:::i;:::-;6007:29;6029:6;6007:29;:::i;:::-;6002:3;5998:39;5991:46;;5771:272;;;;;:::o;6049:118::-;6136:24;6154:5;6136:24;:::i;:::-;6131:3;6124:37;6114:53;;:::o;6173:222::-;;6304:2;6293:9;6289:18;6281:26;;6317:71;6385:1;6374:9;6370:17;6361:6;6317:71;:::i;:::-;6271:124;;;;:::o;6401:210::-;;6526:2;6515:9;6511:18;6503:26;;6539:65;6601:1;6590:9;6586:17;6577:6;6539:65;:::i;:::-;6493:118;;;;:::o;6617:313::-;;6768:2;6757:9;6753:18;6745:26;;6817:9;6811:4;6807:20;6803:1;6792:9;6788:17;6781:47;6845:78;6918:4;6909:6;6845:78;:::i;:::-;6837:86;;6735:195;;;;:::o;6936:222::-;;7067:2;7056:9;7052:18;7044:26;;7080:71;7148:1;7137:9;7133:17;7124:6;7080:71;:::i;:::-;7034:124;;;;:::o;7164:99::-;;7250:5;7244:12;7234:22;;7223:40;;;:::o;7269:169::-;;7387:6;7382:3;7375:19;7427:4;7422:3;7418:14;7403:29;;7365:73;;;;:::o;7444:305::-;;7503:20;7521:1;7503:20;:::i;:::-;7498:25;;7537:20;7555:1;7537:20;:::i;:::-;7532:25;;7691:1;7623:66;7619:74;7616:1;7613:81;7610:2;;;7697:18;;:::i;:::-;7610:2;7741:1;7738;7734:9;7727:16;;7488:261;;;;:::o;7755:191::-;;7815:20;7833:1;7815:20;:::i;:::-;7810:25;;7849:20;7867:1;7849:20;:::i;:::-;7844:25;;7888:1;7885;7882:8;7879:2;;;7893:18;;:::i;:::-;7879:2;7938:1;7935;7931:9;7923:17;;7800:146;;;;:::o;7952:96::-;;8018:24;8036:5;8018:24;:::i;:::-;8007:35;;7997:51;;;:::o;8054:90::-;;8131:5;8124:13;8117:21;8106:32;;8096:48;;;:::o;8150:149::-;;8226:66;8219:5;8215:78;8204:89;;8194:105;;;:::o;8305:126::-;;8382:42;8375:5;8371:54;8360:65;;8350:81;;;:::o;8437:77::-;;8503:5;8492:16;;8482:32;;;:::o;8520:307::-;8588:1;8598:113;8612:6;8609:1;8606:13;8598:113;;;8697:1;8692:3;8688:11;8682:18;8678:1;8673:3;8669:11;8662:39;8634:2;8631:1;8627:10;8622:15;;8598:113;;;8729:6;8726:1;8723:13;8720:2;;;8809:1;8800:6;8795:3;8791:16;8784:27;8720:2;8569:258;;;;:::o;8833:320::-;;8914:1;8908:4;8904:12;8894:22;;8961:1;8955:4;8951:12;8982:18;8972:2;;9038:4;9030:6;9026:17;9016:27;;8972:2;9100;9092:6;9089:14;9069:18;9066:38;9063:2;;;9119:18;;:::i;:::-;9063:2;8884:269;;;;:::o;9159:180::-;9207:77;9204:1;9197:88;9304:4;9301:1;9294:15;9328:4;9325:1;9318:15;9345:180;9393:77;9390:1;9383:88;9490:4;9487:1;9480:15;9514:4;9511:1;9504:15;9531:102;;9623:2;9619:7;9614:2;9607:5;9603:14;9599:28;9589:38;;9579:54;;;:::o;9639:122::-;9712:24;9730:5;9712:24;:::i;:::-;9705:5;9702:35;9692:2;;9751:1;9748;9741:12;9692:2;9682:79;:::o;9767:116::-;9837:21;9852:5;9837:21;:::i;:::-;9830:5;9827:32;9817:2;;9873:1;9870;9863:12;9817:2;9807:76;:::o;9889:120::-;9961:23;9978:5;9961:23;:::i;:::-;9954:5;9951:34;9941:2;;9999:1;9996;9989:12;9941:2;9931:78;:::o;10015:122::-;10088:24;10106:5;10088:24;:::i;:::-;10081:5;10078:35;10068:2;;10127:1;10124;10117:12;10068:2;10058:79;:::o

Swarm Source

ipfs://7d3d76969dfb9d7a7c5971ea94893dbb56511de34e3273919aa1429efd4311a0

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.