ETH Price: $3,645.30 (+1.83%)

Token

Eternal Wait (SIXNFIVE)
 

Overview

Max Total Supply

0 SIXNFIVE

Holders

6

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SIXNFIVE
0x17bB4076ab59e0EF20AD5a873AB4b5341Bf01b78
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

An empty, immaculate high-end residence. Every design object and piece of furniture occupies a specific, calculated space. Utility doesn't seem to matter or take place, the form's smoothness and perfection is everything. Everything is calm, perfect, the light embraces the spac...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NiftyBuilderInstance

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 1500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-10
*/

// File: contracts/interface/IERC165.sol

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

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

// File: contracts/interface/IERC721.sol

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

// File: contracts/interface/IERC721Receiver.sol

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

// File: contracts/interface/IERC721Metadata.sol

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: contracts/util/Context.sol

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

// File: contracts/util/Strings.sol

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

}

// File: contracts/standard/ERC165.sol

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

// File: contracts/core/NiftyEntity.sol

/**
 * @dev Authenticator of state mutating operations for Nifty Gateway contracts. 
 *
 * addresses for stateful operations. 
 *
 * Rinkeby: 0xCefBf44ff649B6E0Bc63785699c6F1690b8cF73b
 * Mainnet: 0x6e53130dDfF21E3BC963Ee902005223b9A202106
 */
contract NiftyEntity {
   
   // Address of {NiftyRegistry} contract. 
   address internal immutable _niftyRegistryContract;
   
   /**
    * @dev Determines whether accounts are allowed to invoke state mutating operations on child contracts.
    */
    modifier onlyValidSender() {
        NiftyRegistry niftyRegistry = NiftyRegistry(_niftyRegistryContract);
        bool isValid = niftyRegistry.isValidNiftySender(msg.sender);
        require(isValid, "NiftyEntity: Invalid msg.sender");
        _;
    }
    
   /**
    * @dev Points to the repository of authenticated addresses.
    */
    constructor() {
      _niftyRegistryContract = 0x6e53130dDfF21E3BC963Ee902005223b9A202106; //Mainnet
      // _niftyRegistryContract = 0xCefBf44ff649B6E0Bc63785699c6F1690b8cF73b; //Rinkeby
    }
}

/**
 * @dev Defined to mediate interaction with externally deployed {NiftyRegistry} dependency. 
 */
interface NiftyRegistry {
   function isValidNiftySender(address sending_key) external view returns (bool);
}

// File: contracts/core/ERC721.sol

/**
 * @dev Nifty Gateway implementation of Non-Fungible Token Standard.
 */
