ETH Price: $3,094.48 (+0.84%)
Gas: 9 Gwei

Token

 

Overview

Max Total Supply

392

Holders

305

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
felonbusk.eth
0xc446569e98466813d4a49cead6d9377215f6e244
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x56E3cea5...45dD74b73
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
BlockchainCutiesERC1155

Compiler Version
v0.5.8+commit.23d335f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-06-12
*/

pragma solidity ^0.5.0;

pragma solidity ^0.5.0;

pragma solidity ^0.5.0;

pragma solidity ^0.5.0;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        // Gas optimization: this is cheaper than asserting '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;
        }

        c = a * b;
        assert(c / a == b);
        return c;
    }

    /**
    * @dev Integer division of two numbers, truncating the quotient.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // assert(b > 0); // Solidity automatically throws when dividing by 0
        // uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return a / b;
    }

    /**
    * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    /**
    * @dev Adds two numbers, throws on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
        c = a + b;
        assert(c >= a);
        return c;
    }
}

pragma solidity ^0.5.0;


/**
 * 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) {
        uint256 size;
        // 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.
        // solium-disable-next-line security/no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

}

pragma solidity ^0.5.0;

/**
    Note: Simple contract to use as base for const vals
*/
contract CommonConstants {

    bytes4 constant internal ERC1155_ACCEPTED = 0x4dc21a2f; // keccak256("accept_erc1155_tokens()")
    bytes4 constant internal ERC1155_BATCH_ACCEPTED = 0xac007889; // keccak256("accept_batch_erc1155_tokens()")
}

pragma solidity ^0.5.0;

/**
    Note: The ERC-165 identifier for this interface is 0x43b236a2.
*/
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 MUST return `bytes4(keccak256("accept_erc1155_tokens()"))` (i.e. 0x4dc21a2f) if it accepts the transfer.
        This function MUST revert if it rejects the transfer.
        Return of any other value than the prescribed keccak256 generated value MUST result in the transaction being reverted by the caller.
        @param _operator  The address which initiated the transfer (i.e. msg.sender)
        @param _from      The address which previously owned the token
        @param _id        The id of the token being transferred
        @param _value     The amount of tokens being transferred
        @param _data      Additional data with no specified format
        @return           `bytes4(keccak256("accept_erc1155_tokens()"))`
    */
    function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _value, 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 MUST return `bytes4(keccak256("accept_batch_erc1155_tokens()"))` (i.e. 0xac007889) if it accepts the transfer(s).
        This function MUST revert if it rejects the transfer(s).
        Return of any other value than the prescribed keccak256 generated value MUST result in the transaction being reverted by the caller.
        @param _operator  The address which initiated the batch transfer (i.e. msg.sender)
        @param _from      The address which previously owned the token
        @param _ids       An array containing ids of each token being transferred (order and length must match _values array)
        @param _values    An array containing amounts of each token being transferred (order and length must match _ids array)
        @param _data      Additional data with no specified format
        @return           `bytes4(keccak256("accept_batch_erc1155_tokens()"))`
    */
    function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external returns(bytes4);

    /**
        @notice Indicates whether a contract implements the `ERC1155TokenReceiver` functions and so can accept ERC1155 token types.
        @dev This function MUST return `bytes4(keccak256("isERC1155TokenReceiver()"))` (i.e. 0x0d912442).
        This function MUST NOT consume more than 5,000 gas.
        @return           `bytes4(keccak256("isERC1155TokenReceiver()"))`
    */
    function isERC1155TokenReceiver() external view returns (bytes4);
}

pragma solidity ^0.5.0;

pragma solidity ^0.5.0;


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

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


/**
    @title ERC-1155 Multi Token Standard
    @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1155.md
    Note: The ERC-165 identifier for this interface is 0xd9b67a26.
 */
interface IERC1155 /* is ERC165 */ {
    /**
        @dev Either `TransferSingle` or `TransferBatch` MUST emit when tokens are transferred, including zero value transfers as well as minting or burning (see "Safe Transfer Rules" section of the standard).
        The `_operator` argument MUST be msg.sender.
        The `_from` argument MUST be the address of the holder whose balance is decreased.
        The `_to` argument MUST be the address of the recipient whose balance is increased.
        The `_id` argument MUST be the token type being transferred.
        The `_value` argument MUST be the number of tokens the holder balance is decreased by and match what the recipient balance is increased by.
        When minting/creating tokens, the `_from` argument MUST be set to `0x0` (i.e. zero address).
        When burning/destroying tokens, the `_to` argument MUST be set to `0x0` (i.e. zero address).
    */
    event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _value);

    /**
        @dev Either `TransferSingle` or `TransferBatch` MUST emit when tokens are transferred, including zero value transfers as well as minting or burning (see "Safe Transfer Rules" section of the standard).
        The `_operator` argument MUST be msg.sender.
        The `_from` argument MUST be the address of the holder whose balance is decreased.
        The `_to` argument MUST be the address of the recipient whose balance is increased.
        The `_ids` argument MUST be the list of tokens being transferred.
        The `_values` argument MUST be the list of number of tokens (matching the list and order of tokens specified in _ids) the holder balance is decreased by and match what the recipient balance is increased by.
        When minting/creating tokens, the `_from` argument MUST be set to `0x0` (i.e. zero address).
        When burning/destroying tokens, the `_to` argument MUST be set to `0x0` (i.e. zero address).
    */
    event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _values);

    /**
        @dev MUST emit when approval for a second party/operator address to manage all tokens for an owner address is enabled or disabled (absense of an event assumes disabled).
    */
    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 URI JSON Schema".

        The URI value allows for ID substitution by clients. If the string {id} exists in any URI,
        clients MUST replace this with the actual token ID in hexadecimal form.
    */
    event URI(string _value, uint256 indexed _id);

    /**
        @notice Transfers `_value` amount of an `_id` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if balance of holder for token `_id` is lower than the `_value` sent.
        MUST revert on any other error.
        MUST emit the `TransferSingle` event to reflect the balance change (see "Safe Transfer Rules" section of the standard).
        After the above conditions are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call `onERC1155Received` on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _id      ID of the token type
        @param _value   Transfer amount
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to `onERC1155Received` on `_to`
    */
    function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) external;

    /**
        @notice Transfers `_values` amount(s) of `_ids` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if length of `_ids` is not the same as length of `_values`.
        MUST revert if any of the balance(s) of the holder(s) for token(s) in `_ids` is lower than the respective amount(s) in `_values` sent to the recipient.
        MUST revert on any other error.
        MUST emit `TransferSingle` or `TransferBatch` event(s) such that all the balance changes are reflected (see "Safe Transfer Rules" section of the standard).
        Balance changes and events MUST follow the ordering of the arrays (_ids[0]/_values[0] before _ids[1]/_values[1], etc).
        After the above conditions for the transfer(s) in the batch are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call the relevant `ERC1155TokenReceiver` hook(s) on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _ids     IDs of each token type (order and length must match _values array)
        @param _values  Transfer amounts per token type (order and length must match _ids array)
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to the `ERC1155TokenReceiver` hook(s) on `_to`
    */
    function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _values, 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 the 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           True if the operator is approved, false if not
    */
    function isApprovedForAll(address _owner, address _operator) external view returns (bool);
}


// A sample implementation of core ERC1155 function.
contract ERC1155 is IERC1155, ERC165, CommonConstants
{
    using SafeMath for uint256;
    using Address for address;

    // id => (owner => balance)
    mapping (uint256 => mapping(address => uint256)) internal balances;

    // owner => (operator => approved)
    mapping (address => mapping(address => bool)) internal operatorApproval;

/////////////////////////////////////////// ERC165 //////////////////////////////////////////////

    /*
        bytes4(keccak256('supportsInterface(bytes4)'));
    */
    bytes4 constant private INTERFACE_SIGNATURE_ERC165 = 0x01ffc9a7;

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

    function supportsInterface(bytes4 _interfaceId)
    public
    view
    returns (bool) {
         if (_interfaceId == INTERFACE_SIGNATURE_ERC165 ||
             _interfaceId == INTERFACE_SIGNATURE_ERC1155) {
            return true;
         }

         return false;
    }

/////////////////////////////////////////// ERC1155 //////////////////////////////////////////////

    /**
        @notice Transfers `_value` amount of an `_id` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if balance of holder for token `_id` is lower than the `_value` sent.
        MUST revert on any other error.
        MUST emit the `TransferSingle` event to reflect the balance change (see "Safe Transfer Rules" section of the standard).
        After the above conditions are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call `onERC1155Received` on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _id      ID of the token type
        @param _value   Transfer amount
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to `onERC1155Received` on `_to`
    */
    function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) external {

        require(_to != address(0x0), "_to must be non-zero.");
        require(_from == msg.sender || operatorApproval[_from][msg.sender] == true, "Need operator approval for 3rd party transfers.");

        // SafeMath will throw with insuficient funds _from
        // or if _id is not valid (balance will be 0)
        balances[_id][_from] = balances[_id][_from].sub(_value);
        balances[_id][_to]   = _value.add(balances[_id][_to]);

        // MUST emit event
        emit TransferSingle(msg.sender, _from, _to, _id, _value);

        // Now that the balance is updated and the event was emitted,
        // call onERC1155Received if the destination is a contract.
        if (_to.isContract()) {
            _doSafeTransferAcceptanceCheck(msg.sender, _from, _to, _id, _value, _data);
        }
    }

    /**
        @notice Transfers `_values` amount(s) of `_ids` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if length of `_ids` is not the same as length of `_values`.
        MUST revert if any of the balance(s) of the holder(s) for token(s) in `_ids` is lower than the respective amount(s) in `_values` sent to the recipient.
        MUST revert on any other error.
        MUST emit `TransferSingle` or `TransferBatch` event(s) such that all the balance changes are reflected (see "Safe Transfer Rules" section of the standard).
        Balance changes and events MUST follow the ordering of the arrays (_ids[0]/_values[0] before _ids[1]/_values[1], etc).
        After the above conditions for the transfer(s) in the batch are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call the relevant `ERC1155TokenReceiver` hook(s) on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _ids     IDs of each token type (order and length must match _values array)
        @param _values  Transfer amounts per token type (order and length must match _ids array)
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to the `ERC1155TokenReceiver` hook(s) on `_to`
    */
    function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external {

        // MUST Throw on errors
        require(_to != address(0x0), "destination address must be non-zero.");
        require(_ids.length == _values.length, "_ids and _values array lenght must match.");
        require(_from == msg.sender || operatorApproval[_from][msg.sender] == true, "Need operator approval for 3rd party transfers.");

        for (uint256 i = 0; i < _ids.length; ++i) {
            uint256 id = _ids[i];
            uint256 value = _values[i];

            // SafeMath will throw with insuficient funds _from
            // or if _id is not valid (balance will be 0)
            balances[id][_from] = balances[id][_from].sub(value);
            balances[id][_to]   = value.add(balances[id][_to]);
        }

        // Note: instead of the below batch versions of event and acceptance check you MAY have emitted a TransferSingle
        // event and a subsequent call to _doSafeTransferAcceptanceCheck in above loop for each balance change instead.
        // Or emitted a TransferSingle event for each in the loop and then the single _doSafeBatchTransferAcceptanceCheck below.
        // However it is implemented the balance changes and events MUST match when a check (i.e. calling an external contract) is done.

        // MUST emit event
        emit TransferBatch(msg.sender, _from, _to, _ids, _values);

        // Now that the balances are updated and the events are emitted,
        // call onERC1155BatchReceived if the destination is a contract.
        if (_to.isContract()) {
            _doSafeBatchTransferAcceptanceCheck(msg.sender, _from, _to, _ids, _values, _data);
        }
    }

    /**
        @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) {
        // The balance of any account can be calculated from the Transfer events history.
        // However, since we need to keep the balances to validate transfer request,
        // there is no extra cost to also privide a querry function.
        return balances[_id][_owner];
    }


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

        require(_owners.length == _ids.length);

        uint256[] memory balances_ = new uint256[](_owners.length);

        for (uint256 i = 0; i < _owners.length; ++i) {
            balances_[i] = balances[_ids[i]][_owners[i]];
        }

        return balances_;
    }

    /**
        @notice Enable or disable approval for a third party ("operator") to manage all of the 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 {
        operatorApproval[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           True if the operator is approved, false if not
    */
    function isApprovedForAll(address _owner, address _operator) external view returns (bool) {
        return operatorApproval[_owner][_operator];
    }

