ETH Price: $2,984.45 (+4.30%)
Gas: 2 Gwei

Token

Lympo NFT (LYMPO)
 

Overview

Max Total Supply

5,847 LYMPO

Holders

1,211

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dokopac75.eth
0x8c2c8791926cdb52145dbdde0516dcd995c77a21
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LympoNFT

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-26
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

/**
 * @title WhitelistAdminRole
 * @dev WhitelistAdmins are responsible for assigning and removing Whitelisted accounts.
 */
contract WhitelistAdminRole is Context {
    using Roles for Roles.Role;

    event WhitelistAdminAdded(address indexed account);
    event WhitelistAdminRemoved(address indexed account);

    Roles.Role private _whitelistAdmins;

    constructor () internal {
        _addWhitelistAdmin(_msgSender());
    }

    modifier onlyWhitelistAdmin() {
        require(isWhitelistAdmin(_msgSender()), "WhitelistAdminRole: caller does not have the WhitelistAdmin role");
        _;
    }

    function isWhitelistAdmin(address account) public view returns (bool) {
        return _whitelistAdmins.has(account);
    }

    function addWhitelistAdmin(address account) public onlyWhitelistAdmin {
        _addWhitelistAdmin(account);
    }

    function renounceWhitelistAdmin() public {
        _removeWhitelistAdmin(_msgSender());
    }

    function _addWhitelistAdmin(address account) internal {
        _whitelistAdmins.add(account);
        emit WhitelistAdminAdded(account);
    }

    function _removeWhitelistAdmin(address account) internal {
        _whitelistAdmins.remove(account);
        emit WhitelistAdminRemoved(account);
    }
}

/**
 * @title ERC165
 * @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
 */
interface IERC165 {

    /**
     * @notice Query if a contract implements an interface
     * @dev Interface identification is specified in ERC-165. This function
     * uses less than 30,000 gas
     * @param _interfaceId The interface identifier, as specified in ERC-165
     */
    function supportsInterface(bytes4 _interfaceId)
    external
    view
    returns (bool);
}

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {

  /**
   * @dev Multiplies two unsigned integers, reverts on overflow.
   */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b, "SafeMath#mul: OVERFLOW");

    return c;
  }

  /**
   * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
   */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, "SafeMath#div: DIVISION_BY_ZERO");
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
   * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
   */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a, "SafeMath#sub: UNDERFLOW");
    uint256 c = a - b;

    return c;
  }

  /**
   * @dev Adds two unsigned integers, reverts on overflow.
   */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a, "SafeMath#add: OVERFLOW");

    return c; 
  }

  /**
   * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
   * reverts when dividing by zero.
   */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0, "SafeMath#mod: DIVISION_BY_ZERO");
    return a % b;
  }

}

/**
 * @dev ERC-1155 interface for accepting safe transfers.
 */
interface IERC1155TokenReceiver {

  /**
   * @notice Handle the receipt of a single ERC1155 token type
   * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeTransferFrom` after the balance has been updated
   * This function MAY throw to revert and reject the transfer
   * Return of other amount than the magic value MUST result in the transaction being reverted
   * Note: The token contract address is always the message sender
   * @param _operator  The address which called the `safeTransferFrom` function
   * @param _from      The address which previously owned the token
   * @param _id        The id of the token being transferred
   * @param _amount    The amount of tokens being transferred
   * @param _data      Additional data with no specified format
   * @return           `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
   */
  function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _amount, bytes calldata _data) external returns(bytes4);

  /**
   * @notice Handle the receipt of multiple ERC1155 token types
   * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeBatchTransferFrom` after the balances have been updated
   * This function MAY throw to revert and reject the transfer
   * Return of other amount than the magic value WILL result in the transaction being reverted
   * Note: The token contract address is always the message sender
   * @param _operator  The address which called the `safeBatchTransferFrom` function
   * @param _from      The address which previously owned the token
   * @param _ids       An array containing ids of each token being transferred
   * @param _amounts   An array containing amounts of each token being transferred
   * @param _data      Additional data with no specified format
   * @return           `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
   */
  function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external returns(bytes4);

  /**
   * @notice Indicates whether a contract implements the `ERC1155TokenReceiver` functions and so can accept ERC1155 token types.
   * @param  interfaceID The ERC-165 interface ID that is queried for support.s
   * @dev This function MUST return true if it implements the ERC1155TokenReceiver interface and ERC-165 interface.
   *      This function MUST NOT consume more than 5,000 gas.
   * @return Wheter ERC-165 or ERC1155TokenReceiver interfaces are supported.
   */
  function supportsInterface(bytes4 interfaceID) external view returns (bool);

}

interface IERC1155 {
  // Events

  /**
   * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning
   *   Operator MUST be msg.sender
   *   When minting/creating tokens, the `_from` field MUST be set to `0x0`
   *   When burning/destroying tokens, the `_to` field MUST be set to `0x0`
   *   The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID
   *   To broadcast the existence of a token ID with no initial balance, the contract SHOULD emit the TransferSingle event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0
   */
  event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount);

  /**
   * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning
   *   Operator MUST be msg.sender
   *   When minting/creating tokens, the `_from` field MUST be set to `0x0`
   *   When burning/destroying tokens, the `_to` field MUST be set to `0x0`
   *   The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID
   *   To broadcast the existence of multiple token IDs with no initial balance, this SHOULD emit the TransferBatch event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0
   */
  event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts);

  /**
   * @dev MUST emit when an approval is updated
   */
  event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);

  /**
   * @dev MUST emit when the URI is updated for a token ID
   *   URIs are defined in RFC 3986
   *   The URI MUST point a JSON file that conforms to the "ERC-1155 Metadata JSON Schema"
   */
  event URI(string _amount, uint256 indexed _id);

  /**
   * @notice Transfers amount of an _id from the _from address to the _to address specified
   * @dev MUST emit TransferSingle event on success
   * Caller must be approved to manage the _from account's tokens (see isApprovedForAll)
   * MUST throw if `_to` is the zero address
   * MUST throw if balance of sender for token `_id` is lower than the `_amount` sent
   * MUST throw on any other error
   * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155Received` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
   * @param _from    Source address
   * @param _to      Target address
   * @param _id      ID of the token type
   * @param _amount  Transfered amount
   * @param _data    Additional data with no specified format, sent in call to `_to`
   */
  function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes calldata _data) external;

  /**
   * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
   * @dev MUST emit TransferBatch event on success
   * Caller must be approved to manage the _from account's tokens (see isApprovedForAll)
   * MUST throw if `_to` is the zero address
   * MUST throw if length of `_ids` is not the same as length of `_amounts`
   * MUST throw if any of the balance of sender for token `_ids` is lower than the respective `_amounts` sent
   * MUST throw on any other error
   * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155BatchReceived` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
   * Transfers and events MUST occur in the array order they were submitted (_ids[0] before _ids[1], etc)
   * @param _from     Source addresses
   * @param _to       Target addresses
   * @param _ids      IDs of each token type
   * @param _amounts  Transfer amounts per token type
   * @param _data     Additional data with no specified format, sent in call to `_to`
  */
  function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external;
  
  /**
   * @notice Get the balance of an account's Tokens
   * @param _owner  The address of the token holder
   * @param _id     ID of the Token
   * @return        The _owner's balance of the Token type requested
   */
  function balanceOf(address _owner, uint256 _id) external view returns (uint256);

  /**
   * @notice Get the balance of multiple account/token pairs
   * @param _owners The addresses of the token holders
   * @param _ids    ID of the Tokens
   * @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
   */
  function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view returns (uint256[] memory);

  /**
   * @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens
   * @dev MUST emit the ApprovalForAll event on success
   * @param _operator  Address to add to the set of authorized operators
   * @param _approved  True if the operator is approved, false to revoke approval
   */
  function setApprovalForAll(address _operator, bool _approved) external;

  /**
   * @notice Queries the approval status of an operator for a given owner
   * @param _owner     The owner of the Tokens
   * @param _operator  Address of authorized operator
   * @return isOperator           True if the operator is approved, false if not
   */
  function isApprovedForAll(address _owner, address _operator) external view returns (bool isOperator);

}

/**
 * Copyright 2018 ZeroEx Intl.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *   http://www.apache.org/licenses/LICENSE-2.0
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * Utility library of inline functions on addresses
 */
library Address {

  /**
   * Returns whether the target address is a contract
   * @dev This function will return false if invoked during the constructor of a contract,
   * as the code is not actually created until after the constructor finishes.
   * @param account address of the account to check
   * @return whether the target address is a contract
   */
  function isContract(address account) internal view returns (bool) {
    bytes32 codehash;
    bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;

    // XXX Currently there is no better way to check if there is a contract in an address
    // than to check the size of the code at that address.
    // See https://ethereum.stackexchange.com/a/14016/36603
    // for more details about how this works.
    // TODO Check this again before the Serenity release, because all addresses will be
    // contracts then.
    assembly { codehash := extcodehash(account) }
    return (codehash != 0x0 && codehash != accountHash);
  }

}

/**
 * @dev Implementation of Multi-Token Standard contract
 */