contract ERC721 is NiftyEntity, Context, ERC165, IERC721, IERC721Metadata {

    // Tracked individual instance spawned by {BuilderShop} contract. 
    uint immutable public _id;

    // Number of distinct NFTs housed in this contract. 
    uint immutable public _typeCount;

    // Intial receiver of all newly minted NFTs.
    address immutable public _defaultOwner;

    // Component(s) of 'tokenId' calculation. 
    uint immutable internal topLevelMultiplier;
    uint immutable internal midLevelMultiplier;

    // Token name.
    string private _name;

    // Token symbol.
    string private _symbol;

    // Token artifact location.
    string private _baseURI;

    // Mapping from Nifty type to name of token.
    mapping(uint256 => string) private _niftyTypeName;

    // Mapping from Nifty type to IPFS hash of canonical artifcat file.
    mapping(uint256 => string) private _niftyTypeIPFSHashes;

    // Mapping from token ID to owner address.
    mapping (uint256 => address) internal _owners;

    // Mapping owner address to token count, by aggregating all _typeCount NFTs in the contact.
    mapping (address => uint256) internal _balances;

    // Mapping from token ID to approved address.
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals.
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the token collection.
     */
    constructor() NiftyEntity() {
        _id = 1;
        _typeCount = 1;
        _symbol = "SIXNFIVE";
        _name = "Eternal Wait";
        _baseURI = "https://api.niftygateway.com/eternalwait/";
        
        // _defaultOwner = 0xBDbAEe6326cF7164EDaf107C525c1928B66d133f; //Rinkeby
        _defaultOwner = 0xE052113bd7D7700d623414a0a4585BCaE754E9d5; //Mainnet

        midLevelMultiplier = 10000;
        topLevelMultiplier = 100000000;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the link to artificat location for a given token by 'tokenId'.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query.
     * @return The location where the artifact assets are stored.
     */
    function tokenURI(uint256 tokenId) external view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory tokenIdStr = Strings.toString(tokenId);
        // here
        return string(abi.encodePacked(_baseURI, tokenIdStr));
    }
    
    /**
     * @dev Determine which NFT in the contract (_typeCount) is associated 
     * with this 'tokenId'.
     */
    function _getNiftyTypeId(uint256 tokenId) internal view returns (uint256) {
        return (tokenId - topLevelMultiplier) / midLevelMultiplier;
    }

    /**
     * @dev Returns the Name for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function tokenName(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: Name query for nonexistent token");
        uint256 niftyType = _getNiftyTypeId(tokenId);
        return _niftyTypeName[niftyType];
    }
   
    /**
     * @dev Internal function to set the token IPFS hash for a nifty type.
     * @param niftyType uint256 ID component of the token to set its IPFS hash
     * @param ipfs_hash string IPFS link to assign
     */
    function _setTokenIPFSHashNiftyType(uint256 niftyType, string memory ipfs_hash) internal {
        require(bytes(_niftyTypeIPFSHashes[niftyType]).length == 0, "ERC721Metadata: IPFS hash already set");
        _niftyTypeIPFSHashes[niftyType] = ipfs_hash;
    }

    /**
     * @dev Internal function to set the name for a nifty type.
     * @param niftyType uint256 of nifty type name to be set
     * @param nifty_type_name name of nifty type
     */
    function _setNiftyTypeName(uint256 niftyType, string memory nifty_type_name) internal {
        _niftyTypeName[niftyType] = nifty_type_name;
    }

    /**
     * @dev Base URI for computing {tokenURI}.
     */
    function _setBaseURI(string memory baseURI_) internal {
        _baseURI = baseURI_;
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");
        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (isContract(to)) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
}

// File: contracts/standard/ERC721Burnable.sol

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

// File: contracts/interface/IDateTime.sol

/**
 *
 */
interface IDateTime {
    
    function getHour(uint timestamp) external view virtual returns (uint8);

}

// File: contracts/core/NiftyBuilderInstance.sol

/** 
 * XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 * XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX  .***   XXXXXXXXXXXXXXXXXX
 * XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX  ,*********  XXXXXXXXXXXXXXXX
 * XXXXXXXXXXXXXXXXXXXXXXXXXXXX  ***************  XXXXXXXXXXXXX
 * XXXXXXXXXXXXXXXXXXXXXXXXX  .*******************  XXXXXXXXXXX
 * XXXXXXXXXXXXXXXXXXXXXXX  ***********    **********  XXXXXXXX
 * XXXXXXXXXXXXXXXXXXXX   ***********       ***********  XXXXXX
 * XXXXXXXXXXXXXXXXXX  ***********         ***************  XXX
 * XXXXXXXXXXXXXXXX  ***********           ****    ********* XX
 * XXXXXXXXXXXXXXXX *********      ***    ***      *********  X
 * XXXXXXXXXXXXXXXX  **********  *****          *********** XXX
 * XXXXXXXXXXXX   /////.*************         ***********  XXXX
 * XXXXXXXXX  /////////...***********      ************  XXXXXX
 * XXXXXXX/ ///////////..... /////////   ///////////   XXXXXXXX
 * XXXXXX  /    //////.........///////////////////   XXXXXXXXXX
 * XXXXXXXXXX .///////...........//////////////   XXXXXXXXXXXXX
 * XXXXXXXXX .///////.....//..////  /////////  XXXXXXXXXXXXXXXX
 * XXXXXXX# /////////////////////  XXXXXXXXXXXXXXXXXXXXXXXXXXXX
 * XXXXX   ////////////////////   XXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 * XX   ////////////// //////   XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 * XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 *
 * @dev Nifty Gateway extension of customized NFT contract, encapsulates
 * logic for minting new tokens, and concluding the minting process. 
 */
contract NiftyBuilderInstance is ERC721, ERC721Burnable {

    // Engine of nifty type dynamism.
    address public _dateTimeContract;

    string[24] artifact = [
        "QmX8iUovtYAnW55CQsLdVTE5WpQrR57MU4zaofZ1D52Hj8", // State 21
        "QmVZpXKZAnDHb2VvcSy7xsSJkrpooMVjxNKWuvFq3DkNsR", // State 22
        "QmcARhBGo5berbpxJwDwUMh8dJ5NRQTcRmXgvxcztfNFAC", // State 23
        "Qma3gJpKVqVCwuau9km6tdMpY5C7FGwZ4ccesuKCvmA5NK", // State 00
        "QmQaaApgJ78SvA2BmzuPiPAAf1WXjhLMHDP49QU3Xf8zyP", // State 01
        "QmPDpUWmbaKmKTztMUWiqCK7gyGAxJmmHnAQ7mtg6R8H5k", // State 02
        "QmQ8P9wHmmVL8eDbqKy9cU2FjoAgUzWFfJQrf9zj97Ybvd", // State 03
        "QmRcNwBvweTMuR2MWqFYXgEvuN95YXaLgDjFVMkXfHgAcf", // State 04
        "QmYrkxdwdaR5obbpzgyt1fXjXAmL49eRX711byuwpkSyHF", // State 05
        "QmYkm9vYws9P9nnCDLoRj3b2m1LcGiPebkRPph5n4tcmkQ", // State 06
        "QmW3PAYr38ZFm8McgoDeWEjySZgg71r3CefLxqzxVb9e9e", // State 07
        "QmW72F3RumxejwY371VdCXjN8CZcqTSzBpJPvF9qzuZ2Ga", // State 08
        "QmcExNFJzEpceBStuc4qqu4zQ9UvMCTtywzxgVj569Toh4", // State 09
        "QmNeSYYC23ejs4bk46Df6XHoWXHE3ttAoXZ8bAWWaFFmTW", // State 10
        "QmNMHfJi5qCzxmKVMqoq7vA2wJ7ao72YfdxNg5oFwnyTSU", // State 11
        "QmaaXjPJsdewHifYKEheq6xbwrq126s57NBZ1AcjYHEhG9", // State 12
        "QmPYE5ZYSK3vnD54tzJRuPybsXmeEbcUwV1jMwS47iENwE", // State 13
        "Qmea2kv6QfmTxpkQF3u1TbAF4h9ixZjp5fLvCzc4HZua7t", // State 14
        "QmPm9yiVYJysG7QuqFFw7HiEUE3HWrTDKM6j7TSLF2nmHG", // State 15
        "QmZsQq4jVLyr7xa3ATxffrDLJAm88dhZQ9PGUpDyPgJ8YX", // State 16
        "QmYvedoVgGFJFMkRCMbLosr2yjMSF77Yvkf7SA1QNGbvxv", // State 17
        "QmYDhG4jpsULynxyxF71ZRFR5d5KJqsFvzN5FDxtbtg7Zi", // State 18
        "QmTypKxYfqBeN3ruGE3FsWBSfBVdcwf2B3qLeb4c4qvMyp", // State 19
        "QmRzi62hYnV2ErQ9WwDQpoYL7ZPibpGBzjy6amu8ghC8yB"  // State 20
    ];

    // The artist associated with the collection.
    string private _creator;

    // Number of NFTs minted for a given 'typeCount'. 
    mapping (uint256 => uint256) public _mintCount;

    /**
     * @dev Serves as a gas cost optimized boolean flag 
     * to indicate whether the minting process has been 
     * concluded for a given 'typeCount', correspinds 
     * to the {_getFinalized} and {setFinalized}.
     */
    mapping (uint256 => bytes32) private _finalized;

    /**
     * @dev Emitted when tokens are created.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed fromAddress, address indexed toAddress);

    /**
     * @dev Ultimate instantiation of a Nifty Gateway NFT collection. 
     */
    constructor() ERC721() {
        _creator = "Six N. Five";
        _dateTimeContract = 0x740a637ADD6492e5FaA907AF0fe708770B737058; //Mainnet
        // _dateTimeContract = 0x92482Ba45A4D2186DafB486b322C6d0B88410FE7; //Rinkeby
        _setNiftyTypeName(1, "Eternal Wait");
    }

    /**
     * Configurable address for DateTime.
     */ 
    function setDateTimeContract(address dateTimeContract_) public onlyValidSender {
        _dateTimeContract = dateTimeContract_;
    }

    /**
     * @dev Generate canonical Nifty Gateway token representation. 
     * Nifty contracts have a data model called a 'niftyType' (typeCount) 
     * The 'niftyType' refers to a specific nifty in our contract, note 
     * that it gives no information about the edition size. In a given 
     * contract, 'niftyType' 1 could be an edition of 10, while 'niftyType' 
     * 2 is a 1/1, etc.
     * The token IDs are encoded as follows: {id}{niftyType}{edition #}
     * 'niftyType' has 4 digits, and edition number does as well, to allow 
     * for 9999 possible 'niftyType' and 9999 of each edition in each contract.
     * Example token id: [500010270]
     * This is from contract #5, it is 'niftyType' 1 in the contract, and it is 
     * edition #270 of 'niftyType' 1.
     */
    function _encodeTokenId(uint256 niftyType, uint256 tokenNumber) private view returns (uint256) {
        return (topLevelMultiplier + (niftyType * midLevelMultiplier) + tokenNumber);
    }

    /**
     * @dev Determine whether it is possible to mint additional NFTs for this 'niftyType'.
     */
    function _getFinalized(uint256 niftyType) public view returns (bool) {
        bytes32 chunk = _finalized[niftyType / 256];
        return (chunk & bytes32(1 << (niftyType % 256))) != 0x0;
    }

    /**
     * @dev Prevent the minting of additional NFTs of this 'niftyType'.
     */
    function setFinalized(uint256 niftyType) public onlyValidSender {
        uint256 quotient = niftyType / 256;
        bytes32 chunk = _finalized[quotient];
        _finalized[quotient] = chunk | bytes32(1 << (niftyType % 256));
    }

    /**
     * @dev The artist of this collection.
     */
    function creator() public view virtual returns (string memory) {
        return _creator;
    }

    /**
     * @dev Assign the root location where the artifact assets are stored.
     */
    function setBaseURI(string memory baseURI) public onlyValidSender {
        _setBaseURI(baseURI);
    }

    /**
     * @dev Allow owner to change nifty name, by 'niftyType'.
     */
    function setNiftyName(uint256 niftyType, string memory niftyName) public onlyValidSender {
        _setNiftyTypeName(niftyType, niftyName);
    }

    /**
     * @dev Assign the IPFS hash of canonical artifcat file, by 'niftyType'.
     */   
    function setNiftyIPFSHash(uint256 niftyType, string memory hashIPFS) public onlyValidSender {
        _setTokenIPFSHashNiftyType(niftyType, hashIPFS);
    }

    /**
     * @dev Create specified number of nifties en masse.
     * Once an NFT collection is spawned by the factory contract, we make calls to set the IPFS
     * hash (above) for each Nifty type in the collection. 
     * Subsequently calls are issued to this function to mint the appropriate number of tokens 
     * for the project.
     */
    function mintNifty(uint256 niftyType, uint256 count) public onlyValidSender {
        require(!_getFinalized(niftyType), "NiftyBuilderInstance: minting concluded for nifty type");
            
        uint256 tokenNumber = _mintCount[niftyType] + 1;
        uint256 tokenId00 = _encodeTokenId(niftyType, tokenNumber);
        uint256 tokenId01 = tokenId00 + count - 1;
        
        for (uint256 tokenId = tokenId00; tokenId <= tokenId01; tokenId++) {
            _owners[tokenId] = _defaultOwner;
        }
        _mintCount[niftyType] += count;
        _balances[_defaultOwner] += count;

        emit ConsecutiveTransfer(tokenId00, tokenId01, address(0), _defaultOwner);
    }

    /**
     * @dev Returns an IPFS hash for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query.
     * @return IPFS hash for this (_typeCount) NFT. 
     */
    function tokenIPFSHash(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: IPFS hash query for nonexistent token");
        uint8 hour = IDateTime(_dateTimeContract).getHour(block.timestamp);
        return artifact[hour];
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"fromAddress","type":"address"},{"indexed":true,"internalType":"address","name":"toAddress","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_dateTimeContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_defaultOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"niftyType","type":"uint256"}],"name":"_getFinalized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_id","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_typeCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creator","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"niftyType","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintNifty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dateTimeContract_","type":"address"}],"name":"setDateTimeContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"niftyType","type":"uint256"}],"name":"setFinalized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"niftyType","type":"uint256"},{"internalType":"string","name":"hashIPFS","type":"string"}],"name":"setNiftyIPFSHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"niftyType","type":"uint256"},{"internalType":"string","name":"niftyName","type":"string"}],"name":"setNiftyName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenIPFSHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6104a0604052602e610440818152610140918291906200316f6104603981526020016040518060600160405280602e815260200162002e66602e913981526020016040518060600160405280602e8152602001620031cb602e913981526020016040518060600160405280602e8152602001620030b7602e913981526020016040518060600160405280602e815260200162002e94602e913981526020016040518060600160405280602e8152602001620030e5602e913981526020016040518060600160405280602e81526020016200319d602e913981526020016040518060600160405280602e815260200162002f4c602e913981526020016040518060600160405280602e815260200162002f7a602e913981526020016040518060600160405280602e815260200162002ef0602e913981526020016040518060600160405280602e815260200162002e0a602e913981526020016040518060600160405280602e815260200162002ec2602e913981526020016040518060600160405280602e815260200162003141602e913981526020016040518060600160405280602e815260200162003089602e913981526020016040518060600160405280602e815260200162002f1e602e913981526020016040518060600160405280602e815260200162002ddc602e913981526020016040518060600160405280602e815260200162002fd6602e913981526020016040518060600160405280602e815260200162003004602e913981526020016040518060600160405280602e815260200162002dae602e913981526020016040518060600160405280602e815260200162002d80602e913981526020016040518060600160405280602e815260200162002fa8602e913981526020016040518060600160405280602e815260200162002e38602e913981526020016040518060600160405280602e815260200162003032602e913981526020016040518060600160405280602e815260200162003113602e91399052620002f790600a906018620004bb565b503480156200030557600080fd5b507f6e53130ddff21e3bc963ee902005223b9a202106000000000000000000000000608052600160a081905260c0819052604080518082019091526008808252675349584e4649564560c01b60209092019182526200036692919062000512565b5060408051808201909152600c8082526b115d195c9b985b0815d85a5d60a21b60209092019182526200039c9160009162000512565b5060405180606001604052806029815260200162003060602991398051620003cd9160029160209091019062000512565b507fe052113bd7d7700d623414a0a4585bcae754e9d500000000000000000000000060e052612710610120526305f5e1006101005260408051808201909152600b8082526a536978204e2e204669766560a81b602092909201918252620004379160229162000512565b50600980546001600160a01b03191673740a637add6492e5faa907af0fe708770b73705817905560408051808201909152600c81526b115d195c9b985b0815d85a5d60a21b60208201526200048f9060019062000495565b62000654565b60008281526003602090815260409091208251620004b69284019062000512565b505050565b826018810192821562000500579160200282015b82811115620005005782518051620004ef91849160209091019062000512565b5091602001919060010190620004cf565b506200050e9291506200059d565b5090565b828054620005209062000617565b90600052602060002090601f0160209004810192826200054457600085556200058f565b82601f106200055f57805160ff19168380011785556200058f565b828001600101855582156200058f579182015b828111156200058f57825182559160200191906001019062000572565b506200050e929150620005be565b808211156200050e576000620005b48282620005d5565b506001016200059d565b5b808211156200050e5760008155600101620005bf565b508054620005e39062000617565b6000825580601f10620005f4575050565b601f016020900490600052602060002090810190620006149190620005be565b50565b600181811c908216806200062c57607f821691505b602082108114156200064e57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160c05160e05160601c6101005161012051612690620006f060003960008181611bc30152611e18015260008181611bee0152611e3c0152600081816102a501528181610bf001528181610c5b0152610cae015260006102cc0152600061022801526000818161088b01528181610a2801528181610d1f01528181610f470152818161113f015261157401526126906000f3fe608060405234801561001057600080fd5b50600436106101ce5760003560e01c806355f804b311610104578063afe9ecee116100a2578063d7a853be11610071578063d7a853be14610420578063d891463814610433578063e725f87714610446578063e985e9c51461045957600080fd5b8063afe9ecee146103d4578063b88d4fde146103e7578063c87b56dd146103fa578063d37166301461040d57600080fd5b806370a08231116100de57806370a082311461039357806395d89b41146103a65780639dd5e481146103ae578063a22cb465146103c157600080fd5b806355f804b31461034d5780635f2ef9dc146103605780636352211e1461038057600080fd5b8063139fed7c116101715780632b6db0551161014b5780632b6db0551461030157806342842e0e1461031457806342966c68146103275780634fba84ca1461033a57600080fd5b8063139fed7c146102a05780632276f3f2146102c757806323b872dd146102ee57600080fd5b806305180237116101ad578063051802371461022357806306fdde0314610258578063081812fc14610260578063095ea7b31461028b57600080fd5b8062cd587c146101d357806301ffc9a7146101fb57806302d05d3f1461020e575b600080fd5b6101e66101e1366004612303565b610495565b60405190151581526020015b60405180910390f35b6101e6610209366004612294565b6104d3565b610216610570565b6040516101f291906124d3565b61024a7f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020016101f2565b610216610602565b61027361026e366004612303565b610611565b6040516001600160a01b0390911681526020016101f2565b61029e61029936600461224d565b6106bc565b005b6102737f000000000000000000000000000000000000000000000000000000000000000081565b61024a7f000000000000000000000000000000000000000000000000000000000000000081565b61029e6102fc36600461215e565b6107ee565b61029e61030f36600461231c565b610876565b61029e61032236600461215e565b610971565b61029e610335366004612303565b61098c565b61029e610348366004612363565b610a13565b61029e61035b3660046122ce565b610d0a565b61024a61036e366004612303565b60236020526000908152604090205481565b61027361038e366004612303565b610dfe565b61024a6103a1366004612110565b610e89565b610216610f23565b61029e6103bc366004612303565b610f32565b61029e6103cf366004612216565b611065565b61029e6103e2366004612110565b61112a565b61029e6103f536600461219a565b611246565b610216610408366004612303565b6112ce565b61021661041b366004612303565b611393565b61029e61042e36600461231c565b61155f565b600954610273906001600160a01b031681565b610216610454366004612303565b611654565b6101e661046736600461212b565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6000806024816104a7610100866124fe565b8152602001908152602001600020549050610100836104c691906125ca565b6001901b16151592915050565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061053657506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061056a57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606022805461057f90612574565b80601f01602080910402602001604051908101604052809291908181526020018280546105ab90612574565b80156105f85780601f106105cd576101008083540402835291602001916105f8565b820191906000526020600020905b8154815290600101906020018083116105db57829003601f168201915b5050505050905090565b60606000805461057f90612574565b6000818152600560205260408120546001600160a01b03166106a05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006106c782610dfe565b9050806001600160a01b0316836001600160a01b031614156107515760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610697565b336001600160a01b038216148061076d575061076d8133610467565b6107df5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610697565b6107e98383611709565b505050565b6107f9335b82611784565b61086b5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610697565b6107e983838361188c565b6040516371be737d60e11b81523360048201527f0000000000000000000000000000000000000000000000000000000000000000906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b1580156108da57600080fd5b505afa1580156108ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109129190612277565b9050806109615760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e646572006044820152606401610697565b61096b8484611a66565b50505050565b6107e983838360405180602001604052806000815250611246565b610995336107f3565b610a075760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f766564000000000000000000000000000000006064820152608401610697565b610a1081611b13565b50565b6040516371be737d60e11b81523360048201527f0000000000000000000000000000000000000000000000000000000000000000906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b158015610a7757600080fd5b505afa158015610a8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aaf9190612277565b905080610afe5760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e646572006044820152606401610697565b610b0784610495565b15610b7a5760405162461bcd60e51b815260206004820152603660248201527f4e696674794275696c646572496e7374616e63653a206d696e74696e6720636f60448201527f6e636c7564656420666f72206e696674792074797065000000000000000000006064820152608401610697565b600084815260236020526040812054610b949060016124e6565b90506000610ba28683611bbb565b905060006001610bb287846124e6565b610bbc9190612531565b9050815b818111610c2d576000818152600560205260409020805473ffffffffffffffffffffffffffffffffffffffff19167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031617905580610c25816125af565b915050610bc0565b5060008781526023602052604081208054889290610c4c9084906124e6565b90915550506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001660009081526006602052604081208054889290610c999084906124e6565b90915550506040518181526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169060009084907fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d9060200160405180910390a450505050505050565b6040516371be737d60e11b81523360048201527f0000000000000000000000000000000000000000000000000000000000000000906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b158015610d6e57600080fd5b505afa158015610d82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da69190612277565b905080610df55760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e646572006044820152606401610697565b6107e983611c23565b6000818152600560205260408120546001600160a01b03168061056a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610697565b60006001600160a01b038216610f075760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610697565b506001600160a01b031660009081526006602052604090205490565b60606001805461057f90612574565b6040516371be737d60e11b81523360048201527f0000000000000000000000000000000000000000000000000000000000000000906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b158015610f9657600080fd5b505afa158015610faa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fce9190612277565b90508061101d5760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e646572006044820152606401610697565b600061102b610100856124fe565b600081815260246020526040902054909150611049610100866125ca565b600092835260246020526040909220600190921b179055505050565b6001600160a01b0382163314156110be5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610697565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6040516371be737d60e11b81523360048201527f0000000000000000000000000000000000000000000000000000000000000000906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b15801561118e57600080fd5b505afa1580156111a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c69190612277565b9050806112155760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e646572006044820152606401610697565b50506009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6112503383611784565b6112c25760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610697565b61096b84848484611c3a565b6000818152600560205260409020546060906001600160a01b031661135b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610697565b600061136683611cc3565b905060028160405160200161137c9291906123f0565b604051602081830303815290604052915050919050565b6000818152600560205260409020546060906001600160a01b03166114205760405162461bcd60e51b815260206004820152603560248201527f4552433732314d657461646174613a204950465320686173682071756572792060448201527f666f72206e6f6e6578697374656e7420746f6b656e00000000000000000000006064820152608401610697565b6009546040517f3e239e1a0000000000000000000000000000000000000000000000000000000081524260048201526000916001600160a01b031690633e239e1a9060240160206040518083038186803b15801561147d57600080fd5b505afa158015611491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b59190612385565b9050600a8160ff16601881106114cd576114cd61260a565b0180546114d990612574565b80601f016020809104026020016040519081016040528092919081815260200182805461150590612574565b80156115525780601f1061152757610100808354040283529160200191611552565b820191906000526020600020905b81548152906001019060200180831161153557829003601f168201915b5050505050915050919050565b6040516371be737d60e11b81523360048201527f0000000000000000000000000000000000000000000000000000000000000000906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b1580156115c357600080fd5b505afa1580156115d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fb9190612277565b90508061164a5760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e646572006044820152606401610697565b61096b8484611df5565b6000818152600560205260409020546060906001600160a01b03166116e15760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a204e616d6520717565727920666f72206e60448201527f6f6e6578697374656e7420746f6b656e000000000000000000000000000000006064820152608401610697565b60006116ec83611e14565b60008181526003602052604090208054919250906114d990612574565b6000818152600760205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061174b82610dfe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600560205260408120546001600160a01b031661180e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610697565b600061181983610dfe565b9050806001600160a01b0316846001600160a01b031614806118545750836001600160a01b031661184984610611565b6001600160a01b0316145b8061188457506001600160a01b0380821660009081526008602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661189f82610dfe565b6001600160a01b03161461191b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610697565b6001600160a01b0382166119965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610697565b6119a1600082611709565b6001600160a01b03831660009081526006602052604081208054600192906119ca908490612531565b90915550506001600160a01b03821660009081526006602052604081208054600192906119f89084906124e6565b9091555050600081815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008281526004602052604090208054611a7f90612574565b159050611af45760405162461bcd60e51b815260206004820152602560248201527f4552433732314d657461646174613a2049504653206861736820616c7265616460448201527f79207365740000000000000000000000000000000000000000000000000000006064820152608401610697565b600082815260046020908152604090912082516107e992840190611fc5565b6000611b1e82610dfe565b9050611b2b600083611709565b6001600160a01b0381166000908152600660205260408120805460019290611b54908490612531565b9091555050600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600081611be87f000000000000000000000000000000000000000000000000000000000000000085612512565b611c12907f00000000000000000000000000000000000000000000000000000000000000006124e6565b611c1c91906124e6565b9392505050565b8051611c36906002906020840190611fc5565b5050565b611c4584848461188c565b611c5184848484611e6b565b61096b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610697565b606081611d0357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611d2d5780611d17816125af565b9150611d269050600a836124fe565b9150611d07565b60008167ffffffffffffffff811115611d4857611d48612620565b6040519080825280601f01601f191660200182016040528015611d72576020820181803683370190505b5090505b841561188457611d87600183612531565b9150611d94600a866125ca565b611d9f9060306124e6565b60f81b818381518110611db457611db461260a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611dee600a866124fe565b9450611d76565b600082815260036020908152604090912082516107e992840190611fc5565b60007f0000000000000000000000000000000000000000000000000000000000000000611e617f000000000000000000000000000000000000000000000000000000000000000084612531565b61056a91906124fe565b6000833b15611fba57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ea6903390899088908890600401612497565b602060405180830381600087803b158015611ec057600080fd5b505af1925050508015611ef0575060408051601f3d908101601f19168201909252611eed918101906122b1565b60015b611fa0573d808015611f1e576040519150601f19603f3d011682016040523d82523d6000602084013e611f23565b606091505b508051611f985760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610697565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611884565b506001949350505050565b828054611fd190612574565b90600052602060002090601f016020900481019282611ff35760008555612039565b82601f1061200c57805160ff1916838001178555612039565b82800160010185558215612039579182015b8281111561203957825182559160200191906001019061201e565b50612045929150612049565b5090565b5b80821115612045576000815560010161204a565b600067ffffffffffffffff8084111561207957612079612620565b604051601f8501601f19908116603f011681019082821181831017156120a1576120a1612620565b816040528093508581528686860111156120ba57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120eb57600080fd5b919050565b600082601f83011261210157600080fd5b611c1c8383356020850161205e565b60006020828403121561212257600080fd5b611c1c826120d4565b6000806040838503121561213e57600080fd5b612147836120d4565b9150612155602084016120d4565b90509250929050565b60008060006060848603121561217357600080fd5b61217c846120d4565b925061218a602085016120d4565b9150604084013590509250925092565b600080600080608085870312156121b057600080fd5b6121b9856120d4565b93506121c7602086016120d4565b925060408501359150606085013567ffffffffffffffff8111156121ea57600080fd5b8501601f810187136121fb57600080fd5b61220a8782356020840161205e565b91505092959194509250565b6000806040838503121561222957600080fd5b612232836120d4565b9150602083013561224281612636565b809150509250929050565b6000806040838503121561226057600080fd5b612269836120d4565b946020939093013593505050565b60006020828403121561228957600080fd5b8151611c1c81612636565b6000602082840312156122a657600080fd5b8135611c1c81612644565b6000602082840312156122c357600080fd5b8151611c1c81612644565b6000602082840312156122e057600080fd5b813567ffffffffffffffff8111156122f757600080fd5b611884848285016120f0565b60006020828403121561231557600080fd5b5035919050565b6000806040838503121561232f57600080fd5b82359150602083013567ffffffffffffffff81111561234d57600080fd5b612359858286016120f0565b9150509250929050565b6000806040838503121561237657600080fd5b50508035926020909101359150565b60006020828403121561239757600080fd5b815160ff81168114611c1c57600080fd5b600081518084526123c0816020860160208601612548565b601f01601f19169290920160200192915050565b600081516123e6818560208601612548565b9290920192915050565b600080845481600182811c91508083168061240c57607f831692505b602080841082141561242c57634e487b7160e01b86526022600452602486fd5b81801561244057600181146124515761247e565b60ff1986168952848901965061247e565b60008b81526020902060005b868110156124765781548b82015290850190830161245d565b505084890196505b50505050505061248e81856123d4565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526124c960808301846123a8565b9695505050505050565b602081526000611c1c60208301846123a8565b600082198211156124f9576124f96125de565b500190565b60008261250d5761250d6125f4565b500490565b600081600019048311821515161561252c5761252c6125de565b500290565b600082821015612543576125436125de565b500390565b60005b8381101561256357818101518382015260200161254b565b8381111561096b5750506000910152565b600181811c9082168061258857607f821691505b602082108114156125a957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125c3576125c36125de565b5060010190565b6000826125d9576125d96125f4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610a1057600080fd5b6001600160e01b031981168114610a1057600080fdfea264697066735822122038ad1588f584b75bf3ad31f9a4d3016e97b7f3a5d60049366f0719a20650727964736f6c63430008060033516d5a735171346a564c797237786133415478666672444c4a416d383864685a513950475570447950674a385958516d506d39796956594a797347375175714646773748694555453348577254444b4d366a3754534c46326e6d4847516d6161586a504a73646577486966594b456865713678627772713132367335374e425a3141636a594845684739516d57335041597233385a466d384d63676f446557456a79535a6767373172334365664c78717a78566239653965516d59446847346a7073554c796e7879784637315a5246523564354b4a717346767a4e3546447874627467375a69516d565a70584b5a416e444862325676635379377873534a6b72706f6f4d566a784e4b577576467133446b4e7352516d5161614170674a373853764132426d7a755069504141663157586a684c4d48445034395155335866387a7950516d573732463352756d78656a7759333731566443586a4e38435a637154537a42704a50764639717a755a324761516d596b6d39765977733950396e6e43444c6f526a3362326d314c6347695065626b52507068356e3474636d6b51516d4e4d48664a693571437a786d4b564d716f7137764132774a37616f3732596664784e67356f46776e79545355516d52634e7742767765544d7552324d5771465958674576754e39355958614c67446a46564d6b58664867416366516d59726b786477646152356f6262707a6779743166586a58416d4c343965525837313162797577706b53794846516d597665646f566747464a464d6b52434d624c6f737232796a4d5346373759766b6637534131514e4762767876516d505945355a59534b33766e443534747a4a527550796273586d65456263557756316a4d7753343769454e7745516d6561326b763651666d5478706b51463375315462414634683969785a6a7035664c76437a6334485a75613774516d5479704b7859667142654e337275474533467357425366425664637766324233714c656234633471764d797068747470733a2f2f6170692e6e69667479676174657761792e636f6d2f657465726e616c776169742f516d4e65535959433233656a7334626b343644663658486f57584845337474416f585a38624157576146466d5457516d6133674a704b5671564377756175396b6d3674644d70593543374647775a3463636573754b43766d41354e4b516d50447055576d62614b6d4b547a744d55576971434b3767794741784a6d6d486e4151376d746736523848356b516d527a69363268596e56324572513957774451706f594c375a5069627047427a6a7936616d7538676843387942516d6345784e464a7a45706365425374756334717175347a513955764d43547479777a7867566a353639546f6834516d583869556f767459416e5735354351734c6456544535577051725235374d55347a616f665a31443532486a38516d5138503977486d6d564c38654462714b7939635532466a6f4167557a5746664a517266397a6a393759627664516d6341526842476f356265726270784a774477554d6838644a354e52515463526d58677678637a74664e464143

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101ce5760003560e01c806355f804b311610104578063afe9ecee116100a2578063d7a853be11610071578063d7a853be14610420578063d891463814610433578063e725f87714610446578063e985e9c51461045957600080fd5b8063afe9ecee146103d4578063b88d4fde146103e7578063c87b56dd146103fa578063d37166301461040d57600080fd5b806370a08231116100de57806370a082311461039357806395d89b41146103a65780639dd5e481146103ae578063a22cb465146103c157600080fd5b806355f804b31461034d5780635f2ef9dc146103605780636352211e1461038057600080fd5b8063139fed7c116101715780632b6db0551161014b5780632b6db0551461030157806342842e0e1461031457806342966c68146103275780634fba84ca1461033a57600080fd5b8063139fed7c146102a05780632276f3f2146102c757806323b872dd146102ee57600080fd5b806305180237116101ad578063051802371461022357806306fdde0314610258578063081812fc14610260578063095ea7b31461028b57600080fd5b8062cd587c146101d357806301ffc9a7146101fb57806302d05d3f1461020e575b600080fd5b6101e66101e1366004612303565b610495565b60405190151581526020015b60405180910390f35b6101e6610209366004612294565b6104d3565b610216610570565b6040516101f291906124d3565b61024a7f000000000000000000000000000000000000000000000000000000000000000181565b6040519081526020016101f2565b610216610602565b61027361026e366004612303565b610611565b6040516001600160a01b0390911681526020016101f2565b61029e61029936600461224d565b6106bc565b005b6102737f000000000000000000000000e052113bd7d7700d623414a0a4585bcae754e9d581565b61024a7f000000000000000000000000000000000000000000000000000000000000000181565b61029e6102fc36600461215e565b6107ee565b61029e61030f36600461231c565b610876565b61029e61032236600461215e565b610971565b61029e610335366004612303565b61098c565b61029e610348366004612363565b610a13565b61029e61035b3660046122ce565b610d0a565b61024a61036e366004612303565b60236020526000908152604090205481565b61027361038e366004612303565b610dfe565b61024a6103a1366004612110565b610e89565b610216610f23565b61029e6103bc366004612303565b610f32565b61029e6103cf366004612216565b611065565b61029e6103e2366004612110565b61112a565b61029e6103f536600461219a565b611246565b610216610408366004612303565b6112ce565b61021661041b366004612303565b611393565b61029e61042e36600461231c565b61155f565b600954610273906001600160a01b031681565b610216610454366004612303565b611654565b6101e661046736600461212b565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6000806024816104a7610100866124fe565b8152602001908152602001600020549050610100836104c691906125ca565b6001901b16151592915050565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061053657506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061056a57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606022805461057f90612574565b80601f01602080910402602001604051908101604052809291908181526020018280546105ab90612574565b80156105f85780601f106105cd576101008083540402835291602001916105f8565b820191906000526020600020905b8154815290600101906020018083116105db57829003601f168201915b5050505050905090565b60606000805461057f90612574565b6000818152600560205260408120546001600160a01b03166106a05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006106c782610dfe565b9050806001600160a01b0316836001600160a01b031614156107515760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610697565b336001600160a01b038216148061076d575061076d8133610467565b6107df5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610697565b6107e98383611709565b505050565b6107f9335b82611784565b61086b5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610697565b6107e983838361188c565b6040516371be737d60e11b81523360048201527f0000000000000000000000006e53130ddff21e3bc963ee902005223b9a202106906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b1580156108da57600080fd5b505afa1580156108ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109129190612277565b9050806109615760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e646572006044820152606401610697565b61096b8484611a66565b50505050565b6107e983838360405180602001604052806000815250611246565b610995336107f3565b610a075760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f766564000000000000000000000000000000006064820152608401610697565b610a1081611b13565b50565b6040516371be737d60e11b81523360048201527f0000000000000000000000006e53130ddff21e3bc963ee902005223b9a202106906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b158015610a7757600080fd5b505afa158015610a8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aaf9190612277565b905080610afe5760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e646572006044820152606401610697565b610b0784610495565b15610b7a5760405162461bcd60e51b815260206004820152603660248201527f4e696674794275696c646572496e7374616e63653a206d696e74696e6720636f60448201527f6e636c7564656420666f72206e696674792074797065000000000000000000006064820152608401610697565b600084815260236020526040812054610b949060016124e6565b90506000610ba28683611bbb565b905060006001610bb287846124e6565b610bbc9190612531565b9050815b818111610c2d576000818152600560205260409020805473ffffffffffffffffffffffffffffffffffffffff19167f000000000000000000000000e052113bd7d7700d623414a0a4585bcae754e9d56001600160a01b031617905580610c25816125af565b915050610bc0565b5060008781526023602052604081208054889290610c4c9084906124e6565b90915550506001600160a01b037f000000000000000000000000e052113bd7d7700d623414a0a4585bcae754e9d51660009081526006602052604081208054889290610c999084906124e6565b90915550506040518181526001600160a01b037f000000000000000000000000e052113bd7d7700d623414a0a4585bcae754e9d5169060009084907fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d9060200160405180910390a450505050505050565b6040516371be737d60e11b81523360048201527f0000000000000000000000006e53130ddff21e3bc963ee902005223b9a202106906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b158015610d6e57600080fd5b505afa158015610d82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da69190612277565b905080610df55760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e646572006044820152606401610697565b6107e983611c23565b6000818152600560205260408120546001600160a01b03168061056a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610697565b60006001600160a01b038216610f075760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610697565b506001600160a01b031660009081526006602052604090205490565b60606001805461057f90612574565b6040516371be737d60e11b81523360048201527f0000000000000000000000006e53130ddff21e3bc963ee902005223b9a202106906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b158015610f9657600080fd5b505afa158015610faa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fce9190612277565b90508061101d5760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e646572006044820152606401610697565b600061102b610100856124fe565b600081815260246020526040902054909150611049610100866125ca565b600092835260246020526040909220600190921b179055505050565b6001600160a01b0382163314156110be5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610697565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6040516371be737d60e11b81523360048201527f0000000000000000000000006e53130ddff21e3bc963ee902005223b9a202106906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b15801561118e57600080fd5b505afa1580156111a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c69190612277565b9050806112155760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e646572006044820152606401610697565b50506009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6112503383611784565b6112c25760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610697565b61096b84848484611c3a565b6000818152600560205260409020546060906001600160a01b031661135b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610697565b600061136683611cc3565b905060028160405160200161137c9291906123f0565b604051602081830303815290604052915050919050565b6000818152600560205260409020546060906001600160a01b03166114205760405162461bcd60e51b815260206004820152603560248201527f4552433732314d657461646174613a204950465320686173682071756572792060448201527f666f72206e6f6e6578697374656e7420746f6b656e00000000000000000000006064820152608401610697565b6009546040517f3e239e1a0000000000000000000000000000000000000000000000000000000081524260048201526000916001600160a01b031690633e239e1a9060240160206040518083038186803b15801561147d57600080fd5b505afa158015611491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b59190612385565b9050600a8160ff16601881106114cd576114cd61260a565b0180546114d990612574565b80601f016020809104026020016040519081016040528092919081815260200182805461150590612574565b80156115525780601f1061152757610100808354040283529160200191611552565b820191906000526020600020905b81548152906001019060200180831161153557829003601f168201915b5050505050915050919050565b6040516371be737d60e11b81523360048201527f0000000000000000000000006e53130ddff21e3bc963ee902005223b9a202106906000906001600160a01b0383169063e37ce6fa9060240160206040518083038186803b1580156115c357600080fd5b505afa1580156115d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fb9190612277565b90508061164a5760405162461bcd60e51b815260206004820152601f60248201527f4e69667479456e746974793a20496e76616c6964206d73672e73656e646572006044820152606401610697565b61096b8484611df5565b6000818152600560205260409020546060906001600160a01b03166116e15760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a204e616d6520717565727920666f72206e60448201527f6f6e6578697374656e7420746f6b656e000000000000000000000000000000006064820152608401610697565b60006116ec83611e14565b60008181526003602052604090208054919250906114d990612574565b6000818152600760205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061174b82610dfe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600560205260408120546001600160a01b031661180e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610697565b600061181983610dfe565b9050806001600160a01b0316846001600160a01b031614806118545750836001600160a01b031661184984610611565b6001600160a01b0316145b8061188457506001600160a01b0380821660009081526008602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661189f82610dfe565b6001600160a01b03161461191b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610697565b6001600160a01b0382166119965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610697565b6119a1600082611709565b6001600160a01b03831660009081526006602052604081208054600192906119ca908490612531565b90915550506001600160a01b03821660009081526006602052604081208054600192906119f89084906124e6565b9091555050600081815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008281526004602052604090208054611a7f90612574565b159050611af45760405162461bcd60e51b815260206004820152602560248201527f4552433732314d657461646174613a2049504653206861736820616c7265616460448201527f79207365740000000000000000000000000000000000000000000000000000006064820152608401610697565b600082815260046020908152604090912082516107e992840190611fc5565b6000611b1e82610dfe565b9050611b2b600083611709565b6001600160a01b0381166000908152600660205260408120805460019290611b54908490612531565b9091555050600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600081611be87f000000000000000000000000000000000000000000000000000000000000271085612512565b611c12907f0000000000000000000000000000000000000000000000000000000005f5e1006124e6565b611c1c91906124e6565b9392505050565b8051611c36906002906020840190611fc5565b5050565b611c4584848461188c565b611c5184848484611e6b565b61096b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610697565b606081611d0357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611d2d5780611d17816125af565b9150611d269050600a836124fe565b9150611d07565b60008167ffffffffffffffff811115611d4857611d48612620565b6040519080825280601f01601f191660200182016040528015611d72576020820181803683370190505b5090505b841561188457611d87600183612531565b9150611d94600a866125ca565b611d9f9060306124e6565b60f81b818381518110611db457611db461260a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611dee600a866124fe565b9450611d76565b600082815260036020908152604090912082516107e992840190611fc5565b60007f0000000000000000000000000000000000000000000000000000000000002710611e617f0000000000000000000000000000000000000000000000000000000005f5e10084612531565b61056a91906124fe565b6000833b15611fba57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ea6903390899088908890600401612497565b602060405180830381600087803b158015611ec057600080fd5b505af1925050508015611ef0575060408051601f3d908101601f19168201909252611eed918101906122b1565b60015b611fa0573d808015611f1e576040519150601f19603f3d011682016040523d82523d6000602084013e611f23565b606091505b508051611f985760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610697565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611884565b506001949350505050565b828054611fd190612574565b90600052602060002090601f016020900481019282611ff35760008555612039565b82601f1061200c57805160ff1916838001178555612039565b82800160010185558215612039579182015b8281111561203957825182559160200191906001019061201e565b50612045929150612049565b5090565b5b80821115612045576000815560010161204a565b600067ffffffffffffffff8084111561207957612079612620565b604051601f8501601f19908116603f011681019082821181831017156120a1576120a1612620565b816040528093508581528686860111156120ba57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120eb57600080fd5b919050565b600082601f83011261210157600080fd5b611c1c8383356020850161205e565b60006020828403121561212257600080fd5b611c1c826120d4565b6000806040838503121561213e57600080fd5b612147836120d4565b9150612155602084016120d4565b90509250929050565b60008060006060848603121561217357600080fd5b61217c846120d4565b925061218a602085016120d4565b9150604084013590509250925092565b600080600080608085870312156121b057600080fd5b6121b9856120d4565b93506121c7602086016120d4565b925060408501359150606085013567ffffffffffffffff8111156121ea57600080fd5b8501601f810187136121fb57600080fd5b61220a8782356020840161205e565b91505092959194509250565b6000806040838503121561222957600080fd5b612232836120d4565b9150602083013561224281612636565b809150509250929050565b6000806040838503121561226057600080fd5b612269836120d4565b946020939093013593505050565b60006020828403121561228957600080fd5b8151611c1c81612636565b6000602082840312156122a657600080fd5b8135611c1c81612644565b6000602082840312156122c357600080fd5b8151611c1c81612644565b6000602082840312156122e057600080fd5b813567ffffffffffffffff8111156122f757600080fd5b611884848285016120f0565b60006020828403121561231557600080fd5b5035919050565b6000806040838503121561232f57600080fd5b82359150602083013567ffffffffffffffff81111561234d57600080fd5b612359858286016120f0565b9150509250929050565b6000806040838503121561237657600080fd5b50508035926020909101359150565b60006020828403121561239757600080fd5b815160ff81168114611c1c57600080fd5b600081518084526123c0816020860160208601612548565b601f01601f19169290920160200192915050565b600081516123e6818560208601612548565b9290920192915050565b600080845481600182811c91508083168061240c57607f831692505b602080841082141561242c57634e487b7160e01b86526022600452602486fd5b81801561244057600181146124515761247e565b60ff1986168952848901965061247e565b60008b81526020902060005b868110156124765781548b82015290850190830161245d565b505084890196505b50505050505061248e81856123d4565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526124c960808301846123a8565b9695505050505050565b602081526000611c1c60208301846123a8565b600082198211156124f9576124f96125de565b500190565b60008261250d5761250d6125f4565b500490565b600081600019048311821515161561252c5761252c6125de565b500290565b600082821015612543576125436125de565b500390565b60005b8381101561256357818101518382015260200161254b565b8381111561096b5750506000910152565b600181811c9082168061258857607f821691505b602082108114156125a957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125c3576125c36125de565b5060010190565b6000826125d9576125d96125f4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610a1057600080fd5b6001600160e01b031981168114610a1057600080fdfea264697066735822122038ad1588f584b75bf3ad31f9a4d3016e97b7f3a5d60049366f0719a20650727964736f6c63430008060033