/////////////////////////////////////////// Internal //////////////////////////////////////////////

    function _doSafeTransferAcceptanceCheck(address _operator, address _from, address _to, uint256 _id, uint256 _value, bytes memory _data) internal {

        (bool success, bytes memory returnData) = _to.call(
            abi.encodeWithSignature(
                "onERC1155Received(address,address,uint256,uint256,bytes)",
                _operator,
                _from,
                _id,
                _value,
                _data
            )
        );
        (success); // ignore warning on unused var
        bytes4 receiverRet = 0x0;
        if(returnData.length > 0) {
            assembly {
                receiverRet := mload(add(returnData, 32))
            }
        }

        if (receiverRet == ERC1155_ACCEPTED) {
            // dest was a receiver and all good, do nothing.
        } else {
            // dest was a receiver and rejected, revert.
            revert("Receiver contract did not accept the transfer.");
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(address _operator, address _from, address _to, uint256[] memory _ids, uint256[] memory _values, bytes memory _data) internal {

        (bool success, bytes memory returnData) = _to.call(
            abi.encodeWithSignature(
                "onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)",
                _operator,
                _from,
                _ids,
                _values,
                _data
            )
        );
        (success); // ignore warning on unused var
        bytes4 receiverRet = 0x0;
        if(returnData.length > 0) {
            assembly {
                receiverRet := mload(add(returnData, 32))
            }
        }

        if (receiverRet == ERC1155_BATCH_ACCEPTED) {
            // dest was a receiver and all good, do nothing.
        } else {
            // dest was a receiver and rejected, revert.
            revert("Receiver contract did not accept the transfer.");
        }
    }
}


/**
    @dev Extension to ERC1155 for Mixed Fungible and Non-Fungible Items support
    The main benefit is sharing of common type information, just like you do when
    creating a fungible id.
*/
contract ERC1155MixedFungible is ERC1155 {

    // Use a split bit implementation.
    // Store the type in the upper 128 bits..
    uint256 constant TYPE_MASK = uint256(uint128(~0)) << 128;

    // ..and the non-fungible index in the lower 128
    uint256 constant NF_INDEX_MASK = uint128(~0);

    // The top bit is a flag to tell if this is a NFI.
    uint256 constant public TYPE_NF_BIT = 1 << 255;

    uint256 constant NFT_MASK = (uint256(uint128(~0)) << 128) & ~uint256(1 << 255);

    // NFT ownership. Key is (_type | index), value - token owner address.
    mapping (uint256 => address) nfOwners;

    // Only to make code clearer. Should not be functions
    function isNonFungible(uint256 _id) public pure returns(bool) {
        return _id & TYPE_NF_BIT == TYPE_NF_BIT;
    }
    function isFungible(uint256 _id) public pure returns(bool) {
        return _id & TYPE_NF_BIT == 0;
    }
    function getNonFungibleIndex(uint256 _id) public pure returns(uint256) {
        return _id & NF_INDEX_MASK;
    }
    function getNonFungibleBaseType(uint256 _id) public pure returns(uint256) {
        return _id & TYPE_MASK;
    }
    function getNFTType(uint256 _id) public pure returns(uint256) {
        return (_id & NFT_MASK) >> 128;
    }
    function isNonFungibleBaseType(uint256 _id) public pure returns(bool) {
        // A base type has the NF bit but does not have an index.
        return (_id & TYPE_NF_BIT == TYPE_NF_BIT) && (_id & NF_INDEX_MASK == 0);
    }
    function isNonFungibleItem(uint256 _id) public pure returns(bool) {
        // A base type has the NF bit but does has an index.
        return (_id & TYPE_NF_BIT == TYPE_NF_BIT) && (_id & NF_INDEX_MASK != 0);
    }

    function ownerOf(uint256 _id) external view returns (address) {
        return nfOwners[_id];
    }

    function _ownerOf(uint256 _id) internal view returns (address) {
        return nfOwners[_id];
    }

    // override
    function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) external {

        require(_to != address(0x0), "cannot send to zero address");
        require(_from == msg.sender || operatorApproval[_from][msg.sender] == true, "Need operator approval for 3rd party transfers.");

        if (isNonFungible(_id)) {
            require(nfOwners[_id] == _from);
            nfOwners[_id] = _to;
            // You could keep balance of NF type in base type id like so:
            // uint256 baseType = getNonFungibleBaseType(_id);
            // balances[baseType][_from] = balances[baseType][_from].sub(_value);
            // balances[baseType][_to]   = balances[baseType][_to].add(_value);
            onTransferNft(_from, _to, _id);
        } else {
            balances[_id][_from] = balances[_id][_from].sub(_value);
            balances[_id][_to]   = balances[_id][_to].add(_value);
            onTransfer20(_from, _to, _id, _value);
        }

        emit TransferSingle(msg.sender, _from, _to, _id, _value);

        if (_to.isContract()) {
            _doSafeTransferAcceptanceCheck(msg.sender, _from, _to, _id, _value, _data);
        }
    }

    function onTransferNft(address _from, address _to, uint256 _tokenId) internal {
    }

    function onTransfer20(address _from, address _to, uint256 _type, uint256 _value) internal {
    }

    // override
    function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external {

        require(_to != address(0x0), "cannot send to zero address");
        require(_ids.length == _values.length, "Array length must match");

        // Only supporting a global operator approval allows us to do only 1 check and not to touch storage to handle allowances.
        require(_from == msg.sender || operatorApproval[_from][msg.sender] == true, "Need operator approval for 3rd party transfers.");

        for (uint256 i = 0; i < _ids.length; ++i) {
            // Cache value to local variable to reduce read costs.
            uint256 id = _ids[i];
            uint256 value = _values[i];

            if (isNonFungible(id)) {
                require(nfOwners[id] == _from);
                nfOwners[id] = _to;
            } else {
                balances[id][_from] = balances[id][_from].sub(value);
                balances[id][_to]   = value.add(balances[id][_to]);
            }
        }

        emit TransferBatch(msg.sender, _from, _to, _ids, _values);

        if (_to.isContract()) {
            _doSafeBatchTransferAcceptanceCheck(msg.sender, _from, _to, _ids, _values, _data);
        }
    }

    function balanceOf(address _owner, uint256 _id) external view returns (uint256) {
        if (isNonFungibleItem(_id))
            return nfOwners[_id] == _owner ? 1 : 0;
        return balances[_id][_owner];
    }

    function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view returns (uint256[] memory) {

        require(_owners.length == _ids.length);

        uint256[] memory balances_ = new uint256[](_owners.length);

        for (uint256 i = 0; i < _owners.length; ++i) {
            uint256 id = _ids[i];
            if (isNonFungibleItem(id)) {
                balances_[i] = nfOwners[id] == _owners[i] ? 1 : 0;
            } else {
            	balances_[i] = balances[id][_owners[i]];
            }
        }

        return balances_;
    }
}

pragma solidity ^0.5.0;

/**
    Note: The ERC-165 identifier for this interface is 0x0e89341c.
*/
interface ERC1155Metadata_URI {
    /**
        @notice A distinct Uniform Resource Identifier (URI) for a given token.
        @dev URIs are defined in RFC 3986.
        The URI may point to a JSON file that conforms to the "ERC-1155 Metadata URI JSON Schema".
        @return URI string
    */
    function uri(uint256 _id) external view returns (string memory);
}

pragma solidity ^0.5.0;

pragma solidity ^0.5.0;

contract Operators
{
    mapping (address=>bool) ownerAddress;
    mapping (address=>bool) operatorAddress;

    constructor() public
    {
        ownerAddress[msg.sender] = true;
    }

    modifier onlyOwner()
    {
        require(ownerAddress[msg.sender]);
        _;
    }

    function isOwner(address _addr) public view returns (bool) {
        return ownerAddress[_addr];
    }

    function addOwner(address _newOwner) external onlyOwner {
        require(_newOwner != address(0));

        ownerAddress[_newOwner] = true;
    }

    function removeOwner(address _oldOwner) external onlyOwner {
        delete(ownerAddress[_oldOwner]);
    }

    modifier onlyOperator() {
        require(isOperator(msg.sender));
        _;
    }

    function isOperator(address _addr) public view returns (bool) {
        return operatorAddress[_addr] || ownerAddress[_addr];
    }

    function addOperator(address _newOperator) external onlyOwner {
        require(_newOperator != address(0));

        operatorAddress[_newOperator] = true;
    }

    function removeOperator(address _oldOperator) external onlyOwner {
        delete(operatorAddress[_oldOperator]);
    }
}


contract ERC1155URIProvider is Operators
{
    string public staticUri;

    function setUri(string calldata _uri) external onlyOwner
    {
        staticUri = _uri;
    }

    function uri(uint256) external view returns (string memory)
    {
        return staticUri;
    }
}

pragma solidity ^0.5.0;

interface IERC1155Mintable
{
    function mintNonFungibleSingle(uint256 _type, address _to) external;
    function mintNonFungible(uint256 _type, address[] calldata _to) external;
    function mintFungibleSingle(uint256 _id, address _to, uint256 _quantity) external;
    function mintFungible(uint256 _id, address[] calldata _to, uint256[] calldata _quantities) external;
}


pragma solidity ^0.5.0;

// ----------------------------------------------------------------------------
contract ERC20 {

    function balanceOf(address tokenOwner) external view returns (uint balance);
    function transfer(address to, uint tokens) external returns (bool success);
}

pragma solidity ^0.5.0;

/// @title ERC-721 Non-Fungible Token Standard
/// @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
///  Note: the ERC-165 identifier for this interface is 0x6466353c
interface ERC721Proxy /*is ERC165*/ {

    /// @notice Query if a contract implements an interface
    /// @param interfaceID The interface identifier, as specified in ERC-165
    /// @dev Interface identification is specified in ERC-165. This function
    ///  uses less than 30,000 gas.
    /// @return `true` if the contract implements `interfaceID` and
    ///  `interfaceID` is not 0xffffffff, `false` otherwise
    function supportsInterface(bytes4 interfaceID) external view returns (bool);

    /// @dev This emits when ownership of any NFT changes by any mechanism.
    ///  This event emits when NFTs are created (`from` == 0) and destroyed
    ///  (`to` == 0). Exception: during contract creation, any number of NFTs
    ///  may be created and assigned without emitting Transfer. At the time of
    ///  any transfer, the approved address for that NFT (if any) is reset to none.
    event Transfer(address indexed _from, address indexed _to, uint256 _tokenId);

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

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

    /// @notice Count all NFTs assigned to an owner
    /// @dev NFTs assigned to the zero address are considered invalid, and this
    ///  function throws for queries about the zero address.
    /// @param _owner An address for whom to query the balance
    /// @return The number of NFTs owned by `_owner`, possibly zero
    function balanceOf(address _owner) external view returns (uint256);

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

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

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

    /// @notice Transfer ownership of an NFT -- THE CALLER IS RESPONSIBLE
    ///  TO CONFIRM THAT `_to` IS CAPABLE OF RECEIVING NFTS OR ELSE
    ///  THEY MAY BE PERMANENTLY LOST
    /// @dev Throws unless `msg.sender` is the current owner, an authorized
    ///  operator, or the approved address for this NFT. Throws if `_from` is
    ///  not the current owner. Throws if `_to` is the zero address. Throws if
    ///  `_tokenId` is not a valid NFT.
    /// @param _from The current owner of the NFT
    /// @param _to The new owner
    /// @param _tokenId The NFT to transfer
    function transferFrom(address _from, address _to, uint256 _tokenId) external;

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

    /// @notice Enable or disable approval for a third party ("operator") to manage
    ///  all your asset.
    /// @dev Emits the ApprovalForAll event
    /// @param _operator Address to add to the set of authorized operators.
    /// @param _approved True if the operators is approved, false to revoke approval
    function setApprovalForAll(address _operator, bool _approved) external;

    /// @notice Get the approved address for a single NFT
    /// @dev Throws if `_tokenId` is not a valid NFT
    /// @param _tokenId The NFT to find the approved address for
    /// @return The approved address for this NFT, or the zero address if there is none
    function getApproved(uint256 _tokenId) external view returns (address);

    /// @notice Query if an address is an authorized operator for another address
    /// @param _owner The address that owns the NFTs
    /// @param _operator The address that acts on behalf of the owner
    /// @return True if `_operator` is an approved operator for `_owner`, false otherwise
    function isApprovedForAll(address _owner, address _operator) external view returns (bool);


    /// @notice A descriptive name for a collection of NFTs in this contract
    function name() external view returns (string memory _name);

    /// @notice An abbreviated name for NFTs in this contract
    function symbol() external view returns (string memory _symbol);


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

    /// @notice Count NFTs tracked by this contract
    /// @return A count of valid NFTs tracked by this contract, where each one of
    ///  them has an assigned and queryable owner not equal to the zero address
    function totalSupply() external view returns (uint256);

    /// @notice Enumerate valid NFTs
    /// @dev Throws if `_index` >= `totalSupply()`.
    /// @param _index A counter less than `totalSupply()`
    /// @return The token identifier for the `_index`th NFT,
    ///  (sort order not specified)
    function tokenByIndex(uint256 _index) external view returns (uint256);

    /// @notice Enumerate NFTs assigned to an owner
    /// @dev Throws if `_index` >= `balanceOf(_owner)` or if
    ///  `_owner` is the zero address, representing invalid NFTs.
    /// @param _owner An address where we are interested in NFTs owned by them
    /// @param _index A counter less than `balanceOf(_owner)`
    /// @return The token identifier for the `_index`th NFT assigned to `_owner`,
    ///   (sort order not specified)
    function tokenOfOwnerByIndex(address _owner, uint256 _index) external view returns (uint256);

    /// @notice Transfers a Token to another address. When transferring to a smart
    ///  contract, ensure that it is aware of ERC-721, otherwise the Token may be lost forever.
    /// @param _to The address of the recipient, can be a user or contract.
    /// @param _tokenId The ID of the Token to transfer.
    function transfer(address _to, uint256 _tokenId) external;

    function onTransfer(address _from, address _to, uint256 _nftIndex) external;
}

pragma solidity ^0.5.0;

// ----------------------------------------------------------------------------
contract ERC20Proxy {
    function totalSupply() external view returns (uint);
    function balanceOf(address tokenOwner) external view returns (uint balance);
    function allowance(address tokenOwner, address spender) external view returns (uint remaining);
    function transfer(address to, uint tokens) external returns (bool success);
    function approve(address spender, uint tokens) external returns (bool success);
    function transferFrom(address from, address to, uint tokens) external returns (bool success);
    event Transfer(address indexed from, address indexed to, uint tokens);
    event Approval(address indexed tokenOwner, address indexed spender, uint tokens);

    function onTransfer(address _from, address _to, uint256 _value) external;
}

pragma solidity ^0.5.0;

interface MintCallbackInterface
{
    function onMint(uint256 id) external;
}