contract ERC1155 is IERC165 {
  using SafeMath for uint256;
  using Address for address;


  /***********************************|
  |        Variables and Events       |
  |__________________________________*/

  // onReceive function signatures
  bytes4 constant internal ERC1155_RECEIVED_VALUE = 0xf23a6e61;
  bytes4 constant internal ERC1155_BATCH_RECEIVED_VALUE = 0xbc197c81;

  // Objects balances
  mapping (address => mapping(uint256 => uint256)) internal balances;

  // Operator Functions
  mapping (address => mapping(address => bool)) internal operators;

  // Events
  event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount);
  event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts);
  event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);
  event URI(string _uri, uint256 indexed _id);


  /***********************************|
  |     Public Transfer Functions     |
  |__________________________________*/

  /**
   * @notice Transfers amount amount of an _id from the _from address to the _to address specified
   * @param _from    Source address
   * @param _to      Target address
   * @param _id      ID of the token type
   * @param _amount  Transfered amount
   * @param _data    Additional data with no specified format, sent in call to `_to`
   */
  function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data)
    public
  {
    require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeTransferFrom: INVALID_OPERATOR");
    require(_to != address(0),"ERC1155#safeTransferFrom: INVALID_RECIPIENT");
    // require(_amount >= balances[_from][_id]) is not necessary since checked with safemath operations

    _safeTransferFrom(_from, _to, _id, _amount);
    _callonERC1155Received(_from, _to, _id, _amount, _data);
  }

  /**
   * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
   * @param _from     Source addresses
   * @param _to       Target addresses
   * @param _ids      IDs of each token type
   * @param _amounts  Transfer amounts per token type
   * @param _data     Additional data with no specified format, sent in call to `_to`
   */
  function safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
    public
  {
    // Requirements
    require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeBatchTransferFrom: INVALID_OPERATOR");
    require(_to != address(0), "ERC1155#safeBatchTransferFrom: INVALID_RECIPIENT");

    _safeBatchTransferFrom(_from, _to, _ids, _amounts);
    _callonERC1155BatchReceived(_from, _to, _ids, _amounts, _data);
  }


  /***********************************|
  |    Internal Transfer Functions    |
  |__________________________________*/

  /**
   * @notice Transfers amount amount of an _id from the _from address to the _to address specified
   * @param _from    Source address
   * @param _to      Target address
   * @param _id      ID of the token type
   * @param _amount  Transfered amount
   */
  function _safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount)
    internal
  {
    // Update balances
    balances[_from][_id] = balances[_from][_id].sub(_amount); // Subtract amount
    balances[_to][_id] = balances[_to][_id].add(_amount);     // Add amount

    // Emit event
    emit TransferSingle(msg.sender, _from, _to, _id, _amount);
  }

  /**
   * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155Received(...)
   */
  function _callonERC1155Received(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data)
    internal
  {
    // Check if recipient is contract
    if (_to.isContract()) {
      bytes4 retval = IERC1155TokenReceiver(_to).onERC1155Received(msg.sender, _from, _id, _amount, _data);
      require(retval == ERC1155_RECEIVED_VALUE, "ERC1155#_callonERC1155Received: INVALID_ON_RECEIVE_MESSAGE");
    }
  }

  /**
   * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
   * @param _from     Source addresses
   * @param _to       Target addresses
   * @param _ids      IDs of each token type
   * @param _amounts  Transfer amounts per token type
   */
  function _safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts)
    internal
  {
    require(_ids.length == _amounts.length, "ERC1155#_safeBatchTransferFrom: INVALID_ARRAYS_LENGTH");

    // Number of transfer to execute
    uint256 nTransfer = _ids.length;

    // Executing all transfers
    for (uint256 i = 0; i < nTransfer; i++) {
      // Update storage balance of previous bin
      balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]);
      balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]);
    }

    // Emit event
    emit TransferBatch(msg.sender, _from, _to, _ids, _amounts);
  }

  /**
   * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155BatchReceived(...)
   */
  function _callonERC1155BatchReceived(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
    internal
  {
    // Pass data if recipient is contract
    if (_to.isContract()) {
      bytes4 retval = IERC1155TokenReceiver(_to).onERC1155BatchReceived(msg.sender, _from, _ids, _amounts, _data);
      require(retval == ERC1155_BATCH_RECEIVED_VALUE, "ERC1155#_callonERC1155BatchReceived: INVALID_ON_RECEIVE_MESSAGE");
    }
  }


  /***********************************|
  |         Operator Functions        |
  |__________________________________*/

  /**
   * @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens
   * @param _operator  Address to add to the set of authorized operators
   * @param _approved  True if the operator is approved, false to revoke approval
   */
  function setApprovalForAll(address _operator, bool _approved)
    external
  {
    // Update operator status
    operators[msg.sender][_operator] = _approved;
    emit ApprovalForAll(msg.sender, _operator, _approved);
  }

  /**
   * @notice Queries the approval status of an operator for a given owner
   * @param _owner     The owner of the Tokens
   * @param _operator  Address of authorized operator
   * @return isOperator True if the operator is approved, false if not
   */
  function isApprovedForAll(address _owner, address _operator)
    virtual public view returns (bool isOperator)
  {
    return operators[_owner][_operator];
  }


  /***********************************|
  |         Balance Functions         |
  |__________________________________*/

  /**
   * @notice Get the balance of an account's Tokens
   * @param _owner  The address of the token holder
   * @param _id     ID of the Token
   * @return The _owner's balance of the Token type requested
   */
  function balanceOf(address _owner, uint256 _id)
    public view returns (uint256)
  {
    return balances[_owner][_id];
  }

  /**
   * @notice Get the balance of multiple account/token pairs
   * @param _owners The addresses of the token holders
   * @param _ids    ID of the Tokens
   * @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
   */
  function balanceOfBatch(address[] memory _owners, uint256[] memory _ids)
    public view returns (uint256[] memory)
  {
    require(_owners.length == _ids.length, "ERC1155#balanceOfBatch: INVALID_ARRAY_LENGTH");

    // Variables
    uint256[] memory batchBalances = new uint256[](_owners.length);

    // Iterate over each owner and token ID
    for (uint256 i = 0; i < _owners.length; i++) {
      batchBalances[i] = balances[_owners[i]][_ids[i]];
    }

    return batchBalances;
  }


  /***********************************|
  |          ERC165 Functions         |
  |__________________________________*/

  /**
   * @dev INTERFACE_SIGNATURE_ERC165 = bytes4(keccak256("supportsInterface(bytes4)"));
   */
  bytes4 constant private INTERFACE_SIGNATURE_ERC165 = 0x01ffc9a7;

  /**
   * @dev
   * INTERFACE_SIGNATURE_ERC1155 =
   * bytes4(keccak256("safeTransferFrom(address,address,uint256,uint256,bytes)")) ^
   * bytes4(keccak256("safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)")) ^
   * bytes4(keccak256("balanceOf(address,uint256)")) ^
   * bytes4(keccak256("balanceOfBatch(address[],uint256[])")) ^
   * bytes4(keccak256("setApprovalForAll(address,bool)")) ^
   * bytes4(keccak256("isApprovedForAll(address,address)"));
   */
  bytes4 constant private INTERFACE_SIGNATURE_ERC1155 = 0xd9b67a26;

  /**
   * @notice Query if a contract implements an interface
   * @param _interfaceID  The interface identifier, as specified in ERC-165
   * @return `true` if the contract implements `_interfaceID` and
   */
  function supportsInterface(bytes4 _interfaceID) override external view returns (bool) {
    if (_interfaceID == INTERFACE_SIGNATURE_ERC165 ||
        _interfaceID == INTERFACE_SIGNATURE_ERC1155) {
      return true;
    }
    return false;
  }

}

/**
 * @notice Contract that handles metadata related methods.
 * @dev Methods assume a deterministic generation of URI based on token IDs.
 *      Methods also assume that URI uses hex representation of token IDs.
 */
contract ERC1155Metadata {

  // URI's default URI prefix
  string internal baseMetadataURI;
  event URI(string _uri, uint256 indexed _id);


  /***********************************|
  |     Metadata Public Function s    |
  |__________________________________*/

  /**
   * @notice A distinct Uniform Resource Identifier (URI) for a given token.
   * @dev URIs are defined in RFC 3986.
   *      URIs are assumed to be deterministically generated based on token ID
   *      Token IDs are assumed to be represented in their hex format in URIs
   * @return URI string
   */
  function uri(uint256 _id) virtual public view returns (string memory) {
    return string(abi.encodePacked(baseMetadataURI, _uint2str(_id), ".json"));
  }


  /***********************************|
  |    Metadata Internal Functions    |
  |__________________________________*/

  /**
   * @notice Will emit default URI log event for corresponding token _id
   * @param _tokenIDs Array of IDs of tokens to log default URI
   */
  function _logURIs(uint256[] memory _tokenIDs) internal {
    string memory baseURL = baseMetadataURI;
    string memory tokenURI;

    for (uint256 i = 0; i < _tokenIDs.length; i++) {
      tokenURI = string(abi.encodePacked(baseURL, _uint2str(_tokenIDs[i]), ".json"));
      emit URI(tokenURI, _tokenIDs[i]);
    }
  }

  /**
   * @notice Will emit a specific URI log event for corresponding token
   * @param _tokenIDs IDs of the token corresponding to the _uris logged
   * @param _URIs    The URIs of the specified _tokenIDs
   */
  function _logURIs(uint256[] memory _tokenIDs, string[] memory _URIs) internal {
    require(_tokenIDs.length == _URIs.length, "ERC1155Metadata#_logURIs: INVALID_ARRAYS_LENGTH");
    for (uint256 i = 0; i < _tokenIDs.length; i++) {
      emit URI(_URIs[i], _tokenIDs[i]);
    }
  }

  /**
   * @notice Will update the base URL of token's URI
   * @param _newBaseMetadataURI New base URL of token's URI
   */
  function _setBaseMetadataURI(string memory _newBaseMetadataURI) internal {
    baseMetadataURI = _newBaseMetadataURI;
  }


  /***********************************|
  |    Utility Internal Functions     |
  |__________________________________*/

  /**
   * @notice Convert uint256 to string
   * @param _i Unsigned integer to convert to string
   */
  function _uint2str(uint256 _i) internal pure returns (string memory _uintAsString) {
    if (_i == 0) {
      return "0";
    }

    uint256 j = _i;
    uint256 ii = _i;
    uint256 len;

    // Get number of bytes
    while (j != 0) {
      len++;
      j /= 10;
    }

    bytes memory bstr = new bytes(len);
    uint256 k = len - 1;

    // Get each individual ASCII
    while (ii != 0) {
      bstr[k--] = byte(uint8(48 + ii % 10));
      ii /= 10;
    }

    // Convert to string
    return string(bstr);
  }

}

/**
 * @dev Multi-Fungible Tokens with minting and burning methods. These methods assume
 *      a parent contract to be executed as they are `internal` functions
 */
contract ERC1155MintBurn is ERC1155 {


  /****************************************|
  |            Minting Functions           |
  |_______________________________________*/

  /**
   * @notice Mint _amount of tokens of a given id
   * @param _to      The address to mint tokens to
   * @param _id      Token id to mint
   * @param _amount  The amount to be minted
   * @param _data    Data to pass if receiver is contract
   */
  function _mint(address _to, uint256 _id, uint256 _amount, bytes memory _data)
    internal
  {
    // Add _amount
    balances[_to][_id] = balances[_to][_id].add(_amount);

    // Emit event
    emit TransferSingle(msg.sender, address(0x0), _to, _id, _amount);

    // Calling onReceive method if recipient is contract
    _callonERC1155Received(address(0x0), _to, _id, _amount, _data);
  }

  /**
   * @notice Mint tokens for each ids in _ids
   * @param _to       The address to mint tokens to
   * @param _ids      Array of ids to mint
   * @param _amounts  Array of amount of tokens to mint per id
   * @param _data    Data to pass if receiver is contract
   */
  function _batchMint(address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
    internal
  {
    require(_ids.length == _amounts.length, "ERC1155MintBurn#batchMint: INVALID_ARRAYS_LENGTH");

    // Number of mints to execute
    uint256 nMint = _ids.length;

     // Executing all minting
    for (uint256 i = 0; i < nMint; i++) {
      // Update storage balance
      balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]);
    }

    // Emit batch mint event
    emit TransferBatch(msg.sender, address(0x0), _to, _ids, _amounts);

    // Calling onReceive method if recipient is contract
    _callonERC1155BatchReceived(address(0x0), _to, _ids, _amounts, _data);
  }


  /****************************************|
  |            Burning Functions           |
  |_______________________________________*/

  /**
   * @notice Burn _amount of tokens of a given token id
   * @param _from    The address to burn tokens from
   * @param _id      Token id to burn
   * @param _amount  The amount to be burned
   */
  function _burn(address _from, uint256 _id, uint256 _amount)
    internal
  {
    //Substract _amount
    balances[_from][_id] = balances[_from][_id].sub(_amount);

    // Emit event
    emit TransferSingle(msg.sender, _from, address(0x0), _id, _amount);
  }

  /**
   * @notice Burn tokens of given token id for each (_ids[i], _amounts[i]) pair
   * @param _from     The address to burn tokens from
   * @param _ids      Array of token ids to burn
   * @param _amounts  Array of the amount to be burned
   */
  function _batchBurn(address _from, uint256[] memory _ids, uint256[] memory _amounts)
    internal
  {
    require(_ids.length == _amounts.length, "ERC1155MintBurn#batchBurn: INVALID_ARRAYS_LENGTH");

    // Number of mints to execute
    uint256 nBurn = _ids.length;

     // Executing all minting
    for (uint256 i = 0; i < nBurn; i++) {
      // Update storage balance
      balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]);
    }

    // Emit batch mint event
    emit TransferBatch(msg.sender, _from, address(0x0), _ids, _amounts);
  }

}