Deployed Bytecode Sourcemap

27277:7307:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31554:197;;;;;;:::i;:::-;;:::i;:::-;;;7908:14:1;;7901:22;7883:41;;7871:2;7856:18;31554:197:0;;;;;;;;12786:292;;;;;;:::i;:::-;;:::i;32157:97::-;;;:::i;:::-;;;;;;;:::i;10901:25::-;;;;;;;;15646::1;;;15634:2;15619:18;10901:25:0;15601:76:1;13718:100:0;;;:::i;16926:219::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7160:55:1;;;7142:74;;7130:2;7115:18;16926:219:0;7097:125:1;16463:397:0;;;;;;:::i;:::-;;:::i;:::-;;11084:38;;;;;10993:32;;;;;17812:303;;;;;;:::i;:::-;;:::i;32804:158::-;;;;;;:::i;:::-;;:::i;18186:151::-;;;;;;:::i;:::-;;:::i;25275:245::-;;;;;;:::i;:::-;;:::i;33326:697::-;;;;;;:::i;:::-;;:::i;32356:105::-;;;;;;:::i;:::-;;:::i;29304:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;13412:239;;;;;;:::i;:::-;;:::i;13142:208::-;;;;;;:::i;:::-;;:::i;13887:104::-;;;:::i;31850:237::-;;;;;;:::i;:::-;;:::i;17217:293::-;;;;;;:::i;:::-;;:::i;30300:135::-;;;;;;:::i;:::-;;:::i;18408:285::-;;;;;;:::i;:::-;;:::i;14300:321::-;;;;;;:::i;:::-;;:::i;34291:288::-;;;;;;:::i;:::-;;:::i;32550:147::-;;;;;;:::i;:::-;;:::i;27381:32::-;;;;;-1:-1:-1;;;;;27381:32:0;;;15117:268;;;;;;:::i;:::-;;:::i;17581:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;17702:25:0;;;17678:4;17702:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17581:164;31554:197;31617:4;;31650:10;31617:4;31661:15;31673:3;31661:9;:15;:::i;:::-;31650:27;;;;;;;;;;;;31634:43;;31730:3;31718:9;:15;;;;:::i;:::-;31712:1;:22;;31696:39;31695:48;;;31554:197;-1:-1:-1;;31554:197:0:o;12786:292::-;12888:4;-1:-1:-1;;;;;;12912:40:0;;12927:25;12912:40;;:105;;-1:-1:-1;;;;;;;12969:48:0;;12984:33;12969:48;12912:105;:158;;;-1:-1:-1;9258:25:0;-1:-1:-1;;;;;;9243:40:0;;;13034:36;12905:165;12786:292;-1:-1:-1;;12786:292:0:o;32157:97::-;32205:13;32238:8;32231:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32157:97;:::o;13718:100::-;13772:13;13805:5;13798:12;;;;;:::i;16926:219::-;17002:7;20249:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20249:16:0;17022:73;;;;-1:-1:-1;;;17022:73:0;;12449:2:1;17022:73:0;;;12431:21:1;12488:2;12468:18;;;12461:30;12527:34;12507:18;;;12500:62;12598:14;12578:18;;;12571:42;12630:19;;17022:73:0;;;;;;;;;-1:-1:-1;17113:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;17113:24:0;;16926:219::o;16463:397::-;16544:13;16560:23;16575:7;16560:14;:23::i;:::-;16544:39;;16608:5;-1:-1:-1;;;;;16602:11:0;:2;-1:-1:-1;;;;;16602:11:0;;;16594:57;;;;-1:-1:-1;;;16594:57:0;;14048:2:1;16594:57:0;;;14030:21:1;14087:2;14067:18;;;14060:30;14126:34;14106:18;;;14099:62;14197:3;14177:18;;;14170:31;14218:19;;16594:57:0;14020:223:1;16594:57:0;7376:10;-1:-1:-1;;;;;16672:21:0;;;;:62;;-1:-1:-1;16697:37:0;16714:5;7376:10;17581:164;:::i;16697:37::-;16664:154;;;;-1:-1:-1;;;16664:154:0;;10797:2:1;16664:154:0;;;10779:21:1;10836:2;10816:18;;;10809:30;10875:34;10855:18;;;10848:62;10946:26;10926:18;;;10919:54;10990:19;;16664:154:0;10769:246:1;16664:154:0;16831:21;16840:2;16844:7;16831:8;:21::i;:::-;16533:327;16463:397;;:::o;17812:303::-;17973:41;7376:10;17992:12;18006:7;17973:18;:41::i;:::-;17965:103;;;;-1:-1:-1;;;17965:103:0;;14450:2:1;17965:103:0;;;14432:21:1;14489:2;14469:18;;;14462:30;14528:34;14508:18;;;14501:62;14599:19;14579:18;;;14572:47;14636:19;;17965:103:0;14422:239:1;17965:103:0;18079:28;18089:4;18095:2;18099:7;18079:9;:28::i;32804:158::-;9986:44;;-1:-1:-1;;;9986:44:0;;10019:10;9986:44;;;7142:74:1;9937:22:0;;9893:27;;-1:-1:-1;;;;;9986:32:0;;;;;7115:18:1;;9986:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9971:59;;10049:7;10041:51;;;;-1:-1:-1;;;10041:51:0;;13688:2:1;10041:51:0;;;13670:21:1;13727:2;13707:18;;;13700:30;13766:33;13746:18;;;13739:61;13817:18;;10041:51:0;13660:181:1;10041:51:0;32907:47:::1;32934:9;32945:8;32907:26;:47::i;:::-;9882:230:::0;;32804:158;;:::o;18186:151::-;18290:39;18307:4;18313:2;18317:7;18290:39;;;;;;;;;;;;:16;:39::i;25275:245::-;25393:41;7376:10;25412:12;7296:98;25393:41;25385:102;;;;-1:-1:-1;;;25385:102:0;;14868:2:1;25385:102:0;;;14850:21:1;14907:2;14887:18;;;14880:30;14946:34;14926:18;;;14919:62;15017:18;14997;;;14990:46;15053:19;;25385:102:0;14840:238:1;25385:102:0;25498:14;25504:7;25498:5;:14::i;:::-;25275:245;:::o;33326:697::-;9986:44;;-1:-1:-1;;;9986:44:0;;10019:10;9986:44;;;7142:74:1;9937:22:0;;9893:27;;-1:-1:-1;;;;;9986:32:0;;;;;7115:18:1;;9986:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9971:59;;10049:7;10041:51;;;;-1:-1:-1;;;10041:51:0;;13688:2:1;10041:51:0;;;13670:21:1;13727:2;13707:18;;;13700:30;13766:33;13746:18;;;13739:61;13817:18;;10041:51:0;13660:181:1;10041:51:0;33422:24:::1;33436:9;33422:13;:24::i;:::-;33421:25;33413:92;;;::::0;-1:-1:-1;;;33413:92:0;;9202:2:1;33413:92:0::1;::::0;::::1;9184:21:1::0;9241:2;9221:18;;;9214:30;9280:34;9260:18;;;9253:62;9351:24;9331:18;;;9324:52;9393:19;;33413:92:0::1;9174:244:1::0;33413:92:0::1;33530:19;33552:21:::0;;;:10:::1;:21;::::0;;;;;:25:::1;::::0;33576:1:::1;33552:25;:::i;:::-;33530:47;;33588:17;33608:38;33623:9;33634:11;33608:14;:38::i;:::-;33588:58:::0;-1:-1:-1;33657:17:0::1;33697:1;33677:17;33689:5:::0;33588:58;33677:17:::1;:::i;:::-;:21;;;;:::i;:::-;33657:41:::0;-1:-1:-1;33742:9:0;33719:126:::1;33764:9;33753:7;:20;33719:126;;33801:16;::::0;;;:7:::1;:16;::::0;;;;:32;;-1:-1:-1;;33801:32:0::1;33820:13;-1:-1:-1::0;;;;;33801:32:0::1;;::::0;;:16;33775:9:::1;33801:16:::0;33775:9:::1;:::i;:::-;;;;33719:126;;;-1:-1:-1::0;33855:21:0::1;::::0;;;:10:::1;:21;::::0;;;;:30;;33880:5;;33855:21;:30:::1;::::0;33880:5;;33855:30:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;33906:13:0::1;33896:24;;::::0;;;:9:::1;:24;::::0;;;;:33;;33924:5;;33896:24;:33:::1;::::0;33924:5;;33896:33:::1;:::i;:::-;::::0;;;-1:-1:-1;;33947:68:0::1;::::0;15646:25:1;;;-1:-1:-1;;;;;34001:13:0::1;33947:68;::::0;33997:1:::1;::::0;33967:9;;33947:68:::1;::::0;15634:2:1;15619:18;33947:68:0::1;;;;;;;33402:621;;;9882:230:::0;;33326:697;;:::o;32356:105::-;9986:44;;-1:-1:-1;;;9986:44:0;;10019:10;9986:44;;;7142:74:1;9937:22:0;;9893:27;;-1:-1:-1;;;;;9986:32:0;;;;;7115:18:1;;9986:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9971:59;;10049:7;10041:51;;;;-1:-1:-1;;;10041:51:0;;13688:2:1;10041:51:0;;;13670:21:1;13727:2;13707:18;;;13700:30;13766:33;13746:18;;;13739:61;13817:18;;10041:51:0;13660:181:1;10041:51:0;32433:20:::1;32445:7;32433:11;:20::i;13412:239::-:0;13484:7;13520:16;;;:7;:16;;;;;;-1:-1:-1;;;;;13520:16:0;13555:19;13547:73;;;;-1:-1:-1;;;13547:73:0;;11633:2:1;13547:73:0;;;11615:21:1;11672:2;11652:18;;;11645:30;11711:34;11691:18;;;11684:62;11782:11;11762:18;;;11755:39;11811:19;;13547:73:0;11605:231:1;13142:208:0;13214:7;-1:-1:-1;;;;;13242:19:0;;13234:74;;;;-1:-1:-1;;;13234:74:0;;11222:2:1;13234:74:0;;;11204:21:1;11261:2;11241:18;;;11234:30;11300:34;11280:18;;;11273:62;11371:12;11351:18;;;11344:40;11401:19;;13234:74:0;11194:232:1;13234:74:0;-1:-1:-1;;;;;;13326:16:0;;;;;:9;:16;;;;;;;13142:208::o;13887:104::-;13943:13;13976:7;13969:14;;;;;:::i;31850:237::-;9986:44;;-1:-1:-1;;;9986:44:0;;10019:10;9986:44;;;7142:74:1;9937:22:0;;9893:27;;-1:-1:-1;;;;;9986:32:0;;;;;7115:18:1;;9986:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9971:59;;10049:7;10041:51;;;;-1:-1:-1;;;10041:51:0;;13688:2:1;10041:51:0;;;13670:21:1;13727:2;13707:18;;;13700:30;13766:33;13746:18;;;13739:61;13817:18;;10041:51:0;13660:181:1;10041:51:0;31925:16:::1;31944:15;31956:3;31944:9:::0;:15:::1;:::i;:::-;31970:13;31986:20:::0;;;:10:::1;:20;::::0;;;;;31925:34;;-1:-1:-1;32062:15:0::1;32074:3;32062:9:::0;:15:::1;:::i;:::-;32048:31;32017:20:::0;;;:10:::1;:20;::::0;;;;;32056:1:::1;:22:::0;;::::1;32040:39;32017:62:::0;;-1:-1:-1;;;31850:237:0:o;17217:293::-;-1:-1:-1;;;;;17320:24:0;;7376:10;17320:24;;17312:62;;;;-1:-1:-1;;;17312:62:0;;10030:2:1;17312:62:0;;;10012:21:1;10069:2;10049:18;;;10042:30;10108:27;10088:18;;;10081:55;10153:18;;17312:62:0;10002:175:1;17312:62:0;7376:10;17385:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;17385:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;17385:53:0;;;;;;;;;;17454:48;;7883:41:1;;;17385:42:0;;7376:10;17454:48;;7856:18:1;17454:48:0;;;;;;;17217:293;;:::o;30300:135::-;9986:44;;-1:-1:-1;;;9986:44:0;;10019:10;9986:44;;;7142:74:1;9937:22:0;;9893:27;;-1:-1:-1;;;;;9986:32:0;;;;;7115:18:1;;9986:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9971:59;;10049:7;10041:51;;;;-1:-1:-1;;;10041:51:0;;13688:2:1;10041:51:0;;;13670:21:1;13727:2;13707:18;;;13700:30;13766:33;13746:18;;;13739:61;13817:18;;10041:51:0;13660:181:1;10041:51:0;-1:-1:-1;;30390:17:0::1;:37:::0;;-1:-1:-1;;30390:37:0::1;-1:-1:-1::0;;;;;30390:37:0;;;::::1;::::0;;;::::1;::::0;;30300:135::o;18408:285::-;18540:41;7376:10;18573:7;18540:18;:41::i;:::-;18532:103;;;;-1:-1:-1;;;18532:103:0;;14450:2:1;18532:103:0;;;14432:21:1;14489:2;14469:18;;;14462:30;14528:34;14508:18;;;14501:62;14599:19;14579:18;;;14572:47;14636:19;;18532:103:0;14422:239:1;18532:103:0;18646:39;18660:4;18666:2;18670:7;18679:5;18646:13;:39::i;14300:321::-;20225:4;20249:16;;;:7;:16;;;;;;14367:13;;-1:-1:-1;;;;;20249:16:0;14393:76;;;;-1:-1:-1;;;14393:76:0;;13272:2:1;14393:76:0;;;13254:21:1;13311:2;13291:18;;;13284:30;13350:34;13330:18;;;13323:62;13421:17;13401:18;;;13394:45;13456:19;;14393:76:0;13244:237:1;14393:76:0;14480:24;14507:25;14524:7;14507:16;:25::i;:::-;14480:52;;14591:8;14601:10;14574:38;;;;;;;;;:::i;:::-;;;;;;;;;;;;;14560:53;;;14300:321;;;:::o;34291:288::-;20225:4;20249:16;;;:7;:16;;;;;;34354:13;;-1:-1:-1;;;;;20249:16:0;34380:82;;;;-1:-1:-1;;;34380:82:0;;8361:2:1;34380:82:0;;;8343:21:1;8400:2;8380:18;;;8373:30;8439:34;8419:18;;;8412:62;8510:23;8490:18;;;8483:51;8551:19;;34380:82:0;8333:243:1;34380:82:0;34496:17;;34486:53;;;;;34523:15;34486:53;;;15646:25:1;34473:10:0;;-1:-1:-1;;;;;34496:17:0;;34486:36;;15619:18:1;;34486:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34473:66;;34557:8;34566:4;34557:14;;;;;;;;;:::i;:::-;;34550:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34291:288;;;:::o;32550:147::-;9986:44;;-1:-1:-1;;;9986:44:0;;10019:10;9986:44;;;7142:74:1;9937:22:0;;9893:27;;-1:-1:-1;;;;;9986:32:0;;;;;7115:18:1;;9986:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9971:59;;10049:7;10041:51;;;;-1:-1:-1;;;10041:51:0;;13688:2:1;10041:51:0;;;13670:21:1;13727:2;13707:18;;;13700:30;13766:33;13746:18;;;13739:61;13817:18;;10041:51:0;13660:181:1;10041:51:0;32650:39:::1;32668:9;32679;32650:17;:39::i;15117:268::-:0;20225:4;20249:16;;;:7;:16;;;;;;15176:13;;-1:-1:-1;;;;;20249:16:0;15202:77;;;;-1:-1:-1;;;15202:77:0;;15285:2:1;15202:77:0;;;15267:21:1;15324:2;15304:18;;;15297:30;15363:34;15343:18;;;15336:62;15434:18;15414;;;15407:46;15470:19;;15202:77:0;15257:238:1;15202:77:0;15290:17;15310:24;15326:7;15310:15;:24::i;:::-;15352:25;;;;:14;:25;;;;;15345:32;;15290:44;;-1:-1:-1;15352:25:0;15345:32;;;:::i;22277:174::-;22352:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;22352:29:0;-1:-1:-1;;;;;22352:29:0;;;;;;;;:24;;22406:23;22352:24;22406:14;:23::i;:::-;-1:-1:-1;;;;;22397:46:0;;;;;;;;;;;22277:174;;:::o;20454:348::-;20547:4;20249:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20249:16:0;20564:73;;;;-1:-1:-1;;;20564:73:0;;10384:2:1;20564:73:0;;;10366:21:1;10423:2;10403:18;;;10396:30;10462:34;10442:18;;;10435:62;10533:14;10513:18;;;10506:42;10565:19;;20564:73:0;10356:234:1;20564:73:0;20648:13;20664:23;20679:7;20664:14;:23::i;:::-;20648:39;;20717:5;-1:-1:-1;;;;;20706:16:0;:7;-1:-1:-1;;;;;20706:16:0;;:51;;;;20750:7;-1:-1:-1;;;;;20726:31:0;:20;20738:7;20726:11;:20::i;:::-;-1:-1:-1;;;;;20726:31:0;;20706:51;:87;;;-1:-1:-1;;;;;;17702:25:0;;;17678:4;17702:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;20761:32;20698:96;20454:348;-1:-1:-1;;;;20454:348:0:o;21667:492::-;21792:4;-1:-1:-1;;;;;21765:31:0;:23;21780:7;21765:14;:23::i;:::-;-1:-1:-1;;;;;21765:31:0;;21757:85;;;;-1:-1:-1;;;21757:85:0;;12862:2:1;21757:85:0;;;12844:21:1;12901:2;12881:18;;;12874:30;12940:34;12920:18;;;12913:62;13011:11;12991:18;;;12984:39;13040:19;;21757:85:0;12834:231:1;21757:85:0;-1:-1:-1;;;;;21861:16:0;;21853:65;;;;-1:-1:-1;;;21853:65:0;;9625:2:1;21853:65:0;;;9607:21:1;9664:2;9644:18;;;9637:30;9703:34;9683:18;;;9676:62;9774:6;9754:18;;;9747:34;9798:19;;21853:65:0;9597:226:1;21853:65:0;21983:29;22000:1;22004:7;21983:8;:29::i;:::-;-1:-1:-1;;;;;22025:15:0;;;;;;:9;:15;;;;;:20;;22044:1;;22025:15;:20;;22044:1;;22025:20;:::i;:::-;;;;-1:-1:-1;;;;;;;22056:13:0;;;;;;:9;:13;;;;;:18;;22073:1;;22056:13;:18;;22073:1;;22056:18;:::i;:::-;;;;-1:-1:-1;;22085:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;22085:21:0;-1:-1:-1;;;;;22085:21:0;;;;;;;;;22124:27;;22085:16;;22124:27;;;;;;;21667:492;;;:::o;15622:262::-;15736:31;;;;:20;:31;;;;;15730:45;;;;;:::i;:::-;:50;;-1:-1:-1;15722:100:0;;;;-1:-1:-1;;;15722:100:0;;12043:2:1;15722:100:0;;;12025:21:1;12082:2;12062:18;;;12055:30;12121:34;12101:18;;;12094:62;12192:7;12172:18;;;12165:35;12217:19;;15722:100:0;12015:227:1;15722:100:0;15833:31;;;;:20;:31;;;;;;;;:43;;;;;;;;:::i;21031:299::-;21091:13;21107:23;21122:7;21107:14;:23::i;:::-;21091:39;;21171:29;21188:1;21192:7;21171:8;:29::i;:::-;-1:-1:-1;;;;;21213:16:0;;;;;;:9;:16;;;;;:21;;21233:1;;21213:16;:21;;21233:1;;21213:21;:::i;:::-;;;;-1:-1:-1;;21252:16:0;;;;:7;:16;;;;;;21245:23;;-1:-1:-1;;21245:23:0;;;21286:36;21260:7;;21252:16;-1:-1:-1;;;;;21286:36:0;;;;;21252:16;;21286:36;21080:250;21031:299;:::o;31246:190::-;31332:7;31416:11;31382:30;31394:18;31382:9;:30;:::i;:::-;31360:53;;:18;:53;:::i;:::-;:67;;;;:::i;:::-;31352:76;31246:190;-1:-1:-1;;;31246:190:0:o;16309:92::-;16374:19;;;;:8;;:19;;;;;:::i;:::-;;16309:92;:::o;19575:272::-;19689:28;19699:4;19705:2;19709:7;19689:9;:28::i;:::-;19736:48;19759:4;19765:2;19769:7;19778:5;19736:22;:48::i;:::-;19728:111;;;;-1:-1:-1;;;19728:111:0;;8783:2:1;19728:111:0;;;8765:21:1;8822:2;8802:18;;;8795:30;8861:34;8841:18;;;8834:62;8932:20;8912:18;;;8905:48;8970:19;;19728:111:0;8755:240:1;7662:723:0;7718:13;7939:10;7935:53;;-1:-1:-1;;7966:10:0;;;;;;;;;;;;;;;;;;7662:723::o;7935:53::-;8013:5;7998:12;8054:78;8061:9;;8054:78;;8087:8;;;;:::i;:::-;;-1:-1:-1;8110:10:0;;-1:-1:-1;8118:2:0;8110:10;;:::i;:::-;;;8054:78;;;8142:19;8174:6;8164:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8164:17:0;;8142:39;;8192:154;8199:10;;8192:154;;8226:11;8236:1;8226:11;;:::i;:::-;;-1:-1:-1;8295:10:0;8303:2;8295:5;:10;:::i;:::-;8282:24;;:2;:24;:::i;:::-;8269:39;;8252:6;8259;8252:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;8323:11:0;8332:2;8323:11;;:::i;:::-;;;8192:154;;16087:148;16184:25;;;;:14;:25;;;;;;;;:43;;;;;;;;:::i;14757:151::-;14822:7;14882:18;14850:28;14860:18;14850:7;:28;:::i;:::-;14849:51;;;;:::i;23016:842::-;23137:4;24820:20;;24859:8;23159:692;;23198:72;;-1:-1:-1;;;23198:72:0;;-1:-1:-1;;;;;23198:36:0;;;;;:72;;7376:10;;23249:4;;23255:7;;23264:5;;23198:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23198:72:0;;;;;;;;-1:-1:-1;;23198:72:0;;;;;;;;;;;;:::i;:::-;;;23194:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23444:13:0;;23440:341;;23487:60;;-1:-1:-1;;;23487:60:0;;8783:2:1;23487:60:0;;;8765:21:1;8822:2;8802:18;;;8795:30;8861:34;8841:18;;;8834:62;8932:20;8912:18;;;8905:48;8970:19;;23487:60:0;8755:240:1;23440:341:0;23731:6;23725:13;23716:6;23712:2;23708:15;23701:38;23194:602;-1:-1:-1;;;;;;23321:55:0;-1:-1:-1;;;23321:55:0;;-1:-1:-1;23314:62:0;;23159:692;-1:-1:-1;23835:4:0;23016:842;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:2;;836:1;833;826:12;747:2;699:147;;;:::o;851:221::-;894:5;947:3;940:4;932:6;928:17;924:27;914:2;;965:1;962;955:12;914:2;987:79;1062:3;1053:6;1040:20;1033:4;1025:6;1021:17;987:79;:::i;1077:186::-;1136:6;1189:2;1177:9;1168:7;1164:23;1160:32;1157:2;;;1205:1;1202;1195:12;1157:2;1228:29;1247:9;1228:29;:::i;1268:260::-;1336:6;1344;1397:2;1385:9;1376:7;1372:23;1368:32;1365:2;;;1413:1;1410;1403:12;1365:2;1436:29;1455:9;1436:29;:::i;:::-;1426:39;;1484:38;1518:2;1507:9;1503:18;1484:38;:::i;:::-;1474:48;;1355:173;;;;;:::o;1533:328::-;1610:6;1618;1626;1679:2;1667:9;1658:7;1654:23;1650:32;1647:2;;;1695:1;1692;1685:12;1647:2;1718:29;1737:9;1718:29;:::i;:::-;1708:39;;1766:38;1800:2;1789:9;1785:18;1766:38;:::i;:::-;1756:48;;1851:2;1840:9;1836:18;1823:32;1813:42;;1637:224;;;;;:::o;1866:666::-;1961:6;1969;1977;1985;2038:3;2026:9;2017:7;2013:23;2009:33;2006:2;;;2055:1;2052;2045:12;2006:2;2078:29;2097:9;2078:29;:::i;:::-;2068:39;;2126:38;2160:2;2149:9;2145:18;2126:38;:::i;:::-;2116:48;;2211:2;2200:9;2196:18;2183:32;2173:42;;2266:2;2255:9;2251:18;2238:32;2293:18;2285:6;2282:30;2279:2;;;2325:1;2322;2315:12;2279:2;2348:22;;2401:4;2393:13;;2389:27;-1:-1:-1;2379:2:1;;2430:1;2427;2420:12;2379:2;2453:73;2518:7;2513:2;2500:16;2495:2;2491;2487:11;2453:73;:::i;:::-;2443:83;;;1996:536;;;;;;;:::o;2537:315::-;2602:6;2610;2663:2;2651:9;2642:7;2638:23;2634:32;2631:2;;;2679:1;2676;2669:12;2631:2;2702:29;2721:9;2702:29;:::i;:::-;2692:39;;2781:2;2770:9;2766:18;2753:32;2794:28;2816:5;2794:28;:::i;:::-;2841:5;2831:15;;;2621:231;;;;;:::o;2857:254::-;2925:6;2933;2986:2;2974:9;2965:7;2961:23;2957:32;2954:2;;;3002:1;2999;2992:12;2954:2;3025:29;3044:9;3025:29;:::i;:::-;3015:39;3101:2;3086:18;;;;3073:32;;-1:-1:-1;;;2944:167:1:o;3116:245::-;3183:6;3236:2;3224:9;3215:7;3211:23;3207:32;3204:2;;;3252:1;3249;3242:12;3204:2;3284:9;3278:16;3303:28;3325:5;3303:28;:::i;3366:245::-;3424:6;3477:2;3465:9;3456:7;3452:23;3448:32;3445:2;;;3493:1;3490;3483:12;3445:2;3532:9;3519:23;3551:30;3575:5;3551:30;:::i;3616:249::-;3685:6;3738:2;3726:9;3717:7;3713:23;3709:32;3706:2;;;3754:1;3751;3744:12;3706:2;3786:9;3780:16;3805:30;3829:5;3805:30;:::i;3870:322::-;3939:6;3992:2;3980:9;3971:7;3967:23;3963:32;3960:2;;;4008:1;4005;3998:12;3960:2;4048:9;4035:23;4081:18;4073:6;4070:30;4067:2;;;4113:1;4110;4103:12;4067:2;4136:50;4178:7;4169:6;4158:9;4154:22;4136:50;:::i;4197:180::-;4256:6;4309:2;4297:9;4288:7;4284:23;4280:32;4277:2;;;4325:1;4322;4315:12;4277:2;-1:-1:-1;4348:23:1;;4267:110;-1:-1:-1;4267:110:1:o;4382:390::-;4460:6;4468;4521:2;4509:9;4500:7;4496:23;4492:32;4489:2;;;4537:1;4534;4527:12;4489:2;4573:9;4560:23;4550:33;;4634:2;4623:9;4619:18;4606:32;4661:18;4653:6;4650:30;4647:2;;;4693:1;4690;4683:12;4647:2;4716:50;4758:7;4749:6;4738:9;4734:22;4716:50;:::i;:::-;4706:60;;;4479:293;;;;;:::o;4777:248::-;4845:6;4853;4906:2;4894:9;4885:7;4881:23;4877:32;4874:2;;;4922:1;4919;4912:12;4874:2;-1:-1:-1;;4945:23:1;;;5015:2;5000:18;;;4987:32;;-1:-1:-1;4864:161:1:o;5030:273::-;5098:6;5151:2;5139:9;5130:7;5126:23;5122:32;5119:2;;;5167:1;5164;5157:12;5119:2;5199:9;5193:16;5249:4;5242:5;5238:16;5231:5;5228:27;5218:2;;5269:1;5266;5259:12;5308:257;5349:3;5387:5;5381:12;5414:6;5409:3;5402:19;5430:63;5486:6;5479:4;5474:3;5470:14;5463:4;5456:5;5452:16;5430:63;:::i;:::-;5547:2;5526:15;-1:-1:-1;;5522:29:1;5513:39;;;;5554:4;5509:50;;5357:208;-1:-1:-1;;5357:208:1:o;5570:185::-;5612:3;5650:5;5644:12;5665:52;5710:6;5705:3;5698:4;5691:5;5687:16;5665:52;:::i;:::-;5733:16;;;;;5620:135;-1:-1:-1;;5620:135:1:o;5760:1231::-;5936:3;5965:1;5998:6;5992:13;6028:3;6050:1;6078:9;6074:2;6070:18;6060:28;;6138:2;6127:9;6123:18;6160;6150:2;;6204:4;6196:6;6192:17;6182:27;;6150:2;6230;6278;6270:6;6267:14;6247:18;6244:38;6241:2;;;-1:-1:-1;;;6312:3:1;6305:90;6418:4;6415:1;6408:15;6448:4;6443:3;6436:17;6241:2;6479:18;6506:104;;;;6624:1;6619:320;;;;6472:467;;6506:104;-1:-1:-1;;6539:24:1;;6527:37;;6584:16;;;;-1:-1:-1;6506:104:1;;6619:320;15755:1;15748:14;;;15792:4;15779:18;;6714:1;6728:165;6742:6;6739:1;6736:13;6728:165;;;6820:14;;6807:11;;;6800:35;6863:16;;;;6757:10;;6728:165;;;6732:3;;6922:6;6917:3;6913:16;6906:23;;6472:467;;;;;;;6955:30;6981:3;6973:6;6955:30;:::i;:::-;6948:37;5944:1047;-1:-1:-1;;;;;5944:1047:1:o;7227:511::-;7421:4;-1:-1:-1;;;;;7531:2:1;7523:6;7519:15;7508:9;7501:34;7583:2;7575:6;7571:15;7566:2;7555:9;7551:18;7544:43;;7623:6;7618:2;7607:9;7603:18;7596:34;7666:3;7661:2;7650:9;7646:18;7639:31;7687:45;7727:3;7716:9;7712:19;7704:6;7687:45;:::i;:::-;7679:53;7430:308;-1:-1:-1;;;;;;7430:308:1:o;7935:219::-;8084:2;8073:9;8066:21;8047:4;8104:44;8144:2;8133:9;8129:18;8121:6;8104:44;:::i;15808:128::-;15848:3;15879:1;15875:6;15872:1;15869:13;15866:2;;;15885:18;;:::i;:::-;-1:-1:-1;15921:9:1;;15856:80::o;15941:120::-;15981:1;16007;15997:2;;16012:18;;:::i;:::-;-1:-1:-1;16046:9:1;;15987:74::o;16066:168::-;16106:7;16172:1;16168;16164:6;16160:14;16157:1;16154:21;16149:1;16142:9;16135:17;16131:45;16128:2;;;16179:18;;:::i;:::-;-1:-1:-1;16219:9:1;;16118:116::o;16239:125::-;16279:4;16307:1;16304;16301:8;16298:2;;;16312:18;;:::i;:::-;-1:-1:-1;16349:9:1;;16288:76::o;16369:258::-;16441:1;16451:113;16465:6;16462:1;16459:13;16451:113;;;16541:11;;;16535:18;16522:11;;;16515:39;16487:2;16480:10;16451:113;;;16582:6;16579:1;16576:13;16573:2;;;-1:-1:-1;;16617:1:1;16599:16;;16592:27;16422:205::o;16632:437::-;16711:1;16707:12;;;;16754;;;16775:2;;16829:4;16821:6;16817:17;16807:27;;16775:2;16882;16874:6;16871:14;16851:18;16848:38;16845:2;;;-1:-1:-1;;;16916:1:1;16909:88;17020:4;17017:1;17010:15;17048:4;17045:1;17038:15;16845:2;;16687:382;;;:::o;17074:135::-;17113:3;-1:-1:-1;;17134:17:1;;17131:2;;;17154:18;;:::i;:::-;-1:-1:-1;17201:1:1;17190:13;;17121:88::o;17214:112::-;17246:1;17272;17262:2;;17277:18;;:::i;:::-;-1:-1:-1;17311:9:1;;17252:74::o;17331:184::-;-1:-1:-1;;;17380:1:1;17373:88;17480:4;17477:1;17470:15;17504:4;17501:1;17494:15;17520:184;-1:-1:-1;;;17569:1:1;17562:88;17669:4;17666:1;17659:15;17693:4;17690:1;17683:15;17709:184;-1:-1:-1;;;17758:1:1;17751:88;17858:4;17855:1;17848:15;17882:4;17879:1;17872:15;17898:184;-1:-1:-1;;;17947:1:1;17940:88;18047:4;18044:1;18037:15;18071:4;18068:1;18061:15;18087:118;18173:5;18166:13;18159:21;18152:5;18149:32;18139:2;;18195:1;18192;18185:12;18210:177;-1:-1:-1;;;;;;18288:5:1;18284:78;18277:5;18274:89;18264:2;;18377:1;18374;18367:12

Swarm Source

ipfs://38ad1588f584b75bf3ad31f9a4d3016e97b7f3a5d60049366f0719a206507279
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.