/**
    @title Blockchain Cuties Collectible contract.
    @dev Mixed Fungible Mintable form of ERC1155
    Shows how easy it is to mint new items
    @author https://BlockChainArchitect.io + Enjin
*/
contract BlockchainCutiesERC1155 is ERC1155MixedFungible, Operators, ERC1155Metadata_URI, IERC1155Mintable {

    mapping (uint256 => uint256) public maxIndex;

    mapping(uint256 => ERC721Proxy) public proxy721;
    mapping(uint256 => ERC20Proxy) public proxy20;
    mapping(uint256 => bool) public disallowSetProxy721;
    mapping(uint256 => bool) public disallowSetProxy20;
    MintCallbackInterface public mintCallback;

    bytes4 constant private INTERFACE_SIGNATURE_ERC1155_URI = 0x0e89341c;

    function supportsInterface(bytes4 _interfaceId) public view returns (bool) {
        return
            super.supportsInterface(_interfaceId) ||
            _interfaceId == INTERFACE_SIGNATURE_ERC1155_URI;
    }

    // This function only creates the type.
    // _type must be shifted by 128 bits left
    // for NFT TYPE_NF_BIT should be added to _type
    function create(uint256 _type) onlyOwner external
    {
        // emit a Transfer event with Create semantic to help with discovery.
        emit TransferSingle(msg.sender, address(0x0), address(0x0), _type, 0);
    }

    function setMintCallback(MintCallbackInterface _newCallback) external onlyOwner
    {
        mintCallback = _newCallback;
    }

    function mintNonFungibleSingleShort(uint128 _type, address _to) external onlyOperator {
        uint tokenType = (uint256(_type) << 128) | (1 << 255);
        _mintNonFungibleSingle(tokenType, _to);
    }

    function mintNonFungibleSingle(uint256 _type, address _to) external onlyOperator {
        // No need to check this is a nf type
        require(isNonFungible(_type));
        require(getNonFungibleIndex(_type) == 0);

        _mintNonFungibleSingle(_type, _to);
    }

    function _mintNonFungibleSingle(uint256 _type, address _to) internal {

        // Index are 1-based.
        uint256 index = maxIndex[_type] + 1;

        uint256 id  = _type | index;

        nfOwners[id] = _to;

        // You could use base-type id to store NF type balances if you wish.
        // balances[_type][dst] = quantity.add(balances[_type][dst]);

        emit TransferSingle(msg.sender, address(0x0), _to, id, 1);

        onTransferNft(address(0x0), _to, id);
        maxIndex[_type] = maxIndex[_type].add(1);

        if (address(mintCallback) != address(0)) {
            mintCallback.onMint(id);
        }

        if (_to.isContract()) {
            _doSafeTransferAcceptanceCheck(msg.sender, msg.sender, _to, id, 1, '');
        }
    }

    function mintNonFungibleShort(uint128 _type, address[] calldata _to) external onlyOperator {
        uint tokenType = (uint256(_type) << 128) | (1 << 255);
        _mintNonFungible(tokenType, _to);
    }

    function mintNonFungible(uint256 _type, address[] calldata _to) external onlyOperator {

        // No need to check this is a nf type
        require(isNonFungible(_type), "_type must be NFT type");
        _mintNonFungible(_type, _to);
    }

    function _mintNonFungible(uint256 _type, address[] memory _to) internal {

        // Index are 1-based.
        uint256 index = maxIndex[_type] + 1;

        for (uint256 i = 0; i < _to.length; ++i) {
            address dst = _to[i];
            uint256 id  = _type | index + i;

            nfOwners[id] = dst;

            // You could use base-type id to store NF type balances if you wish.
            // balances[_type][dst] = quantity.add(balances[_type][dst]);

            emit TransferSingle(msg.sender, address(0x0), dst, id, 1);
            onTransferNft(address(0x0), dst, id);

            if (address(mintCallback) != address(0)) {
                mintCallback.onMint(id);
            }
            if (dst.isContract()) {
                _doSafeTransferAcceptanceCheck(msg.sender, msg.sender, dst, id, 1, '');
            }
        }

        maxIndex[_type] = _to.length.add(maxIndex[_type]);
    }

    function mintFungibleSingle(uint256 _id, address _to, uint256 _quantity) external onlyOperator {

        require(isFungible(_id));

        // Grant the items to the caller
        balances[_id][_to] = _quantity.add(balances[_id][_to]);

        // Emit the Transfer/Mint event.
        // the 0x0 source address implies a mint
        // It will also provide the circulating supply info.
        emit TransferSingle(msg.sender, address(0x0), _to, _id, _quantity);
        onTransfer20(address(0x0), _to, _id, _quantity);

        if (_to.isContract()) {
            _doSafeTransferAcceptanceCheck(msg.sender, msg.sender, _to, _id, _quantity, '');
        }
    }

    function mintFungible(uint256 _id, address[] calldata _to, uint256[] calldata _quantities) external onlyOperator {

        require(isFungible(_id));

        for (uint256 i = 0; i < _to.length; ++i) {

            address to = _to[i];
            uint256 quantity = _quantities[i];

            // Grant the items to the caller
            balances[_id][to] = quantity.add(balances[_id][to]);

            // Emit the Transfer/Mint event.
            // the 0x0 source address implies a mint
            // It will also provide the circulating supply info.
            emit TransferSingle(msg.sender, address(0x0), to, _id, quantity);
            onTransfer20(address(0x0), to, _id, quantity);

            if (to.isContract()) {
                _doSafeTransferAcceptanceCheck(msg.sender, msg.sender, to, _id, quantity, '');
            }
        }
    }

    function setURI(string calldata _uri, uint256 _id) external onlyOperator {
        emit URI(_uri, _id);
    }

    ERC1155URIProvider public uriProvider;

    function setUriProvider(ERC1155URIProvider _uriProvider) onlyOwner external
    {
        uriProvider = _uriProvider;
    }

    function uri(uint256 _id) external view returns (string memory)
    {
        return uriProvider.uri(_id);
    }

    function withdraw() external onlyOwner
    {
        if (address(this).balance > 0)
        {
            msg.sender.transfer(address(this).balance);
        }
    }

    function withdrawTokenFromBalance(ERC20 _tokenContract) external onlyOwner
    {
        uint256 balance = _tokenContract.balanceOf(address(this));
        _tokenContract.transfer(msg.sender, balance);
    }

    function totalSupplyNonFungible(uint256 _type) view external returns (uint256)
    {
        // No need to check this is a nf type
        require(isNonFungible(_type));
        return maxIndex[_type];
    }

    function totalSupplyNonFungibleShort(uint128 _type) view external returns (uint256)
    {
        uint tokenType = (uint256(_type) << 128) | (1 << 255);
        return maxIndex[tokenType];
    }

    function setProxy721(uint256 nftType, ERC721Proxy proxy) external onlyOwner
    {
        require(!disallowSetProxy721[nftType]);
        proxy721[nftType] = proxy;
    }

    // @dev can be only disabled. There is not way to enable later.
    function disableSetProxy721(uint256 nftType) external onlyOwner
    {
        disallowSetProxy721[nftType] = true;
    }

    function setProxy20(uint256 _type, ERC20Proxy proxy) external onlyOwner
    {
        require(!disallowSetProxy20[_type]);
        proxy20[_type] = proxy;
    }

    // @dev can be only disabled. There is not way to enable later.
    function disableSetProxy20(uint256 _type) external onlyOwner
    {
        disallowSetProxy20[_type] = true;
    }

    function proxyTransfer721(address _from, address _to, uint256 _tokenId, bytes calldata _data) external
    {
        uint256 nftType = getNFTType(_tokenId);
        ERC721Proxy proxy = proxy721[nftType];
        require(msg.sender == address(proxy));

        require(_ownerOf(_tokenId) == _from);
        require(_to != address(0x0), "cannot send to zero address");
        nfOwners[_tokenId] = _to;
        emit TransferSingle(msg.sender, _from, _to, _tokenId, 1);
        onTransferNft(_from, _to, _tokenId);

        if (_to.isContract()) {
            _doSafeTransferAcceptanceCheck(_to, _from, _to, _tokenId, 1, _data);
        }
    }

    // override
    function onTransferNft(address _from, address _to, uint256 _tokenId) internal {
        uint256 nftType = getNFTType(_tokenId);
        uint256 nftIndex = getNonFungibleIndex(_tokenId);
        ERC721Proxy proxy = proxy721[nftType];
        if (address(proxy) != address(0x0))
        {
            proxy.onTransfer(_from, _to, nftIndex);
        }
    }

    function proxyTransfer20(address _from, address _to, uint256 _tokenId, uint256 _value) external
    {
        ERC20Proxy proxy = proxy20[_tokenId];
        require(msg.sender == address(proxy));

        require(_to != address(0x0), "cannot send to zero address");

        balances[_tokenId][_from] = balances[_tokenId][_from].sub(_value);
        balances[_tokenId][_to]   = balances[_tokenId][_to].add(_value);

        emit TransferSingle(msg.sender, _from, _to, _tokenId, _value);
        onTransfer20(_from, _to, _tokenId, _value);
    }

    // override
    function onTransfer20(address _from, address _to, uint256 _tokenId, uint256 _value) internal {
        ERC20Proxy proxy = proxy20[_tokenId];
        if (address(proxy) != address(0x0))
        {
            proxy.onTransfer(_from, _to, _value);
        }
    }

    // override
    function burn(address _from, uint256 _id, uint256 _value) external {

        require(_from == msg.sender || operatorApproval[_from][msg.sender] == true, "Need operator approval for 3rd party transfers.");

        address to = address(0x0);

        if (isNonFungible(_id)) {
            require(nfOwners[_id] == _from);
            nfOwners[_id] = to;
            // You could keep balance of NF type in base type id like so:
            // uint256 baseType = getNonFungibleBaseType(_id);
            // balances[baseType][_from] = balances[baseType][_from].sub(_value);
            // balances[baseType][_to]   = balances[baseType][_to].add(_value);
            onTransferNft(_from, to, _id);
        } else {
            balances[_id][_from] = balances[_id][_from].sub(_value);
            balances[_id][to]   = balances[_id][to].add(_value);
            onTransfer20(_from, to, _id, _value);
        }

        emit TransferSingle(msg.sender, _from, to, _id, _value);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_id","type":"uint256"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_type","type":"uint256"}],"name":"disableSetProxy20","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_type","type":"uint256"}],"name":"totalSupplyNonFungible","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"maxIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"uint256"}],"name":"uri","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_oldOwner","type":"address"}],"name":"removeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_ids","type":"uint256[]"},{"name":"_values","type":"uint256[]"},{"name":"_data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_uriProvider","type":"address"}],"name":"setUriProvider","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owners","type":"address[]"},{"name":"_ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"uint256"}],"name":"getNFTType","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"uriProvider","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"uint256"}],"name":"isNonFungibleItem","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"uint256"}],"name":"ownerOf","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_uri","type":"string"},{"name":"_id","type":"uint256"}],"name":"setURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_type","type":"uint128"}],"name":"totalSupplyNonFungibleShort","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isOperator","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"proxy20","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"uint256"}],"name":"getNonFungibleBaseType","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"addOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"uint256"}],"name":"isNonFungibleBaseType","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"mintCallback","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_type","type":"uint256"}],"name":"create","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_type","type":"uint256"},{"name":"proxy","type":"address"}],"name":"setProxy20","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"},{"name":"_to","type":"address[]"},{"name":"_quantities","type":"uint256[]"}],"name":"mintFungible","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"proxy721","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_type","type":"uint128"},{"name":"_to","type":"address[]"}],"name":"mintNonFungibleShort","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_type","type":"uint256"},{"name":"_to","type":"address"}],"name":"mintNonFungibleSingle","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOperator","type":"address"}],"name":"addOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"uint256"}],"name":"getNonFungibleIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_newCallback","type":"address"}],"name":"setMintCallback","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"},{"name":"_to","type":"address"},{"name":"_quantity","type":"uint256"}],"name":"mintFungibleSingle","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_operator","type":"address"},{"name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_type","type":"uint128"},{"name":"_to","type":"address"}],"name":"mintNonFungibleSingleShort","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_oldOperator","type":"address"}],"name":"removeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"uint256"}],"name":"isFungible","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"disallowSetProxy20","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"},{"name":"_value","type":"uint256"}],"name":"proxyTransfer20","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"nftType","type":"uint256"}],"name":"disableSetProxy721","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"nftType","type":"uint256"},{"name":"proxy","type":"address"}],"name":"setProxy721","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenContract","type":"address"}],"name":"withdrawTokenFromBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TYPE_NF_BIT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"uint256"}],"name":"isNonFungible","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"proxyTransfer721","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"disallowSetProxy721","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_id","type":"uint256"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_id","type":"uint256"},{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_type","type":"uint256"},{"name":"_to","type":"address[]"}],"name":"mintNonFungible","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_operator","type":"address"},{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_id","type":"uint256"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_operator","type":"address"},{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_ids","type":"uint256[]"},{"indexed":false,"name":"_values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_operator","type":"address"},{"indexed":false,"name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_value","type":"string"},{"indexed":true,"name":"_id","type":"uint256"}],"name":"URI","type":"event"}]

60806040908152336000908152600360205220805460ff1916600117905561317b8061002c6000396000f3fe608060405234801561001057600080fd5b50600436106102f05760003560e01c806378aa5bd71161019d578063b130b46b116100e9578063e44591f0116100a2578063e985e9c51161007c578063e985e9c514610d70578063f242432a14610d9e578063f5298aca14610e31578063f941908814610e63576102f0565b8063e44591f014610ca8578063e67403bd14610cc5578063e85ed30e14610d53576102f0565b8063b130b46b14610bd8578063b9b8763f14610bf5578063ba126b1a14610c31578063c4928a4814610c4e578063d5e44a8014610c7a578063d905af5514610ca0576102f0565b80639cca1c6411610156578063a22cb46511610130578063a22cb46514610b32578063ab06b77814610b60578063ac8a584a14610b95578063adebf6f214610bbb576102f0565b80639cca1c6414610abd5780639db9d9d714610ada578063a11acd3314610b00576102f0565b806378aa5bd7146108df57806378b272211461090b5780638068fa01146109d05780638c1acee6146109ed5780639177168314610a6b5780639870d7fe14610a97576102f0565b80635cb960e31161025c5780636d70f7ae116102155780637065cb48116101ef5780637065cb48146108775780637269a3271461089d57806376184bd2146108ba578063780900dc146108c2576102f0565b80636d70f7ae146108175780636e6916ec1461083d5780636f969c2d1461085a576102f0565b80635cb960e3146107085780635cc852fd146107255780635e81b958146107495780636352211e1461076657806367db3b8f14610783578063686d33fb146107f1576102f0565b8063173825d9116102ae578063173825d9146104595780632eb2c2d61461047f5780632f54bf6e146105a65780633ccfd60b146105cc57806342a8b799146105d45780634e1273f4146105fa576102f0565b8062fdd58e146102f557806301ffc9a71461033357806302d4ddef1461036e578063083e9db81461038d57806308d7d469146103aa5780630e89341c146103c7575b600080fd5b6103216004803603604081101561030b57600080fd5b506001600160a01b038135169060200135610ed8565b60408051918252519081900360200190f35b61035a6004803603602081101561034957600080fd5b50356001600160e01b031916610f46565b604080519115158252519081900360200190f35b61038b6004803603602081101561038457600080fd5b5035610f77565b005b610321600480360360208110156103a357600080fd5b5035610fae565b610321600480360360208110156103c057600080fd5b5035610fd5565b6103e4600480360360208110156103dd57600080fd5b5035610fe7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561041e578181015183820152602001610406565b50505050905090810190601f16801561044b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61038b6004803603602081101561046f57600080fd5b50356001600160a01b03166110c2565b61038b600480360360a081101561049557600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b8111156104c857600080fd5b8201836020820111156104da57600080fd5b803590602001918460208302840111600160201b831117156104fb57600080fd5b919390929091602081019035600160201b81111561051857600080fd5b82018360208201111561052a57600080fd5b803590602001918460208302840111600160201b8311171561054b57600080fd5b919390929091602081019035600160201b81111561056857600080fd5b82018360208201111561057a57600080fd5b803590602001918460018302840111600160201b8311171561059b57600080fd5b5090925090506110ff565b61035a600480360360208110156105bc57600080fd5b50356001600160a01b031661150c565b61038b61152a565b61038b600480360360208110156105ea57600080fd5b50356001600160a01b031661157e565b6106b86004803603604081101561061057600080fd5b810190602081018135600160201b81111561062a57600080fd5b82018360208201111561063c57600080fd5b803590602001918460208302840111600160201b8311171561065d57600080fd5b919390929091602081019035600160201b81111561067a57600080fd5b82018360208201111561068c57600080fd5b803590602001918460208302840111600160201b831117156106ad57600080fd5b5090925090506115bc565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156106f45781810151838201526020016106dc565b505050509050019250505060405180910390f35b6103216004803603602081101561071e57600080fd5b5035611707565b61072d611719565b604080516001600160a01b039092168252519081900360200190f35b61035a6004803603602081101561075f57600080fd5b5035611728565b61072d6004803603602081101561077c57600080fd5b5035611749565b61038b6004803603604081101561079957600080fd5b810190602081018135600160201b8111156107b357600080fd5b8201836020820111156107c557600080fd5b803590602001918460018302840111600160201b831117156107e657600080fd5b919350915035611764565b6103216004803603602081101561080757600080fd5b50356001600160801b03166117dc565b61035a6004803603602081101561082d57600080fd5b50356001600160a01b0316611800565b61072d6004803603602081101561085357600080fd5b5035611841565b6103216004803603602081101561087057600080fd5b503561185c565b61038b6004803603602081101561088d57600080fd5b50356001600160a01b0316611872565b61035a600480360360208110156108b357600080fd5b50356118c5565b61072d6118e5565b61038b600480360360208110156108d857600080fd5b50356118f4565b61038b600480360360408110156108f557600080fd5b50803590602001356001600160a01b0316611944565b61038b6004803603606081101561092157600080fd5b81359190810190604081016020820135600160201b81111561094257600080fd5b82018360208201111561095457600080fd5b803590602001918460208302840111600160201b8311171561097557600080fd5b919390929091602081019035600160201b81111561099257600080fd5b8201836020820111156109a457600080fd5b803590602001918460208302840111600160201b831117156109c557600080fd5b5090925090506119aa565b61072d600480360360208110156109e657600080fd5b5035611ae2565b61038b60048036036040811015610a0357600080fd5b6001600160801b038235169190810190604081016020820135600160201b811115610a2d57600080fd5b820183602082011115610a3f57600080fd5b803590602001918460208302840111600160201b83111715610a6057600080fd5b509092509050611afd565b61038b60048036036040811015610a8157600080fd5b50803590602001356001600160a01b0316611b6a565b61038b60048036036020811015610aad57600080fd5b50356001600160a01b0316611baf565b61032160048036036020811015610ad357600080fd5b5035611c02565b61038b60048036036020811015610af057600080fd5b50356001600160a01b0316611c0e565b61038b60048036036060811015610b1657600080fd5b508035906001600160a01b036020820135169060400135611c4c565b61038b60048036036040811015610b4857600080fd5b506001600160a01b0381351690602001351515611d34565b61038b60048036036040811015610b7657600080fd5b5080356001600160801b031690602001356001600160a01b0316611da2565b61038b60048036036020811015610bab57600080fd5b50356001600160a01b0316611dd1565b61035a60048036036020811015610bd157600080fd5b5035611e0e565b61035a60048036036020811015610bee57600080fd5b5035611e18565b61038b60048036036080811015610c0b57600080fd5b506001600160a01b03813581169160208101359091169060408101359060600135611e2d565b61038b60048036036020811015610c4757600080fd5b5035611f68565b61038b60048036036040811015610c6457600080fd5b50803590602001356001600160a01b0316611f9f565b61038b60048036036020811015610c9057600080fd5b50356001600160a01b0316612005565b61032161211a565b61035a60048036036020811015610cbe57600080fd5b5035612122565b61038b60048036036080811015610cdb57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610d1557600080fd5b820183602082011115610d2757600080fd5b803590602001918460018302840111600160201b83111715610d4857600080fd5b50909250905061212e565b61035a60048036036020811015610d6957600080fd5b50356122a0565b61035a60048036036040811015610d8657600080fd5b506001600160a01b03813581169160200135166122b5565b61038b600480360360a0811015610db457600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b811115610df357600080fd5b820183602082011115610e0557600080fd5b803590602001918460018302840111600160201b83111715610e2657600080fd5b5090925090506122e3565b61038b60048036036060811015610e4757600080fd5b506001600160a01b03813516906020810135906040013561254f565b61038b60048036036040811015610e7957600080fd5b81359190810190604081016020820135600160201b811115610e9a57600080fd5b820183602082011115610eac57600080fd5b803590602001918460208302840111600160201b83111715610ecd57600080fd5b50909250905061271c565b6000610ee382611728565b15610f1d576000828152600260205260409020546001600160a01b03848116911614610f10576000610f13565b60015b60ff169050610f40565b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b6000610f51826127c8565b80610f6f57506001600160e01b03198216600160e21b6303a24d0702145b90505b919050565b3360009081526003602052604090205460ff16610f9357600080fd5b6000908152600960205260409020805460ff19166001179055565b6000610fb982612122565b610fc257600080fd5b5060009081526005602052604090205490565b60056020526000908152604090205481565b600b5460408051600160e21b6303a24d070281526004810184905290516060926001600160a01b031691630e89341c916024808301926000929190829003018186803b15801561103657600080fd5b505afa15801561104a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561107357600080fd5b810190808051600160201b81111561108a57600080fd5b8201602081018481111561109d57600080fd5b8151600160201b8111828201871017156110b657600080fd5b50909695505050505050565b3360009081526003602052604090205460ff166110de57600080fd5b6001600160a01b03166000908152600360205260409020805460ff19169055565b6001600160a01b03871661114b5760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020613130833981519152604482015290519081900360640190fd5b8483146111a25760408051600160e51b62461bcd02815260206004820152601760248201527f4172726179206c656e677468206d757374206d61746368000000000000000000604482015290519081900360640190fd5b6001600160a01b0388163314806111e057506001600160a01b03881660009081526001602081815260408084203385529091529091205460ff161515145b61121e57604051600160e51b62461bcd02815260040180806020018281038252602f815260200180613101602f913960400191505060405180910390fd5b60005b8581101561139557600087878381811061123757fe5b905060200201359050600086868481811061124e57fe5b90506020020135905061126082612122565b156112b7576000828152600260205260409020546001600160a01b038c811691161461128b57600080fd5b600082815260026020526040902080546001600160a01b0319166001600160a01b038c1617905561138b565b6000828152602081815260408083206001600160a01b038f1684529091529020546112e8908263ffffffff61281416565b60008084815260200190815260200160002060008d6001600160a01b03166001600160a01b031681526020019081526020016000208190555061136960008084815260200190815260200160002060008c6001600160a01b03166001600160a01b03168152602001908152602001600020548261282690919063ffffffff16565b6000838152602081815260408083206001600160a01b038f1684529091529020555b5050600101611221565b50866001600160a01b0316886001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb898989896040518080602001806020018381038352878782818152602001925060200280828437600083820152601f01601f19169091018481038352858152602090810191508690860280828437600083820152604051601f909101601f19169092018290039850909650505050505050a4611459876001600160a01b0316612833565b156115025761150233898989898080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b91829185019084908082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a915089908190840183828082843760009201919091525061283992505050565b5050505050505050565b6001600160a01b031660009081526003602052604090205460ff1690565b3360009081526003602052604090205460ff1661154657600080fd5b30311561157c576040513390303180156108fc02916000818181858888f1935050505015801561157a573d6000803e3d6000fd5b505b565b3360009081526003602052604090205460ff1661159a57600080fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60608382146115ca57600080fd5b6040805185815260208087028201019091526060908580156115f6578160200160208202803883390190505b50905060005b858110156116fd57600085858381811061161257fe5b90506020020135905061162481611728565b1561168f5787878381811061163557fe5b600084815260026020908152604090912054910292909201356001600160a01b03908116921691909114905061166c57600061166f565b60015b60ff1683838151811061167e57fe5b6020026020010181815250506116f4565b6000818152602081905260408120908989858181106116aa57fe5b905060200201356001600160a01b03166001600160a01b03166001600160a01b03168152602001908152602001600020548383815181106116e757fe5b6020026020010181815250505b506001016115fc565b5095945050505050565b600160801b600160ff1b031660801c90565b600b546001600160a01b031681565b6000600160ff1b808316148015610f6f5750506001600160801b0316151590565b6000908152600260205260409020546001600160a01b031690565b61176d33611800565b61177657600080fd5b807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b848460405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2505050565b6001600160801b031660801b600160ff1b1760009081526005602052604090205490565b6001600160a01b03811660009081526004602052604081205460ff1680610f6f5750506001600160a01b031660009081526003602052604090205460ff1690565b6007602052600090815260409020546001600160a01b031681565b6fffffffffffffffffffffffffffffffff191690565b3360009081526003602052604090205460ff1661188e57600080fd5b6001600160a01b0381166118a157600080fd5b6001600160a01b03166000908152600360205260409020805460ff19166001179055565b6000600160ff1b808316148015610f6f5750506001600160801b03161590565b600a546001600160a01b031681565b3360009081526003602052604090205460ff1661191057600080fd5b6040805182815260006020820181905282519092839233926000805160206130b3833981519152929181900390910190a450565b3360009081526003602052604090205460ff1661196057600080fd5b60008281526009602052604090205460ff161561197c57600080fd5b60009182526007602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b6119b333611800565b6119bc57600080fd5b6119c585611e0e565b6119ce57600080fd5b60005b83811015611ada5760008585838181106119e757fe5b905060200201356001600160a01b031690506000848484818110611a0757fe5b60008b8152602081815260408083206001600160a01b0389168452825290912054910292909201359250611a439183915063ffffffff61282616565b6000898152602081815260408083206001600160a01b0387168085529083528184209490945580518c8152918201859052805133926000805160206130b383398151915292908290030190a4611a9c6000838a84612abb565b611aae826001600160a01b0316612833565b15611ad057611ad03333848b8560405180602001604052806000815250612b4a565b50506001016119d1565b505050505050565b6006602052600090815260409020546001600160a01b031681565b611b0633611800565b611b0f57600080fd5b60006080846001600160801b0316901b600160ff1b179050611b6481848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612d0a92505050565b50505050565b611b7333611800565b611b7c57600080fd5b611b8582612122565b611b8e57600080fd5b611b9782611c02565b15611ba157600080fd5b611bab8282612ea1565b5050565b3360009081526003602052604090205460ff16611bcb57600080fd5b6001600160a01b038116611bde57600080fd5b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6001600160801b031690565b3360009081526003602052604090205460ff16611c2a57600080fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b611c5533611800565b611c5e57600080fd5b611c6783611e0e565b611c7057600080fd5b6000838152602081815260408083206001600160a01b0386168452909152902054611ca290829063ffffffff61282616565b6000848152602081815260408083206001600160a01b038716808552908352818420949094558051878152918201859052805133926000805160206130b383398151915292908290030190a4611cfb6000838584612abb565b611d0d826001600160a01b0316612833565b15611d2f57611d2f333384868560405180602001604052806000815250612b4a565b505050565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b611dab33611800565b611db457600080fd5b600160ff1b6001600160801b03831660801b17611d2f8183612ea1565b3360009081526003602052604090205460ff16611ded57600080fd5b6001600160a01b03166000908152600460205260409020805460ff19169055565b600160ff1b161590565b60096020526000908152604090205460ff1681565b6000828152600760205260409020546001600160a01b0316338114611e5157600080fd5b6001600160a01b038416611e9d5760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020613130833981519152604482015290519081900360640190fd5b6000838152602081815260408083206001600160a01b0389168452909152902054611ece908363ffffffff61281416565b6000848152602081815260408083206001600160a01b038a81168552925280832093909355861681522054611f039083612826565b6000848152602081815260408083206001600160a01b03808a168086529184529382902094909455805187815291820186905280519289169233926000805160206130b383398151915292908290030190a4611f6185858585612abb565b5050505050565b3360009081526003602052604090205460ff16611f8457600080fd5b6000908152600860205260409020805460ff19166001179055565b3360009081526003602052604090205460ff16611fbb57600080fd5b60008281526008602052604090205460ff1615611fd757600080fd5b60009182526006602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b3360009081526003602052604090205460ff1661202157600080fd5b60408051600160e01b6370a0823102815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b15801561206e57600080fd5b505afa158015612082573d6000803e3d6000fd5b505050506040513d602081101561209857600080fd5b505160408051600160e01b63a9059cbb0281523360048201526024810183905290519192506001600160a01b0384169163a9059cbb916044808201926020929091908290030181600087803b1580156120f057600080fd5b505af1158015612104573d6000803e3d6000fd5b505050506040513d6020811015611b6457600080fd5b600160ff1b81565b600160ff1b9081161490565b600061213984611707565b6000818152600660205260409020549091506001600160a01b031633811461216057600080fd5b866001600160a01b031661217386611749565b6001600160a01b03161461218657600080fd5b6001600160a01b0386166121d25760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020613130833981519152604482015290519081900360640190fd5b60008581526002602090815260409182902080546001600160a01b0319166001600160a01b038a8116918217909255835189815260019381019390935283519093918b169233926000805160206130b383398151915292918290030190a461223b878787612ffc565b61224d866001600160a01b0316612833565b156122975761229786888888600189898080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612b4a92505050565b50505050505050565b60086020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6001600160a01b03851661232f5760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020613130833981519152604482015290519081900360640190fd5b6001600160a01b03861633148061236d57506001600160a01b03861660009081526001602081815260408084203385529091529091205460ff161515145b6123ab57604051600160e51b62461bcd02815260040180806020018281038252602f815260200180613101602f913960400191505060405180910390fd5b6123b484612122565b15612416576000848152600260205260409020546001600160a01b038781169116146123df57600080fd5b600084815260026020526040902080546001600160a01b0319166001600160a01b038716179055612411868686612ffc565b6124a9565b6000848152602081815260408083206001600160a01b038a168452909152902054612447908463ffffffff61281416565b6000858152602081815260408083206001600160a01b038b8116855292528083209390935587168152205461247c9084612826565b6000858152602081815260408083206001600160a01b038a1684529091529020556124a986868686612abb565b846001600160a01b0316866001600160a01b0316336001600160a01b03166000805160206130b38339815191528787604051808381526020018281526020019250505060405180910390a4612506856001600160a01b0316612833565b15611ada57611ada338787878787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612b4a92505050565b6001600160a01b03831633148061258d57506001600160a01b03831660009081526001602081815260408084203385529091529091205460ff161515145b6125cb57604051600160e51b62461bcd02815260040180806020018281038252602f815260200180613101602f913960400191505060405180910390fd5b60006125d683612122565b15612638576000838152600260205260409020546001600160a01b0385811691161461260157600080fd5b600083815260026020526040902080546001600160a01b0319166001600160a01b038316179055612633848285612ffc565b6126cb565b6000838152602081815260408083206001600160a01b0388168452909152902054612669908363ffffffff61281416565b6000848152602081815260408083206001600160a01b03898116855292528083209390935583168152205461269e9083612826565b6000848152602081815260408083206001600160a01b03861684529091529020556126cb84828585612abb565b806001600160a01b0316846001600160a01b0316336001600160a01b03166000805160206130b38339815191528686604051808381526020018281526020019250505060405180910390a450505050565b61272533611800565b61272e57600080fd5b61273783612122565b61278b5760408051600160e51b62461bcd02815260206004820152601660248201527f5f74797065206d757374206265204e4654207479706500000000000000000000604482015290519081900360640190fd5b611d2f83838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612d0a92505050565b60006001600160e01b03198216600160e01b6301ffc9a70214806127ff57506001600160e01b03198216600160e11b636cdb3d1302145b1561280c57506001610f72565b506000919050565b60008282111561282057fe5b50900390565b81810182811015610f4057fe5b3b151590565b60006060856001600160a01b0316888887878760405160240180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156128c75781810151838201526020016128af565b50505050905001848103835286818151815260200191508051906020019060200280838360005b838110156129065781810151838201526020016128ee565b50505050905001848103825285818151815260200191508051906020019080838360005b8381101561294257818101518382015260200161292a565b50505050905090810190601f16801561296f5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b0316600160e01b63bc197c810217815290518251929b50995089985096509450849350869250859150505b602083106129d75780518252601f1990920191602091820191016129b8565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612a39576040519150601f19603f3d011682016040523d82523d6000602084013e612a3e565b606091505b508051919350915060009015612a55575060208101515b6001600160e01b03198116600160e01b63ac007889021415612a7657612ab0565b604051600160e51b62461bcd02815260040180806020018281038252602e8152602001806130d3602e913960400191505060405180910390fd5b505050505050505050565b6000828152600760205260409020546001600160a01b03168015611f615760408051600160e01b634a3931490281526001600160a01b038781166004830152868116602483015260448201859052915191831691634a3931499160648082019260009290919082900301818387803b158015612b3657600080fd5b505af1158015612ab0573d6000803e3d6000fd5b60006060856001600160a01b0316888887878760405160240180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612bd9578181015183820152602001612bc1565b50505050905090810190601f168015612c065780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b0316600160e01b63f23a6e610217815290518251929950975087965094509250829150849050835b60208310612c6b5780518252601f199092019160209182019101612c4c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612ccd576040519150601f19603f3d011682016040523d82523d6000602084013e612cd2565b606091505b508051919350915060009015612ce9575060208101515b6001600160e01b03198116600160e01b634dc21a2f021415612a7657612ab0565b600082815260056020526040812054600101905b8251811015612e69576000838281518110612d3557fe5b6020908102919091018101518385018717600081815260028452604080822080546001600160a01b0319166001600160a01b0386169081179091558151848152600196810196909652815194965092949293919233926000805160206130b3833981519152929181900390910190a4612db060008383612ffc565b600a546001600160a01b031615612e2a57600a5460408051600160e11b6323c5e6590281526004810184905290516001600160a01b039092169163478bccb29160248082019260009290919082900301818387803b158015612e1157600080fd5b505af1158015612e25573d6000803e3d6000fd5b505050505b612e3c826001600160a01b0316612833565b15612e5f57612e5f33338484600160405180602001604052806000815250612b4a565b5050600101612d1e565b506000838152600560205260409020548251612e8a9163ffffffff61282616565b600093845260056020526040909320929092555050565b60008281526005602090815260408083205460019081018087178086526002855283862080546001600160a01b0319166001600160a01b0389169081179091558451828152958601939093528351919590949293909233926000805160206130b3833981519152929181900390910190a4612f1e60008483612ffc565b600084815260056020526040902054612f3e90600163ffffffff61282616565b600085815260056020526040902055600a546001600160a01b031615612fc757600a5460408051600160e11b6323c5e6590281526004810184905290516001600160a01b039092169163478bccb29160248082019260009290919082900301818387803b158015612fae57600080fd5b505af1158015612fc2573d6000803e3d6000fd5b505050505b612fd9836001600160a01b0316612833565b15611b6457611b6433338584600160405180602001604052806000815250612b4a565b600061300782611707565b9050600061301483611c02565b6000838152600660205260409020549091506001600160a01b03168015611ada5760408051600160e01b634a3931490281526001600160a01b038881166004830152878116602483015260448201859052915191831691634a3931499160648082019260009290919082900301818387803b15801561309257600080fd5b505af11580156130a6573d6000803e3d6000fd5b5050505050505050505056fec3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62526563656976657220636f6e747261637420646964206e6f742061636365707420746865207472616e736665722e4e656564206f70657261746f7220617070726f76616c20666f7220337264207061727479207472616e73666572732e63616e6e6f742073656e6420746f207a65726f20616464726573730000000000a165627a7a72305820b646e7895c5080c428c3e90061f150694b6bca67c583b7b357d8db519a0d9c040029

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102f05760003560e01c806378aa5bd71161019d578063b130b46b116100e9578063e44591f0116100a2578063e985e9c51161007c578063e985e9c514610d70578063f242432a14610d9e578063f5298aca14610e31578063f941908814610e63576102f0565b8063e44591f014610ca8578063e67403bd14610cc5578063e85ed30e14610d53576102f0565b8063b130b46b14610bd8578063b9b8763f14610bf5578063ba126b1a14610c31578063c4928a4814610c4e578063d5e44a8014610c7a578063d905af5514610ca0576102f0565b80639cca1c6411610156578063a22cb46511610130578063a22cb46514610b32578063ab06b77814610b60578063ac8a584a14610b95578063adebf6f214610bbb576102f0565b80639cca1c6414610abd5780639db9d9d714610ada578063a11acd3314610b00576102f0565b806378aa5bd7146108df57806378b272211461090b5780638068fa01146109d05780638c1acee6146109ed5780639177168314610a6b5780639870d7fe14610a97576102f0565b80635cb960e31161025c5780636d70f7ae116102155780637065cb48116101ef5780637065cb48146108775780637269a3271461089d57806376184bd2146108ba578063780900dc146108c2576102f0565b80636d70f7ae146108175780636e6916ec1461083d5780636f969c2d1461085a576102f0565b80635cb960e3146107085780635cc852fd146107255780635e81b958146107495780636352211e1461076657806367db3b8f14610783578063686d33fb146107f1576102f0565b8063173825d9116102ae578063173825d9146104595780632eb2c2d61461047f5780632f54bf6e146105a65780633ccfd60b146105cc57806342a8b799146105d45780634e1273f4146105fa576102f0565b8062fdd58e146102f557806301ffc9a71461033357806302d4ddef1461036e578063083e9db81461038d57806308d7d469146103aa5780630e89341c146103c7575b600080fd5b6103216004803603604081101561030b57600080fd5b506001600160a01b038135169060200135610ed8565b60408051918252519081900360200190f35b61035a6004803603602081101561034957600080fd5b50356001600160e01b031916610f46565b604080519115158252519081900360200190f35b61038b6004803603602081101561038457600080fd5b5035610f77565b005b610321600480360360208110156103a357600080fd5b5035610fae565b610321600480360360208110156103c057600080fd5b5035610fd5565b6103e4600480360360208110156103dd57600080fd5b5035610fe7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561041e578181015183820152602001610406565b50505050905090810190601f16801561044b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61038b6004803603602081101561046f57600080fd5b50356001600160a01b03166110c2565b61038b600480360360a081101561049557600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b8111156104c857600080fd5b8201836020820111156104da57600080fd5b803590602001918460208302840111600160201b831117156104fb57600080fd5b919390929091602081019035600160201b81111561051857600080fd5b82018360208201111561052a57600080fd5b803590602001918460208302840111600160201b8311171561054b57600080fd5b919390929091602081019035600160201b81111561056857600080fd5b82018360208201111561057a57600080fd5b803590602001918460018302840111600160201b8311171561059b57600080fd5b5090925090506110ff565b61035a600480360360208110156105bc57600080fd5b50356001600160a01b031661150c565b61038b61152a565b61038b600480360360208110156105ea57600080fd5b50356001600160a01b031661157e565b6106b86004803603604081101561061057600080fd5b810190602081018135600160201b81111561062a57600080fd5b82018360208201111561063c57600080fd5b803590602001918460208302840111600160201b8311171561065d57600080fd5b919390929091602081019035600160201b81111561067a57600080fd5b82018360208201111561068c57600080fd5b803590602001918460208302840111600160201b831117156106ad57600080fd5b5090925090506115bc565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156106f45781810151838201526020016106dc565b505050509050019250505060405180910390f35b6103216004803603602081101561071e57600080fd5b5035611707565b61072d611719565b604080516001600160a01b039092168252519081900360200190f35b61035a6004803603602081101561075f57600080fd5b5035611728565b61072d6004803603602081101561077c57600080fd5b5035611749565b61038b6004803603604081101561079957600080fd5b810190602081018135600160201b8111156107b357600080fd5b8201836020820111156107c557600080fd5b803590602001918460018302840111600160201b831117156107e657600080fd5b919350915035611764565b6103216004803603602081101561080757600080fd5b50356001600160801b03166117dc565b61035a6004803603602081101561082d57600080fd5b50356001600160a01b0316611800565b61072d6004803603602081101561085357600080fd5b5035611841565b6103216004803603602081101561087057600080fd5b503561185c565b61038b6004803603602081101561088d57600080fd5b50356001600160a01b0316611872565b61035a600480360360208110156108b357600080fd5b50356118c5565b61072d6118e5565b61038b600480360360208110156108d857600080fd5b50356118f4565b61038b600480360360408110156108f557600080fd5b50803590602001356001600160a01b0316611944565b61038b6004803603606081101561092157600080fd5b81359190810190604081016020820135600160201b81111561094257600080fd5b82018360208201111561095457600080fd5b803590602001918460208302840111600160201b8311171561097557600080fd5b919390929091602081019035600160201b81111561099257600080fd5b8201836020820111156109a457600080fd5b803590602001918460208302840111600160201b831117156109c557600080fd5b5090925090506119aa565b61072d600480360360208110156109e657600080fd5b5035611ae2565b61038b60048036036040811015610a0357600080fd5b6001600160801b038235169190810190604081016020820135600160201b811115610a2d57600080fd5b820183602082011115610a3f57600080fd5b803590602001918460208302840111600160201b83111715610a6057600080fd5b509092509050611afd565b61038b60048036036040811015610a8157600080fd5b50803590602001356001600160a01b0316611b6a565b61038b60048036036020811015610aad57600080fd5b50356001600160a01b0316611baf565b61032160048036036020811015610ad357600080fd5b5035611c02565b61038b60048036036020811015610af057600080fd5b50356001600160a01b0316611c0e565b61038b60048036036060811015610b1657600080fd5b508035906001600160a01b036020820135169060400135611c4c565b61038b60048036036040811015610b4857600080fd5b506001600160a01b0381351690602001351515611d34565b61038b60048036036040811015610b7657600080fd5b5080356001600160801b031690602001356001600160a01b0316611da2565b61038b60048036036020811015610bab57600080fd5b50356001600160a01b0316611dd1565b61035a60048036036020811015610bd157600080fd5b5035611e0e565b61035a60048036036020811015610bee57600080fd5b5035611e18565b61038b60048036036080811015610c0b57600080fd5b506001600160a01b03813581169160208101359091169060408101359060600135611e2d565b61038b60048036036020811015610c4757600080fd5b5035611f68565b61038b60048036036040811015610c6457600080fd5b50803590602001356001600160a01b0316611f9f565b61038b60048036036020811015610c9057600080fd5b50356001600160a01b0316612005565b61032161211a565b61035a60048036036020811015610cbe57600080fd5b5035612122565b61038b60048036036080811015610cdb57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610d1557600080fd5b820183602082011115610d2757600080fd5b803590602001918460018302840111600160201b83111715610d4857600080fd5b50909250905061212e565b61035a60048036036020811015610d6957600080fd5b50356122a0565b61035a60048036036040811015610d8657600080fd5b506001600160a01b03813581169160200135166122b5565b61038b600480360360a0811015610db457600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b811115610df357600080fd5b820183602082011115610e0557600080fd5b803590602001918460018302840111600160201b83111715610e2657600080fd5b5090925090506122e3565b61038b60048036036060811015610e4757600080fd5b506001600160a01b03813516906020810135906040013561254f565b61038b60048036036040811015610e7957600080fd5b81359190810190604081016020820135600160201b811115610e9a57600080fd5b820183602082011115610eac57600080fd5b803590602001918460208302840111600160201b83111715610ecd57600080fd5b50909250905061271c565b6000610ee382611728565b15610f1d576000828152600260205260409020546001600160a01b03848116911614610f10576000610f13565b60015b60ff169050610f40565b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b6000610f51826127c8565b80610f6f57506001600160e01b03198216600160e21b6303a24d0702145b90505b919050565b3360009081526003602052604090205460ff16610f9357600080fd5b6000908152600960205260409020805460ff19166001179055565b6000610fb982612122565b610fc257600080fd5b5060009081526005602052604090205490565b60056020526000908152604090205481565b600b5460408051600160e21b6303a24d070281526004810184905290516060926001600160a01b031691630e89341c916024808301926000929190829003018186803b15801561103657600080fd5b505afa15801561104a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561107357600080fd5b810190808051600160201b81111561108a57600080fd5b8201602081018481111561109d57600080fd5b8151600160201b8111828201871017156110b657600080fd5b50909695505050505050565b3360009081526003602052604090205460ff166110de57600080fd5b6001600160a01b03166000908152600360205260409020805460ff19169055565b6001600160a01b03871661114b5760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020613130833981519152604482015290519081900360640190fd5b8483146111a25760408051600160e51b62461bcd02815260206004820152601760248201527f4172726179206c656e677468206d757374206d61746368000000000000000000604482015290519081900360640190fd5b6001600160a01b0388163314806111e057506001600160a01b03881660009081526001602081815260408084203385529091529091205460ff161515145b61121e57604051600160e51b62461bcd02815260040180806020018281038252602f815260200180613101602f913960400191505060405180910390fd5b60005b8581101561139557600087878381811061123757fe5b905060200201359050600086868481811061124e57fe5b90506020020135905061126082612122565b156112b7576000828152600260205260409020546001600160a01b038c811691161461128b57600080fd5b600082815260026020526040902080546001600160a01b0319166001600160a01b038c1617905561138b565b6000828152602081815260408083206001600160a01b038f1684529091529020546112e8908263ffffffff61281416565b60008084815260200190815260200160002060008d6001600160a01b03166001600160a01b031681526020019081526020016000208190555061136960008084815260200190815260200160002060008c6001600160a01b03166001600160a01b03168152602001908152602001600020548261282690919063ffffffff16565b6000838152602081815260408083206001600160a01b038f1684529091529020555b5050600101611221565b50866001600160a01b0316886001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb898989896040518080602001806020018381038352878782818152602001925060200280828437600083820152601f01601f19169091018481038352858152602090810191508690860280828437600083820152604051601f909101601f19169092018290039850909650505050505050a4611459876001600160a01b0316612833565b156115025761150233898989898080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b91829185019084908082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a915089908190840183828082843760009201919091525061283992505050565b5050505050505050565b6001600160a01b031660009081526003602052604090205460ff1690565b3360009081526003602052604090205460ff1661154657600080fd5b30311561157c576040513390303180156108fc02916000818181858888f1935050505015801561157a573d6000803e3d6000fd5b505b565b3360009081526003602052604090205460ff1661159a57600080fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60608382146115ca57600080fd5b6040805185815260208087028201019091526060908580156115f6578160200160208202803883390190505b50905060005b858110156116fd57600085858381811061161257fe5b90506020020135905061162481611728565b1561168f5787878381811061163557fe5b600084815260026020908152604090912054910292909201356001600160a01b03908116921691909114905061166c57600061166f565b60015b60ff1683838151811061167e57fe5b6020026020010181815250506116f4565b6000818152602081905260408120908989858181106116aa57fe5b905060200201356001600160a01b03166001600160a01b03166001600160a01b03168152602001908152602001600020548383815181106116e757fe5b6020026020010181815250505b506001016115fc565b5095945050505050565b600160801b600160ff1b031660801c90565b600b546001600160a01b031681565b6000600160ff1b808316148015610f6f5750506001600160801b0316151590565b6000908152600260205260409020546001600160a01b031690565b61176d33611800565b61177657600080fd5b807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b848460405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2505050565b6001600160801b031660801b600160ff1b1760009081526005602052604090205490565b6001600160a01b03811660009081526004602052604081205460ff1680610f6f5750506001600160a01b031660009081526003602052604090205460ff1690565b6007602052600090815260409020546001600160a01b031681565b6fffffffffffffffffffffffffffffffff191690565b3360009081526003602052604090205460ff1661188e57600080fd5b6001600160a01b0381166118a157600080fd5b6001600160a01b03166000908152600360205260409020805460ff19166001179055565b6000600160ff1b808316148015610f6f5750506001600160801b03161590565b600a546001600160a01b031681565b3360009081526003602052604090205460ff1661191057600080fd5b6040805182815260006020820181905282519092839233926000805160206130b3833981519152929181900390910190a450565b3360009081526003602052604090205460ff1661196057600080fd5b60008281526009602052604090205460ff161561197c57600080fd5b60009182526007602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b6119b333611800565b6119bc57600080fd5b6119c585611e0e565b6119ce57600080fd5b60005b83811015611ada5760008585838181106119e757fe5b905060200201356001600160a01b031690506000848484818110611a0757fe5b60008b8152602081815260408083206001600160a01b0389168452825290912054910292909201359250611a439183915063ffffffff61282616565b6000898152602081815260408083206001600160a01b0387168085529083528184209490945580518c8152918201859052805133926000805160206130b383398151915292908290030190a4611a9c6000838a84612abb565b611aae826001600160a01b0316612833565b15611ad057611ad03333848b8560405180602001604052806000815250612b4a565b50506001016119d1565b505050505050565b6006602052600090815260409020546001600160a01b031681565b611b0633611800565b611b0f57600080fd5b60006080846001600160801b0316901b600160ff1b179050611b6481848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612d0a92505050565b50505050565b611b7333611800565b611b7c57600080fd5b611b8582612122565b611b8e57600080fd5b611b9782611c02565b15611ba157600080fd5b611bab8282612ea1565b5050565b3360009081526003602052604090205460ff16611bcb57600080fd5b6001600160a01b038116611bde57600080fd5b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6001600160801b031690565b3360009081526003602052604090205460ff16611c2a57600080fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b611c5533611800565b611c5e57600080fd5b611c6783611e0e565b611c7057600080fd5b6000838152602081815260408083206001600160a01b0386168452909152902054611ca290829063ffffffff61282616565b6000848152602081815260408083206001600160a01b038716808552908352818420949094558051878152918201859052805133926000805160206130b383398151915292908290030190a4611cfb6000838584612abb565b611d0d826001600160a01b0316612833565b15611d2f57611d2f333384868560405180602001604052806000815250612b4a565b505050565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b611dab33611800565b611db457600080fd5b600160ff1b6001600160801b03831660801b17611d2f8183612ea1565b3360009081526003602052604090205460ff16611ded57600080fd5b6001600160a01b03166000908152600460205260409020805460ff19169055565b600160ff1b161590565b60096020526000908152604090205460ff1681565b6000828152600760205260409020546001600160a01b0316338114611e5157600080fd5b6001600160a01b038416611e9d5760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020613130833981519152604482015290519081900360640190fd5b6000838152602081815260408083206001600160a01b0389168452909152902054611ece908363ffffffff61281416565b6000848152602081815260408083206001600160a01b038a81168552925280832093909355861681522054611f039083612826565b6000848152602081815260408083206001600160a01b03808a168086529184529382902094909455805187815291820186905280519289169233926000805160206130b383398151915292908290030190a4611f6185858585612abb565b5050505050565b3360009081526003602052604090205460ff16611f8457600080fd5b6000908152600860205260409020805460ff19166001179055565b3360009081526003602052604090205460ff16611fbb57600080fd5b60008281526008602052604090205460ff1615611fd757600080fd5b60009182526006602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b3360009081526003602052604090205460ff1661202157600080fd5b60408051600160e01b6370a0823102815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b15801561206e57600080fd5b505afa158015612082573d6000803e3d6000fd5b505050506040513d602081101561209857600080fd5b505160408051600160e01b63a9059cbb0281523360048201526024810183905290519192506001600160a01b0384169163a9059cbb916044808201926020929091908290030181600087803b1580156120f057600080fd5b505af1158015612104573d6000803e3d6000fd5b505050506040513d6020811015611b6457600080fd5b600160ff1b81565b600160ff1b9081161490565b600061213984611707565b6000818152600660205260409020549091506001600160a01b031633811461216057600080fd5b866001600160a01b031661217386611749565b6001600160a01b03161461218657600080fd5b6001600160a01b0386166121d25760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020613130833981519152604482015290519081900360640190fd5b60008581526002602090815260409182902080546001600160a01b0319166001600160a01b038a8116918217909255835189815260019381019390935283519093918b169233926000805160206130b383398151915292918290030190a461223b878787612ffc565b61224d866001600160a01b0316612833565b156122975761229786888888600189898080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612b4a92505050565b50505050505050565b60086020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6001600160a01b03851661232f5760408051600160e51b62461bcd02815260206004820152601b6024820152600080516020613130833981519152604482015290519081900360640190fd5b6001600160a01b03861633148061236d57506001600160a01b03861660009081526001602081815260408084203385529091529091205460ff161515145b6123ab57604051600160e51b62461bcd02815260040180806020018281038252602f815260200180613101602f913960400191505060405180910390fd5b6123b484612122565b15612416576000848152600260205260409020546001600160a01b038781169116146123df57600080fd5b600084815260026020526040902080546001600160a01b0319166001600160a01b038716179055612411868686612ffc565b6124a9565b6000848152602081815260408083206001600160a01b038a168452909152902054612447908463ffffffff61281416565b6000858152602081815260408083206001600160a01b038b8116855292528083209390935587168152205461247c9084612826565b6000858152602081815260408083206001600160a01b038a1684529091529020556124a986868686612abb565b846001600160a01b0316866001600160a01b0316336001600160a01b03166000805160206130b38339815191528787604051808381526020018281526020019250505060405180910390a4612506856001600160a01b0316612833565b15611ada57611ada338787878787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612b4a92505050565b6001600160a01b03831633148061258d57506001600160a01b03831660009081526001602081815260408084203385529091529091205460ff161515145b6125cb57604051600160e51b62461bcd02815260040180806020018281038252602f815260200180613101602f913960400191505060405180910390fd5b60006125d683612122565b15612638576000838152600260205260409020546001600160a01b0385811691161461260157600080fd5b600083815260026020526040902080546001600160a01b0319166001600160a01b038316179055612633848285612ffc565b6126cb565b6000838152602081815260408083206001600160a01b0388168452909152902054612669908363ffffffff61281416565b6000848152602081815260408083206001600160a01b03898116855292528083209390935583168152205461269e9083612826565b6000848152602081815260408083206001600160a01b03861684529091529020556126cb84828585612abb565b806001600160a01b0316846001600160a01b0316336001600160a01b03166000805160206130b38339815191528686604051808381526020018281526020019250505060405180910390a450505050565b61272533611800565b61272e57600080fd5b61273783612122565b61278b5760408051600160e51b62461bcd02815260206004820152601660248201527f5f74797065206d757374206265204e4654207479706500000000000000000000604482015290519081900360640190fd5b611d2f83838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612d0a92505050565b60006001600160e01b03198216600160e01b6301ffc9a70214806127ff57506001600160e01b03198216600160e11b636cdb3d1302145b1561280c57506001610f72565b506000919050565b60008282111561282057fe5b50900390565b81810182811015610f4057fe5b3b151590565b60006060856001600160a01b0316888887878760405160240180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156128c75781810151838201526020016128af565b50505050905001848103835286818151815260200191508051906020019060200280838360005b838110156129065781810151838201526020016128ee565b50505050905001848103825285818151815260200191508051906020019080838360005b8381101561294257818101518382015260200161292a565b50505050905090810190601f16801561296f5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b0316600160e01b63bc197c810217815290518251929b50995089985096509450849350869250859150505b602083106129d75780518252601f1990920191602091820191016129b8565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612a39576040519150601f19603f3d011682016040523d82523d6000602084013e612a3e565b606091505b508051919350915060009015612a55575060208101515b6001600160e01b03198116600160e01b63ac007889021415612a7657612ab0565b604051600160e51b62461bcd02815260040180806020018281038252602e8152602001806130d3602e913960400191505060405180910390fd5b505050505050505050565b6000828152600760205260409020546001600160a01b03168015611f615760408051600160e01b634a3931490281526001600160a01b038781166004830152868116602483015260448201859052915191831691634a3931499160648082019260009290919082900301818387803b158015612b3657600080fd5b505af1158015612ab0573d6000803e3d6000fd5b60006060856001600160a01b0316888887878760405160240180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612bd9578181015183820152602001612bc1565b50505050905090810190601f168015612c065780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b0316600160e01b63f23a6e610217815290518251929950975087965094509250829150849050835b60208310612c6b5780518252601f199092019160209182019101612c4c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612ccd576040519150601f19603f3d011682016040523d82523d6000602084013e612cd2565b606091505b508051919350915060009015612ce9575060208101515b6001600160e01b03198116600160e01b634dc21a2f021415612a7657612ab0565b600082815260056020526040812054600101905b8251811015612e69576000838281518110612d3557fe5b6020908102919091018101518385018717600081815260028452604080822080546001600160a01b0319166001600160a01b0386169081179091558151848152600196810196909652815194965092949293919233926000805160206130b3833981519152929181900390910190a4612db060008383612ffc565b600a546001600160a01b031615612e2a57600a5460408051600160e11b6323c5e6590281526004810184905290516001600160a01b039092169163478bccb29160248082019260009290919082900301818387803b158015612e1157600080fd5b505af1158015612e25573d6000803e3d6000fd5b505050505b612e3c826001600160a01b0316612833565b15612e5f57612e5f33338484600160405180602001604052806000815250612b4a565b5050600101612d1e565b506000838152600560205260409020548251612e8a9163ffffffff61282616565b600093845260056020526040909320929092555050565b60008281526005602090815260408083205460019081018087178086526002855283862080546001600160a01b0319166001600160a01b0389169081179091558451828152958601939093528351919590949293909233926000805160206130b3833981519152929181900390910190a4612f1e60008483612ffc565b600084815260056020526040902054612f3e90600163ffffffff61282616565b600085815260056020526040902055600a546001600160a01b031615612fc757600a5460408051600160e11b6323c5e6590281526004810184905290516001600160a01b039092169163478bccb29160248082019260009290919082900301818387803b158015612fae57600080fd5b505af1158015612fc2573d6000803e3d6000fd5b505050505b612fd9836001600160a01b0316612833565b15611b6457611b6433338584600160405180602001604052806000815250612b4a565b600061300782611707565b9050600061301483611c02565b6000838152600660205260409020549091506001600160a01b03168015611ada5760408051600160e01b634a3931490281526001600160a01b038881166004830152878116602483015260448201859052915191831691634a3931499160648082019260009290919082900301818387803b15801561309257600080fd5b505af11580156130a6573d6000803e3d6000fd5b5050505050505050505056fec3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62526563656976657220636f6e747261637420646964206e6f742061636365707420746865207472616e736665722e4e656564206f70657261746f7220617070726f76616c20666f7220337264207061727479207472616e73666572732e63616e6e6f742073656e6420746f207a65726f20616464726573730000000000a165627a7a72305820b646e7895c5080c428c3e90061f150694b6bca67c583b7b357d8db519a0d9c040029

Deployed Bytecode Sourcemap

44258:10452:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44258:10452:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30997:217;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30997:217:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;44775:215;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44775:215:0;-1:-1:-1;;;;;;44775:215:0;;:::i;:::-;;;;;;;;;;;;;;;;;;51661:117;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51661:117:0;;:::i;:::-;;50612:212;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50612:212:0;;:::i;44374:44::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44374:44:0;;:::i;50091:115::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50091:115:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;50091:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32918:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32918:109:0;-1:-1:-1;;;;;32918:109:0;;:::i;29695:1294::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;29695:1294:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;29695:1294:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29695:1294:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;29695:1294:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;29695:1294:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29695:1294:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;29695:1294:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;29695:1294:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29695:1294:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;29695:1294:0;;-1:-1:-1;29695:1294:0;-1:-1:-1;29695:1294:0;:::i;32648:104::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32648:104:0;-1:-1:-1;;;;;32648:104:0;;:::i;50214:171::-;;;:::i;49957:126::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49957:126:0;-1:-1:-1;;;;;49957:126:0;;:::i;31222:583::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31222:583:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;31222:583:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;31222:583:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;31222:583:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;31222:583:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;31222:583:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;31222:583:0;;-1:-1:-1;31222:583:0;-1:-1:-1;31222:583:0;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;31222:583:0;;;;;;;;;;;;;;;;;27439:111;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27439:111:0;;:::i;49911:37::-;;;:::i;:::-;;;;-1:-1:-1;;;;;49911:37:0;;;;;;;;;;;;;;27789:218;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27789:218:0;;:::i;28015:101::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28015:101:0;;:::i;49792:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49792:111:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;49792:111:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;49792:111:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;49792:111:0;;-1:-1:-1;49792:111:0;-1:-1:-1;49792:111:0;;:::i;50832:198::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50832:198:0;-1:-1:-1;;;;;50832:198:0;;:::i;33129:133::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33129:133:0;-1:-1:-1;;;;;33129:133:0;;:::i;44481:45::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44481:45:0;;:::i;27318:115::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27318:115:0;;:::i;32760:150::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32760:150:0;-1:-1:-1;;;;;32760:150:0;;:::i;27556:227::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27556:227:0;;:::i;44648:41::-;;;:::i;45143:222::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45143:222:0;;:::i;51420:164::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51420:164:0;;;;;;-1:-1:-1;;;;;51420:164:0;;:::i;48907:877::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48907:877:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;48907:877:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48907:877:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;48907:877:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;48907:877:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48907:877:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;48907:877:0;;-1:-1:-1;48907:877:0;-1:-1:-1;48907:877:0;:::i;44427:47::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44427:47:0;;:::i;46799:206::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;46799:206:0;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;46799:206:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;46799:206:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;46799:206:0;;-1:-1:-1;46799:206:0;-1:-1:-1;46799:206:0;:::i;45727:274::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45727:274:0;;;;;;-1:-1:-1;;;;;45727:274:0;;:::i;33270:165::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33270:165:0;-1:-1:-1;;;;;33270:165:0;;:::i;27196:116::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27196:116:0;;:::i;45373:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45373:131:0;-1:-1:-1;;;;;45373:131:0;;:::i;48219:680::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48219:680:0;;;-1:-1:-1;;;;;48219:680:0;;;;;;;;;;:::i;23288:205::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23288:205:0;;;;;;;;;;:::i;45512:207::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45512:207:0;;-1:-1:-1;;;;;45512:207:0;;;;;-1:-1:-1;;;;;45512:207:0;;:::i;33443:121::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33443:121:0;-1:-1:-1;;;;;33443:121:0;;:::i;27083:107::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27083:107:0;;:::i;44591:50::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44591:50:0;;:::i;52837:555::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;52837:555:0;;;;;;;;;;;;;;;;;;;;;;:::i;51289:123::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51289:123:0;;:::i;51038:174::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51038:174:0;;;;;;-1:-1:-1;;;;;51038:174:0;;:::i;50393:211::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50393:211:0;-1:-1:-1;;;;;50393:211:0;;:::i;26634:46::-;;;:::i;26957:120::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26957:120:0;;:::i;51786:656::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;51786:656:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;51786:656:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51786:656:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;51786:656:0;;-1:-1:-1;51786:656:0;-1:-1:-1;51786:656:0;:::i;44533:51::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44533:51:0;;:::i;23780:151::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23780:151:0;;;;;;;;;;:::i;28251:1219::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;28251:1219:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;28251:1219:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28251:1219:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;28251:1219:0;;-1:-1:-1;28251:1219:0;-1:-1:-1;28251:1219:0;:::i;53708:999::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;53708:999:0;;;;;;;;;;;;;:::i;47013:248::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;47013:248:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;47013:248:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47013:248:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;47013:248:0;;-1:-1:-1;47013:248:0;-1:-1:-1;47013:248:0;:::i;30997:217::-;31068:7;31092:22;31110:3;31092:17;:22::i;:::-;31088:79;;;31136:13;;;;:8;:13;;;;;;-1:-1:-1;;;;;31136:23:0;;;:13;;:23;:31;;31166:1;31136:31;;;31162:1;31136:31;31129:38;;;;;;31088:79;-1:-1:-1;31185:8:0;:13;;;;;;;;;;;-1:-1:-1;;;;;31185:21:0;;;;;;;;;;30997:217;;;;;:::o;44775:215::-;44844:4;44881:37;44905:12;44881:23;:37::i;:::-;:101;;;-1:-1:-1;;;;;;;44935:47:0;;-1:-1:-1;;;;;44935:47:0;44881:101;44861:121;;44775:215;;;;:::o;51661:117::-;32608:10;32595:24;;;;:12;:24;;;;;;;;32587:33;;;;;;51738:25;;;;:18;:25;;;;;:32;;-1:-1:-1;;51738:32:0;51766:4;51738:32;;;51661:117::o;50612:212::-;50682:7;50762:20;50776:5;50762:13;:20::i;:::-;50754:29;;;;;;-1:-1:-1;50801:15:0;;;;:8;:15;;;;;;;50612:212::o;44374:44::-;;;;;;;;;;;;;:::o;50091:115::-;50178:11;;:20;;;-1:-1:-1;;;;;50178:20:0;;;;;;;;;;50140:13;;-1:-1:-1;;;;;50178:11:0;;:15;;:20;;;;;:11;;:20;;;;;;;:11;:20;;;5:2:-1;;;;30:1;27;20:12;5:2;50178:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;50178:20:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;50178:20:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;13:2;5:11;;2:2;;;29:1;26;19:12;2:2;50178:20:0;;;;;;-1:-1:-1;;;14:3;11:20;8:2;;;44:1;41;34:12;8:2;62:21;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;213:10;;-1:-1;;;244:29;;285:43;;;282:58;-1:-1;233:115;230:2;;;361:1;358;351:12;230:2;-1:-1;50178:20:0;;50091:115;-1:-1:-1;;;;;;50091:115:0:o;32918:109::-;32608:10;32595:24;;;;:12;:24;;;;;;;;32587:33;;;;;;-1:-1:-1;;;;;32995:23:0;;;;;:12;:23;;;;;32988:31;;-1:-1:-1;;32988:31:0;;;32918:109::o;29695:1294::-;-1:-1:-1;;;;;29859:19:0;;29851:59;;;;;-1:-1:-1;;;;;29851:59:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;29851:59:0;;;;;;;;;;;;;;;29929:29;;;29921:65;;;;;-1:-1:-1;;;;;29921:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30138:19:0;;30147:10;30138:19;;:66;;-1:-1:-1;;;;;;30161:23:0;;;;;;:16;:23;;;;;;;;30185:10;30161:35;;;;;;;;;;;:43;;;30138:66;30130:126;;;;-1:-1:-1;;;;;30130:126:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30274:9;30269:501;30289:15;;;30269:501;;;30394:10;30407:4;;30412:1;30407:7;;;;;;;;;;;;;30394:20;;30429:13;30445:7;;30453:1;30445:10;;;;;;;;;;;;;30429:26;;30476:17;30490:2;30476:13;:17::i;:::-;30472:287;;;30522:12;;;;:8;:12;;;;;;-1:-1:-1;;;;;30522:21:0;;;:12;;:21;30514:30;;;;;;30563:12;;;;:8;:12;;;;;:18;;-1:-1:-1;;;;;;30563:18:0;-1:-1:-1;;;;;30563:18:0;;;;;30472:287;;;30644:8;:12;;;;;;;;;;;-1:-1:-1;;;;;30644:19:0;;;;;;;;;;:30;;30668:5;30644:30;:23;:30;:::i;:::-;30622:8;:12;30631:2;30622:12;;;;;;;;;;;:19;30635:5;-1:-1:-1;;;;;30622:19:0;-1:-1:-1;;;;;30622:19:0;;;;;;;;;;;;:52;;;;30715:28;30725:8;:12;30734:2;30725:12;;;;;;;;;;;:17;30738:3;-1:-1:-1;;;;;30725:17:0;-1:-1:-1;;;;;30725:17:0;;;;;;;;;;;;;30715:5;:9;;:28;;;;:::i;:::-;30693:8;:12;;;;;;;;;;;-1:-1:-1;;;;;30693:17:0;;;;;;;;;:50;30472:287;-1:-1:-1;;30306:3:0;;30269:501;;;;30820:3;-1:-1:-1;;;;;30787:52:0;30813:5;-1:-1:-1;;;;;30787:52:0;30801:10;-1:-1:-1;;;;;30787:52:0;;30825:4;;30831:7;;30787:52;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;137:4;117:14;-1:-1;;113:30;157:16;;;30787:52:0;;;;;;;;;;;;;-1:-1:-1;30787:52:0;;;;;;;1:33:-1;99:1;81:16;;;74:27;30787:52:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;30787:52:0;;;;-1:-1:-1;30787:52:0;;-1:-1:-1;;;;;;;30787:52:0;30856:16;:3;-1:-1:-1;;;;;30856:14:0;;:16::i;:::-;30852:130;;;30889:81;30925:10;30937:5;30944:3;30949:4;;30889:81;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;30889:81:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30955:7:0;;-1:-1:-1;30955:7:0;;;;30889:81;;;30955:7;;30889:81;30955:7;30889:81;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;;30889:81:0;;;;137:4:-1;30889:81:0;;;;;;;;;;;;;;;;;;-1:-1:-1;30964:5:0;;-1:-1:-1;30964:5:0;;;;30889:81;;30964:5;;;;30889:81;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;30889:35:0;;-1:-1:-1;;;30889:81:0:i;:::-;29695:1294;;;;;;;;:::o;32648:104::-;-1:-1:-1;;;;;32725:19:0;32701:4;32725:19;;;:12;:19;;;;;;;;;32648:104::o;50214:171::-;32608:10;32595:24;;;;:12;:24;;;;;;;;32587:33;;;;;;50281:4;50273:21;:25;50269:109;;50324:42;;:10;;50352:4;50344:21;50324:42;;;;;;;;;50344:21;50324:10;:42;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;50324:42:0;50269:109;50214:171::o;49957:126::-;32608:10;32595:24;;;;:12;:24;;;;;;;;32587:33;;;;;;50049:11;:26;;-1:-1:-1;;;;;;50049:26:0;-1:-1:-1;;;;;50049:26:0;;;;;;;;;;49957:126::o;31222:583::-;31322:16;31361:29;;;31353:38;;;;;;31433:29;;;;;;;;;;;;;;;;31404:26;;31447:7;31433:29;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;31433:29:0;-1:-1:-1;31404:58:0;-1:-1:-1;31480:9:0;31475:294;31495:18;;;31475:294;;;31535:10;31548:4;;31553:1;31548:7;;;;;;;;;;;;;31535:20;;31574:21;31592:2;31574:17;:21::i;:::-;31570:188;;;31647:7;;31655:1;31647:10;;;;;;;31631:12;;;;:8;31647:10;31631:12;;;;;;;;31647:10;;;;;;;-1:-1:-1;;;;;31647:10:0;;;31631:12;;:26;;;;;-1:-1:-1;31631:34:0;;31664:1;31631:34;;;31660:1;31631:34;31616:49;;:9;31626:1;31616:12;;;;;;;;;;;;;:49;;;;;31570:188;;;31718:8;:12;;;;;;;;;;;31731:7;;31739:1;31731:10;;;;;;;;;;;;;-1:-1:-1;;;;;31731:10:0;-1:-1:-1;;;;;31718:24:0;-1:-1:-1;;;;;31718:24:0;;;;;;;;;;;;;31703:9;31713:1;31703:12;;;;;;;;;;;;;:39;;;;;31570:188;-1:-1:-1;31515:3:0;;31475:294;;;-1:-1:-1;31788:9:0;31222:583;-1:-1:-1;;;;;31222:583:0:o;27439:111::-;-1:-1:-1;;;;;;;27520:14:0;27539:3;27519:23;;27439:111::o;49911:37::-;;;-1:-1:-1;;;;;49911:37:0;;:::o;27789:218::-;27849:4;-1:-1:-1;;;26672:8:0;27936:3;:17;:32;27935:64;;;;-1:-1:-1;;;;;;;27974:19:0;:24;;;27789:218::o;28015:101::-;28068:7;28095:13;;;:8;:13;;;;;;-1:-1:-1;;;;;28095:13:0;;28015:101::o;49792:111::-;33078:22;33089:10;33078;:22::i;:::-;33070:31;;;;;;49891:3;49881:14;49885:4;;49881:14;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;49881:14:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;49881:14:0;;;;-1:-1:-1;49881:14:0;;-1:-1:-1;;;;49881:14:0;49792:111;;;:::o;50832:198::-;-1:-1:-1;;;;;50950:14:0;50968:3;50950:21;-1:-1:-1;;;50949:36:0;50907:7;51003:19;;;:8;:19;;;;;;;50832:198::o;33129:133::-;-1:-1:-1;;;;;33209:22:0;;33185:4;33209:22;;;:15;:22;;;;;;;;;:45;;-1:-1:-1;;;;;;;33235:19:0;;;;;:12;:19;;;;;;;;;33129:133::o;44481:45::-;;;;;;;;;;;;-1:-1:-1;;;;;44481:45:0;;:::o;27318:115::-;-1:-1:-1;;27410:15:0;;27318:115::o;32760:150::-;32608:10;32595:24;;;;:12;:24;;;;;;;;32587:33;;;;;;-1:-1:-1;;;;;32835:23:0;;32827:32;;;;;;-1:-1:-1;;;;;32872:23:0;;;;;:12;:23;;;;;:30;;-1:-1:-1;;32872:30:0;32898:4;32872:30;;;32760:150::o;27556:227::-;27620:4;-1:-1:-1;;;26672:8:0;27712:3;:17;:32;27711:64;;;;-1:-1:-1;;;;;;;27750:19:0;:24;;27556:227::o;44648:41::-;;;-1:-1:-1;;;;;44648:41:0;;:::o;45143:222::-;32608:10;32595:24;;;;:12;:24;;;;;;;;32587:33;;;;;;45293:64;;;;;;45342:3;45293:64;;;;;;;;45342:3;;;;45308:10;;-1:-1:-1;;;;;;;;;;;45293:64:0;;;;;;;;;;45143:222;:::o;51420:164::-;32608:10;32595:24;;;;:12;:24;;;;;;;;32587:33;;;;;;51517:25;;;;:18;:25;;;;;;;;51516:26;51508:35;;;;;;51554:14;;;;:7;:14;;;;;;:22;;-1:-1:-1;;;;;;51554:22:0;-1:-1:-1;;;;;51554:22:0;;;;;;;;;51420:164::o;48907:877::-;33078:22;33089:10;33078;:22::i;:::-;33070:31;;;;;;49041:15;49052:3;49041:10;:15::i;:::-;49033:24;;;;;;49075:9;49070:707;49090:14;;;49070:707;;;49128:10;49141:3;;49145:1;49141:6;;;;;;;;;;;;;-1:-1:-1;;;;;49141:6:0;49128:19;;49162:16;49181:11;;49193:1;49181:14;;;;;;;49291:8;:13;;;49181:14;49291:13;;;;;;;-1:-1:-1;;;;;49291:17:0;;;;;;;;;;49181:14;;;;;;;;-1:-1:-1;49278:31:0;;49181:14;;-1:-1:-1;49278:31:0;:12;:31;:::i;:::-;49258:8;:13;;;;;;;;;;;-1:-1:-1;;;;;49258:17:0;;;;;;;;;;;:51;;;;49497:59;;;;;;;;;;;;;49512:10;;-1:-1:-1;;;;;;;;;;;49497:59:0;;;;;;;;49571:45;49592:3;49598:2;49602:3;49607:8;49571:12;:45::i;:::-;49637:15;:2;-1:-1:-1;;;;;49637:13:0;;:15::i;:::-;49633:133;;;49673:77;49704:10;49716;49728:2;49732:3;49737:8;49673:77;;;;;;;;;;;;:30;:77::i;:::-;-1:-1:-1;;49106:3:0;;49070:707;;;;48907:877;;;;;:::o;44427:47::-;;;;;;;;;;;;-1:-1:-1;;;;;44427:47:0;;:::o;46799:206::-;33078:22;33089:10;33078;:22::i;:::-;33070:31;;;;;;46901:14;46937:3;46927:5;-1:-1:-1;;;;;46919:14:0;:21;;-1:-1:-1;;;46918:36:0;46901:53;;46965:32;46982:9;46993:3;;46965:32;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;46965:16:0;;-1:-1:-1;;;46965:32:0:i;:::-;33112:1;46799:206;;;:::o;45727:274::-;33078:22;33089:10;33078;:22::i;:::-;33070:31;;;;;;45874:20;45888:5;45874:13;:20::i;:::-;45866:29;;;;;;45914:26;45934:5;45914:19;:26::i;:::-;:31;45906:40;;;;;;45959:34;45982:5;45989:3;45959:22;:34::i;:::-;45727:274;;:::o;33270:165::-;32608:10;32595:24;;;;:12;:24;;;;;;;;32587:33;;;;;;-1:-1:-1;;;;;33351:26:0;;33343:35;;;;;;-1:-1:-1;;;;;33391:29:0;;;;;:15;:29;;;;;:36;;-1:-1:-1;;33391:36:0;33423:4;33391:36;;;33270:165::o;27196:116::-;-1:-1:-1;;;;;27285:19:0;;27196:116::o;45373:131::-;32608:10;32595:24;;;;:12;:24;;;;;;;;32587:33;;;;;;45469:12;:27;;-1:-1:-1;;;;;;45469:27:0;-1:-1:-1;;;;;45469:27:0;;;;;;;;;;45373:131::o;48219:680::-;33078:22;33089:10;33078;:22::i;:::-;33070:31;;;;;;48335:15;48346:3;48335:10;:15::i;:::-;48327:24;;;;;;48441:8;:13;;;;;;;;;;;-1:-1:-1;;;;;48441:18:0;;;;;;;;;;48427:33;;:9;;:33;:13;:33;:::i;:::-;48406:8;:13;;;;;;;;;;;-1:-1:-1;;;;;48406:18:0;;;;;;;;;;;:54;;;;48632:61;;;;;;;;;;;;;48647:10;;-1:-1:-1;;;;;;;;;;;48632:61:0;;;;;;;;48704:47;48725:3;48731;48736;48741:9;48704:12;:47::i;:::-;48768:16;:3;-1:-1:-1;;;;;48768:14:0;;:16::i;:::-;48764:128;;;48801:79;48832:10;48844;48856:3;48861;48866:9;48801:79;;;;;;;;;;;;:30;:79::i;:::-;48219:680;;;:::o;23288:205::-;23387:10;23370:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;23370:39:0;;;;;;;;;;;;:51;;-1:-1:-1;;23370:51:0;;;;;;;;;;23437:48;;;;;;;23370:39;;23387:10;23437:48;;;;;;;;;;;23288:205;;:::o;45512:207::-;33078:22;33089:10;33078;:22::i;:::-;33070:31;;;;;;-1:-1:-1;;;;;;;;45627:14:0;;45645:3;45627:21;45626:36;45673:38;45626:36;45707:3;45673:22;:38::i;33443:121::-;32608:10;32595:24;;;;:12;:24;;;;;;;;32587:33;;;;;;-1:-1:-1;;;;;33526:29:0;;;;;:15;:29;;;;;33519:37;;-1:-1:-1;;33519:37:0;;;33443:121::o;27083:107::-;-1:-1:-1;;;27160:17:0;:22;;27083:107::o;44591:50::-;;;;;;;;;;;;;;;:::o;52837:555::-;52949:16;52968:17;;;:7;:17;;;;;;-1:-1:-1;;;;;52968:17:0;53004:10;:28;;52996:37;;;;;;-1:-1:-1;;;;;53054:19:0;;53046:59;;;;;-1:-1:-1;;;;;53046:59:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;53046:59:0;;;;;;;;;;;;;;;53146:8;:18;;;;;;;;;;;-1:-1:-1;;;;;53146:25:0;;;;;;;;;;:37;;53176:6;53146:37;:29;:37;:::i;:::-;53118:8;:18;;;;;;;;;;;-1:-1:-1;;;;;53118:25:0;;;;;;;;;;:65;;;;53222:23;;;;;;:35;;53250:6;53222:27;:35::i;:::-;53194:8;:18;;;;;;;;;;;-1:-1:-1;;;;;53194:23:0;;;;;;;;;;;;;:63;;;;53275:56;;;;;;;;;;;;;;;;;53290:10;;-1:-1:-1;;;;;;;;;;;53275:56:0;;;;;;;;53342:42;53355:5;53362:3;53367:8;53377:6;53342:12;:42::i;:::-;52837:555;;;;;:::o;51289:123::-;32608:10;32595:24;;;;:12;:24;;;;;;;;32587:33;;;;;;51369:28;;;;:19;:28;;;;;:35;;-1:-1:-1;;51369:35:0;51400:4;51369:35;;;51289:123::o;51038:174::-;32608:10;32595:24;;;;:12;:24;;;;;;;;32587:33;;;;;;51139:28;;;;:19;:28;;;;;;;;51138:29;51130:38;;;;;;51179:17;;;;:8;:17;;;;;;:25;;-1:-1:-1;;;;;;51179:25:0;-1:-1:-1;;;;;51179:25:0;;;;;;;;;51038:174::o;50393:211::-;32608:10;32595:24;;;;:12;:24;;;;;;;;32587:33;;;;;;50502:39;;;-1:-1:-1;;;;;50502:39:0;;50535:4;50502:39;;;;;;50484:15;;-1:-1:-1;;;;;50502:24:0;;;;;:39;;;;;;;;;;;;;;;:24;:39;;;5:2:-1;;;;30:1;27;20:12;5:2;50502:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;50502:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;50502:39:0;50552:44;;;-1:-1:-1;;;;;50552:44:0;;50576:10;50552:44;;;;;;;;;;;;50502:39;;-1:-1:-1;;;;;;50552:23:0;;;;;:44;;;;;50502:39;;50552:44;;;;;;;;-1:-1:-1;50552:23:0;:44;;;5:2:-1;;;;30:1;27;20:12;5:2;50552:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;50552:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;26634:46:0;-1:-1:-1;;;26634:46:0;:::o;26957:120::-;-1:-1:-1;;;27037:17:0;;;:32;;26957:120::o;51786:656::-;51905:15;51923:20;51934:8;51923:10;:20::i;:::-;51954:17;51974;;;:8;:17;;;;;;51905:38;;-1:-1:-1;;;;;;51974:17:0;52010:10;:28;;52002:37;;;;;;52082:5;-1:-1:-1;;;;;52060:27:0;:18;52069:8;52060;:18::i;:::-;-1:-1:-1;;;;;52060:27:0;;52052:36;;;;;;-1:-1:-1;;;;;52107:19:0;;52099:59;;;;;-1:-1:-1;;;;;52099:59:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;52099:59:0;;;;;;;;;;;;;;;52169:18;;;;:8;:18;;;;;;;;;:24;;-1:-1:-1;;;;;;52169:24:0;-1:-1:-1;;;;;52169:24:0;;;;;;;;;52209:51;;;;;-1:-1:-1;52209:51:0;;;;;;;;;52169:24;;52209:51;;;;52224:10;;-1:-1:-1;;;;;;;;;;;52209:51:0;;;;;;;;52271:35;52285:5;52292:3;52297:8;52271:13;:35::i;:::-;52323:16;:3;-1:-1:-1;;;;;52323:14:0;;:16::i;:::-;52319:116;;;52356:67;52387:3;52392:5;52399:3;52404:8;52414:1;52417:5;;52356:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;52356:30:0;;-1:-1:-1;;;52356:67:0:i;:::-;51786:656;;;;;;;:::o;44533:51::-;;;;;;;;;;;;;;;:::o;23780:151::-;-1:-1:-1;;;;;23888:24:0;;;23864:4;23888:24;;;:16;:24;;;;;;;;:35;;;;;;;;;;;;;;;23780:151::o;28251:1219::-;-1:-1:-1;;;;;28386:19:0;;28378:59;;;;;-1:-1:-1;;;;;28378:59:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;28378:59:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28456:19:0;;28465:10;28456:19;;:66;;-1:-1:-1;;;;;;28479:23:0;;;;;;:16;:23;;;;;;;;28503:10;28479:35;;;;;;;;;;;:43;;;28456:66;28448:126;;;;-1:-1:-1;;;;;28448:126:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28591:18;28605:3;28591:13;:18::i;:::-;28587:672;;;28634:13;;;;:8;:13;;;;;;-1:-1:-1;;;;;28634:22:0;;;:13;;:22;28626:31;;;;;;28672:13;;;;:8;:13;;;;;:19;;-1:-1:-1;;;;;;28672:19:0;-1:-1:-1;;;;;28672:19:0;;;;;29009:30;29023:5;28672:19;:13;29009;:30::i;:::-;28587:672;;;29095:8;:13;;;;;;;;;;;-1:-1:-1;;;;;29095:20:0;;;;;;;;;;:32;;29120:6;29095:32;:24;:32;:::i;:::-;29072:8;:13;;;;;;;;;;;-1:-1:-1;;;;;29072:20:0;;;;;;;;;;:55;;;;29165:18;;;;;;:30;;29188:6;29165:22;:30::i;:::-;29142:8;:13;;;;;;;;;;;-1:-1:-1;;;;;29142:18:0;;;;;;;;;:53;29210:37;29223:5;29156:3;29151;29240:6;29210:12;:37::i;:::-;29310:3;-1:-1:-1;;;;;29276:51:0;29303:5;-1:-1:-1;;;;;29276:51:0;29291:10;-1:-1:-1;;;;;29276:51:0;-1:-1:-1;;;;;;;;;;;29315:3:0;29320:6;29276:51;;;;;;;;;;;;;;;;;;;;;;;;29344:16;:3;-1:-1:-1;;;;;29344:14:0;;:16::i;:::-;29340:123;;;29377:74;29408:10;29420:5;29427:3;29432;29437:6;29445:5;;29377:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;29377:30:0;;-1:-1:-1;;;29377:74:0:i;53708:999::-;-1:-1:-1;;;;;53796:19:0;;53805:10;53796:19;;:66;;-1:-1:-1;;;;;;53819:23:0;;;;;;:16;:23;;;;;;;;53843:10;53819:35;;;;;;;;;;;:43;;;53796:66;53788:126;;;;-1:-1:-1;;;;;53788:126:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53927:10;53969:18;53983:3;53969:13;:18::i;:::-;53965:667;;;54012:13;;;;:8;:13;;;;;;-1:-1:-1;;;;;54012:22:0;;;:13;;:22;54004:31;;;;;;54050:13;;;;:8;:13;;;;;:18;;-1:-1:-1;;;;;;54050:18:0;-1:-1:-1;;;;;54050:18:0;;;;;54386:29;54400:5;54050:18;:13;54386;:29::i;:::-;53965:667;;;54471:8;:13;;;;;;;;;;;-1:-1:-1;;;;;54471:20:0;;;;;;;;;;:32;;54496:6;54471:32;:24;:32;:::i;:::-;54448:8;:13;;;;;;;;;;;-1:-1:-1;;;;;54448:20:0;;;;;;;;;;:55;;;;54540:17;;;;;;:29;;54562:6;54540:21;:29::i;:::-;54518:8;:13;;;;;;;;;;;-1:-1:-1;;;;;54518:17:0;;;;;;;;;:51;54584:36;54597:5;54532:2;54527:3;54613:6;54584:12;:36::i;:::-;54683:2;-1:-1:-1;;;;;54649:50:0;54676:5;-1:-1:-1;;;;;54649:50:0;54664:10;-1:-1:-1;;;;;54649:50:0;-1:-1:-1;;;;;;;;;;;54687:3:0;54692:6;54649:50;;;;;;;;;;;;;;;;;;;;;;;;53708:999;;;;:::o;47013:248::-;33078:22;33089:10;33078;:22::i;:::-;33070:31;;;;;;47167:20;47181:5;47167:13;:20::i;:::-;47159:55;;;;;-1:-1:-1;;;;;47159:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;47225:28;47242:5;47249:3;;47225:28;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;47225:16:0;;-1:-1:-1;;;47225:28:0:i;15655:283::-;15739:4;-1:-1:-1;;;;;;15761:42:0;;-1:-1:-1;;;;;15761:42:0;;:103;;-1:-1:-1;;;;;;;15821:43:0;;-1:-1:-1;;;;;15821:43:0;15761:103;15757:148;;;-1:-1:-1;15888:4:0;15881:11;;15757:148;-1:-1:-1;15925:5:0;15655:283;;;:::o;1242:123::-;1300:7;1332:1;1327;:6;;1320:14;;;;-1:-1:-1;1352:5:0;;;1242:123::o;1440:141::-;1524:5;;;1547:6;;;;1540:14;;;2068:635;2648:20;2687:8;;;2068:635::o;25033:1025::-;25217:12;25231:23;25258:3;-1:-1:-1;;;;;25258:8:0;25409:9;25437:5;25461:4;25484:7;25510:5;25281:249;;;;;;-1:-1:-1;;;;;25281:249:0;-1:-1:-1;;;;;25281:249:0;;;;;;-1:-1:-1;;;;;25281:249:0;-1:-1:-1;;;;;25281:249:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25281:249:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25281:249:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25281:249:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25281:249:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;25281:249:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;179:29;160:49;;25258:283:0;;;;25281:249;;-1:-1:-1;25258:283:0;-1:-1:-1;25258:283:0;;-1:-1:-1;25:18;-1:-1;25258:283:0;-1:-1:-1;25258:283:0;;-1:-1:-1;25258:283:0;;-1:-1:-1;25:18;;-1:-1;;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;25258:283:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;-1:-1;25642:17:0;;25216:325;;-1:-1:-1;25216:325:0;-1:-1:-1;25604:18:0;;25642:21;25639:136;;-1:-1:-1;25745:2:0;25729:19;;25723:26;25689:75;-1:-1:-1;;;;;;25791:37:0;;-1:-1:-1;;;;;25791:37:0;25787:264;;;;;;25983:56;;-1:-1:-1;;;;;25983:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25787:264;25033:1025;;;;;;;;;:::o;53417:266::-;53521:16;53540:17;;;:7;:17;;;;;;-1:-1:-1;;;;;53540:17:0;53572:30;;53568:108;;53628:36;;;-1:-1:-1;;;;;53628:36:0;;-1:-1:-1;;;;;53628:36:0;;;;;;;;;;;;;;;;;;;;;;:16;;;;;;:36;;;;;-1:-1:-1;;53628:36:0;;;;;;;;-1:-1:-1;53628:16:0;:36;;;5:2:-1;;;;30:1;27;20:12;5:2;53628:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;24042:983:0;24201:12;24215:23;24242:3;-1:-1:-1;;;;;24242:8:0;24384:9;24412:5;24436:3;24458:6;24483:5;24265:238;;;;;;-1:-1:-1;;;;;24265:238:0;-1:-1:-1;;;;;24265:238:0;;;;;;-1:-1:-1;;;;;24265:238:0;-1:-1:-1;;;;;24265:238:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;24265:238:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24265:238:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;24265:238:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;179:29;160:49;;24242:272:0;;;;24265:238;;-1:-1:-1;24242:272:0;-1:-1:-1;24242:272:0;;-1:-1:-1;25:18;-1:-1;24242:272:0;-1:-1:-1;24242:272:0;;-1:-1:-1;24242:272:0;;-1:-1:-1;25:18;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;24242:272:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;-1:-1;24615:17:0;;24200:314;;-1:-1:-1;24200:314:0;-1:-1:-1;24577:18:0;;24615:21;24612:136;;-1:-1:-1;24718:2:0;24702:19;;24696:26;24662:75;-1:-1:-1;;;;;;24764:31:0;;-1:-1:-1;;;;;24764:31:0;24760:258;;;;;47269:942;47385:13;47401:15;;;:8;:15;;;;;;47419:1;47401:19;;47433:709;47457:3;:10;47453:1;:14;47433:709;;;47489:11;47503:3;47507:1;47503:6;;;;;;;;;;;;;;;;;;;47546:9;;;47538:17;;47524:10;47572:12;;;:8;:12;;;;;;:18;;-1:-1:-1;;;;;;47572:18:0;-1:-1:-1;;;;;47572:18:0;;;;;;;;47771:52;;;;;-1:-1:-1;47771:52:0;;;;;;;;;47503:6;;-1:-1:-1;47538:17:0;;47572:18;;47524:10;;47786;;-1:-1:-1;;;;;;;;;;;47771:52:0;;;;;;;;;;47838:36;47860:3;47866;47871:2;47838:13;:36::i;:::-;47903:12;;-1:-1:-1;;;;;47903:12:0;47895:35;47891:99;;47951:12;;:23;;;-1:-1:-1;;;;;47951:23:0;;;;;;;;;;-1:-1:-1;;;;;47951:12:0;;;;:19;;:23;;;;;:12;;:23;;;;;;;;:12;;:23;;;5:2:-1;;;;30:1;27;20:12;5:2;47951:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47951:23:0;;;;47891:99;48008:16;:3;-1:-1:-1;;;;;48008:14:0;;:16::i;:::-;48004:127;;;48045:70;48076:10;48088;48100:3;48105:2;48109:1;48045:70;;;;;;;;;;;;:30;:70::i;:::-;-1:-1:-1;;47469:3:0;;47433:709;;;-1:-1:-1;48187:15:0;;;;:8;:15;;;;;;48172:10;;:31;;;:14;:31;:::i;:::-;48154:15;;;;:8;:15;;;;;;:49;;;;-1:-1:-1;;47269:942:0:o;46009:782::-;46122:13;46138:15;;;:8;:15;;;;;;;;;46156:1;46138:19;;;46184:13;;;46210:12;;;:8;:12;;;;;:18;;-1:-1:-1;;;;;;46210:18:0;-1:-1:-1;;;;;46210:18:0;;;;;;;;46397:52;;;;;;;;;;;;;;46138:19;;46184:13;;46210:18;;46122:13;;46412:10;;-1:-1:-1;;;;;;;;;;;46397:52:0;;;;;;;;;;46462:36;46484:3;46490;46495:2;46462:13;:36::i;:::-;46527:15;;;;:8;:15;;;;;;:22;;46547:1;46527:22;:19;:22;:::i;:::-;46509:15;;;;:8;:15;;;;;:40;46574:12;;-1:-1:-1;;;;;46574:12:0;46566:35;46562:91;;46618:12;;:23;;;-1:-1:-1;;;;;46618:23:0;;;;;;;;;;-1:-1:-1;;;;;46618:12:0;;;;:19;;:23;;;;;:12;;:23;;;;;;;;:12;;:23;;;5:2:-1;;;;30:1;27;20:12;5:2;46618:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46618:23:0;;;;46562:91;46669:16;:3;-1:-1:-1;;;;;46669:14:0;;:16::i;:::-;46665:119;;;46702:70;46733:10;46745;46757:3;46762:2;46766:1;46702:70;;;;;;;;;;;;:30;:70::i;52467:362::-;52556:15;52574:20;52585:8;52574:10;:20::i;:::-;52556:38;;52605:16;52624:29;52644:8;52624:19;:29::i;:::-;52664:17;52684;;;:8;:17;;;;;;52605:48;;-1:-1:-1;;;;;;52684:17:0;52716:30;;52712:110;;52772:38;;;-1:-1:-1;;;;;52772:38:0;;-1:-1:-1;;;;;52772:38:0;;;;;;;;;;;;;;;;;;;;;;:16;;;;;;:38;;;;;-1:-1:-1;;52772:38:0;;;;;;;;-1:-1:-1;52772:16:0;:38;;;5:2:-1;;;;30:1;27;20:12;5:2;52772:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;52772:38:0;;;;52467:362;;;;;;:::o

Swarm Source

bzzr://b646e7895c5080c428c3e90061f150694b6bca67c583b7b357d8db519a0d9c04
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.