library Strings {
	// via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol
	function strConcat(
		string memory _a,
		string memory _b,
		string memory _c,
		string memory _d,
		string memory _e
	) internal pure returns (string memory) {
		bytes memory _ba = bytes(_a);
		bytes memory _bb = bytes(_b);
		bytes memory _bc = bytes(_c);
		bytes memory _bd = bytes(_d);
		bytes memory _be = bytes(_e);
		string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length);
		bytes memory babcde = bytes(abcde);
		uint256 k = 0;
		for (uint256 i = 0; i < _ba.length; i++) babcde[k++] = _ba[i];
		for (uint256 i = 0; i < _bb.length; i++) babcde[k++] = _bb[i];
		for (uint256 i = 0; i < _bc.length; i++) babcde[k++] = _bc[i];
		for (uint256 i = 0; i < _bd.length; i++) babcde[k++] = _bd[i];
		for (uint256 i = 0; i < _be.length; i++) babcde[k++] = _be[i];
		return string(babcde);
	}

	function strConcat(
		string memory _a,
		string memory _b,
		string memory _c,
		string memory _d
	) internal pure returns (string memory) {
		return strConcat(_a, _b, _c, _d, "");
	}

	function strConcat(
		string memory _a,
		string memory _b,
		string memory _c
	) internal pure returns (string memory) {
		return strConcat(_a, _b, _c, "", "");
	}

	function strConcat(string memory _a, string memory _b) internal pure returns (string memory) {
		return strConcat(_a, _b, "", "", "");
	}

	function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) {
		if (_i == 0) {
			return "0";
		}
		uint256 j = _i;
		uint256 len;
		while (j != 0) {
			len++;
			j /= 10;
		}
		bytes memory bstr = new bytes(len);
		uint256 k = len - 1;
		while (_i != 0) {
			bstr[k--] = bytes1(uint8(48 + (_i % 10)));
			_i /= 10;
		}
		return string(bstr);
	}
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
	mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC1155Tradable
 * ERC1155Tradable - ERC1155 contract that whitelists an operator address, 
 * has create and mint functionality, and supports useful standards from OpenZeppelin,
  like _exists(), name(), symbol(), and totalSupply()
 */
contract ERC1155Tradable is ERC1155, ERC1155MintBurn, ERC1155Metadata, Ownable, MinterRole, WhitelistAdminRole {
	using Strings for string;

	address proxyRegistryAddress;
	uint256 private _currentTokenID = 0;
	mapping(uint256 => address) public creators;
	mapping(uint256 => uint256) public tokenSupply;
	mapping(uint256 => uint256) public tokenMaxSupply;
	// Contract name
	string public name;
	// Contract symbol
	string public symbol;

	constructor(
		string memory _name,
		string memory _symbol,
		address _proxyRegistryAddress
	) public {
		name = _name;
		symbol = _symbol;
		proxyRegistryAddress = _proxyRegistryAddress;
	}

	function removeWhitelistAdmin(address account) public onlyOwner {
		_removeWhitelistAdmin(account);
	}

	function removeMinter(address account) public onlyOwner {
		_removeMinter(account);
	}

	function uri(uint256 _id) override public view returns (string memory) {
		require(_exists(_id), "ERC721Tradable#uri: NONEXISTENT_TOKEN");
		return Strings.strConcat(baseMetadataURI, Strings.uint2str(_id));
	}

	/**
	 * @dev Returns the total quantity for a token ID
	 * @param _id uint256 ID of the token to query
	 * @return amount of token in existence
	 */
	function totalSupply(uint256 _id) public view returns (uint256) {
		return tokenSupply[_id];
	}

	/**
	 * @dev Returns the max quantity for a token ID
	 * @param _id uint256 ID of the token to query
	 * @return amount of token in existence
	 */
	function maxSupply(uint256 _id) public view returns (uint256) {
		return tokenMaxSupply[_id];
	}

	/**
	 * @dev Will update the base URL of token's URI
	 * @param _newBaseMetadataURI New base URL of token's URI
	 */
	function setBaseMetadataURI(string memory _newBaseMetadataURI) public onlyWhitelistAdmin {
		_setBaseMetadataURI(_newBaseMetadataURI);
	}

	/**
	 * @dev Creates a new token type and assigns _initialSupply to an address
	 * @param _maxSupply max supply allowed
	 * @param _initialSupply Optional amount to supply the first owner
	 * @param _uri Optional URI for this token type
	 * @param _data Optional data to pass if receiver is contract
	 * @return tokenId The newly created token ID
	 */
	function create(
		uint256 _maxSupply,
		uint256 _initialSupply,
		string calldata _uri,
		bytes calldata _data
	) external onlyWhitelistAdmin returns (uint256 tokenId) {
		require(_initialSupply <= _maxSupply, "Initial supply cannot be more than max supply");
		uint256 _id = _getNextTokenID();
		_incrementTokenTypeId();
		creators[_id] = msg.sender;

		if (bytes(_uri).length > 0) {
			emit URI(_uri, _id);
		}

		if (_initialSupply != 0) _mint(msg.sender, _id, _initialSupply, _data);
		tokenSupply[_id] = _initialSupply;
		tokenMaxSupply[_id] = _maxSupply;
		return _id;
	}

	/**
	 * @dev Mints some amount of tokens to an address
	 * @param _to          Address of the future owner of the token
	 * @param _id          Token ID to mint
	 * @param _quantity    Amount of tokens to mint
	 * @param _data        Data to pass if receiver is contract
	 */
	function mint(
		address _to,
		uint256 _id,
		uint256 _quantity,
		bytes memory _data
	) public onlyMinter {
		require(tokenSupply[_id] < tokenMaxSupply[_id], "Max supply reached");
		_mint(_to, _id, _quantity, _data);
		tokenSupply[_id] = tokenSupply[_id].add(_quantity);
	}

	/**
	 * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-free listings.
	 */
	function isApprovedForAll(address _owner, address _operator) override public view returns (bool isOperator) {
		// Whitelist OpenSea proxy contract for easy trading.
		ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
		if (address(proxyRegistry.proxies(_owner)) == _operator) {
			return true;
		}

		return ERC1155.isApprovedForAll(_owner, _operator);
	}

	/**
	 * @dev Returns whether the specified token exists by checking to see if it has a creator
	 * @param _id uint256 ID of the token to query the existence of
	 * @return bool whether the token exists
	 */
	function _exists(uint256 _id) internal view returns (bool) {
		return creators[_id] != address(0);
	}

	/**
	 * @dev calculates the next token ID based on value of _currentTokenID
	 * @return uint256 for the next token ID
	 */
	function _getNextTokenID() private view returns (uint256) {
		return _currentTokenID.add(1);
	}

	/**
	 * @dev increments the value of _currentTokenID
	 */
	function _incrementTokenTypeId() private {
		_currentTokenID++;
	}
}


contract LympoNFT is ERC1155Tradable {

  mapping(uint => bool) public mintOwnableBlocked;

	// _proxyRegistryAddress - 0xa5409ec958c83c3f309868babaca7c86dcb077c1
	constructor(address _proxyRegistryAddress) public ERC1155Tradable("Lympo NFT", "LYMPO", _proxyRegistryAddress) {
		_setBaseMetadataURI("https://api.lympo.io/pools/assets/");
	}

  /**
   * @dev Mints some amount of tokens to an address
   * @param _to          Address of the future owner of the token
   * @param _id          Token ID to mint
   * @param _quantity    Amount of tokens to mint
   * @param _data        Data to pass if receiver is contract
   */
  function mintOwnable(
    address _to,
    uint256 _id,
    uint256 _quantity,
    bytes memory _data
  ) public onlyOwner {
    require(!mintOwnableBlocked[_id], "mint closed");
    _mint(_to, _id, _quantity, _data);
  }

  function blockMintOwnable(uint[] calldata _ids) public onlyOwner {
    for(uint i = 0; i < _ids.length; i++) {
      mintOwnableBlocked[_ids[i]] = true;
    }
  }

	function contractURI() public pure returns (string memory) {
		return "https://api.lympo.io/pools/lympo";
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_uri","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminRemoved","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelistAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"blockMintOwnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"create","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","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":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelistAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"mintOwnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintOwnableBlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeWhitelistAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceWhitelistAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseMetadataURI","type":"string"}],"name":"setBaseMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

608060405260006007553480156200001657600080fd5b50604051620030f7380380620030f7833981810160405260208110156200003c57600080fd5b50516040805180820182526009815268131e5b5c1bc813919560ba1b602082810191909152825180840190935260058352644c594d504f60d81b90830152908260006200008862000178565b600380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000ea620000e462000178565b6200017c565b620000fe620000f862000178565b620001ce565b82516200011390600b90602086019062000326565b5081516200012990600c90602085019062000326565b50600680546001600160a01b0319166001600160a01b0392909216919091179055505060408051606081019091526022808252620001719190620030d5602083013962000220565b50620003c2565b3390565b620001978160046200023960201b62001a141790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620001e98160056200023960201b62001a141790919060201c565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b80516200023590600290602084019062000326565b5050565b620002458282620002bd565b1562000298576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620003065760405162461bcd60e51b8152600401808060200182810382526022815260200180620030b36022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200036957805160ff191683800117855562000399565b8280016001018555821562000399579182015b82811115620003995782518255916020019190600101906200037c565b50620003a7929150620003ab565b5090565b5b80821115620003a75760008155600101620003ac565b612ce180620003d26000396000f3fe608060405234801561001057600080fd5b50600436106102045760003560e01c8063869f75941161011a578063b09ddf7b116100ad578063cd53d08e1161007c578063cd53d08e14610b9d578063e8a3d48514610bba578063e985e9c514610bc2578063f242432a14610bf0578063f2fde38b14610cb957610204565b8063b09ddf7b146109d0578063bb5f747b14610a9a578063bd85b03914610ac0578063c342b67314610add57610204565b8063983b2d56116100e9578063983b2d561461094e5780639865027514610974578063a22cb4651461097c578063aa271e1a146109aa57610204565b8063869f7594146108fd5780638da5cb5b1461091a5780638f32d59b1461093e57806395d89b411461094657610204565b80633092afd51161019d578063715018a61161016c578063715018a6146106fd578063731133e9146107055780637362d9c8146107c55780637aa59318146107eb5780637e518ec81461085957610204565b80633092afd5146105365780634c5a628c1461055c5780634e1273f4146105645780636897e974146106d757610204565b80630e89341c116101d95780630e89341c1461031c5780631961bc37146103395780632693ebf2146103565780632eb2c2d61461037357610204565b80624221f014610209578062fdd58e1461023857806301ffc9a71461026457806306fdde031461029f575b600080fd5b6102266004803603602081101561021f57600080fd5b5035610cdf565b60408051918252519081900360200190f35b6102266004803603604081101561024e57600080fd5b506001600160a01b038135169060200135610cf1565b61028b6004803603602081101561027a57600080fd5b50356001600160e01b031916610d1a565b604080519115158252519081900360200190f35b6102a7610d61565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e15781810151838201526020016102c9565b50505050905090810190601f16801561030e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102a76004803603602081101561033257600080fd5b5035610def565b61028b6004803603602081101561034f57600080fd5b5035610ed2565b6102266004803603602081101561036c57600080fd5b5035610ee7565b610534600480360360a081101561038957600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b8111156103bc57600080fd5b8201836020820111156103ce57600080fd5b803590602001918460208302840111600160201b831117156103ef57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561043e57600080fd5b82018360208201111561045057600080fd5b803590602001918460208302840111600160201b8311171561047157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156104c057600080fd5b8201836020820111156104d257600080fd5b803590602001918460018302840111600160201b831117156104f357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ef9945050505050565b005b6105346004803603602081101561054c57600080fd5b50356001600160a01b0316610fb5565b610534611008565b6106876004803603604081101561057a57600080fd5b810190602081018135600160201b81111561059457600080fd5b8201836020820111156105a657600080fd5b803590602001918460208302840111600160201b831117156105c757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561061657600080fd5b82018360208201111561062857600080fd5b803590602001918460208302840111600160201b8311171561064957600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061101a945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156106c35781810151838201526020016106ab565b505050509050019250505060405180910390f35b610534600480360360208110156106ed57600080fd5b50356001600160a01b0316611132565b610534611182565b6105346004803603608081101561071b57600080fd5b6001600160a01b038235169160208101359160408201359190810190608081016060820135600160201b81111561075157600080fd5b82018360208201111561076357600080fd5b803590602001918460018302840111600160201b8311171561078457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611213945050505050565b610534600480360360208110156107db57600080fd5b50356001600160a01b03166112fd565b6105346004803603602081101561080157600080fd5b810190602081018135600160201b81111561081b57600080fd5b82018360208201111561082d57600080fd5b803590602001918460208302840111600160201b8311171561084e57600080fd5b509092509050611351565b6105346004803603602081101561086f57600080fd5b810190602081018135600160201b81111561088957600080fd5b82018360208201111561089b57600080fd5b803590602001918460018302840111600160201b831117156108bc57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506113ea945050505050565b6102266004803603602081101561091357600080fd5b5035611439565b61092261144b565b604080516001600160a01b039092168252519081900360200190f35b61028b61145a565b6102a7611480565b6105346004803603602081101561096457600080fd5b50356001600160a01b03166114db565b61053461152a565b6105346004803603604081101561099257600080fd5b506001600160a01b038135169060200135151561153a565b61028b600480360360208110156109c057600080fd5b50356001600160a01b03166115a8565b610226600480360360808110156109e657600080fd5b813591602081013591810190606081016040820135600160201b811115610a0c57600080fd5b820183602082011115610a1e57600080fd5b803590602001918460018302840111600160201b83111715610a3f57600080fd5b919390929091602081019035600160201b811115610a5c57600080fd5b820183602082011115610a6e57600080fd5b803590602001918460018302840111600160201b83111715610a8f57600080fd5b5090925090506115b5565b61028b60048036036020811015610ab057600080fd5b50356001600160a01b0316611748565b61022660048036036020811015610ad657600080fd5b5035611755565b61053460048036036080811015610af357600080fd5b6001600160a01b038235169160208101359160408201359190810190608081016060820135600160201b811115610b2957600080fd5b820183602082011115610b3b57600080fd5b803590602001918460018302840111600160201b83111715610b5c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611767945050505050565b61092260048036036020811015610bb357600080fd5b5035611812565b6102a761182d565b61028b60048036036040811015610bd857600080fd5b506001600160a01b0381358116916020013516611864565b610534600480360360a0811015610c0657600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b811115610c4557600080fd5b820183602082011115610c5757600080fd5b803590602001918460018302840111600160201b83111715610c7857600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061190f945050505050565b61053460048036036020811015610ccf57600080fd5b50356001600160a01b03166119c4565b600a6020526000908152604090205481565b6001600160a01b0382166000908152602081815260408083208484529091529020545b92915050565b60006001600160e01b031982166301ffc9a760e01b1480610d4b57506001600160e01b03198216636cdb3d1360e11b145b15610d5857506001610d5c565b5060005b919050565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610de75780601f10610dbc57610100808354040283529160200191610de7565b820191906000526020600020905b815481529060010190602001808311610dca57829003601f168201915b505050505081565b6060610dfa82611a95565b610e355760405162461bcd60e51b8152600401808060200182810382526025815260200180612b046025913960400191505060405180910390fd5b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152610d149390929091830182828015610ebf5780601f10610e9457610100808354040283529160200191610ebf565b820191906000526020600020905b815481529060010190602001808311610ea257829003601f168201915b5050505050610ecd84611ab2565b611b8a565b600d6020526000908152604090205460ff1681565b60096020526000908152604090205481565b336001600160a01b0386161480610f155750610f158533611864565b610f505760405162461bcd60e51b815260040180806020018281038252602f815260200180612c04602f913960400191505060405180910390fd5b6001600160a01b038416610f955760405162461bcd60e51b8152600401808060200182810382526030815260200180612ad46030913960400191505060405180910390fd5b610fa185858585611bcd565b610fae8585858585611e78565b5050505050565b610fbd61145a565b610ffc576040805162461bcd60e51b81526020600482018190526024820152600080516020612b29833981519152604482015290519081900360640190fd5b6110058161206c565b50565b6110186110136120ae565b6120b2565b565b6060815183511461105c5760405162461bcd60e51b815260040180806020018281038252602c815260200180612bd8602c913960400191505060405180910390fd5b6060835167ffffffffffffffff8111801561107657600080fd5b506040519080825280602002602001820160405280156110a0578160200160208202803683370190505b50905060005b845181101561112a576000808683815181106110be57fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008583815181106110f457fe5b602002602001015181526020019081526020016000205482828151811061111757fe5b60209081029190910101526001016110a6565b509392505050565b61113a61145a565b611179576040805162461bcd60e51b81526020600482018190526024820152600080516020612b29833981519152604482015290519081900360640190fd5b611005816120b2565b61118a61145a565b6111c9576040805162461bcd60e51b81526020600482018190526024820152600080516020612b29833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b61122361121e6120ae565b6115a8565b61125e5760405162461bcd60e51b8152600401808060200182810382526030815260200180612a836030913960400191505060405180910390fd5b6000838152600a6020908152604080832054600990925290912054106112c0576040805162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b604482015290519081900360640190fd5b6112cc848484846120f4565b6000838152600960205260409020546112e5908361218e565b60009384526009602052604090932092909255505050565b61130d6113086120ae565b611748565b6113485760405162461bcd60e51b8152600401808060200182810382526040815260200180612b986040913960400191505060405180910390fd5b611005816121e1565b61135961145a565b611398576040805162461bcd60e51b81526020600482018190526024820152600080516020612b29833981519152604482015290519081900360640190fd5b60005b818110156113e5576001600d60008585858181106113b557fe5b60209081029290920135835250810191909152604001600020805460ff191691151591909117905560010161139b565b505050565b6113f56113086120ae565b6114305760405162461bcd60e51b8152600401808060200182810382526040815260200180612b986040913960400191505060405180910390fd5b61100581612223565b6000908152600a602052604090205490565b6003546001600160a01b031690565b6003546000906001600160a01b03166114716120ae565b6001600160a01b031614905090565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610de75780601f10610dbc57610100808354040283529160200191610de7565b6114e661121e6120ae565b6115215760405162461bcd60e51b8152600401808060200182810382526030815260200180612a836030913960400191505060405180910390fd5b6110058161223a565b6110186115356120ae565b61206c565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b6000610d1460048361227c565b60006115c26113086120ae565b6115fd5760405162461bcd60e51b8152600401808060200182810382526040815260200180612b986040913960400191505060405180910390fd5b8686111561163c5760405162461bcd60e51b815260040180806020018281038252602d815260200180612b49602d913960400191505060405180910390fd5b60006116466122e3565b90506116506122f9565b600081815260086020526040902080546001600160a01b0319163317905584156116d657807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b878760405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a25b861561171e5761171e33828987878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506120f492505050565b60008181526009602090815260408083208a9055600a909152902088905590509695505050505050565b6000610d1460058361227c565b60009081526009602052604090205490565b61176f61145a565b6117ae576040805162461bcd60e51b81526020600482018190526024820152600080516020612b29833981519152604482015290519081900360640190fd5b6000838152600d602052604090205460ff1615611800576040805162461bcd60e51b815260206004820152600b60248201526a1b5a5b9d0818db1bdcd95960aa1b604482015290519081900360640190fd5b61180c848484846120f4565b50505050565b6008602052600090815260409020546001600160a01b031681565b6040805180820190915260208082527f68747470733a2f2f6170692e6c796d706f2e696f2f706f6f6c732f6c796d706f9082015290565b6006546040805163c455279160e01b81526001600160a01b0385811660048301529151600093831692851691839163c455279191602480820192602092909190829003018186803b1580156118b857600080fd5b505afa1580156118cc573d6000803e3d6000fd5b505050506040513d60208110156118e257600080fd5b50516001600160a01b031614156118fd576001915050610d14565b6119078484612304565b949350505050565b336001600160a01b038616148061192b575061192b8533611864565b6119665760405162461bcd60e51b815260040180806020018281038252602a815260200180612a24602a913960400191505060405180910390fd5b6001600160a01b0384166119ab5760405162461bcd60e51b815260040180806020018281038252602b8152602001806129d3602b913960400191505060405180910390fd5b6119b785858585612332565b610fae858585858561240e565b6119cc61145a565b611a0b576040805162461bcd60e51b81526020600482018190526024820152600080516020612b29833981519152604482015290519081900360640190fd5b6110058161257e565b611a1e828261227c565b15611a70576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000908152600860205260409020546001600160a01b0316151590565b606081611ad757506040805180820190915260018152600360fc1b6020820152610d5c565b8160005b8115611aef57600101600a82049150611adb565b60608167ffffffffffffffff81118015611b0857600080fd5b506040519080825280601f01601f191660200182016040528015611b33576020820181803683370190505b50905060001982015b8515611b8157600a860660300160f81b82828060019003935081518110611b5f57fe5b60200101906001600160f81b031916908160001a905350600a86049550611b3c565b50949350505050565b6060611bc6838360405180602001604052806000815250604051806020016040528060008152506040518060200160405280600081525061261f565b9392505050565b8051825114611c0d5760405162461bcd60e51b8152600401808060200182810382526035815260200180612a4e6035913960400191505060405180910390fd5b815160005b81811015611d9757611c88838281518110611c2957fe5b6020026020010151600080896001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110611c6357fe5b602002602001015181526020019081526020016000205461284490919063ffffffff16565b600080886001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110611cba57fe5b6020026020010151815260200190815260200160002081905550611d42838281518110611ce357fe5b6020026020010151600080886001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110611d1d57fe5b602002602001015181526020019081526020016000205461218e90919063ffffffff16565b600080876001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110611d7457fe5b602090810291909101810151825281019190915260400160002055600101611c12565b50836001600160a01b0316856001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015611e1d578181015183820152602001611e05565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015611e5c578181015183820152602001611e44565b5050505090500194505050505060405180910390a45050505050565b611e8a846001600160a01b03166128a1565b15610fae576000846001600160a01b031663bc197c8133888787876040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015611f1a578181015183820152602001611f02565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015611f59578181015183820152602001611f41565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015611f95578181015183820152602001611f7d565b50505050905090810190601f168015611fc25780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015611fe757600080fd5b505af1158015611ffb573d6000803e3d6000fd5b505050506040513d602081101561201157600080fd5b505190506001600160e01b0319811663bc197c8160e01b146120645760405162461bcd60e51b815260040180806020018281038252603f815260200180612c33603f913960400191505060405180910390fd5b505050505050565b6120776004826128d8565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b3390565b6120bd6005826128d8565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b6001600160a01b038416600090815260208181526040808320868452909152902054612120908361218e565b6001600160a01b038516600081815260208181526040808320888452825280832094909455835187815290810186905283519293919233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62928290030190a461180c60008585858561240e565b600082820183811015611bc6576040805162461bcd60e51b8152602060048201526016602482015275536166654d617468236164643a204f564552464c4f5760501b604482015290519081900360640190fd5b6121ec600582611a14565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b805161223690600290602084019061293f565b5050565b612245600482611a14565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60006001600160a01b0382166122c35760405162461bcd60e51b8152600401808060200182810382526022815260200180612b766022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6007546000906122f490600161218e565b905090565b600780546001019055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6001600160a01b03841660009081526020818152604080832085845290915290205461235e9082612844565b6001600160a01b03808616600090815260208181526040808320878452825280832094909455918616815280825282812085825290915220546123a1908261218e565b6001600160a01b03808516600081815260208181526040808320888452825291829020949094558051868152938401859052805191939288169233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62929181900390910190a450505050565b612420846001600160a01b03166128a1565b15610fae576000846001600160a01b031663f23a6e6133888787876040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156124b1578181015183820152602001612499565b50505050905090810190601f1680156124de5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561250157600080fd5b505af1158015612515573d6000803e3d6000fd5b505050506040513d602081101561252b57600080fd5b505190506001600160e01b0319811663f23a6e6160e01b146120645760405162461bcd60e51b815260040180806020018281038252603a815260200180612c72603a913960400191505060405180910390fd5b6001600160a01b0381166125c35760405162461bcd60e51b81526004018080602001828103825260268152602001806129fe6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b805182518451865188516060948a948a948a948a948a948a94919092019092019091010167ffffffffffffffff8111801561265957600080fd5b506040519080825280601f01601f191660200182016040528015612684576020820181803683370190505b509050806000805b88518110156126dd578881815181106126a157fe5b602001015160f81c60f81b8383806001019450815181106126be57fe5b60200101906001600160f81b031916908160001a90535060010161268c565b5060005b8751811015612732578781815181106126f657fe5b602001015160f81c60f81b83838060010194508151811061271357fe5b60200101906001600160f81b031916908160001a9053506001016126e1565b5060005b86518110156127875786818151811061274b57fe5b602001015160f81c60f81b83838060010194508151811061276857fe5b60200101906001600160f81b031916908160001a905350600101612736565b5060005b85518110156127dc578581815181106127a057fe5b602001015160f81c60f81b8383806001019450815181106127bd57fe5b60200101906001600160f81b031916908160001a90535060010161278b565b5060005b8451811015612831578481815181106127f557fe5b602001015160f81c60f81b83838060010194508151811061281257fe5b60200101906001600160f81b031916908160001a9053506001016127e0565b50909d9c50505050505050505050505050565b60008282111561289b576040805162461bcd60e51b815260206004820152601760248201527f536166654d617468237375623a20554e444552464c4f57000000000000000000604482015290519081900360640190fd5b50900390565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906119075750141592915050565b6128e2828261227c565b61291d5760405162461bcd60e51b8152600401808060200182810382526021815260200180612ab36021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061298057805160ff19168380011785556129ad565b828001600101855582156129ad579182015b828111156129ad578251825591602001919060010190612992565b506129b99291506129bd565b5090565b5b808211156129b957600081556001016129be56fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e544f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e4754484d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572496e697469616c20737570706c792063616e6e6f74206265206d6f7265207468616e206d617820737570706c79526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c65455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745a26469706673582212207d43e50e5265bd03b98953cdbae2cfe5ea899dd098544400e47da5c43ca9469d64736f6c634300060c0033526f6c65733a206163636f756e7420697320746865207a65726f206164647265737368747470733a2f2f6170692e6c796d706f2e696f2f706f6f6c732f6173736574732f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102045760003560e01c8063869f75941161011a578063b09ddf7b116100ad578063cd53d08e1161007c578063cd53d08e14610b9d578063e8a3d48514610bba578063e985e9c514610bc2578063f242432a14610bf0578063f2fde38b14610cb957610204565b8063b09ddf7b146109d0578063bb5f747b14610a9a578063bd85b03914610ac0578063c342b67314610add57610204565b8063983b2d56116100e9578063983b2d561461094e5780639865027514610974578063a22cb4651461097c578063aa271e1a146109aa57610204565b8063869f7594146108fd5780638da5cb5b1461091a5780638f32d59b1461093e57806395d89b411461094657610204565b80633092afd51161019d578063715018a61161016c578063715018a6146106fd578063731133e9146107055780637362d9c8146107c55780637aa59318146107eb5780637e518ec81461085957610204565b80633092afd5146105365780634c5a628c1461055c5780634e1273f4146105645780636897e974146106d757610204565b80630e89341c116101d95780630e89341c1461031c5780631961bc37146103395780632693ebf2146103565780632eb2c2d61461037357610204565b80624221f014610209578062fdd58e1461023857806301ffc9a71461026457806306fdde031461029f575b600080fd5b6102266004803603602081101561021f57600080fd5b5035610cdf565b60408051918252519081900360200190f35b6102266004803603604081101561024e57600080fd5b506001600160a01b038135169060200135610cf1565b61028b6004803603602081101561027a57600080fd5b50356001600160e01b031916610d1a565b604080519115158252519081900360200190f35b6102a7610d61565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e15781810151838201526020016102c9565b50505050905090810190601f16801561030e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102a76004803603602081101561033257600080fd5b5035610def565b61028b6004803603602081101561034f57600080fd5b5035610ed2565b6102266004803603602081101561036c57600080fd5b5035610ee7565b610534600480360360a081101561038957600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b8111156103bc57600080fd5b8201836020820111156103ce57600080fd5b803590602001918460208302840111600160201b831117156103ef57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561043e57600080fd5b82018360208201111561045057600080fd5b803590602001918460208302840111600160201b8311171561047157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156104c057600080fd5b8201836020820111156104d257600080fd5b803590602001918460018302840111600160201b831117156104f357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ef9945050505050565b005b6105346004803603602081101561054c57600080fd5b50356001600160a01b0316610fb5565b610534611008565b6106876004803603604081101561057a57600080fd5b810190602081018135600160201b81111561059457600080fd5b8201836020820111156105a657600080fd5b803590602001918460208302840111600160201b831117156105c757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561061657600080fd5b82018360208201111561062857600080fd5b803590602001918460208302840111600160201b8311171561064957600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061101a945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156106c35781810151838201526020016106ab565b505050509050019250505060405180910390f35b610534600480360360208110156106ed57600080fd5b50356001600160a01b0316611132565b610534611182565b6105346004803603608081101561071b57600080fd5b6001600160a01b038235169160208101359160408201359190810190608081016060820135600160201b81111561075157600080fd5b82018360208201111561076357600080fd5b803590602001918460018302840111600160201b8311171561078457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611213945050505050565b610534600480360360208110156107db57600080fd5b50356001600160a01b03166112fd565b6105346004803603602081101561080157600080fd5b810190602081018135600160201b81111561081b57600080fd5b82018360208201111561082d57600080fd5b803590602001918460208302840111600160201b8311171561084e57600080fd5b509092509050611351565b6105346004803603602081101561086f57600080fd5b810190602081018135600160201b81111561088957600080fd5b82018360208201111561089b57600080fd5b803590602001918460018302840111600160201b831117156108bc57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506113ea945050505050565b6102266004803603602081101561091357600080fd5b5035611439565b61092261144b565b604080516001600160a01b039092168252519081900360200190f35b61028b61145a565b6102a7611480565b6105346004803603602081101561096457600080fd5b50356001600160a01b03166114db565b61053461152a565b6105346004803603604081101561099257600080fd5b506001600160a01b038135169060200135151561153a565b61028b600480360360208110156109c057600080fd5b50356001600160a01b03166115a8565b610226600480360360808110156109e657600080fd5b813591602081013591810190606081016040820135600160201b811115610a0c57600080fd5b820183602082011115610a1e57600080fd5b803590602001918460018302840111600160201b83111715610a3f57600080fd5b919390929091602081019035600160201b811115610a5c57600080fd5b820183602082011115610a6e57600080fd5b803590602001918460018302840111600160201b83111715610a8f57600080fd5b5090925090506115b5565b61028b60048036036020811015610ab057600080fd5b50356001600160a01b0316611748565b61022660048036036020811015610ad657600080fd5b5035611755565b61053460048036036080811015610af357600080fd5b6001600160a01b038235169160208101359160408201359190810190608081016060820135600160201b811115610b2957600080fd5b820183602082011115610b3b57600080fd5b803590602001918460018302840111600160201b83111715610b5c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611767945050505050565b61092260048036036020811015610bb357600080fd5b5035611812565b6102a761182d565b61028b60048036036040811015610bd857600080fd5b506001600160a01b0381358116916020013516611864565b610534600480360360a0811015610c0657600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b811115610c4557600080fd5b820183602082011115610c5757600080fd5b803590602001918460018302840111600160201b83111715610c7857600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061190f945050505050565b61053460048036036020811015610ccf57600080fd5b50356001600160a01b03166119c4565b600a6020526000908152604090205481565b6001600160a01b0382166000908152602081815260408083208484529091529020545b92915050565b60006001600160e01b031982166301ffc9a760e01b1480610d4b57506001600160e01b03198216636cdb3d1360e11b145b15610d5857506001610d5c565b5060005b919050565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610de75780601f10610dbc57610100808354040283529160200191610de7565b820191906000526020600020905b815481529060010190602001808311610dca57829003601f168201915b505050505081565b6060610dfa82611a95565b610e355760405162461bcd60e51b8152600401808060200182810382526025815260200180612b046025913960400191505060405180910390fd5b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152610d149390929091830182828015610ebf5780601f10610e9457610100808354040283529160200191610ebf565b820191906000526020600020905b815481529060010190602001808311610ea257829003601f168201915b5050505050610ecd84611ab2565b611b8a565b600d6020526000908152604090205460ff1681565b60096020526000908152604090205481565b336001600160a01b0386161480610f155750610f158533611864565b610f505760405162461bcd60e51b815260040180806020018281038252602f815260200180612c04602f913960400191505060405180910390fd5b6001600160a01b038416610f955760405162461bcd60e51b8152600401808060200182810382526030815260200180612ad46030913960400191505060405180910390fd5b610fa185858585611bcd565b610fae8585858585611e78565b5050505050565b610fbd61145a565b610ffc576040805162461bcd60e51b81526020600482018190526024820152600080516020612b29833981519152604482015290519081900360640190fd5b6110058161206c565b50565b6110186110136120ae565b6120b2565b565b6060815183511461105c5760405162461bcd60e51b815260040180806020018281038252602c815260200180612bd8602c913960400191505060405180910390fd5b6060835167ffffffffffffffff8111801561107657600080fd5b506040519080825280602002602001820160405280156110a0578160200160208202803683370190505b50905060005b845181101561112a576000808683815181106110be57fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008583815181106110f457fe5b602002602001015181526020019081526020016000205482828151811061111757fe5b60209081029190910101526001016110a6565b509392505050565b61113a61145a565b611179576040805162461bcd60e51b81526020600482018190526024820152600080516020612b29833981519152604482015290519081900360640190fd5b611005816120b2565b61118a61145a565b6111c9576040805162461bcd60e51b81526020600482018190526024820152600080516020612b29833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b61122361121e6120ae565b6115a8565b61125e5760405162461bcd60e51b8152600401808060200182810382526030815260200180612a836030913960400191505060405180910390fd5b6000838152600a6020908152604080832054600990925290912054106112c0576040805162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b604482015290519081900360640190fd5b6112cc848484846120f4565b6000838152600960205260409020546112e5908361218e565b60009384526009602052604090932092909255505050565b61130d6113086120ae565b611748565b6113485760405162461bcd60e51b8152600401808060200182810382526040815260200180612b986040913960400191505060405180910390fd5b611005816121e1565b61135961145a565b611398576040805162461bcd60e51b81526020600482018190526024820152600080516020612b29833981519152604482015290519081900360640190fd5b60005b818110156113e5576001600d60008585858181106113b557fe5b60209081029290920135835250810191909152604001600020805460ff191691151591909117905560010161139b565b505050565b6113f56113086120ae565b6114305760405162461bcd60e51b8152600401808060200182810382526040815260200180612b986040913960400191505060405180910390fd5b61100581612223565b6000908152600a602052604090205490565b6003546001600160a01b031690565b6003546000906001600160a01b03166114716120ae565b6001600160a01b031614905090565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610de75780601f10610dbc57610100808354040283529160200191610de7565b6114e661121e6120ae565b6115215760405162461bcd60e51b8152600401808060200182810382526030815260200180612a836030913960400191505060405180910390fd5b6110058161223a565b6110186115356120ae565b61206c565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b6000610d1460048361227c565b60006115c26113086120ae565b6115fd5760405162461bcd60e51b8152600401808060200182810382526040815260200180612b986040913960400191505060405180910390fd5b8686111561163c5760405162461bcd60e51b815260040180806020018281038252602d815260200180612b49602d913960400191505060405180910390fd5b60006116466122e3565b90506116506122f9565b600081815260086020526040902080546001600160a01b0319163317905584156116d657807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b878760405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a25b861561171e5761171e33828987878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506120f492505050565b60008181526009602090815260408083208a9055600a909152902088905590509695505050505050565b6000610d1460058361227c565b60009081526009602052604090205490565b61176f61145a565b6117ae576040805162461bcd60e51b81526020600482018190526024820152600080516020612b29833981519152604482015290519081900360640190fd5b6000838152600d602052604090205460ff1615611800576040805162461bcd60e51b815260206004820152600b60248201526a1b5a5b9d0818db1bdcd95960aa1b604482015290519081900360640190fd5b61180c848484846120f4565b50505050565b6008602052600090815260409020546001600160a01b031681565b6040805180820190915260208082527f68747470733a2f2f6170692e6c796d706f2e696f2f706f6f6c732f6c796d706f9082015290565b6006546040805163c455279160e01b81526001600160a01b0385811660048301529151600093831692851691839163c455279191602480820192602092909190829003018186803b1580156118b857600080fd5b505afa1580156118cc573d6000803e3d6000fd5b505050506040513d60208110156118e257600080fd5b50516001600160a01b031614156118fd576001915050610d14565b6119078484612304565b949350505050565b336001600160a01b038616148061192b575061192b8533611864565b6119665760405162461bcd60e51b815260040180806020018281038252602a815260200180612a24602a913960400191505060405180910390fd5b6001600160a01b0384166119ab5760405162461bcd60e51b815260040180806020018281038252602b8152602001806129d3602b913960400191505060405180910390fd5b6119b785858585612332565b610fae858585858561240e565b6119cc61145a565b611a0b576040805162461bcd60e51b81526020600482018190526024820152600080516020612b29833981519152604482015290519081900360640190fd5b6110058161257e565b611a1e828261227c565b15611a70576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000908152600860205260409020546001600160a01b0316151590565b606081611ad757506040805180820190915260018152600360fc1b6020820152610d5c565b8160005b8115611aef57600101600a82049150611adb565b60608167ffffffffffffffff81118015611b0857600080fd5b506040519080825280601f01601f191660200182016040528015611b33576020820181803683370190505b50905060001982015b8515611b8157600a860660300160f81b82828060019003935081518110611b5f57fe5b60200101906001600160f81b031916908160001a905350600a86049550611b3c565b50949350505050565b6060611bc6838360405180602001604052806000815250604051806020016040528060008152506040518060200160405280600081525061261f565b9392505050565b8051825114611c0d5760405162461bcd60e51b8152600401808060200182810382526035815260200180612a4e6035913960400191505060405180910390fd5b815160005b81811015611d9757611c88838281518110611c2957fe5b6020026020010151600080896001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110611c6357fe5b602002602001015181526020019081526020016000205461284490919063ffffffff16565b600080886001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110611cba57fe5b6020026020010151815260200190815260200160002081905550611d42838281518110611ce357fe5b6020026020010151600080886001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110611d1d57fe5b602002602001015181526020019081526020016000205461218e90919063ffffffff16565b600080876001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110611d7457fe5b602090810291909101810151825281019190915260400160002055600101611c12565b50836001600160a01b0316856001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015611e1d578181015183820152602001611e05565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015611e5c578181015183820152602001611e44565b5050505090500194505050505060405180910390a45050505050565b611e8a846001600160a01b03166128a1565b15610fae576000846001600160a01b031663bc197c8133888787876040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015611f1a578181015183820152602001611f02565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015611f59578181015183820152602001611f41565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015611f95578181015183820152602001611f7d565b50505050905090810190601f168015611fc25780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015611fe757600080fd5b505af1158015611ffb573d6000803e3d6000fd5b505050506040513d602081101561201157600080fd5b505190506001600160e01b0319811663bc197c8160e01b146120645760405162461bcd60e51b815260040180806020018281038252603f815260200180612c33603f913960400191505060405180910390fd5b505050505050565b6120776004826128d8565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b3390565b6120bd6005826128d8565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b6001600160a01b038416600090815260208181526040808320868452909152902054612120908361218e565b6001600160a01b038516600081815260208181526040808320888452825280832094909455835187815290810186905283519293919233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62928290030190a461180c60008585858561240e565b600082820183811015611bc6576040805162461bcd60e51b8152602060048201526016602482015275536166654d617468236164643a204f564552464c4f5760501b604482015290519081900360640190fd5b6121ec600582611a14565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b805161223690600290602084019061293f565b5050565b612245600482611a14565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60006001600160a01b0382166122c35760405162461bcd60e51b8152600401808060200182810382526022815260200180612b766022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6007546000906122f490600161218e565b905090565b600780546001019055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6001600160a01b03841660009081526020818152604080832085845290915290205461235e9082612844565b6001600160a01b03808616600090815260208181526040808320878452825280832094909455918616815280825282812085825290915220546123a1908261218e565b6001600160a01b03808516600081815260208181526040808320888452825291829020949094558051868152938401859052805191939288169233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62929181900390910190a450505050565b612420846001600160a01b03166128a1565b15610fae576000846001600160a01b031663f23a6e6133888787876040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156124b1578181015183820152602001612499565b50505050905090810190601f1680156124de5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561250157600080fd5b505af1158015612515573d6000803e3d6000fd5b505050506040513d602081101561252b57600080fd5b505190506001600160e01b0319811663f23a6e6160e01b146120645760405162461bcd60e51b815260040180806020018281038252603a815260200180612c72603a913960400191505060405180910390fd5b6001600160a01b0381166125c35760405162461bcd60e51b81526004018080602001828103825260268152602001806129fe6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b805182518451865188516060948a948a948a948a948a948a94919092019092019091010167ffffffffffffffff8111801561265957600080fd5b506040519080825280601f01601f191660200182016040528015612684576020820181803683370190505b509050806000805b88518110156126dd578881815181106126a157fe5b602001015160f81c60f81b8383806001019450815181106126be57fe5b60200101906001600160f81b031916908160001a90535060010161268c565b5060005b8751811015612732578781815181106126f657fe5b602001015160f81c60f81b83838060010194508151811061271357fe5b60200101906001600160f81b031916908160001a9053506001016126e1565b5060005b86518110156127875786818151811061274b57fe5b602001015160f81c60f81b83838060010194508151811061276857fe5b60200101906001600160f81b031916908160001a905350600101612736565b5060005b85518110156127dc578581815181106127a057fe5b602001015160f81c60f81b8383806001019450815181106127bd57fe5b60200101906001600160f81b031916908160001a90535060010161278b565b5060005b8451811015612831578481815181106127f557fe5b602001015160f81c60f81b83838060010194508151811061281257fe5b60200101906001600160f81b031916908160001a9053506001016127e0565b50909d9c50505050505050505050505050565b60008282111561289b576040805162461bcd60e51b815260206004820152601760248201527f536166654d617468237375623a20554e444552464c4f57000000000000000000604482015290519081900360640190fd5b50900390565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906119075750141592915050565b6128e2828261227c565b61291d5760405162461bcd60e51b8152600401808060200182810382526021815260200180612ab36021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061298057805160ff19168380011785556129ad565b828001600101855582156129ad579182015b828111156129ad578251825591602001919060010190612992565b506129b99291506129bd565b5090565b5b808211156129b957600081556001016129be56fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e544f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e4754484d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572496e697469616c20737570706c792063616e6e6f74206265206d6f7265207468616e206d617820737570706c79526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c65455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745a26469706673582212207d43e50e5265bd03b98953cdbae2cfe5ea899dd098544400e47da5c43ca9469d64736f6c634300060c0033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


Deployed Bytecode Sourcemap

43111:1163:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38840:49;;;;;;;;;;;;;;;;-1:-1:-1;38840:49:0;;:::i;:::-;;;;;;;;;;;;;;;;27390:127;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27390:127:0;;;;;;;;:::i;29381:249::-;;;;;;;;;;;;;;;;-1:-1:-1;29381:249:0;-1:-1:-1;;;;;;29381:249:0;;:::i;:::-;;;;;;;;;;;;;;;;;;38912:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39387:212;;;;;;;;;;;;;;;;-1:-1:-1;39387:212:0;;:::i;43155:47::-;;;;;;;;;;;;;;;;-1:-1:-1;43155:47:0;;:::i;38790:46::-;;;;;;;;;;;;;;;;-1:-1:-1;38790:46:0;;:::i;22548:511::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22548:511:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;22548:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;22548:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22548:511:0;;;;;;;;-1:-1:-1;22548:511:0;;-1:-1:-1;;;;;22548:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;22548:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22548:511:0;;;;;;;;-1:-1:-1;22548:511:0;;-1:-1:-1;;;;;22548:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;22548:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22548:511:0;;-1:-1:-1;22548:511:0;;-1:-1:-1;;;;;22548:511:0:i;:::-;;39294:88;;;;;;;;;;;;;;;;-1:-1:-1;39294:88:0;-1:-1:-1;;;;;39294:88:0;;:::i;6488:95::-;;;:::i;27805:500::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;27805:500:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;27805:500:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27805:500:0;;;;;;;;-1:-1:-1;27805:500:0;;-1:-1:-1;;;;;27805:500:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;27805:500:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27805:500:0;;-1:-1:-1;27805:500:0;;-1:-1:-1;;;;;27805:500:0:i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39185:104;;;;;;;;;;;;;;;;-1:-1:-1;39185:104:0;-1:-1:-1;;;;;39185:104:0;;:::i;2859:140::-;;;:::i;41630:285::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41630:285:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;41630:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;41630:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41630:285:0;;-1:-1:-1;41630:285:0;;-1:-1:-1;;;;;41630:285:0:i;6364:116::-;;;;;;;;;;;;;;;;-1:-1:-1;6364:116:0;-1:-1:-1;;;;;6364:116:0;;:::i;43990:166::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;43990:166:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;43990:166:0;;;;;;;;;;-1:-1:-1;43990:166:0;;-1:-1:-1;43990:166:0;-1:-1:-1;43990:166:0;:::i;40239:139::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;40239:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;40239:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40239:139:0;;-1:-1:-1;40239:139:0;;-1:-1:-1;;;;;40239:139:0:i;40014:98::-;;;;;;;;;;;;;;;;-1:-1:-1;40014:98:0;;:::i;2048:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;2048:79:0;;;;;;;;;;;;;;2414:94;;;:::i;38955:20::-;;;:::i;5145:92::-;;;;;;;;;;;;;;;;-1:-1:-1;5145:92:0;-1:-1:-1;;;;;5145:92:0;;:::i;5245:79::-;;;:::i;26377:227::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26377:227:0;;;;;;;;;;:::i;5028:109::-;;;;;;;;;;;;;;;;-1:-1:-1;5028:109:0;-1:-1:-1;;;;;5028:109:0;;:::i;40744:597::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;40744:597:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;40744:597:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;40744:597:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;40744:597:0;;;;;;;;;;-1:-1:-1;40744:597:0;;-1:-1:-1;40744:597:0;-1:-1:-1;40744:597:0;:::i;6231:125::-;;;;;;;;;;;;;;;;-1:-1:-1;6231:125:0;-1:-1:-1;;;;;6231:125:0;;:::i;39759:97::-;;;;;;;;;;;;;;;;-1:-1:-1;39759:97:0;;:::i;43755:229::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43755:229:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;43755:229:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;43755:229:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43755:229:0;;-1:-1:-1;43755:229:0;;-1:-1:-1;;;;;43755:229:0:i;38743:43::-;;;;;;;;;;;;;;;;-1:-1:-1;38743:43:0;;:::i;44161:110::-;;;:::i;42035:381::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42035:381:0;;;;;;;;;;:::i;21610:545::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21610:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;21610:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;21610:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21610:545:0;;-1:-1:-1;21610:545:0;;-1:-1:-1;;;;;21610:545:0:i;3154:109::-;;;;;;;;;;;;;;;;-1:-1:-1;3154:109:0;-1:-1:-1;;;;;3154:109:0;;:::i;38840:49::-;;;;;;;;;;;;;:::o;27390:127::-;-1:-1:-1;;;;;27490:16:0;;27464:7;27490:16;;;;;;;;;;;:21;;;;;;;;;27390:127;;;;;:::o;29381:249::-;29461:4;-1:-1:-1;;;;;;29478:42:0;;-1:-1:-1;;;29478:42:0;;:98;;-1:-1:-1;;;;;;;29533:43:0;;-1:-1:-1;;;29533:43:0;29478:98;29474:132;;;-1:-1:-1;29594:4:0;29587:11;;29474:132;-1:-1:-1;29619:5:0;29381:249;;;;:::o;38912:18::-;;;;;;;;;;;;;;;-1:-1:-1;;38912:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39387:212::-;39443:13;39471:12;39479:3;39471:7;:12::i;:::-;39463:62;;;;-1:-1:-1;;;39463:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39555:15;39537:57;;;;;;;-1:-1:-1;;39537:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39555:15;;39537:57;;39555:15;39537:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39572:21;39589:3;39572:16;:21::i;:::-;39537:17;:57::i;43155:47::-;;;;;;;;;;;;;;;:::o;38790:46::-;;;;;;;;;;;;;:::o;22548:511::-;22729:10;-1:-1:-1;;;;;22729:19:0;;;;22728:60;;;22753:35;22770:5;22777:10;22753:16;:35::i;:::-;22720:120;;;;-1:-1:-1;;;22720:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22855:17:0;;22847:78;;;;-1:-1:-1;;;22847:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22934:50;22957:5;22964:3;22969:4;22975:8;22934:22;:50::i;:::-;22991:62;23019:5;23026:3;23031:4;23037:8;23047:5;22991:27;:62::i;:::-;22548:511;;;;;:::o;39294:88::-;2260:9;:7;:9::i;:::-;2252:54;;;;;-1:-1:-1;;;2252:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2252:54:0;;;;;;;;;;;;;;;39355:22:::1;39369:7;39355:13;:22::i;:::-;39294:88:::0;:::o;6488:95::-;6540:35;6562:12;:10;:12::i;:::-;6540:21;:35::i;:::-;6488:95::o;27805:500::-;27904:16;27958:4;:11;27940:7;:14;:29;27932:86;;;;-1:-1:-1;;;27932:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28045:30;28092:7;:14;28078:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28078:29:0;;28045:62;;28166:9;28161:110;28185:7;:14;28181:1;:18;28161:110;;;28234:8;:20;28243:7;28251:1;28243:10;;;;;;;;;;;;;;-1:-1:-1;;;;;28234:20:0;-1:-1:-1;;;;;28234:20:0;;;;;;;;;;;;:29;28255:4;28260:1;28255:7;;;;;;;;;;;;;;28234:29;;;;;;;;;;;;28215:13;28229:1;28215:16;;;;;;;;;;;;;;;;;:48;28201:3;;28161:110;;;-1:-1:-1;28286:13:0;27805:500;-1:-1:-1;;;27805:500:0:o;39185:104::-;2260:9;:7;:9::i;:::-;2252:54;;;;;-1:-1:-1;;;2252:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2252:54:0;;;;;;;;;;;;;;;39254:30:::1;39276:7;39254:21;:30::i;2859:140::-:0;2260:9;:7;:9::i;:::-;2252:54;;;;;-1:-1:-1;;;2252:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2252:54:0;;;;;;;;;;;;;;;2942:6:::1;::::0;2921:40:::1;::::0;2958:1:::1;::::0;-1:-1:-1;;;;;2942:6:0::1;::::0;2921:40:::1;::::0;2958:1;;2921:40:::1;2972:6;:19:::0;;-1:-1:-1;;;;;;2972:19:0::1;::::0;;2859:140::o;41630:285::-;4925:22;4934:12;:10;:12::i;:::-;4925:8;:22::i;:::-;4917:83;;;;-1:-1:-1;;;4917:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41775:19:::1;::::0;;;:14:::1;:19;::::0;;;;;;;;41756:11:::1;:16:::0;;;;;;;:38:::1;41748:69;;;::::0;;-1:-1:-1;;;41748:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41748:69:0;;;;;;;;;;;;;::::1;;41822:33;41828:3;41833;41838:9;41849:5;41822;:33::i;:::-;41879:16;::::0;;;:11:::1;:16;::::0;;;;;:31:::1;::::0;41900:9;41879:20:::1;:31::i;:::-;41860:16;::::0;;;:11:::1;:16;::::0;;;;;:50;;;;-1:-1:-1;;;41630:285:0:o;6364:116::-;6104:30;6121:12;:10;:12::i;:::-;6104:16;:30::i;:::-;6096:107;;;;-1:-1:-1;;;6096:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6445:27:::1;6464:7;6445:18;:27::i;43990:166::-:0;2260:9;:7;:9::i;:::-;2252:54;;;;;-1:-1:-1;;;2252:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2252:54:0;;;;;;;;;;;;;;;44066:6:::1;44062:89;44078:15:::0;;::::1;44062:89;;;44139:4;44109:18;:27;44128:4;;44133:1;44128:7;;;;;;;;::::0;;::::1;::::0;;;::::1;;44109:27:::0;;-1:-1:-1;44109:27:0;::::1;::::0;;;;;;-1:-1:-1;44109:27:0;:34;;-1:-1:-1;;44109:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;44095:3:0::1;44062:89;;;;43990:166:::0;;:::o;40239:139::-;6104:30;6121:12;:10;:12::i;6104:30::-;6096:107;;;;-1:-1:-1;;;6096:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40333:40:::1;40353:19;40333;:40::i;40014:98::-:0;40067:7;40088:19;;;:14;:19;;;;;;;40014:98::o;2048:79::-;2113:6;;-1:-1:-1;;;;;2113:6:0;2048:79;:::o;2414:94::-;2494:6;;2454:4;;-1:-1:-1;;;;;2494:6:0;2478:12;:10;:12::i;:::-;-1:-1:-1;;;;;2478:22:0;;2471:29;;2414:94;:::o;38955:20::-;;;;;;;;;;;;;;;-1:-1:-1;;38955:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5145:92;4925:22;4934:12;:10;:12::i;4925:22::-;4917:83;;;;-1:-1:-1;;;4917:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5210:19:::1;5221:7;5210:10;:19::i;5245:79::-:0;5289:27;5303:12;:10;:12::i;:::-;5289:13;:27::i;26377:227::-;26504:10;26494:21;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;26494:32:0;;;;;;;;;;;;:44;;-1:-1:-1;;26494:44:0;;;;;;;;;;26550:48;;;;;;;26494:32;;26504:10;26550:48;;;;;;;;;;;26377:227;;:::o;5028:109::-;5084:4;5108:21;:8;5121:7;5108:12;:21::i;40744:597::-;40901:15;6104:30;6121:12;:10;:12::i;6104:30::-;6096:107;;;;-1:-1:-1;;;6096:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40949:10:::1;40931:14;:28;;40923:86;;;;-1:-1:-1::0;;;40923:86:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41014:11;41028:17;:15;:17::i;:::-;41014:31;;41050:23;:21;:23::i;:::-;41078:13;::::0;;;:8:::1;:13;::::0;;;;:26;;-1:-1:-1;;;;;;41078:26:0::1;41094:10;41078:26;::::0;;41115:22;;41111:59:::1;;41160:3;41150:14;41154:4;;41150:14;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;41150:14:0::1;::::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;41150:14:0;;-1:-1:-1;;;;41150:14:0::1;41111:59;41180:19:::0;;41176:70:::1;;41201:45;41207:10;41219:3;41224:14;41240:5;;41201:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;41201:5:0::1;::::0;-1:-1:-1;;;41201:45:0:i:1;:::-;41251:16;::::0;;;:11:::1;:16;::::0;;;;;;;:33;;;41289:14:::1;:19:::0;;;;;:32;;;41263:3;-1:-1:-1;40744:597:0;;;;;;;;:::o;6231:125::-;6295:4;6319:29;:16;6340:7;6319:20;:29::i;39759:97::-;39814:7;39835:16;;;:11;:16;;;;;;;39759:97::o;43755:229::-;2260:9;:7;:9::i;:::-;2252:54;;;;;-1:-1:-1;;;2252:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2252:54:0;;;;;;;;;;;;;;;43899:23:::1;::::0;;;:18:::1;:23;::::0;;;;;::::1;;43898:24;43890:48;;;::::0;;-1:-1:-1;;;43890:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;43890:48:0;;;;;;;;;;;;;::::1;;43945:33;43951:3;43956;43961:9;43972:5;43945;:33::i;:::-;43755:229:::0;;;;:::o;38743:43::-;;;;;;;;;;;;-1:-1:-1;;;;;38743:43:0;;:::o;44161:110::-;44225:41;;;;;;;;;;;;;;;;;;44161:110;:::o;42035:381::-;42249:20;;42287:29;;;-1:-1:-1;;;42287:29:0;;-1:-1:-1;;;;;42287:29:0;;;;;;;;;42126:15;;42249:20;;;42279:51;;;42249:20;;42287:21;;:29;;;;;;;;;;;;;;;42249:20;42287:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42287:29:0;-1:-1:-1;;;;;42279:51:0;;42275:80;;;42345:4;42338:11;;;;;42275:80;42368:43;42393:6;42401:9;42368:24;:43::i;:::-;42361:50;42035:381;-1:-1:-1;;;;42035:381:0:o;21610:545::-;21745:10;-1:-1:-1;;;;;21745:19:0;;;;21744:60;;;21769:35;21786:5;21793:10;21769:16;:35::i;:::-;21736:115;;;;-1:-1:-1;;;21736:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21866:17:0;;21858:72;;;;-1:-1:-1;;;21858:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22044:43;22062:5;22069:3;22074;22079:7;22044:17;:43::i;:::-;22094:55;22117:5;22124:3;22129;22134:7;22143:5;22094:22;:55::i;3154:109::-;2260:9;:7;:9::i;:::-;2252:54;;;;;-1:-1:-1;;;2252:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2252:54:0;;;;;;;;;;;;;;;3227:28:::1;3246:8;3227:18;:28::i;3852:178::-:0;3930:18;3934:4;3940:7;3930:3;:18::i;:::-;3929:19;3921:63;;;;;-1:-1:-1;;;3921:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3995:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;3995:27:0;4018:4;3995:27;;;3852:178::o;42634:103::-;42687:4;42705:13;;;:8;:13;;;;;;-1:-1:-1;;;;;42705:13:0;:27;;;42634:103::o;37753:384::-;37806:27;37844:7;37840:35;;-1:-1:-1;37859:10:0;;;;;;;;;;;;-1:-1:-1;;;37859:10:0;;;;;;37840:35;37891:2;37879:9;37914:45;37921:6;;37914:45;;37935:5;;37951:2;37946:7;;;;37914:45;;;37963:17;37993:3;37983:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37983:14:0;-1:-1:-1;37963:34:0;-1:-1:-1;;;38014:7:0;;38026:83;38033:7;;38026:83;;38084:2;38079;:7;38073:2;:14;38060:29;;38048:4;38053:3;;;;;;;38048:9;;;;;;;;;;;:41;-1:-1:-1;;;;;38048:41:0;;;;;;;;-1:-1:-1;38101:2:0;38095:8;;;;38026:83;;;-1:-1:-1;38127:4:0;37753:384;-1:-1:-1;;;;37753:384:0:o;37609:139::-;37687:13;37714:29;37724:2;37728;37714:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;:::-;37707:36;37609:139;-1:-1:-1;;;37609:139:0:o;24687:687::-;24844:8;:15;24829:4;:11;:30;24821:96;;;;-1:-1:-1;;;24821:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24984:11;;24964:17;25036:247;25060:9;25056:1;:13;25036:247;;;25161:41;25190:8;25199:1;25190:11;;;;;;;;;;;;;;25161:8;:15;25170:5;-1:-1:-1;;;;;25161:15:0;-1:-1:-1;;;;;25161:15:0;;;;;;;;;;;;:24;25177:4;25182:1;25177:7;;;;;;;;;;;;;;25161:24;;;;;;;;;;;;:28;;:41;;;;:::i;:::-;25134:8;:15;25143:5;-1:-1:-1;;;;;25134:15:0;-1:-1:-1;;;;;25134:15:0;;;;;;;;;;;;:24;25150:4;25155:1;25150:7;;;;;;;;;;;;;;25134:24;;;;;;;;;;;:68;;;;25236:39;25263:8;25272:1;25263:11;;;;;;;;;;;;;;25236:8;:13;25245:3;-1:-1:-1;;;;;25236:13:0;-1:-1:-1;;;;;25236:13:0;;;;;;;;;;;;:22;25250:4;25255:1;25250:7;;;;;;;;;;;;;;25236:22;;;;;;;;;;;;:26;;:39;;;;:::i;:::-;25211:8;:13;25220:3;-1:-1:-1;;;;;25211:13:0;-1:-1:-1;;;;;25211:13:0;;;;;;;;;;;;:22;25225:4;25230:1;25225:7;;;;;;;;;;;;;;;;;;;25211:22;;;;;;;;;;-1:-1:-1;25211:22:0;:64;25071:3;;25036:247;;;;25348:3;-1:-1:-1;;;;;25315:53:0;25341:5;-1:-1:-1;;;;;25315:53:0;25329:10;-1:-1:-1;;;;;25315:53:0;;25353:4;25359:8;25315:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24687:687;;;;;:::o;25492:476::-;25698:16;:3;-1:-1:-1;;;;;25698:14:0;;:16::i;:::-;25694:269;;;25725:13;25763:3;-1:-1:-1;;;;;25741:49:0;;25791:10;25803:5;25810:4;25816:8;25826:5;25741:91;;;;;;;;;;;;;-1:-1:-1;;;;;25741:91:0;;;;;;-1:-1:-1;;;;;25741:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25741:91:0;;-1:-1:-1;;;;;;;25849:38:0;;-1:-1:-1;;;25849:38:0;25841:114;;;;-1:-1:-1;;;25841:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25694:269;25492:476;;;;;:::o;5462:130::-;5522:24;:8;5538:7;5522:15;:24::i;:::-;5562:22;;-1:-1:-1;;;;;5562:22:0;;;;;;;;5462:130;:::o;839:98::-;919:10;839:98;:::o;6745:154::-;6813:32;:16;6837:7;6813:23;:32::i;:::-;6861:30;;-1:-1:-1;;;;;6861:30:0;;;;;;;;6745:154;:::o;33399:401::-;-1:-1:-1;;;;;33542:13:0;;:8;:13;;;;;;;;;;;:18;;;;;;;;;:31;;33565:7;33542:22;:31::i;:::-;-1:-1:-1;;;;;33521:13:0;;:8;:13;;;;;;;;;;;:18;;;;;;;;:52;;;;33606:59;;;;;;;;;;;;;33521:13;;:8;;33621:10;;33606:59;;;;;;;;33732:62;33763:3;33769;33774;33779:7;33788:5;33732:22;:62::i;8839:163::-;8897:7;8925:5;;;8945:6;;;;8937:41;;;;;-1:-1:-1;;;8937:41:0;;;;;;;;;;;;-1:-1:-1;;;8937:41:0;;;;;;;;;;;;;;6591:146;6656:29;:16;6677:7;6656:20;:29::i;:::-;6701:28;;-1:-1:-1;;;;;6701:28:0;;;;;;;;6591:146;:::o;31870:123::-;31950:37;;;;:15;;:37;;;;;:::i;:::-;;31870:123;:::o;5332:122::-;5389:21;:8;5402:7;5389:12;:21::i;:::-;5426:20;;-1:-1:-1;;;;;5426:20:0;;;;;;;;5332:122;:::o;4388:203::-;4460:4;-1:-1:-1;;;;;4485:21:0;;4477:68;;;;-1:-1:-1;;;4477:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4563:20:0;:11;:20;;;;;;;;;;;;;;;4388:203::o;42870:97::-;42940:15;;42919:7;;42940:22;;42960:1;42940:19;:22::i;:::-;42933:29;;42870:97;:::o;43034:68::-;43080:15;:17;;;;;;43034:68::o;26874:163::-;-1:-1:-1;;;;;27003:17:0;;;26969:15;27003:17;;;:9;:17;;;;;;;;:28;;;;;;;;;;;;;;;26874:163::o;23463:376::-;-1:-1:-1;;;;;23619:15:0;;:8;:15;;;;;;;;;;;:20;;;;;;;;;:33;;23644:7;23619:24;:33::i;:::-;-1:-1:-1;;;;;23596:15:0;;;:8;:15;;;;;;;;;;;:20;;;;;;;;:56;;;;23699:13;;;;;;;;;;;:18;;;;;;;;:31;;23722:7;23699:22;:31::i;:::-;-1:-1:-1;;;;;23678:13:0;;;:8;:13;;;;;;;;;;;:18;;;;;;;;;:52;;;;23781;;;;;;;;;;;;;23678:13;;23781:52;;;;23796:10;;23781:52;;;;;;;;;;;23463:376;;;;:::o;23952:429::-;24129:16;:3;-1:-1:-1;;;;;24129:14:0;;:16::i;:::-;24125:251;;;24156:13;24194:3;-1:-1:-1;;;;;24172:44:0;;24217:10;24229:5;24236:3;24241:7;24250:5;24172:84;;;;;;;;;;;;;-1:-1:-1;;;;;24172:84:0;;;;;;-1:-1:-1;;;;;24172:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24172:84:0;;-1:-1:-1;;;;;;;24273:32:0;;-1:-1:-1;;;24273:32:0;24265:103;;;;-1:-1:-1;;;24265:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3369:229;-1:-1:-1;;;;;3443:22:0;;3435:73;;;;-1:-1:-1;;;3435:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3545:6;;3524:38;;-1:-1:-1;;;;;3524:38:0;;;;3545:6;;3524:38;;3545:6;;3524:38;3573:6;:17;;-1:-1:-1;;;;;;3573:17:0;-1:-1:-1;;;;;3573:17:0;;;;;;;;;;3369:229::o;36383:850::-;36804:10;;36791;;36778;;36765;;36752;;36534:13;;36579:2;;36612;;36645;;36678;;36711;;36534:13;;36752:23;;;;:36;;;:49;;;:62;36741:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36741:74:0;-1:-1:-1;36719:96:0;-1:-1:-1;36719:96:0;36859:9;;36877:61;36901:3;:10;36897:1;:14;36877:61;;;36932:3;36936:1;36932:6;;;;;;;;;;;;;;;;36918;36925:3;;;;;;36918:11;;;;;;;;;;;:20;-1:-1:-1;;;;;36918:20:0;;;;;;;;-1:-1:-1;36913:3:0;;36877:61;;;;36948:9;36943:61;36967:3;:10;36963:1;:14;36943:61;;;36998:3;37002:1;36998:6;;;;;;;;;;;;;;;;36984;36991:3;;;;;;36984:11;;;;;;;;;;;:20;-1:-1:-1;;;;;36984:20:0;;;;;;;;-1:-1:-1;36979:3:0;;36943:61;;;;37014:9;37009:61;37033:3;:10;37029:1;:14;37009:61;;;37064:3;37068:1;37064:6;;;;;;;;;;;;;;;;37050;37057:3;;;;;;37050:11;;;;;;;;;;;:20;-1:-1:-1;;;;;37050:20:0;;;;;;;;-1:-1:-1;37045:3:0;;37009:61;;;;37080:9;37075:61;37099:3;:10;37095:1;:14;37075:61;;;37130:3;37134:1;37130:6;;;;;;;;;;;;;;;;37116;37123:3;;;;;;37116:11;;;;;;;;;;;:20;-1:-1:-1;;;;;37116:20:0;;;;;;;;-1:-1:-1;37111:3:0;;37075:61;;;;37146:9;37141:61;37165:3;:10;37161:1;:14;37141:61;;;37196:3;37200:1;37196:6;;;;;;;;;;;;;;;;37182;37189:3;;;;;;37182:11;;;;;;;;;;;:20;-1:-1:-1;;;;;37182:20:0;;;;;;;;-1:-1:-1;37177:3:0;;37141:61;;;-1:-1:-1;37221:6:0;;36383:850;-1:-1:-1;;;;;;;;;;;;;36383:850:0:o;8596:163::-;8654:7;8683:1;8678;:6;;8670:42;;;;;-1:-1:-1;;;8670:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8731:5:0;;;8596:163::o;19376:673::-;19436:4;19964:20;;19494:66;20000:15;;;;;:42;;-1:-1:-1;20019:23:0;;;19992:51;-1:-1:-1;;19376:673:0:o;4110:183::-;4190:18;4194:4;4200:7;4190:3;:18::i;:::-;4182:64;;;;-1:-1:-1;;;4182:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4257:20:0;4280:5;4257:20;;;;;;;;;;;:28;;-1:-1:-1;;4257:28:0;;;4110:183::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;

Swarm Source

ipfs://7d43e50e5265bd03b98953cdbae2cfe5ea899dd098544400e47da5c43ca9469d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.