ETH Price: $3,122.55 (-0.56%)

Token

Witty Creatures 2.0 - Liscon 2021 Special Edition (WITTY2021)
 

Overview

Max Total Supply

114 WITTY2021

Holders

114

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WITTY2021
0x00b3a4e828d0d8bc873dcd33fdcebb7ed2e6edb5
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Witty Creatures LisCon 2021 Special Edition. A gamified NFT minting ceremony for LisCon attendees, featuring the cutest creatures in crypto and powered by the Witnet oracle’s Random Number Generator.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WitmonERC721

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.7.0 <0.9.0;
pragma experimental ABIEncoderV2;

// File: node_modules\witnet-solidity-bridge\contracts\interfaces\IWitnetRequestBoardEvents.sol
/// @title Witnet Request Board emitting events interface.
/// @author The Witnet Foundation.
interface IWitnetRequestBoardEvents {
    /// Emitted when a Witnet Data Request is posted to the WRB.
    event PostedRequest(uint256 queryId, address from);

    /// Emitted when a Witnet-solved result is reported to the WRB.
    event PostedResult(uint256 queryId, address from);

    /// Emitted when all data related to given query is deleted from the WRB.
    event DeletedQuery(uint256 queryId, address from);
}
// File: node_modules\witnet-solidity-bridge\contracts\interfaces\IWitnetRequestBoardReporter.sol
/// @title The Witnet Request Board Reporter interface.
/// @author The Witnet Foundation.
interface IWitnetRequestBoardReporter {
    /// Reports the Witnet-provided result to a previously posted request. 
    /// @dev Will assume `block.timestamp` as the timestamp at which the request was solved.
    /// @dev Fails if:
    /// @dev - the `_queryId` is not in 'Posted' status.
    /// @dev - provided `_drTxHash` is zero;
    /// @dev - length of provided `_result` is zero.
    /// @param _queryId The unique identifier of the data request.
    /// @param _drTxHash The hash of the solving tally transaction in Witnet.
    /// @param _result The result itself as bytes.
    function reportResult(uint256 _queryId, bytes32 _drTxHash, bytes calldata _result) external;

    /// Reports the Witnet-provided result to a previously posted request.
    /// @dev Fails if:
    /// @dev - called from unauthorized address;
    /// @dev - the `_queryId` is not in 'Posted' status.
    /// @dev - provided `_drTxHash` is zero;
    /// @dev - length of provided `_result` is zero.
    /// @param _queryId The unique query identifier
    /// @param _timestamp The timestamp of the solving tally transaction in Witnet.
    /// @param _drTxHash The hash of the solving tally transaction in Witnet.
    /// @param _result The result itself as bytes.
    function reportResult(uint256 _queryId, uint256 _timestamp, bytes32 _drTxHash, bytes calldata _result) external;
}
// File: node_modules\witnet-solidity-bridge\contracts\interfaces\IWitnetRequest.sol
/// @title The Witnet Data Request basic interface.
/// @author The Witnet Foundation.
interface IWitnetRequest {
    /// A `IWitnetRequest` is constructed around a `bytes` value containing 
    /// a well-formed Witnet Data Request using Protocol Buffers.
    function bytecode() external view returns (bytes memory);

    /// Returns SHA256 hash of Witnet Data Request as CBOR-encoded bytes.
    function hash() external view returns (bytes32);
}
// File: node_modules\witnet-solidity-bridge\contracts\libs\Witnet.sol
library Witnet {

    /// @notice Witnet function that computes the hash of a CBOR-encoded Data Request.
    /// @param _bytecode CBOR-encoded RADON.
    function hash(bytes memory _bytecode) internal pure returns (bytes32) {
        return sha256(_bytecode);
    }

    /// Struct containing both request and response data related to every query posted to the Witnet Request Board
    struct Query {
        Request request;
        Response response;
    }

    /// Possible status of a Witnet query.
    enum QueryStatus {
        Unknown,
        Posted,
        Reported,
        Deleted
    }

    /// Data kept in EVM-storage for every Request posted to the Witnet Request Board.
    struct Request {
        IWitnetRequest addr;    // The contract containing the Data Request which execution has been requested.
        address requester;      // Address from which the request was posted.
        bytes32 hash;           // Hash of the Data Request whose execution has been requested.
        uint256 gasprice;       // Minimum gas price the DR resolver should pay on the solving tx.
        uint256 reward;         // Escrowed reward to be paid to the DR resolver.
    }

    /// Data kept in EVM-storage containing Witnet-provided response metadata and result.
    struct Response {
        address reporter;       // Address from which the result was reported.
        uint256 timestamp;      // Timestamp of the Witnet-provided result.
        bytes32 drTxHash;       // Hash of the Witnet transaction that solved the queried Data Request.
        bytes   cborBytes;      // Witnet-provided result CBOR-bytes to the queried Data Request.
    }

    /// Data struct containing the Witnet-provided result to a Data Request.
    struct Result {
        bool success;           // Flag stating whether the request could get solved successfully, or not.
        CBOR value;             // Resulting value, in CBOR-serialized bytes.
    }

    /// Data struct following the RFC-7049 standard: Concise Binary Object Representation.
    struct CBOR {
        Buffer buffer;
        uint8 initialByte;
        uint8 majorType;
        uint8 additionalInformation;
        uint64 len;
        uint64 tag;
    }

    /// Iterable bytes buffer.
    struct Buffer {
        bytes data;
        uint32 cursor;
    }

    /// Witnet error codes table.
    enum ErrorCodes {
        // 0x00: Unknown error. Something went really bad!
        Unknown,
        // Script format errors
        /// 0x01: At least one of the source scripts is not a valid CBOR-encoded value.
        SourceScriptNotCBOR,
        /// 0x02: The CBOR value decoded from a source script is not an Array.
        SourceScriptNotArray,
        /// 0x03: The Array value decoded form a source script is not a valid Data Request.
        SourceScriptNotRADON,
        /// Unallocated
        ScriptFormat0x04,
        ScriptFormat0x05,
        ScriptFormat0x06,
        ScriptFormat0x07,
        ScriptFormat0x08,
        ScriptFormat0x09,
        ScriptFormat0x0A,
        ScriptFormat0x0B,
        ScriptFormat0x0C,
        ScriptFormat0x0D,
        ScriptFormat0x0E,
        ScriptFormat0x0F,
        // Complexity errors
        /// 0x10: The request contains too many sources.
        RequestTooManySources,
        /// 0x11: The script contains too many calls.
        ScriptTooManyCalls,
        /// Unallocated
        Complexity0x12,
        Complexity0x13,
        Complexity0x14,
        Complexity0x15,
        Complexity0x16,
        Complexity0x17,
        Complexity0x18,
        Complexity0x19,
        Complexity0x1A,
        Complexity0x1B,
        Complexity0x1C,
        Complexity0x1D,
        Complexity0x1E,
        Complexity0x1F,
        // Operator errors
        /// 0x20: The operator does not exist.
        UnsupportedOperator,
        /// Unallocated
        Operator0x21,
        Operator0x22,
        Operator0x23,
        Operator0x24,
        Operator0x25,
        Operator0x26,
        Operator0x27,
        Operator0x28,
        Operator0x29,
        Operator0x2A,
        Operator0x2B,
        Operator0x2C,
        Operator0x2D,
        Operator0x2E,
        Operator0x2F,
        // Retrieval-specific errors
        /// 0x30: At least one of the sources could not be retrieved, but returned HTTP error.
        HTTP,
        /// 0x31: Retrieval of at least one of the sources timed out.
        RetrievalTimeout,
        /// Unallocated
        Retrieval0x32,
        Retrieval0x33,
        Retrieval0x34,
        Retrieval0x35,
        Retrieval0x36,
        Retrieval0x37,
        Retrieval0x38,
        Retrieval0x39,
        Retrieval0x3A,
        Retrieval0x3B,
        Retrieval0x3C,
        Retrieval0x3D,
        Retrieval0x3E,
        Retrieval0x3F,
        // Math errors
        /// 0x40: Math operator caused an underflow.
        Underflow,
        /// 0x41: Math operator caused an overflow.
        Overflow,
        /// 0x42: Tried to divide by zero.
        DivisionByZero,
        /// Unallocated
        Math0x43,
        Math0x44,
        Math0x45,
        Math0x46,
        Math0x47,
        Math0x48,
        Math0x49,
        Math0x4A,
        Math0x4B,
        Math0x4C,
        Math0x4D,
        Math0x4E,
        Math0x4F,
        // Other errors
        /// 0x50: Received zero reveals
        NoReveals,
        /// 0x51: Insufficient consensus in tally precondition clause
        InsufficientConsensus,
        /// 0x52: Received zero commits
        InsufficientCommits,
        /// 0x53: Generic error during tally execution
        TallyExecution,
        /// Unallocated
        OtherError0x54,
        OtherError0x55,
        OtherError0x56,
        OtherError0x57,
        OtherError0x58,
        OtherError0x59,
        OtherError0x5A,
        OtherError0x5B,
        OtherError0x5C,
        OtherError0x5D,
        OtherError0x5E,
        OtherError0x5F,
        /// 0x60: Invalid reveal serialization (malformed reveals are converted to this value)
        MalformedReveal,
        /// Unallocated
        OtherError0x61,
        OtherError0x62,
        OtherError0x63,
        OtherError0x64,
        OtherError0x65,
        OtherError0x66,
        OtherError0x67,
        OtherError0x68,
        OtherError0x69,
        OtherError0x6A,
        OtherError0x6B,
        OtherError0x6C,
        OtherError0x6D,
        OtherError0x6E,
        OtherError0x6F,
        // Access errors
        /// 0x70: Tried to access a value from an index using an index that is out of bounds
        ArrayIndexOutOfBounds,
        /// 0x71: Tried to access a value from a map using a key that does not exist
        MapKeyNotFound,
        /// Unallocated
        OtherError0x72,
        OtherError0x73,
        OtherError0x74,
        OtherError0x75,
        OtherError0x76,
        OtherError0x77,
        OtherError0x78,
        OtherError0x79,
        OtherError0x7A,
        OtherError0x7B,
        OtherError0x7C,
        OtherError0x7D,
        OtherError0x7E,
        OtherError0x7F,
        OtherError0x80,
        OtherError0x81,
        OtherError0x82,
        OtherError0x83,
        OtherError0x84,
        OtherError0x85,
        OtherError0x86,
        OtherError0x87,
        OtherError0x88,
        OtherError0x89,
        OtherError0x8A,
        OtherError0x8B,
        OtherError0x8C,
        OtherError0x8D,
        OtherError0x8E,
        OtherError0x8F,
        OtherError0x90,
        OtherError0x91,
        OtherError0x92,
        OtherError0x93,
        OtherError0x94,
        OtherError0x95,
        OtherError0x96,
        OtherError0x97,
        OtherError0x98,
        OtherError0x99,
        OtherError0x9A,
        OtherError0x9B,
        OtherError0x9C,
        OtherError0x9D,
        OtherError0x9E,
        OtherError0x9F,
        OtherError0xA0,
        OtherError0xA1,
        OtherError0xA2,
        OtherError0xA3,
        OtherError0xA4,
        OtherError0xA5,
        OtherError0xA6,
        OtherError0xA7,
        OtherError0xA8,
        OtherError0xA9,
        OtherError0xAA,
        OtherError0xAB,
        OtherError0xAC,
        OtherError0xAD,
        OtherError0xAE,
        OtherError0xAF,
        OtherError0xB0,
        OtherError0xB1,
        OtherError0xB2,
        OtherError0xB3,
        OtherError0xB4,
        OtherError0xB5,
        OtherError0xB6,
        OtherError0xB7,
        OtherError0xB8,
        OtherError0xB9,
        OtherError0xBA,
        OtherError0xBB,
        OtherError0xBC,
        OtherError0xBD,
        OtherError0xBE,
        OtherError0xBF,
        OtherError0xC0,
        OtherError0xC1,
        OtherError0xC2,
        OtherError0xC3,
        OtherError0xC4,
        OtherError0xC5,
        OtherError0xC6,
        OtherError0xC7,
        OtherError0xC8,
        OtherError0xC9,
        OtherError0xCA,
        OtherError0xCB,
        OtherError0xCC,
        OtherError0xCD,
        OtherError0xCE,
        OtherError0xCF,
        OtherError0xD0,
        OtherError0xD1,
        OtherError0xD2,
        OtherError0xD3,
        OtherError0xD4,
        OtherError0xD5,
        OtherError0xD6,
        OtherError0xD7,
        OtherError0xD8,
        OtherError0xD9,
        OtherError0xDA,
        OtherError0xDB,
        OtherError0xDC,
        OtherError0xDD,
        OtherError0xDE,
        OtherError0xDF,
        // Bridge errors: errors that only belong in inter-client communication
        /// 0xE0: Requests that cannot be parsed must always get this error as their result.
        /// However, this is not a valid result in a Tally transaction, because invalid requests
        /// are never included into blocks and therefore never get a Tally in response.
        BridgeMalformedRequest,
        /// 0xE1: Witnesses exceeds 100
        BridgePoorIncentives,
        /// 0xE2: The request is rejected on the grounds that it may cause the submitter to spend or stake an
        /// amount of value that is unjustifiably high when compared with the reward they will be getting
        BridgeOversizedResult,
        /// Unallocated
        OtherError0xE3,
        OtherError0xE4,
        OtherError0xE5,
        OtherError0xE6,
        OtherError0xE7,
        OtherError0xE8,
        OtherError0xE9,
        OtherError0xEA,
        OtherError0xEB,
        OtherError0xEC,
        OtherError0xED,
        OtherError0xEE,
        OtherError0xEF,
        OtherError0xF0,
        OtherError0xF1,
        OtherError0xF2,
        OtherError0xF3,
        OtherError0xF4,
        OtherError0xF5,
        OtherError0xF6,
        OtherError0xF7,
        OtherError0xF8,
        OtherError0xF9,
        OtherError0xFA,
        OtherError0xFB,
        OtherError0xFC,
        OtherError0xFD,
        OtherError0xFE,
        // This should not exist:
        /// 0xFF: Some tally error is not intercepted but should
        UnhandledIntercept
    }
}
// File: node_modules\witnet-solidity-bridge\contracts\interfaces\IWitnetRequestBoardRequestor.sol
/// @title Witnet Requestor Interface
/// @notice It defines how to interact with the Witnet Request Board in order to:
///   - request the execution of Witnet Radon scripts (data request);
///   - upgrade the resolution reward of any previously posted request, in case gas price raises in mainnet;
///   - read the result of any previously posted request, eventually reported by the Witnet DON.
///   - remove from storage all data related to past and solved data requests, and results.
/// @author The Witnet Foundation.
interface IWitnetRequestBoardRequestor {
    /// Retrieves a copy of all Witnet-provided data related to a previously posted request, removing the whole query from the WRB storage.
    /// @dev Fails if the `_queryId` is not in 'Reported' status, or called from an address different to
    /// @dev the one that actually posted the given request.
    /// @param _queryId The unique query identifier.
    function deleteQuery(uint256 _queryId) external returns (Witnet.Response memory);

    /// Requests the execution of the given Witnet Data Request in expectation that it will be relayed and solved by the Witnet DON.
    /// A reward amount is escrowed by the Witnet Request Board that will be transferred to the reporter who relays back the Witnet-provided 
    /// result to this request.
    /// @dev Fails if:
    /// @dev - provided reward is too low.
    /// @dev - provided script is zero address.
    /// @dev - provided script bytecode is empty.
    /// @param _addr The address of the IWitnetRequest contract that can provide the actual Data Request bytecode.
    /// @return _queryId An unique query identifier.
    function postRequest(IWitnetRequest _addr) external payable returns (uint256 _queryId);

    /// Increments the reward of a previously posted request by adding the transaction value to it.
    /// @dev Updates request `gasPrice` in case this method is called with a higher 
    /// @dev gas price value than the one used in previous calls to `postRequest` or
    /// @dev `upgradeReward`. 
    /// @dev Fails if the `_queryId` is not in 'Posted' status.
    /// @dev Fails also in case the request `gasPrice` is increased, and the new 
    /// @dev reward value gets below new recalculated threshold. 
    /// @param _queryId The unique query identifier.
    function upgradeReward(uint256 _queryId) external payable;
}
// File: node_modules\witnet-solidity-bridge\contracts\interfaces\IWitnetRequestBoardView.sol
/// @title Witnet Request Board info interface.
/// @author The Witnet Foundation.
interface IWitnetRequestBoardView {
    /// Estimates the amount of reward we need to insert for a given gas price.
    /// @param _gasPrice The gas price for which we need to calculate the rewards.
    function estimateReward(uint256 _gasPrice) external view returns (uint256);

    /// Returns next query id to be generated by the Witnet Request Board.
    function getNextQueryId() external view returns (uint256);

    /// Gets the whole Query data contents, if any, no matter its current status.
    function getQueryData(uint256 _queryId) external view returns (Witnet.Query memory);

    /// Gets current status of given query.
    function getQueryStatus(uint256 _queryId) external view returns (Witnet.QueryStatus);

    /// Retrieves the whole `Witnet.Request` record referred to a previously posted Witnet Data Request.
    /// @dev Fails if the `_queryId` is not valid or, if it has been deleted,
    /// @dev or if the related script bytecode got changed after being posted.
    /// @param _queryId The unique query identifier.
    function readRequest(uint256 _queryId) external view returns (Witnet.Request memory);

    /// Retrieves the serialized bytecode of a previously posted Witnet Data Request.
    /// @dev Fails if the `_queryId` is not valid or, if it has been deleted,
    /// @dev or if the related script bytecode got changed after being posted.
    /// @param _queryId The unique query identifier.
    function readRequestBytecode(uint256 _queryId) external view returns (bytes memory);

    /// Retrieves the gas price that any assigned reporter will have to pay when reporting result 
    /// to the referred query.
    /// @dev Fails if the `_queryId` is not valid or, if it has been deleted,
    /// @dev or if the related script bytecode got changed after being posted.
    /// @param _queryId The unique query identifier.
    function readRequestGasPrice(uint256 _queryId) external view returns (uint256);

    /// Retrieves the reward currently set for the referred query.
    /// @dev Fails if the `_queryId` is not valid or, if it has been deleted,
    /// @dev or if the related script bytecode got changed after being posted.
    /// @param _queryId The unique query identifier.
    function readRequestReward(uint256 _queryId) external view returns (uint256);

    /// Retrieves the whole `Witnet.Response` record referred to a previously posted Witnet Data Request.
    /// @dev Fails if the `_queryId` is not in 'Reported' status.
    /// @param _queryId The unique query identifier.
    function readResponse(uint256 _queryId) external view returns (Witnet.Response memory);

    /// Retrieves the hash of the Witnet transaction hash that actually solved the referred query.
    /// @dev Fails if the `_queryId` is not in 'Reported' status.
    /// @param _queryId The unique query identifier.
    function readResponseDrTxHash(uint256 _queryId) external view returns (bytes32);    

    /// Retrieves the address that reported the result to a previously-posted request.
    /// @dev Fails if the `_queryId` is not in 'Reported' status.
    /// @param _queryId The unique query identifier.
    function readResponseReporter(uint256 _queryId) external view returns (address);

    /// Retrieves the Witnet-provided CBOR-bytes result of a previously posted request.
    /// @dev Fails if the `_queryId` is not in 'Reported' status.
    /// @param _queryId The unique query identifier.
    function readResponseResult(uint256 _queryId) external view returns (Witnet.Result memory);

    /// Retrieves the timestamp in which the result to the referred query was solved by the Witnet DON.
    /// @dev Fails if the `_queryId` is not in 'Reported' status.
    /// @param _queryId The unique query identifier.
    function readResponseTimestamp(uint256 _queryId) external view returns (uint256);
}
// File: node_modules\witnet-solidity-bridge\contracts\interfaces\IWitnetRequestParser.sol
/// @title The Witnet interface for decoding Witnet-provided request to Data Requests.
/// This interface exposes functions to check for the success/failure of
/// a Witnet-provided result, as well as to parse and convert result into
/// Solidity types suitable to the application level. 
/// @author The Witnet Foundation.
interface IWitnetRequestParser {

    /// Decode raw CBOR bytes into a Witnet.Result instance.
    /// @param _cborBytes Raw bytes representing a CBOR-encoded value.
    /// @return A `Witnet.Result` instance.
    function resultFromCborBytes(bytes memory _cborBytes) external pure returns (Witnet.Result memory);

    /// Decode a CBOR value into a Witnet.Result instance.
    /// @param _cborValue An instance of `Witnet.CBOR`.
    /// @return A `Witnet.Result` instance.
    function resultFromCborValue(Witnet.CBOR memory _cborValue) external pure returns (Witnet.Result memory);

    /// Tell if a Witnet.Result is successful.
    /// @param _result An instance of Witnet.Result.
    /// @return `true` if successful, `false` if errored.
    function isOk(Witnet.Result memory _result) external pure returns (bool);

    /// Tell if a Witnet.Result is errored.
    /// @param _result An instance of Witnet.Result.
    /// @return `true` if errored, `false` if successful.
    function isError(Witnet.Result memory _result) external pure returns (bool);

    /// Decode a bytes value from a Witnet.Result as a `bytes` value.
    /// @param _result An instance of Witnet.Result.
    /// @return The `bytes` decoded from the Witnet.Result.
    function asBytes(Witnet.Result memory _result) external pure returns (bytes memory);

    /// Decode an error code from a Witnet.Result as a member of `Witnet.ErrorCodes`.
    /// @param _result An instance of `Witnet.Result`.
    /// @return The `CBORValue.Error memory` decoded from the Witnet.Result.
    function asErrorCode(Witnet.Result memory _result) external pure returns (Witnet.ErrorCodes);


    /// Generate a suitable error message for a member of `Witnet.ErrorCodes` and its corresponding arguments.
    /// @dev WARN: Note that client contracts should wrap this function into a try-catch foreseing potential errors generated in this function
    /// @param _result An instance of `Witnet.Result`.
    /// @return A tuple containing the `CBORValue.Error memory` decoded from the `Witnet.Result`, plus a loggable error message.
    function asErrorMessage(Witnet.Result memory _result) external pure returns (Witnet.ErrorCodes, string memory);

    /// Decode a raw error from a `Witnet.Result` as a `uint64[]`.
    /// @param _result An instance of `Witnet.Result`.
    /// @return The `uint64[]` raw error as decoded from the `Witnet.Result`.
    function asRawError(Witnet.Result memory _result) external pure returns(uint64[] memory);

    /// Decode a boolean value from a Witnet.Result as an `bool` value.
    /// @param _result An instance of Witnet.Result.
    /// @return The `bool` decoded from the Witnet.Result.
    function asBool(Witnet.Result memory _result) external pure returns (bool);

    /// Decode a fixed16 (half-precision) numeric value from a Witnet.Result as an `int32` value.
    /// @dev Due to the lack of support for floating or fixed point arithmetic in the EVM, this method offsets all values.
    /// by 5 decimal orders so as to get a fixed precision of 5 decimal positions, which should be OK for most `fixed16`.
    /// use cases. In other words, the output of this method is 10,000 times the actual value, encoded into an `int32`.
    /// @param _result An instance of Witnet.Result.
    /// @return The `int128` decoded from the Witnet.Result.
    function asFixed16(Witnet.Result memory _result) external pure returns (int32);

    /// Decode an array of fixed16 values from a Witnet.Result as an `int128[]` value.
    /// @param _result An instance of Witnet.Result.
    /// @return The `int128[]` decoded from the Witnet.Result.
    function asFixed16Array(Witnet.Result memory _result) external pure returns (int32[] memory);

    /// Decode a integer numeric value from a Witnet.Result as an `int128` value.
    /// @param _result An instance of Witnet.Result.
    /// @return The `int128` decoded from the Witnet.Result.
    function asInt128(Witnet.Result memory _result) external pure returns (int128);

    /// Decode an array of integer numeric values from a Witnet.Result as an `int128[]` value.
    /// @param _result An instance of Witnet.Result.
    /// @return The `int128[]` decoded from the Witnet.Result.
    function asInt128Array(Witnet.Result memory _result) external pure returns (int128[] memory);

    /// Decode a string value from a Witnet.Result as a `string` value.
    /// @param _result An instance of Witnet.Result.
    /// @return The `string` decoded from the Witnet.Result.
    function asString(Witnet.Result memory _result) external pure returns (string memory);

    /// Decode an array of string values from a Witnet.Result as a `string[]` value.
    /// @param _result An instance of Witnet.Result.
    /// @return The `string[]` decoded from the Witnet.Result.
    function asStringArray(Witnet.Result memory _result) external pure returns (string[] memory);

    /// Decode a natural numeric value from a Witnet.Result as a `uint64` value.
    /// @param _result An instance of Witnet.Result.
    /// @return The `uint64` decoded from the Witnet.Result.
    function asUint64(Witnet.Result memory _result) external pure returns(uint64);

    /// Decode an array of natural numeric values from a Witnet.Result as a `uint64[]` value.
    /// @param _result An instance of Witnet.Result.
    /// @return The `uint64[]` decoded from the Witnet.Result.
    function asUint64Array(Witnet.Result memory _result) external pure returns (uint64[] memory);

}
// File: node_modules\witnet-solidity-bridge\contracts\WitnetRequestBoard.sol
/// @title Witnet Request Board functionality base contract.
/// @author The Witnet Foundation.
abstract contract WitnetRequestBoard is
    IWitnetRequestBoardEvents,
    IWitnetRequestBoardReporter,
    IWitnetRequestBoardRequestor,
    IWitnetRequestBoardView,
    IWitnetRequestParser
{
    receive() external payable {
        revert("WitnetRequestBoard: no transfers accepted");
    }
}
// File: witnet-solidity-bridge\contracts\UsingWitnet.sol
/// @title The UsingWitnet contract
/// @dev Witnet-aware contracts can inherit from this contract in order to interact with Witnet.
/// @author The Witnet Foundation.
abstract contract UsingWitnet {

    WitnetRequestBoard public immutable witnet;

    /// Include an address to specify the WitnetRequestBoard entry point address.
    /// @param _wrb The WitnetRequestBoard entry point address.
    constructor(WitnetRequestBoard _wrb)
    {
        require(address(_wrb) != address(0), "UsingWitnet: zero address");
        witnet = _wrb;
    }

    /// Provides a convenient way for client contracts extending this to block the execution of the main logic of the
    /// contract until a particular request has been successfully solved and reported by Witnet.
    modifier witnetRequestSolved(uint256 _id) {
        require(
                _witnetCheckResultAvailability(_id),
                "UsingWitnet: request not solved"
            );
        _;
    }

    /// Check if a data request has been solved and reported by Witnet.
    /// @dev Contracts depending on Witnet should not start their main business logic (e.g. receiving value from third.
    /// parties) before this method returns `true`.
    /// @param _id The unique identifier of a previously posted data request.
    /// @return A boolean telling if the request has been already resolved or not. Returns `false` also, if the result was deleted.
    function _witnetCheckResultAvailability(uint256 _id)
        internal view
        virtual
        returns (bool)
    {
        return witnet.getQueryStatus(_id) == Witnet.QueryStatus.Reported;
    }

    /// Estimate the reward amount.
    /// @param _gasPrice The gas price for which we want to retrieve the estimation.
    /// @return The reward to be included when either posting a new request, or upgrading the reward of a previously posted one.
    function _witnetEstimateReward(uint256 _gasPrice)
        internal view
        virtual
        returns (uint256)
    {
        return witnet.estimateReward(_gasPrice);
    }

    /// Estimates the reward amount, considering current transaction gas price.
    /// @return The reward to be included when either posting a new request, or upgrading the reward of a previously posted one.
    function _witnetEstimateReward()
        internal view
        virtual
        returns (uint256)
    {
        return witnet.estimateReward(tx.gasprice);
    }

    /// Send a new request to the Witnet network with transaction value as a reward.
    /// @param _request An instance of `IWitnetRequest` contract.
    /// @return _id Sequential identifier for the request included in the WitnetRequestBoard.
    /// @return _reward Current reward amount escrowed by the WRB until a result gets reported.
    function _witnetPostRequest(IWitnetRequest _request)
        internal
        virtual
        returns (uint256 _id, uint256 _reward)
    {
        _reward = _witnetEstimateReward();
        _id = witnet.postRequest{value: _reward}(_request);
    }

    /// Upgrade the reward for a previously posted request.
    /// @dev Call to `upgradeReward` function in the WitnetRequestBoard contract.
    /// @param _id The unique identifier of a request that has been previously sent to the WitnetRequestBoard.
    /// @return Amount in which the reward has been increased.
    function _witnetUpgradeReward(uint256 _id)
        internal
        virtual
        returns (uint256)
    {
        uint256 _currentReward = witnet.readRequestReward(_id);        
        uint256 _newReward = _witnetEstimateReward();
        uint256 _fundsToAdd = 0;
        if (_newReward > _currentReward) {
            _fundsToAdd = (_newReward - _currentReward);
        }
        witnet.upgradeReward{value: _fundsToAdd}(_id); // Let Request.gasPrice be updated
        return _fundsToAdd;
    }

    /// Read the Witnet-provided result to a previously posted request.
    /// @param _id The unique identifier of a request that was posted to Witnet.
    /// @return The result of the request as an instance of `Witnet.Result`.
    function _witnetReadResult(uint256 _id)
        internal view
        virtual
        returns (Witnet.Result memory)
    {
        return witnet.readResponseResult(_id);
    }

    /// Retrieves copy of all response data related to a previously posted request, removing the whole query from storage.
    /// @param _id The unique identifier of a previously posted request.
    /// @return The Witnet-provided result to the request.
    function _witnetDeleteQuery(uint256 _id)
        internal
        virtual
        returns (Witnet.Response memory)
    {
        return witnet.deleteQuery(_id);
    }

}
// File: node_modules\witnet-solidity-bridge\contracts\requests\WitnetRequestBase.sol
abstract contract WitnetRequestBase
    is
        IWitnetRequest
{
    /// Contains a well-formed Witnet Data Request, encoded using Protocol Buffers.
    bytes public override bytecode;

    /// Returns SHA256 hash of Witnet Data Request as CBOR-encoded bytes.
    bytes32 public override hash;
}
// File: witnet-solidity-bridge\contracts\requests\WitnetRequest.sol
contract WitnetRequest
    is
        WitnetRequestBase
{
    using Witnet for bytes;
    constructor(bytes memory _bytecode) {
        bytecode = _bytecode;
        hash = _bytecode.hash();
    }
}
// File: node_modules\@openzeppelin\contracts\utils\introspection\IERC165.sol
/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: node_modules\@openzeppelin\contracts\token\ERC721\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: node_modules\@openzeppelin\contracts\token\ERC721\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: node_modules\@openzeppelin\contracts\token\ERC721\extensions\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: node_modules\@openzeppelin\contracts\utils\Address.sol
/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// File: node_modules\@openzeppelin\contracts\utils\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;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: node_modules\@openzeppelin\contracts\utils\Strings.sol
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}
// File: node_modules\@openzeppelin\contracts\utils\introspection\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: @openzeppelin\contracts\token\ERC721\ERC721.sol
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Mapping owner address to token count
    mapping(address => uint256) private _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 contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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 Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

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

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

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

        _beforeTokenTransfer(owner, address(0), 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");

        _beforeTokenTransfer(from, to, tokenId);

        // 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 (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}
// File: @openzeppelin\contracts\access\Ownable.sol
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// File: @openzeppelin\contracts\security\ReentrancyGuard.sol
/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}
// File: @openzeppelin\contracts\utils\Counters.sol
/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}
// File: contracts\libs\Witmons.sol
/// @title Witmons Library: data model and helper functions
/// @author Otherplane Labs, 2021.
library Witmons {

    struct State {
        Parameters params;
        address decorator;
        IWitnetRequest witnetRNG;
        uint256 witnetQueryId;
        bytes32 witnetRandomness;
        uint256 hatchingBlock;        
        Counters.Counter totalSupply;
        mapping (/* eggIndex => Creature */ uint256 => Creature) creatures;
        mapping (/* tokenId  => eggIndex */ uint256 => uint256) eggIndex_;
    }

    struct Parameters {
        address signator;
        uint8[] percentileMarks;      
        uint256 expirationBlocks;
    }

    enum Status {
        Batching,
        Randomizing,
        Hatching,
        Freezed
    }

    struct Creature {
        uint256 tokenId;   
        uint256 eggBirth;
        uint256 eggIndex;
        uint256 eggScore;
        uint256 eggRanking;
        bytes32 eggPhenotype;
        CreatureCategory eggCategory;
    }

    enum CreatureCategory {
        Legendary,  // 0
        Rare,       // 1
        Common      // 2
    }

    enum CreatureStatus {
        Inexistent, // 0
        Incubating, // 1
        Hatching,   // 2
        Alive,      // 3
        Freezed     // 4
    }

    /// Calculate creature category.
    function creatureCategory(State storage _self, uint8 _percentile100)  
        internal view
        returns (CreatureCategory)
    {
        uint8 _i; uint8 _cumuled;
        for (; _i < _self.params.percentileMarks.length; _i ++) {
            _cumuled += _self.params.percentileMarks[_i];
            if (_percentile100 <= _cumuled) {
                break;
            }
        }
        return CreatureCategory(_i);
    }

    /// Gets tender's current status.
    function status(State storage self)
        internal view
        returns (Status)
    {
        if (self.witnetRandomness != bytes32(0)) {
            return (block.number > self.hatchingBlock + self.params.expirationBlocks)
                ? Status.Freezed
                : Status.Hatching;
        } else if (self.witnetQueryId > 0) {
            return Status.Randomizing;
        } else {
            return Status.Batching;
        }
    }

    /// @dev Produces revert message when tender is not in expected status.
    function statusRevertMessage(Status _status)
        internal pure
        returns (string memory)
    {
        if (_status == Status.Freezed) {
            return "Witmons: not in Freezed status";
        } else if (_status == Status.Batching) {
            return "Witmons: not in Batching status";
        } else if (_status == Status.Randomizing) {
            return "Witmons: not in Randomizing status";
        } else if (_status == Status.Hatching) {
            return "Witmons: not in Hatching status";
        } else {
            return "Witmons: bad mood";
        }
    }

    /// Returns index of Most Significant Bit of given number, applying De Bruijn O(1) algorithm.
    function msbDeBruijn32(uint32 _v)
        internal pure
        returns (uint8)
    {
        uint8[32] memory _bitPosition = [
                0, 9, 1, 10, 13, 21, 2, 29, 11, 14, 16, 18, 22, 25, 3, 30,
                8, 12, 20, 28, 15, 17, 24, 7, 19, 27, 23, 6, 26, 5, 4, 31
            ];
        _v |= _v >> 1;
        _v |= _v >> 2;
        _v |= _v >> 4;
        _v |= _v >> 8;
        _v |= _v >> 16;
        return _bitPosition[
            uint32(_v * uint256(0x07c4acdd)) >> 27
        ];
    }

    /// Generates pseudo-random number uniformly distributed in range [0 .. _range).
    function randomUint8(bytes32 _seed, uint256 _index, uint8 _range)
        internal pure
        returns (uint8)
    {
        assert(_range > 0);
        uint8 _flagBits = uint8(255 - msbDeBruijn32(uint32(_range)));
        uint256 _number = uint256(keccak256(abi.encode(_seed, _index))) & uint256(2 ** _flagBits - 1);
        return uint8((_number * _range) >> _flagBits); 
    }

    /// Recovers address from hash and signature.
    function recoverAddr(bytes32 _hash, bytes memory _signature)
        internal pure
        returns (address)
    {
        if (_signature.length != 65) {
            return (address(0));
        }
        bytes32 r;
        bytes32 s;
        uint8 v;
        assembly {
            r := mload(add(_signature, 0x20))
            s := mload(add(_signature, 0x40))
            v := byte(0, mload(add(_signature, 0x60)))
        }
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return address(0);
        }
        if (v != 27 && v != 28) {
            return address(0);
        }
        return ecrecover(_hash, v, r, s);
    }    
}
// File: contracts\interfaces\IWitmonDecorator.sol
/// @title Witty Creatures 2.0 Decorating interface.
/// @author Otherplane Labs, 2021.
interface IWitmonDecorator {
    function baseURI() external view returns (string memory);
    function getCreatureImage(Witmons.Creature memory) external view returns (string memory);
    function getCreatureMetadata(Witmons.Creature memory) external view returns (string memory);
}
// File: contracts\interfaces\IWitmonAdmin.sol
/// @title Witty Creatures 2.0 Token only-owner interface.
/// @author Otherplane Labs, 2021.
interface IWitmonAdmin {
    /// Change token/creature decorator.
    /// @param _decorator Decorating logic contract producing a creature's metadata, and picture.
    function setDecorator(IWitmonDecorator _decorator) external;

    /// Change batch parameters. Only possible while in 'Batching' status.
    /// @param _signator Externally-owned account authorize to sign egg's info before minting.
    /// @param _percentileMarks Creature-category ordered percentile marks (Legendary first).
    /// @param _expirationBlocks Number of blocks after Witnet randomness is generated, 
    /// during which creatures may be minted.
    function setParameters(
        address _signator,
        uint8[] calldata _percentileMarks,
        uint256 _expirationBlocks
    ) external;

    /// Stops batching, which means: (a) parameters cannot change anymore, and (b) a 
    /// random number will requested to the Witnet Decentralized Oracle Network.
    /// @dev While request is being attended, tender will remain in 'Randomizing' status.
    function stopBatching() external payable;

    /// Starts hatching, which means that minting of creatures will start to be possible,
    /// until the hatching period expires (see `_hatchingExpirationBlocks`).
    /// @dev During the hatching period the tender will remain in 'Hatching status'. Once the
    /// @dev hatching period expires, tender status will automatically change to 'Freezed'.
    function startHatching() external;
}
// File: contracts\interfaces\IWitmonEvents.sol
/// @title Witty Creatures 2.0 Token events.
/// @author Otherplane Labs, 2021.
interface IWitmonEvents {
    event BatchParameters(
        address signator,
        uint8[] percentileMarks,
        uint256 expirationBlocks
    );
    event DecoratorSet(IWitmonDecorator decorator);
    event WitnetResult(bytes32 randomness);
    event WitnetError(string reason);
    event NewCreature(uint256 eggIndex, uint256 tokenId);
}
// File: contracts\interfaces\IWitmonSurrogates.sol
/// @title Witty Creatures 2.0 Token surrogating interface.
/// @author Otherplane Labs, 2021.
interface IWitmonSurrogates {
    function mintCreature(
        address _eggOwner,
        uint256 _eggIndex,
        uint256 _eggScore,
        uint256 _eggRanking,
        uint256 _totalClaimedEggs,
        bytes calldata _signature
    ) external;
    function previewCreatureImage(
        address _eggOwner,
        uint256 _eggIndex,
        uint256 _eggScore,
        uint256 _eggRanking,
        uint256 _totalClaimedEggs,
        bytes calldata _signature
    ) external view returns (string memory);
}
// File: contracts\interfaces\IWitmonView.sol
/// @title Witty Creatures 2.0 Token viewing interface.
/// @author Otherplane Labs, 2021.
interface IWitmonView {
    function getCreatureData(uint256 _eggIndex) external view returns (Witmons.Creature memory);
    function getCreatureImage(uint256 _eggIndex) external view returns (string memory);
    function getCreatureStatus(uint256 _eggIndex) external view returns (Witmons.CreatureStatus);  
    function getDecorator() external view returns (IWitmonDecorator);
    function getParameters() external view returns (Witmons.Parameters memory);
    function getTokenEggIndex(uint256 _tokenId) external view returns (uint256);
    function totalSupply() external view returns (uint256 _totalSupply);
    function getStatus() external view returns (Witmons.Status);
}
// File: contracts\WitmonERC721.sol
/// @title Witty Creatures 2.0 - ERC721 Token contract
/// @author Otherplane Labs, 2021.
contract WitmonERC721
    is
        ERC721,
        Ownable,
        ReentrancyGuard,
        UsingWitnet,
        IWitmonAdmin,
        IWitmonEvents,
        IWitmonSurrogates,
        IWitmonView
{
    using Counters for Counters.Counter;
    using Strings for bytes32;
    using Strings for uint256;
    using Witmons for Witmons.State;

    Witmons.State internal _state;

    modifier inStatus(Witmons.Status _status) {
        require(
            _state.status() == _status,
            Witmons.statusRevertMessage(_status)
        );
        _;
    }

    modifier tokenExists(uint256 _tokenId) {
        require(
            _exists(_tokenId),
            "WitmonERC721: inexistent token"
        );
        _;
    }

    constructor(
            WitnetRequestBoard _witnet,
            IWitmonDecorator _decorator,
            string memory _name,
            string memory _symbol,
            address _signator,
            uint8[] memory _percentileMarks,
            uint256 _expirationBlocks
        )
        UsingWitnet(_witnet)
        ERC721(_name, _symbol)
    {
        setDecorator(_decorator);
        setParameters(
            _signator,
            _percentileMarks,
            _expirationBlocks
        );
        _state.witnetRNG = new WitnetRequest(hex"0a0f120508021a01801a0210022202100b10e807180a200a2833308094ebdc03");
    }

    // ========================================================================
    // --- 'ERC721Metadata' overriden functions -------------------------------

    
    function baseURI()
        public view
        virtual
        returns (string memory)
    {
        return IWitmonDecorator(_state.decorator).baseURI();
    }
    
    function metadata(uint256 _tokenId)
        external
        virtual view
        tokenExists(_tokenId)
        returns (string memory)
    {
        uint256 _eggIndex = _state.eggIndex_[_tokenId];
        Witmons.Creature memory _creature = _state.creatures[_eggIndex];
        assert(_tokenId == _creature.tokenId);
        return IWitmonDecorator(_state.decorator).getCreatureMetadata(_creature);
    }

    function tokenURI(uint256 _tokenId)
        public view
        virtual override
        tokenExists(_tokenId)
        returns (string memory)
    {
        return string(abi.encodePacked(
            baseURI(),
            _tokenId.toString()
        ));
    }

    // ========================================================================
    // --- Implementation of 'IWitmonAdmin' -----------------------------------

    /// Change token/creature decorator.
    /// @param _decorator Decorating logic contract producing a creature's metadata, and picture.
    function setDecorator(IWitmonDecorator _decorator)
        public
        virtual override
        onlyOwner
        // inState(Witmons.Status.Batching)
    {
        require(address(_decorator) != address(0), "WitmonERC721: no decorator");
        _state.decorator = address(_decorator);
        emit DecoratorSet(_decorator);
    }

    /// Change batch parameters. Only possible while in 'Batching' status.
    /// @param _signator Externally-owned account authorize to sign egg's info before minting.
    /// @param _percentileMarks Creature-category ordered percentile marks (Legendary first).
    /// @param _expirationBlocks Number of blocks after Witnet randomness is generated, 
    /// during which creatures may be minted.
    function setParameters(
            address _signator,
            uint8[] memory _percentileMarks,
            uint256 _expirationBlocks
        )
        public
        virtual override
        onlyOwner
        inStatus(Witmons.Status.Batching)
    {
        require(_signator != address(0), "WitmonERC721: no signator");
        require(_percentileMarks.length == uint8(Witmons.CreatureCategory.Common) + 1, "WitmonERC721: bad percentile marks");
        _state.params.percentileMarks = new uint8[](_percentileMarks.length);
        uint8 _checkSum; 
        for (uint8 _i = 0; _i < _percentileMarks.length; _i ++) {
            uint8 _mark = _percentileMarks[_i];
            _state.params.percentileMarks[_i] = _mark;
            _checkSum += _mark;
        }
        require(_checkSum == 100, "WitmonERC721: bad percentile checksum");
        
        _state.params.signator = _signator;
        _state.params.expirationBlocks = _expirationBlocks;
        
        emit BatchParameters(
            _signator,
            _percentileMarks,
            _expirationBlocks
        );
    }

    /// Stops batching, which means: (a) parameters cannot change anymore, and (b) a 
    /// random number will requested to the Witnet Decentralized Oracle Network.
    /// @dev While request is being attended, tender will remain in 'Randomizing' status.
    function stopBatching()
        external payable
        virtual override
        nonReentrant
        onlyOwner
        inStatus(Witmons.Status.Batching)
    {   
        // Send the request to Witnet and store the ID for later retrieval of the result:
        uint256 _witnetReward;
        (_state.witnetQueryId, _witnetReward) = _witnetPostRequest(_state.witnetRNG);

        // Transfers back unused funds:
        if (msg.value > _witnetReward) {
            payable(msg.sender).transfer(msg.value - _witnetReward);
        }
    }

    /// Starts hatching, which means that minting of creatures will start to be possible,
    /// until the hatching period expires (see `_state.expirationBlocks`).
    /// @dev During the hatching period the tender will remain in 'Hatching status'. Once the
    /// @dev hatching period expires, tender status will automatically change to 'Freezed'.
    function startHatching()
        external
        virtual override
        onlyOwner
        inStatus(Witmons.Status.Randomizing)
    {
        uint _queryId = _state.witnetQueryId;
        require(
            _witnetCheckResultAvailability(_queryId),
            "WitmonERC721: randomness not yet solved"
        );
        Witnet.Result memory _result = witnet.readResponseResult(_queryId);
        if (_result.success) {
            bytes32 _randomness = _bytesToBytes32(witnet.asBytes(_result));
            _state.hatchingBlock = block.number;
            _state.witnetRandomness = _randomness;
            emit WitnetResult(_randomness);
        } else {
            _state.witnetQueryId = 0;
            string memory _errorMessage;
            // Try to read the value as an error message, catch error bytes if read fails
            try witnet.asErrorMessage(_result)
                returns (Witnet.ErrorCodes, string memory e)
            {
                _errorMessage = e;
            }
            catch (bytes memory _errorBytes) {
                _errorMessage = string(_errorBytes);
            }
            emit WitnetError(_errorMessage);
        }
    }

    // ========================================================================
    // --- Implementation of 'IWitmonSurrogates' -------------------------------

    function mintCreature(
            address _eggOwner,
            uint256 _eggIndex,            
            uint256 _eggRanking,
            uint256 _eggScore,
            uint256 _totalClaimedEggs,
            bytes calldata _signature
        )
        external
        virtual override
        nonReentrant
        inStatus(Witmons.Status.Hatching)
    {
        _verifySignatorSignature(
            _eggOwner,
            _eggIndex,
            _eggRanking,
            _eggScore,
            _totalClaimedEggs,
            _signature
        );

        // Verify not already minted:
        require(
            _state.creatures[_eggIndex].tokenId == 0,
            "WitmonERC721: already minted"
        );

        // Increment token supply:
        _state.totalSupply.increment();
        uint256 _tokenId = _state.totalSupply.current();

        // Fulfill creature data:
        Witmons.Creature memory _creature = _mintCreature(
            _tokenId,
            block.timestamp, // solhint-disable not-rely-on-time
            _eggIndex,
            _eggRanking,
            _eggScore,
            _totalClaimedEggs,
            _signature
        );

        // Write to storage:
        _state.creatures[_eggIndex] = _creature;		
        _state.eggIndex_[_tokenId] = _eggIndex;

        // Mint the token:
        _safeMint(_eggOwner, _tokenId);
        emit NewCreature(_eggIndex, _tokenId);
    }

    function previewCreatureImage(
            address _eggOwner,
            uint256 _eggIndex,
            uint256 _eggRanking,
            uint256 _eggScore,
            uint256 _totalClaimedEggs,
            bytes calldata _signature
        )
        external view
        virtual override
        inStatus(Witmons.Status.Hatching)
        returns (string memory)
    {
        _verifySignatorSignature(
            _eggOwner,
            _eggIndex,
            _eggRanking,
            _eggScore,
            _totalClaimedEggs,
            _signature
        );

        // Preview creature image:
        return IWitmonDecorator(_state.decorator).getCreatureImage(
            _mintCreature(
                0,
                0,
                _eggIndex,                
                _eggRanking,
                _eggScore,
                _totalClaimedEggs,
                _signature
            )
        );
    }

    // ========================================================================
    // --- Implementation of 'IWitmonView' ------------------------------------

    function getCreatureData(uint256 _eggIndex)
        public view
        override
        returns (Witmons.Creature memory)
    {
        return _state.creatures[_eggIndex];
    }

    function getCreatureImage(uint256 _eggIndex)
        public view
        override
        returns (string memory)
    {
        require(
            getCreatureStatus(_eggIndex) == Witmons.CreatureStatus.Alive,
            "WitmonERC721: not alive yet"
        );
        Witmons.Creature memory _creature = _state.creatures[_eggIndex];
        return IWitmonDecorator(_state.decorator).getCreatureImage(_creature);
    }

    function getCreatureStatus(uint256 _eggIndex)
        public view
        virtual override
        returns (Witmons.CreatureStatus)
    {
        Witmons.Creature storage _creature = _state.creatures[_eggIndex];
        if (_creature.eggPhenotype != bytes32(0)) {
            return Witmons.CreatureStatus.Alive;
        } else {
            Witmons.Status _tenderStatus = _state.status();
            if (_tenderStatus == Witmons.Status.Hatching) {
                return Witmons.CreatureStatus.Hatching;
            } else if (_tenderStatus == Witmons.Status.Freezed) {
                return Witmons.CreatureStatus.Freezed;
            } else {
                return Witmons.CreatureStatus.Incubating;
            }
        }
    }

    function getDecorator()
        external view
        override
        returns (IWitmonDecorator)
    {
        return IWitmonDecorator(_state.decorator);
    }

    function getParameters()
        external view
        override
        returns (Witmons.Parameters memory)
    {
        return _state.params;
    }

    function getTokenEggIndex(uint256 _tokenId)
        external view
        override
        returns (uint256)
    {
        return _state.eggIndex_[_tokenId];
    }

    function totalSupply()
        public view
        override
        returns (
            uint256 _totalSupply
        )
    {
        return (
            _state.totalSupply.current()
        );
    }

    function getStatus()
        public view
        override
        returns (Witmons.Status)
    {
        return _state.status();
    }

    // ------------------------------------------------------------------------
    // --- INTERNAL VIRTUAL METHODS -------------------------------------------
    // ------------------------------------------------------------------------

    function _mintCreature(
            uint256 _tokenId,
            uint256 _tokenInception,
            uint256 _eggIndex,
            uint256 _eggRanking,
            uint256 _eggScore,
            uint256 _totalClaimedEggs,
            bytes memory _signature
        )
        internal view
        virtual
        returns (Witmons.Creature memory)
    {
        uint8 _percentile100 = _eggRanking > _totalClaimedEggs
            ? 100 
            : uint8((_eggRanking * 100) / _totalClaimedEggs)
        ;
        return Witmons.Creature({
            tokenId: _tokenId,
            eggBirth: _tokenInception,
            eggCategory: _state.creatureCategory(_percentile100),
            eggIndex: _eggIndex,
            eggScore: _eggScore,
            eggRanking: _eggRanking,
            eggPhenotype: keccak256(abi.encodePacked(
                _signature,
                _state.witnetRandomness
            ))
        });
    }

    function _verifySignatorSignature(
            address _eggOwner,
            uint256 _eggIndex,
            uint256 _eggRanking,
            uint256 _eggScore,
            uint256 _totalClaimedEggs,
            bytes memory _signature
        )
        internal view
        virtual
    {
        // Verify signator:
        bytes32 _eggHash = keccak256(abi.encodePacked(
            _eggOwner,
            _eggIndex,
            _eggRanking,
            _eggScore,
            _totalClaimedEggs
        ));
        require(
            Witmons.recoverAddr(_eggHash, _signature) == _state.params.signator,
            "WitmonERC721: bad signature"
        );
    }
    
    // ------------------------------------------------------------------------
    // --- PRIVATE METHODS ----------------------------------------------------
    // ------------------------------------------------------------------------

    function _bytesToBytes32(bytes memory _bb)
        private pure
        returns (bytes32 _r)
    {
        uint _len = _bb.length > 32 ? 32 : _bb.length;
        for (uint _i = 0; _i < _len; _i ++) {
            _r |= bytes32(_bb[_i] & 0xff) >> (_i * 8);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract WitnetRequestBoard","name":"_witnet","type":"address"},{"internalType":"contract IWitmonDecorator","name":"_decorator","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_signator","type":"address"},{"internalType":"uint8[]","name":"_percentileMarks","type":"uint8[]"},{"internalType":"uint256","name":"_expirationBlocks","type":"uint256"}],"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":false,"internalType":"address","name":"signator","type":"address"},{"indexed":false,"internalType":"uint8[]","name":"percentileMarks","type":"uint8[]"},{"indexed":false,"internalType":"uint256","name":"expirationBlocks","type":"uint256"}],"name":"BatchParameters","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract IWitmonDecorator","name":"decorator","type":"address"}],"name":"DecoratorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"eggIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NewCreature","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"WitnetError","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"randomness","type":"bytes32"}],"name":"WitnetResult","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","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":"uint256","name":"_eggIndex","type":"uint256"}],"name":"getCreatureData","outputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"eggBirth","type":"uint256"},{"internalType":"uint256","name":"eggIndex","type":"uint256"},{"internalType":"uint256","name":"eggScore","type":"uint256"},{"internalType":"uint256","name":"eggRanking","type":"uint256"},{"internalType":"bytes32","name":"eggPhenotype","type":"bytes32"},{"internalType":"enum Witmons.CreatureCategory","name":"eggCategory","type":"uint8"}],"internalType":"struct Witmons.Creature","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_eggIndex","type":"uint256"}],"name":"getCreatureImage","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_eggIndex","type":"uint256"}],"name":"getCreatureStatus","outputs":[{"internalType":"enum Witmons.CreatureStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDecorator","outputs":[{"internalType":"contract IWitmonDecorator","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getParameters","outputs":[{"components":[{"internalType":"address","name":"signator","type":"address"},{"internalType":"uint8[]","name":"percentileMarks","type":"uint8[]"},{"internalType":"uint256","name":"expirationBlocks","type":"uint256"}],"internalType":"struct Witmons.Parameters","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStatus","outputs":[{"internalType":"enum Witmons.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getTokenEggIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_tokenId","type":"uint256"}],"name":"metadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_eggOwner","type":"address"},{"internalType":"uint256","name":"_eggIndex","type":"uint256"},{"internalType":"uint256","name":"_eggRanking","type":"uint256"},{"internalType":"uint256","name":"_eggScore","type":"uint256"},{"internalType":"uint256","name":"_totalClaimedEggs","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mintCreature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_eggOwner","type":"address"},{"internalType":"uint256","name":"_eggIndex","type":"uint256"},{"internalType":"uint256","name":"_eggRanking","type":"uint256"},{"internalType":"uint256","name":"_eggScore","type":"uint256"},{"internalType":"uint256","name":"_totalClaimedEggs","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"previewCreatureImage","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IWitmonDecorator","name":"_decorator","type":"address"}],"name":"setDecorator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signator","type":"address"},{"internalType":"uint8[]","name":"_percentileMarks","type":"uint8[]"},{"internalType":"uint256","name":"_expirationBlocks","type":"uint256"}],"name":"setParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startHatching","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopBatching","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"witnet","outputs":[{"internalType":"contract WitnetRequestBoard","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60a06040523480156200001157600080fd5b5060405162004daf38038062004daf833981016040819052620000349162000a6c565b86858581600090805190602001906200004f929190620007f6565b50805162000065906001906020840190620007f6565b505050620000826200007c6200019760201b60201c565b6200019b565b60016007556001600160a01b038116620000e35760405162461bcd60e51b815260206004820152601960248201527f5573696e675769746e65743a207a65726f20616464726573730000000000000060448201526064015b60405180910390fd5b60601b6001600160601b031916608052620000fe86620001ed565b6200010b838383620002e4565b604051620001199062000885565b6020808252808201527f0a0f120508021a01801a0210022202100b10e807180a200a2833308094ebdc036040820152606001604051809103906000f08015801562000168573d6000803e3d6000fd5b50600c80546001600160a01b0319166001600160a01b03929092169190911790555062000d5895505050505050565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620002385760405162461bcd60e51b8152602060048201819052602482015260008051602062004d6d8339815191526044820152606401620000da565b6001600160a01b038116620002905760405162461bcd60e51b815260206004820152601a60248201527f5769746d6f6e4552433732313a206e6f206465636f7261746f720000000000006044820152606401620000da565b600b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f17b37ee811fab07dfe76ad0139a0a6c475ff575dd6721e0ccc0786c1c9d579209060200160405180910390a150565b6006546001600160a01b031633146200032f5760405162461bcd60e51b8152602060048201819052602482015260008051602062004d6d8339815191526044820152606401620000da565b6000806200034960086200062860201b62001efc1760201c565b60038111156200035d576200035d62000cfd565b1462000374826200068460201b62001f511760201c565b90620003955760405162461bcd60e51b8152600401620000da919062000ba9565b506001600160a01b038416620003ee5760405162461bcd60e51b815260206004820152601960248201527f5769746d6f6e4552433732313a206e6f207369676e61746f72000000000000006044820152606401620000da565b620003fc6002600162000c2c565b60ff168351146200045b5760405162461bcd60e51b815260206004820152602260248201527f5769746d6f6e4552433732313a206261642070657263656e74696c65206d61726044820152616b7360f01b6064820152608401620000da565b82516001600160401b0381111562000477576200047762000d29565b604051908082528060200260200182016040528015620004a1578160200160208202803683370190505b508051620004b89160099160209091019062000893565b506000805b84518160ff1610156200055f576000858260ff1681518110620004e457620004e462000d13565b602002602001015190508060086000016001018360ff16815481106200050e576200050e62000d13565b90600052602060002090602091828204019190066101000a81548160ff021916908360ff160217905550808362000546919062000c2c565b9250508080620005569062000cc4565b915050620004bd565b508060ff16606414620005c35760405162461bcd60e51b815260206004820152602560248201527f5769746d6f6e4552433732313a206261642070657263656e74696c6520636865604482015264636b73756d60d81b6064820152608401620000da565b600880546001600160a01b0319166001600160a01b038716179055600a8390556040517f4f91d5a2a59ed6db9618e1c449fb9da42fd4e3952e95514dc546adbcbe971cc490620006199087908790879062000b45565b60405180910390a15050505050565b6006810154600090156200066457600282015460078301546200064c919062000c11565b43116200065b5760026200065e565b60035b92915050565b6005820154156200067757506001919050565b506000919050565b919050565b606060038260038111156200069d576200069d62000cfd565b1415620006dd57505060408051808201909152601e81527f5769746d6f6e733a206e6f7420696e20467265657a6564207374617475730000602082015290565b6000826003811115620006f457620006f462000cfd565b14156200073457505060408051808201909152601f81527f5769746d6f6e733a206e6f7420696e204261746368696e672073746174757300602082015290565b60018260038111156200074b576200074b62000cfd565b1415620007725760405180606001604052806022815260200162004d8d6022913992915050565b600282600381111562000789576200078962000cfd565b1415620007c957505060408051808201909152601f81527f5769746d6f6e733a206e6f7420696e204861746368696e672073746174757300602082015290565b505060408051808201909152601181527015da5d1b5bdb9cce88189859081b5bdbd9607a1b602082015290565b828054620008049062000c87565b90600052602060002090601f01602090048101928262000828576000855562000873565b82601f106200084357805160ff191683800117855562000873565b8280016001018555821562000873579182015b828111156200087357825182559160200191906001019062000856565b506200088192915062000936565b5090565b61051c806200485183390190565b82805482825590600052602060002090601f01602090048101928215620008735791602002820160005b83821115620008fd57835183826101000a81548160ff021916908360ff1602179055509260200192600101602081600001049283019260010302620008bd565b80156200092c5782816101000a81549060ff0219169055600101602081600001049283019260010302620008fd565b5050620008819291505b5b8082111562000881576000815560010162000937565b80516200067f8162000d3f565b600082601f8301126200096c57600080fd5b815160206001600160401b038211156200098a576200098a62000d29565b8160051b6200099b82820162000bde565b838152828101908684018388018501891015620009b757600080fd5b60009350835b86811015620009ea57815160ff81168114620009d7578586fd5b84529285019290850190600101620009bd565b509098975050505050505050565b600082601f83011262000a0a57600080fd5b81516001600160401b0381111562000a265762000a2662000d29565b62000a3b601f8201601f191660200162000bde565b81815284602083860101111562000a5157600080fd5b62000a6482602083016020870162000c54565b949350505050565b600080600080600080600060e0888a03121562000a8857600080fd5b875162000a958162000d3f565b602089015190975062000aa88162000d3f565b60408901519096506001600160401b038082111562000ac657600080fd5b62000ad48b838c01620009f8565b965060608a015191508082111562000aeb57600080fd5b62000af98b838c01620009f8565b955062000b0960808b016200094d565b945060a08a015191508082111562000b2057600080fd5b5062000b2f8a828b016200095a565b92505060c0880151905092959891949750929550565b6001600160a01b038416815260606020808301829052845191830182905260009185820191906080850190845b8181101562000b9357845160ff168352938301939183019160010162000b72565b5050809350505050826040830152949350505050565b602081526000825180602084015262000bca81604085016020870162000c54565b601f01601f19169190910160400192915050565b604051601f8201601f191681016001600160401b038111828210171562000c095762000c0962000d29565b604052919050565b6000821982111562000c275762000c2762000ce7565b500190565b600060ff821660ff84168060ff0382111562000c4c5762000c4c62000ce7565b019392505050565b60005b8381101562000c7157818101518382015260200162000c57565b8381111562000c81576000848401525b50505050565b600181811c9082168062000c9c57607f821691505b6020821081141562000cbe57634e487b7160e01b600052602260045260246000fd5b50919050565b600060ff821660ff81141562000cde5762000cde62000ce7565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811462000d5557600080fd5b50565b60805160601c613ab062000da1600039600081816103a001528181610e8b01528181610f220152818161102a01528181612403015281816128060152612b630152613ab06000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063d8f6de53116100a0578063e3684e391161006f578063e3684e39146105b6578063e985e9c5146105d6578063ef0a78de146105f6578063f2fde38b14610616578063f5e0de1c1461063657600080fd5b8063d8f6de5314610538578063d9be414514610556578063dbe83c5b14610576578063e27f20511461059657600080fd5b8063a22cb465116100dc578063a22cb465146104b6578063a5ea11da146104d6578063b88d4fde146104f8578063c87b56dd1461051857600080fd5b8063715018a61461045957806376e933e41461046e5780638da5cb5b1461048357806395d89b41146104a157600080fd5b806329ce133811610185578063568508fe11610154578063568508fe146103e45780636352211e146104045780636c0360eb1461042457806370a082311461043957600080fd5b806329ce13381461034157806342842e0e1461036e57806346d1d21a1461038e5780634e69d560146103c257600080fd5b8063095ea7b3116101c1578063095ea7b3146102af5780630d3342e5146102d157806318160ddd1461030c57806323b872dd1461032157600080fd5b806301ffc9a7146101f3578063054df6411461022857806306fdde0314610255578063081812fc14610277575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046131b8565b61063e565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b506102486102433660046133e9565b610690565b60405161021f9190613660565b34801561026157600080fd5b5061026a610733565b60405161021f9190613575565b34801561028357600080fd5b506102976102923660046133e9565b6107c5565b6040516001600160a01b03909116815260200161021f565b3480156102bb57600080fd5b506102cf6102ca3660046130e1565b61085f565b005b3480156102dd57600080fd5b506102fe6102ec3660046133e9565b60009081526012602052604090205490565b60405190815260200161021f565b34801561031857600080fd5b506102fe610975565b34801561032d57600080fd5b506102cf61033c366004612ef4565b610985565b34801561034d57600080fd5b5061036161035c3660046133e9565b6109b6565b60405161021f9190613547565b34801561037a57600080fd5b506102cf610389366004612ef4565b610a3f565b34801561039a57600080fd5b506102977f000000000000000000000000000000000000000000000000000000000000000081565b3480156103ce57600080fd5b506103d7610a5a565b60405161021f9190613561565b3480156103f057600080fd5b5061026a6103ff3660046133e9565b610a66565b34801561041057600080fd5b5061029761041f3660046133e9565b610be4565b34801561043057600080fd5b5061026a610c5b565b34801561044557600080fd5b506102fe610454366004612e9e565b610cdc565b34801561046557600080fd5b506102cf610d63565b34801561047a57600080fd5b506102cf610d99565b34801561048f57600080fd5b506006546001600160a01b0316610297565b3480156104ad57600080fd5b5061026a61111a565b3480156104c257600080fd5b506102cf6104d13660046130b3565b611129565b3480156104e257600080fd5b506104eb6111ee565b60405161021f91906136c0565b34801561050457600080fd5b506102cf610513366004612f35565b6112ba565b34801561052457600080fd5b5061026a6105333660046133e9565b6112f2565b34801561054457600080fd5b50600b546001600160a01b0316610297565b34801561056257600080fd5b506102cf610571366004612e9e565b61139b565b34801561058257600080fd5b506102cf610591366004612fde565b61146f565b3480156105a257600080fd5b506102cf6105b136600461310d565b611756565b3480156105c257600080fd5b5061026a6105d13660046133e9565b6119e2565b3480156105e257600080fd5b506102136105f1366004612ebb565b611b8a565b34801561060257600080fd5b5061026a61061136600461310d565b611bb8565b34801561062257600080fd5b506102cf610631366004612e9e565b611d2f565b6102cf611dca565b60006001600160e01b031982166380ac58cd60e01b148061066f57506001600160e01b03198216635b5e139f60e01b145b8061068a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b610698612d27565b600860090160008381526020019081526020016000206040518060e00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820160009054906101000a900460ff166002811115610719576107196139ce565b600281111561072a5761072a6139ce565b90525092915050565b60606000805461074290613908565b80601f016020809104026020016040519081016040528092919081815260200182805461076e90613908565b80156107bb5780601f10610790576101008083540402835291602001916107bb565b820191906000526020600020905b81548152906001019060200180831161079e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061086a82610be4565b9050806001600160a01b0316836001600160a01b031614156108d85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161083a565b336001600160a01b03821614806108f457506108f48133611b8a565b6109665760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161083a565b61097083836120b2565b505050565b600061098060105490565b905090565b61098f3382612120565b6109ab5760405162461bcd60e51b815260040161083a9061360f565b6109708383836121f7565b60008181526011602052604081206005810154156109d75750600392915050565b60006109e36008611efc565b905060028160038111156109f9576109f96139ce565b1415610a09575060029392505050565b6003816003811115610a1d57610a1d6139ce565b1415610a2d575060049392505050565b5060019392505050565b505b50919050565b610970838383604051806020016040528060008152506112ba565b60006109806008611efc565b60606003610a73836109b6565b6004811115610a8457610a846139ce565b14610ad15760405162461bcd60e51b815260206004820152601b60248201527f5769746d6f6e4552433732313a206e6f7420616c697665207965740000000000604482015260640161083a565b6000828152601160209081526040808320815160e08101835281548152600182015493810193909352600280820154928401929092526003810154606084015260048101546080840152600581015460a08401526006810154909160c084019160ff1690811115610b4457610b446139ce565b6002811115610b5557610b556139ce565b905250600b546040516379971bb160e01b81529192506001600160a01b0316906379971bb190610b89908490600401613660565b60006040518083038186803b158015610ba157600080fd5b505afa158015610bb5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bdd91908101906131f2565b9392505050565b6000818152600260205260408120546001600160a01b03168061068a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161083a565b600b5460408051636c0360eb60e01b815290516060926001600160a01b031691636c0360eb916004808301926000929190829003018186803b158015610ca057600080fd5b505afa158015610cb4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261098091908101906131f2565b60006001600160a01b038216610d475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161083a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d8d5760405162461bcd60e51b815260040161083a906135da565b610d976000612397565b565b6006546001600160a01b03163314610dc35760405162461bcd60e51b815260040161083a906135da565b600180610dd06008611efc565b6003811115610de157610de16139ce565b14610deb82611f51565b90610e095760405162461bcd60e51b815260040161083a9190613575565b50600d54610e16816123e9565b610e725760405162461bcd60e51b815260206004820152602760248201527f5769746d6f6e4552433732313a2072616e646f6d6e657373206e6f7420796574604482015266081cdbdb1d995960ca1b606482015260840161083a565b6040516335369a6b60e21b8152600481018290526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d4da69ac9060240160006040518083038186803b158015610ed557600080fd5b505afa158015610ee9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610f11919081019061329c565b80519091501561100b576000610fc57f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c683b465846040518263ffffffff1660e01b8152600401610f6c9190613704565b60006040518083038186803b158015610f8457600080fd5b505afa158015610f98573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610fc091908101906131f2565b61249d565b43600f55600e8190556040518181529091507f87533c4aa2bce6bb1a8da08048c3c2e7a2354a95b8b431b22fd33d50c753b687906020015b60405180910390a150505050565b6000600d55604051636ba401df60e11b81526060906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d74803be9061105f908590600401613704565b60006040518083038186803b15801561107757600080fd5b505afa9250505080156110ac57506040513d6000823e601f3d908101601f191682016040526110a99190810190613226565b60015b6110e7573d8080156110da576040519150601f19603f3d011682016040523d82523d6000602084013e6110df565b606091505b5090506110eb565b9150505b7f35428cf83cc52cee3e71741c8bbdd0bec00d1ecd4c993c61bca8de8b2c3fd3da81604051610ffd9190613575565b60606001805461074290613908565b6001600160a01b0382163314156111825760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161083a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61121b604051806060016040528060006001600160a01b0316815260200160608152602001600081525090565b60408051606081018252600880546001600160a01b031682526009805484516020828102820181019096528181529394929383860193909291908301828280156112a257602002820191906000526020600020906000905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116112735790505b50505050508152602001600282015481525050905090565b6112c43383612120565b6112e05760405162461bcd60e51b815260040161083a9061360f565b6112ec84848484612505565b50505050565b606081611316816000908152600260205260409020546001600160a01b0316151590565b6113625760405162461bcd60e51b815260206004820152601e60248201527f5769746d6f6e4552433732313a20696e6578697374656e7420746f6b656e0000604482015260640161083a565b61136a610c5b565b61137384612538565b6040516020016113849291906134a7565b604051602081830303815290604052915050919050565b6006546001600160a01b031633146113c55760405162461bcd60e51b815260040161083a906135da565b6001600160a01b03811661141b5760405162461bcd60e51b815260206004820152601a60248201527f5769746d6f6e4552433732313a206e6f206465636f7261746f72000000000000604482015260640161083a565b600b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f17b37ee811fab07dfe76ad0139a0a6c475ff575dd6721e0ccc0786c1c9d579209060200160405180910390a150565b6006546001600160a01b031633146114995760405162461bcd60e51b815260040161083a906135da565b6000806114a66008611efc565b60038111156114b7576114b76139ce565b146114c182611f51565b906114df5760405162461bcd60e51b815260040161083a9190613575565b506001600160a01b0384166115365760405162461bcd60e51b815260206004820152601960248201527f5769746d6f6e4552433732313a206e6f207369676e61746f7200000000000000604482015260640161083a565b6115426002600161386d565b60ff1683511461159f5760405162461bcd60e51b815260206004820152602260248201527f5769746d6f6e4552433732313a206261642070657263656e74696c65206d61726044820152616b7360f01b606482015260840161083a565b82516001600160401b038111156115b8576115b86139fa565b6040519080825280602002602001820160405280156115e1578160200160208202803683370190505b5080516115f691600991602090910190612d77565b506000805b84518160ff161015611691576000858260ff168151811061161e5761161e6139e4565b602002602001015190508060086000016001018360ff1681548110611645576116456139e4565b90600052602060002090602091828204019190066101000a81548160ff021916908360ff160217905550808361167b919061386d565b925050808061168990613958565b9150506115fb565b508060ff166064146116f35760405162461bcd60e51b815260206004820152602560248201527f5769746d6f6e4552433732313a206261642070657263656e74696c6520636865604482015264636b73756d60d81b606482015260840161083a565b600880546001600160a01b0319166001600160a01b038716179055600a8390556040517f4f91d5a2a59ed6db9618e1c449fb9da42fd4e3952e95514dc546adbcbe971cc49061174790879087908790613513565b60405180910390a15050505050565b600260075414156117a95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161083a565b60026007819055806117bb6008611efc565b60038111156117cc576117cc6139ce565b146117d682611f51565b906117f45760405162461bcd60e51b815260040161083a9190613575565b50611839888888888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061263592505050565b600087815260116020526040902054156118955760405162461bcd60e51b815260206004820152601c60248201527f5769746d6f6e4552433732313a20616c7265616479206d696e74656400000000604482015260640161083a565b6118a3601080546001019055565b60006118ae60105490565b905060006118f782428b8b8b8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061270392505050565b905080600860090160008b8152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff02191690836002811115611976576119766139ce565b0217905550505060008281526012602052604090208990556119988a836127bb565b604080518a8152602081018490527f22050ec7af2d31649668d13e49c000e1424a846f48d70f041f387573a7e28033910160405180910390a1505060016007555050505050505050565b606081611a06816000908152600260205260409020546001600160a01b0316151590565b611a525760405162461bcd60e51b815260206004820152601e60248201527f5769746d6f6e4552433732313a20696e6578697374656e7420746f6b656e0000604482015260640161083a565b60008381526012602090815260408083205480845260118352818420825160e08101845281548152600182015494810194909452600280820154938501939093526003810154606085015260048101546080850152600581015460a0850152600681015491949392909160c084019160ff90911690811115611ad657611ad66139ce565b6002811115611ae757611ae76139ce565b90525080519091508514611afd57611afd61398c565b600b546040516338684b0360e01b81526001600160a01b03909116906338684b0390611b2d908490600401613660565b60006040518083038186803b158015611b4557600080fd5b505afa158015611b59573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b8191908101906131f2565b95945050505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6060600280611bc76008611efc565b6003811115611bd857611bd86139ce565b14611be282611f51565b90611c005760405162461bcd60e51b815260040161083a9190613575565b50611c45898989898989898080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061263592505050565b600860030160009054906101000a90046001600160a01b03166001600160a01b03166379971bb1611cb26000808c8c8c8c8c8c8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061270392505050565b6040518263ffffffff1660e01b8152600401611cce9190613660565b60006040518083038186803b158015611ce657600080fd5b505afa158015611cfa573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d2291908101906131f2565b9998505050505050505050565b6006546001600160a01b03163314611d595760405162461bcd60e51b815260040161083a906135da565b6001600160a01b038116611dbe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083a565b611dc781612397565b50565b60026007541415611e1d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161083a565b60026007556006546001600160a01b03163314611e4c5760405162461bcd60e51b815260040161083a906135da565b600080611e596008611efc565b6003811115611e6a57611e6a6139ce565b14611e7482611f51565b90611e925760405162461bcd60e51b815260040161083a9190613575565b50600c54600090611eab906001600160a01b03166127d9565b600d91909155905034811015611ef357336108fc611ec983346138c5565b6040518115909202916000818181858888f19350505050158015611ef1573d6000803e3d6000fd5b505b50506001600755565b600681015460009015611f325760028201546007830154611f1d9190613855565b4311611f2a57600261068a565b600392915050565b600582015415611f4457506001919050565b506000919050565b919050565b60606003826003811115611f6757611f676139ce565b1415611fa657505060408051808201909152601e81527f5769746d6f6e733a206e6f7420696e20467265657a6564207374617475730000602082015290565b6000826003811115611fba57611fba6139ce565b1415611ff957505060408051808201909152601f81527f5769746d6f6e733a206e6f7420696e204261746368696e672073746174757300602082015290565b600182600381111561200d5761200d6139ce565b141561203257604051806060016040528060228152602001613a596022913992915050565b6002826003811115612046576120466139ce565b141561208557505060408051808201909152601f81527f5769746d6f6e733a206e6f7420696e204861746368696e672073746174757300602082015290565b505060408051808201909152601181527015da5d1b5bdb9cce88189859081b5bdbd9607a1b602082015290565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120e782610be4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166121995760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161083a565b60006121a483610be4565b9050806001600160a01b0316846001600160a01b031614806121df5750836001600160a01b03166121d4846107c5565b6001600160a01b0316145b806121ef57506121ef8185611b8a565b949350505050565b826001600160a01b031661220a82610be4565b6001600160a01b0316146122725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161083a565b6001600160a01b0382166122d45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161083a565b6122df6000826120b2565b6001600160a01b03831660009081526003602052604081208054600192906123089084906138c5565b90915550506001600160a01b0382166000908152600360205260408120805460019290612336908490613855565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006002604051631bc1eaf360e21b8152600481018490527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690636f07abcc9060240160206040518083038186803b15801561244d57600080fd5b505afa158015612461573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612485919061327b565b6003811115612496576124966139ce565b1492915050565b60008060208351116124b05782516124b3565b60205b905060005b81811015610a37576124cb8160086138a6565b8482815181106124dd576124dd6139e4565b01602001516001600160f81b031916901c9290921791806124fd8161393d565b9150506124b8565b6125108484846121f7565b61251c8484848461288d565b6112ec5760405162461bcd60e51b815260040161083a90613588565b60608161255c5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561258657806125708161393d565b915061257f9050600a83613892565b9150612560565b6000816001600160401b038111156125a0576125a06139fa565b6040519080825280601f01601f1916602001820160405280156125ca576020820181803683370190505b5090505b84156121ef576125df6001836138c5565b91506125ec600a86613978565b6125f7906030613855565b60f81b81838151811061260c5761260c6139e4565b60200101906001600160f81b031916908160001a90535061262e600a86613892565b94506125ce565b6040516bffffffffffffffffffffffff19606088901b1660208201526034810186905260548101859052607481018490526094810183905260009060b40160408051601f1981840301815291905280516020909101206008549091506001600160a01b03166126a4828461299a565b6001600160a01b0316146126fa5760405162461bcd60e51b815260206004820152601b60248201527f5769746d6f6e4552433732313a20626164207369676e61747572650000000000604482015260640161083a565b50505050505050565b61270b612d27565b600083861161272f57836127208760646138a6565b61272a9190613892565b612732565b60645b90506040518060e001604052808a815260200189815260200188815260200186815260200187815260200184600860060154604051602001612775929190613485565b60408051601f19818403018152919052805160209182012082520161279b600884612a84565b60028111156127ac576127ac6139ce565b90529998505050505050505050565b6127d5828260405180602001604052806000815250612b18565b5050565b6000806127e4612b4b565b60405163b281a7bd60e01b81526001600160a01b0385811660048301529192507f00000000000000000000000000000000000000000000000000000000000000009091169063b281a7bd9083906024016020604051808303818588803b15801561284d57600080fd5b505af1158015612861573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128869190613402565b9150915091565b60006001600160a01b0384163b1561298f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128d19033908990889088906004016134d6565b602060405180830381600087803b1580156128eb57600080fd5b505af192505050801561291b575060408051601f3d908101601f19168201909252612918918101906131d5565b60015b612975573d808015612949576040519150601f19603f3d011682016040523d82523d6000602084013e61294e565b606091505b50805161296d5760405162461bcd60e51b815260040161083a90613588565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121ef565b506001949350505050565b600081516041146129ad5750600061068a565b60208201516040830151606084015160001a7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156129f3576000935050505061068a565b8060ff16601b14158015612a0b57508060ff16601c14155b15612a1c576000935050505061068a565b60408051600081526020810180835288905260ff831691810191909152606081018490526080810183905260019060a0016020604051602081039080840390855afa158015612a6f573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b60008060005b600185015460ff83161015612b035760018501805460ff8416908110612ab257612ab26139e4565b90600052602060002090602091828204019190069054906101000a900460ff1681612add919061386d565b90508060ff168460ff1611612af157612b03565b81612afb81613958565b925050612a8a565b8160ff166002811115611b8157611b816139ce565b612b228383612be5565b612b2f600084848461288d565b6109705760405162461bcd60e51b815260040161083a90613588565b60405163d2e8756160e01b81523a60048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d2e875619060240160206040518083038186803b158015612bad57600080fd5b505afa158015612bc1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109809190613402565b6001600160a01b038216612c3b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161083a565b6000818152600260205260409020546001600160a01b031615612ca05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161083a565b6001600160a01b0382166000908152600360205260408120805460019290612cc9908490613855565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518060e0016040528060008152602001600081526020016000815260200160008152602001600081526020016000801916815260200160006002811115612d7257612d726139ce565b905290565b82805482825590600052602060002090601f01602090048101928215612e0d5791602002820160005b83821115612dde57835183826101000a81548160ff021916908360ff1602179055509260200192600101602081600001049283019260010302612da0565b8015612e0b5782816101000a81549060ff0219169055600101602081600001049283019260010302612dde565b505b50612e19929150612e1d565b5090565b5b80821115612e195760008155600101612e1e565b600082601f830112612e4357600080fd5b8151612e56612e518261382e565b6137fe565b818152846020838601011115612e6b57600080fd5b6121ef8260208301602087016138dc565b80516001600160401b0381168114611f4c57600080fd5b8051611f4c81613a49565b600060208284031215612eb057600080fd5b8135610bdd81613a10565b60008060408385031215612ece57600080fd5b8235612ed981613a10565b91506020830135612ee981613a10565b809150509250929050565b600080600060608486031215612f0957600080fd5b8335612f1481613a10565b92506020840135612f2481613a10565b929592945050506040919091013590565b60008060008060808587031215612f4b57600080fd5b8435612f5681613a10565b93506020850135612f6681613a10565b92506040850135915060608501356001600160401b03811115612f8857600080fd5b8501601f81018713612f9957600080fd5b8035612fa7612e518261382e565b818152886020838501011115612fbc57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080600060608486031215612ff357600080fd5b8335612ffe81613a10565b92506020848101356001600160401b038082111561301b57600080fd5b818701915087601f83011261302f57600080fd5b813581811115613041576130416139fa565b8060051b91506130528483016137fe565b8181528481019084860184860187018c101561306d57600080fd5b600095505b8386101561309c578035945061308785613a49565b84835260019590950194918601918601613072565b50979a979950505050604095909501359450505050565b600080604083850312156130c657600080fd5b82356130d181613a10565b91506020830135612ee981613a25565b600080604083850312156130f457600080fd5b82356130ff81613a10565b946020939093013593505050565b600080600080600080600060c0888a03121561312857600080fd5b873561313381613a10565b96506020880135955060408801359450606088013593506080880135925060a08801356001600160401b038082111561316b57600080fd5b818a0191508a601f83011261317f57600080fd5b81358181111561318e57600080fd5b8b60208285010111156131a057600080fd5b60208301945080935050505092959891949750929550565b6000602082840312156131ca57600080fd5b8135610bdd81613a33565b6000602082840312156131e757600080fd5b8151610bdd81613a33565b60006020828403121561320457600080fd5b81516001600160401b0381111561321a57600080fd5b6121ef84828501612e32565b6000806040838503121561323957600080fd5b8251610100811061324957600080fd5b60208401519092506001600160401b0381111561326557600080fd5b61327185828601612e32565b9150509250929050565b60006020828403121561328d57600080fd5b815160048110610bdd57600080fd5b600060208083850312156132af57600080fd5b82516001600160401b03808211156132c657600080fd5b90840190604082870312156132da57600080fd5b6132e26137b4565b82516132ed81613a25565b8152828401518281111561330057600080fd5b929092019160c0838803121561331557600080fd5b61331d6137dc565b83518381111561332c57600080fd5b84016040818a03121561333e57600080fd5b6133466137b4565b81518581111561335557600080fd5b6133618b828501612e32565b82525086820151945063ffffffff8516851461337c57600080fd5b808701859052825250613390848601612e93565b858201526133a060408501612e93565b60408201526133b160608501612e93565b60608201526133c260808501612e7c565b60808201526133d360a08501612e7c565b60a0820152938101939093525090949350505050565b6000602082840312156133fb57600080fd5b5035919050565b60006020828403121561341457600080fd5b5051919050565b600081518084526020808501945080840160005b8381101561344e57815160ff168752958201959082019060010161342f565b509495945050505050565b600081518084526134718160208601602086016138dc565b601f01601f19169290920160200192915050565b600083516134978184602088016138dc565b9190910191825250602001919050565b600083516134b98184602088016138dc565b8351908301906134cd8183602088016138dc565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061350990830184613459565b9695505050505050565b6001600160a01b03841681526060602082018190526000906135379083018561341b565b9050826040830152949350505050565b602081016005831061355b5761355b6139ce565b91905290565b602081016004831061355b5761355b6139ce565b602081526000610bdd6020830184613459565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600060e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c0830151600381106136b3576136b36139ce565b8060c08401525092915050565b602080825282516001600160a01b031682820152820151606060408301526000906136ee608084018261341b565b9050604084015160608401528091505092915050565b6020815281511515602082015260006020830151604080840152805160c060608501528051604061012086015261373f610160860182613459565b60209283015163ffffffff166101408701529183015160ff81166080870152919050604083015160ff811660a08701529150606083015160ff811660c0870152915060808301516001600160401b03811660e0870152915060a08301519250611b816101008601846001600160401b03169052565b604080519081016001600160401b03811182821017156137d6576137d66139fa565b60405290565b60405160c081016001600160401b03811182821017156137d6576137d66139fa565b604051601f8201601f191681016001600160401b0381118282101715613826576138266139fa565b604052919050565b60006001600160401b03821115613847576138476139fa565b50601f01601f191660200190565b60008219821115613868576138686139a2565b500190565b600060ff821660ff84168060ff0382111561388a5761388a6139a2565b019392505050565b6000826138a1576138a16139b8565b500490565b60008160001904831182151516156138c0576138c06139a2565b500290565b6000828210156138d7576138d76139a2565b500390565b60005b838110156138f75781810151838201526020016138df565b838111156112ec5750506000910152565b600181811c9082168061391c57607f821691505b60208210811415610a3957634e487b7160e01b600052602260045260246000fd5b6000600019821415613951576139516139a2565b5060010190565b600060ff821660ff81141561396f5761396f6139a2565b60010192915050565b600082613987576139876139b8565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611dc757600080fd5b8015158114611dc757600080fd5b6001600160e01b031981168114611dc757600080fd5b60ff81168114611dc757600080fdfe5769746d6f6e733a206e6f7420696e2052616e646f6d697a696e6720737461747573a264697066735822122004a4df6295a9b07e19bf27621fd5107b217a19e49db1ec976258ab39fc934dc764736f6c63430008070033608060405234801561001057600080fd5b5060405161051c38038061051c83398101604081905261002f91610169565b80516100429060009060208401906100b7565b506100568161005f60201b6100fa1760201c565b600155506102b2565b60006002826040516100719190610215565b602060405180830381855afa15801561008e573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906100b19190610150565b92915050565b8280546100c390610261565b90600052602060002090601f0160209004810192826100e5576000855561012b565b82601f106100fe57805160ff191683800117855561012b565b8280016001018555821561012b579182015b8281111561012b578251825591602001919060010190610110565b5061013792915061013b565b5090565b5b80821115610137576000815560010161013c565b60006020828403121561016257600080fd5b5051919050565b60006020828403121561017b57600080fd5b81516001600160401b038082111561019257600080fd5b818401915084601f8301126101a657600080fd5b8151818111156101b8576101b861029c565b604051601f8201601f19908116603f011681019083821181831017156101e0576101e061029c565b816040528281528760208487010111156101f957600080fd5b61020a836020830160208801610231565b979650505050505050565b60008251610227818460208701610231565b9190910192915050565b60005b8381101561024c578181015183820152602001610234565b8381111561025b576000848401525b50505050565b600181811c9082168061027557607f821691505b6020821081141561029657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61025b806102c16000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806309bd5a601461003b578063f094000214610057575b600080fd5b61004460015481565b6040519081526020015b60405180910390f35b61005f61006c565b60405161004e9190610187565b60008054610079906101ea565b80601f01602080910402602001604051908101604052809291908181526020018280546100a5906101ea565b80156100f25780601f106100c7576101008083540402835291602001916100f2565b820191906000526020600020905b8154815290600101906020018083116100d557829003601f168201915b505050505081565b600060028260405161010c919061016b565b602060405180830381855afa158015610129573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061014c9190610152565b92915050565b60006020828403121561016457600080fd5b5051919050565b6000825161017d8184602087016101ba565b9190910192915050565b60208152600082518060208401526101a68160408501602087016101ba565b601f01601f19169190910160400192915050565b60005b838110156101d55781810151838201526020016101bd565b838111156101e4576000848401525b50505050565b600181811c908216806101fe57607f821691505b6020821081141561021f57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220afa64dd4911c36a20e08bf01be893479e7d3f2a128131648b5ce5bbbbfb20f2864736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725769746d6f6e733a206e6f7420696e2052616e646f6d697a696e67207374617475730000000000000000000000009e4fae1c7ac543a81e4e2a5486a0ddaad8194bda000000000000000000000000109b0c420d2fa7e664e34ce4a570a6953985d64400000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001400000000000000000000000008d86bc475bedcb08179c5e6a4d494ebd3b44ea8b0000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000002ee00000000000000000000000000000000000000000000000000000000000000003157697474792043726561747572657320322e30202d204c6973636f6e2032303231205370656369616c2045646974696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000957495454593230323100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000003c

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063d8f6de53116100a0578063e3684e391161006f578063e3684e39146105b6578063e985e9c5146105d6578063ef0a78de146105f6578063f2fde38b14610616578063f5e0de1c1461063657600080fd5b8063d8f6de5314610538578063d9be414514610556578063dbe83c5b14610576578063e27f20511461059657600080fd5b8063a22cb465116100dc578063a22cb465146104b6578063a5ea11da146104d6578063b88d4fde146104f8578063c87b56dd1461051857600080fd5b8063715018a61461045957806376e933e41461046e5780638da5cb5b1461048357806395d89b41146104a157600080fd5b806329ce133811610185578063568508fe11610154578063568508fe146103e45780636352211e146104045780636c0360eb1461042457806370a082311461043957600080fd5b806329ce13381461034157806342842e0e1461036e57806346d1d21a1461038e5780634e69d560146103c257600080fd5b8063095ea7b3116101c1578063095ea7b3146102af5780630d3342e5146102d157806318160ddd1461030c57806323b872dd1461032157600080fd5b806301ffc9a7146101f3578063054df6411461022857806306fdde0314610255578063081812fc14610277575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046131b8565b61063e565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b506102486102433660046133e9565b610690565b60405161021f9190613660565b34801561026157600080fd5b5061026a610733565b60405161021f9190613575565b34801561028357600080fd5b506102976102923660046133e9565b6107c5565b6040516001600160a01b03909116815260200161021f565b3480156102bb57600080fd5b506102cf6102ca3660046130e1565b61085f565b005b3480156102dd57600080fd5b506102fe6102ec3660046133e9565b60009081526012602052604090205490565b60405190815260200161021f565b34801561031857600080fd5b506102fe610975565b34801561032d57600080fd5b506102cf61033c366004612ef4565b610985565b34801561034d57600080fd5b5061036161035c3660046133e9565b6109b6565b60405161021f9190613547565b34801561037a57600080fd5b506102cf610389366004612ef4565b610a3f565b34801561039a57600080fd5b506102977f0000000000000000000000009e4fae1c7ac543a81e4e2a5486a0ddaad8194bda81565b3480156103ce57600080fd5b506103d7610a5a565b60405161021f9190613561565b3480156103f057600080fd5b5061026a6103ff3660046133e9565b610a66565b34801561041057600080fd5b5061029761041f3660046133e9565b610be4565b34801561043057600080fd5b5061026a610c5b565b34801561044557600080fd5b506102fe610454366004612e9e565b610cdc565b34801561046557600080fd5b506102cf610d63565b34801561047a57600080fd5b506102cf610d99565b34801561048f57600080fd5b506006546001600160a01b0316610297565b3480156104ad57600080fd5b5061026a61111a565b3480156104c257600080fd5b506102cf6104d13660046130b3565b611129565b3480156104e257600080fd5b506104eb6111ee565b60405161021f91906136c0565b34801561050457600080fd5b506102cf610513366004612f35565b6112ba565b34801561052457600080fd5b5061026a6105333660046133e9565b6112f2565b34801561054457600080fd5b50600b546001600160a01b0316610297565b34801561056257600080fd5b506102cf610571366004612e9e565b61139b565b34801561058257600080fd5b506102cf610591366004612fde565b61146f565b3480156105a257600080fd5b506102cf6105b136600461310d565b611756565b3480156105c257600080fd5b5061026a6105d13660046133e9565b6119e2565b3480156105e257600080fd5b506102136105f1366004612ebb565b611b8a565b34801561060257600080fd5b5061026a61061136600461310d565b611bb8565b34801561062257600080fd5b506102cf610631366004612e9e565b611d2f565b6102cf611dca565b60006001600160e01b031982166380ac58cd60e01b148061066f57506001600160e01b03198216635b5e139f60e01b145b8061068a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b610698612d27565b600860090160008381526020019081526020016000206040518060e00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820160009054906101000a900460ff166002811115610719576107196139ce565b600281111561072a5761072a6139ce565b90525092915050565b60606000805461074290613908565b80601f016020809104026020016040519081016040528092919081815260200182805461076e90613908565b80156107bb5780601f10610790576101008083540402835291602001916107bb565b820191906000526020600020905b81548152906001019060200180831161079e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061086a82610be4565b9050806001600160a01b0316836001600160a01b031614156108d85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161083a565b336001600160a01b03821614806108f457506108f48133611b8a565b6109665760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161083a565b61097083836120b2565b505050565b600061098060105490565b905090565b61098f3382612120565b6109ab5760405162461bcd60e51b815260040161083a9061360f565b6109708383836121f7565b60008181526011602052604081206005810154156109d75750600392915050565b60006109e36008611efc565b905060028160038111156109f9576109f96139ce565b1415610a09575060029392505050565b6003816003811115610a1d57610a1d6139ce565b1415610a2d575060049392505050565b5060019392505050565b505b50919050565b610970838383604051806020016040528060008152506112ba565b60006109806008611efc565b60606003610a73836109b6565b6004811115610a8457610a846139ce565b14610ad15760405162461bcd60e51b815260206004820152601b60248201527f5769746d6f6e4552433732313a206e6f7420616c697665207965740000000000604482015260640161083a565b6000828152601160209081526040808320815160e08101835281548152600182015493810193909352600280820154928401929092526003810154606084015260048101546080840152600581015460a08401526006810154909160c084019160ff1690811115610b4457610b446139ce565b6002811115610b5557610b556139ce565b905250600b546040516379971bb160e01b81529192506001600160a01b0316906379971bb190610b89908490600401613660565b60006040518083038186803b158015610ba157600080fd5b505afa158015610bb5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bdd91908101906131f2565b9392505050565b6000818152600260205260408120546001600160a01b03168061068a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161083a565b600b5460408051636c0360eb60e01b815290516060926001600160a01b031691636c0360eb916004808301926000929190829003018186803b158015610ca057600080fd5b505afa158015610cb4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261098091908101906131f2565b60006001600160a01b038216610d475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161083a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d8d5760405162461bcd60e51b815260040161083a906135da565b610d976000612397565b565b6006546001600160a01b03163314610dc35760405162461bcd60e51b815260040161083a906135da565b600180610dd06008611efc565b6003811115610de157610de16139ce565b14610deb82611f51565b90610e095760405162461bcd60e51b815260040161083a9190613575565b50600d54610e16816123e9565b610e725760405162461bcd60e51b815260206004820152602760248201527f5769746d6f6e4552433732313a2072616e646f6d6e657373206e6f7420796574604482015266081cdbdb1d995960ca1b606482015260840161083a565b6040516335369a6b60e21b8152600481018290526000907f0000000000000000000000009e4fae1c7ac543a81e4e2a5486a0ddaad8194bda6001600160a01b03169063d4da69ac9060240160006040518083038186803b158015610ed557600080fd5b505afa158015610ee9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610f11919081019061329c565b80519091501561100b576000610fc57f0000000000000000000000009e4fae1c7ac543a81e4e2a5486a0ddaad8194bda6001600160a01b031663c683b465846040518263ffffffff1660e01b8152600401610f6c9190613704565b60006040518083038186803b158015610f8457600080fd5b505afa158015610f98573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610fc091908101906131f2565b61249d565b43600f55600e8190556040518181529091507f87533c4aa2bce6bb1a8da08048c3c2e7a2354a95b8b431b22fd33d50c753b687906020015b60405180910390a150505050565b6000600d55604051636ba401df60e11b81526060906001600160a01b037f0000000000000000000000009e4fae1c7ac543a81e4e2a5486a0ddaad8194bda169063d74803be9061105f908590600401613704565b60006040518083038186803b15801561107757600080fd5b505afa9250505080156110ac57506040513d6000823e601f3d908101601f191682016040526110a99190810190613226565b60015b6110e7573d8080156110da576040519150601f19603f3d011682016040523d82523d6000602084013e6110df565b606091505b5090506110eb565b9150505b7f35428cf83cc52cee3e71741c8bbdd0bec00d1ecd4c993c61bca8de8b2c3fd3da81604051610ffd9190613575565b60606001805461074290613908565b6001600160a01b0382163314156111825760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161083a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61121b604051806060016040528060006001600160a01b0316815260200160608152602001600081525090565b60408051606081018252600880546001600160a01b031682526009805484516020828102820181019096528181529394929383860193909291908301828280156112a257602002820191906000526020600020906000905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116112735790505b50505050508152602001600282015481525050905090565b6112c43383612120565b6112e05760405162461bcd60e51b815260040161083a9061360f565b6112ec84848484612505565b50505050565b606081611316816000908152600260205260409020546001600160a01b0316151590565b6113625760405162461bcd60e51b815260206004820152601e60248201527f5769746d6f6e4552433732313a20696e6578697374656e7420746f6b656e0000604482015260640161083a565b61136a610c5b565b61137384612538565b6040516020016113849291906134a7565b604051602081830303815290604052915050919050565b6006546001600160a01b031633146113c55760405162461bcd60e51b815260040161083a906135da565b6001600160a01b03811661141b5760405162461bcd60e51b815260206004820152601a60248201527f5769746d6f6e4552433732313a206e6f206465636f7261746f72000000000000604482015260640161083a565b600b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f17b37ee811fab07dfe76ad0139a0a6c475ff575dd6721e0ccc0786c1c9d579209060200160405180910390a150565b6006546001600160a01b031633146114995760405162461bcd60e51b815260040161083a906135da565b6000806114a66008611efc565b60038111156114b7576114b76139ce565b146114c182611f51565b906114df5760405162461bcd60e51b815260040161083a9190613575565b506001600160a01b0384166115365760405162461bcd60e51b815260206004820152601960248201527f5769746d6f6e4552433732313a206e6f207369676e61746f7200000000000000604482015260640161083a565b6115426002600161386d565b60ff1683511461159f5760405162461bcd60e51b815260206004820152602260248201527f5769746d6f6e4552433732313a206261642070657263656e74696c65206d61726044820152616b7360f01b606482015260840161083a565b82516001600160401b038111156115b8576115b86139fa565b6040519080825280602002602001820160405280156115e1578160200160208202803683370190505b5080516115f691600991602090910190612d77565b506000805b84518160ff161015611691576000858260ff168151811061161e5761161e6139e4565b602002602001015190508060086000016001018360ff1681548110611645576116456139e4565b90600052602060002090602091828204019190066101000a81548160ff021916908360ff160217905550808361167b919061386d565b925050808061168990613958565b9150506115fb565b508060ff166064146116f35760405162461bcd60e51b815260206004820152602560248201527f5769746d6f6e4552433732313a206261642070657263656e74696c6520636865604482015264636b73756d60d81b606482015260840161083a565b600880546001600160a01b0319166001600160a01b038716179055600a8390556040517f4f91d5a2a59ed6db9618e1c449fb9da42fd4e3952e95514dc546adbcbe971cc49061174790879087908790613513565b60405180910390a15050505050565b600260075414156117a95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161083a565b60026007819055806117bb6008611efc565b60038111156117cc576117cc6139ce565b146117d682611f51565b906117f45760405162461bcd60e51b815260040161083a9190613575565b50611839888888888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061263592505050565b600087815260116020526040902054156118955760405162461bcd60e51b815260206004820152601c60248201527f5769746d6f6e4552433732313a20616c7265616479206d696e74656400000000604482015260640161083a565b6118a3601080546001019055565b60006118ae60105490565b905060006118f782428b8b8b8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061270392505050565b905080600860090160008b8152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff02191690836002811115611976576119766139ce565b0217905550505060008281526012602052604090208990556119988a836127bb565b604080518a8152602081018490527f22050ec7af2d31649668d13e49c000e1424a846f48d70f041f387573a7e28033910160405180910390a1505060016007555050505050505050565b606081611a06816000908152600260205260409020546001600160a01b0316151590565b611a525760405162461bcd60e51b815260206004820152601e60248201527f5769746d6f6e4552433732313a20696e6578697374656e7420746f6b656e0000604482015260640161083a565b60008381526012602090815260408083205480845260118352818420825160e08101845281548152600182015494810194909452600280820154938501939093526003810154606085015260048101546080850152600581015460a0850152600681015491949392909160c084019160ff90911690811115611ad657611ad66139ce565b6002811115611ae757611ae76139ce565b90525080519091508514611afd57611afd61398c565b600b546040516338684b0360e01b81526001600160a01b03909116906338684b0390611b2d908490600401613660565b60006040518083038186803b158015611b4557600080fd5b505afa158015611b59573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b8191908101906131f2565b95945050505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6060600280611bc76008611efc565b6003811115611bd857611bd86139ce565b14611be282611f51565b90611c005760405162461bcd60e51b815260040161083a9190613575565b50611c45898989898989898080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061263592505050565b600860030160009054906101000a90046001600160a01b03166001600160a01b03166379971bb1611cb26000808c8c8c8c8c8c8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061270392505050565b6040518263ffffffff1660e01b8152600401611cce9190613660565b60006040518083038186803b158015611ce657600080fd5b505afa158015611cfa573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d2291908101906131f2565b9998505050505050505050565b6006546001600160a01b03163314611d595760405162461bcd60e51b815260040161083a906135da565b6001600160a01b038116611dbe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083a565b611dc781612397565b50565b60026007541415611e1d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161083a565b60026007556006546001600160a01b03163314611e4c5760405162461bcd60e51b815260040161083a906135da565b600080611e596008611efc565b6003811115611e6a57611e6a6139ce565b14611e7482611f51565b90611e925760405162461bcd60e51b815260040161083a9190613575565b50600c54600090611eab906001600160a01b03166127d9565b600d91909155905034811015611ef357336108fc611ec983346138c5565b6040518115909202916000818181858888f19350505050158015611ef1573d6000803e3d6000fd5b505b50506001600755565b600681015460009015611f325760028201546007830154611f1d9190613855565b4311611f2a57600261068a565b600392915050565b600582015415611f4457506001919050565b506000919050565b919050565b60606003826003811115611f6757611f676139ce565b1415611fa657505060408051808201909152601e81527f5769746d6f6e733a206e6f7420696e20467265657a6564207374617475730000602082015290565b6000826003811115611fba57611fba6139ce565b1415611ff957505060408051808201909152601f81527f5769746d6f6e733a206e6f7420696e204261746368696e672073746174757300602082015290565b600182600381111561200d5761200d6139ce565b141561203257604051806060016040528060228152602001613a596022913992915050565b6002826003811115612046576120466139ce565b141561208557505060408051808201909152601f81527f5769746d6f6e733a206e6f7420696e204861746368696e672073746174757300602082015290565b505060408051808201909152601181527015da5d1b5bdb9cce88189859081b5bdbd9607a1b602082015290565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120e782610be4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166121995760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161083a565b60006121a483610be4565b9050806001600160a01b0316846001600160a01b031614806121df5750836001600160a01b03166121d4846107c5565b6001600160a01b0316145b806121ef57506121ef8185611b8a565b949350505050565b826001600160a01b031661220a82610be4565b6001600160a01b0316146122725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161083a565b6001600160a01b0382166122d45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161083a565b6122df6000826120b2565b6001600160a01b03831660009081526003602052604081208054600192906123089084906138c5565b90915550506001600160a01b0382166000908152600360205260408120805460019290612336908490613855565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006002604051631bc1eaf360e21b8152600481018490527f0000000000000000000000009e4fae1c7ac543a81e4e2a5486a0ddaad8194bda6001600160a01b031690636f07abcc9060240160206040518083038186803b15801561244d57600080fd5b505afa158015612461573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612485919061327b565b6003811115612496576124966139ce565b1492915050565b60008060208351116124b05782516124b3565b60205b905060005b81811015610a37576124cb8160086138a6565b8482815181106124dd576124dd6139e4565b01602001516001600160f81b031916901c9290921791806124fd8161393d565b9150506124b8565b6125108484846121f7565b61251c8484848461288d565b6112ec5760405162461bcd60e51b815260040161083a90613588565b60608161255c5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561258657806125708161393d565b915061257f9050600a83613892565b9150612560565b6000816001600160401b038111156125a0576125a06139fa565b6040519080825280601f01601f1916602001820160405280156125ca576020820181803683370190505b5090505b84156121ef576125df6001836138c5565b91506125ec600a86613978565b6125f7906030613855565b60f81b81838151811061260c5761260c6139e4565b60200101906001600160f81b031916908160001a90535061262e600a86613892565b94506125ce565b6040516bffffffffffffffffffffffff19606088901b1660208201526034810186905260548101859052607481018490526094810183905260009060b40160408051601f1981840301815291905280516020909101206008549091506001600160a01b03166126a4828461299a565b6001600160a01b0316146126fa5760405162461bcd60e51b815260206004820152601b60248201527f5769746d6f6e4552433732313a20626164207369676e61747572650000000000604482015260640161083a565b50505050505050565b61270b612d27565b600083861161272f57836127208760646138a6565b61272a9190613892565b612732565b60645b90506040518060e001604052808a815260200189815260200188815260200186815260200187815260200184600860060154604051602001612775929190613485565b60408051601f19818403018152919052805160209182012082520161279b600884612a84565b60028111156127ac576127ac6139ce565b90529998505050505050505050565b6127d5828260405180602001604052806000815250612b18565b5050565b6000806127e4612b4b565b60405163b281a7bd60e01b81526001600160a01b0385811660048301529192507f0000000000000000000000009e4fae1c7ac543a81e4e2a5486a0ddaad8194bda9091169063b281a7bd9083906024016020604051808303818588803b15801561284d57600080fd5b505af1158015612861573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128869190613402565b9150915091565b60006001600160a01b0384163b1561298f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128d19033908990889088906004016134d6565b602060405180830381600087803b1580156128eb57600080fd5b505af192505050801561291b575060408051601f3d908101601f19168201909252612918918101906131d5565b60015b612975573d808015612949576040519150601f19603f3d011682016040523d82523d6000602084013e61294e565b606091505b50805161296d5760405162461bcd60e51b815260040161083a90613588565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121ef565b506001949350505050565b600081516041146129ad5750600061068a565b60208201516040830151606084015160001a7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156129f3576000935050505061068a565b8060ff16601b14158015612a0b57508060ff16601c14155b15612a1c576000935050505061068a565b60408051600081526020810180835288905260ff831691810191909152606081018490526080810183905260019060a0016020604051602081039080840390855afa158015612a6f573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b60008060005b600185015460ff83161015612b035760018501805460ff8416908110612ab257612ab26139e4565b90600052602060002090602091828204019190069054906101000a900460ff1681612add919061386d565b90508060ff168460ff1611612af157612b03565b81612afb81613958565b925050612a8a565b8160ff166002811115611b8157611b816139ce565b612b228383612be5565b612b2f600084848461288d565b6109705760405162461bcd60e51b815260040161083a90613588565b60405163d2e8756160e01b81523a60048201526000907f0000000000000000000000009e4fae1c7ac543a81e4e2a5486a0ddaad8194bda6001600160a01b03169063d2e875619060240160206040518083038186803b158015612bad57600080fd5b505afa158015612bc1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109809190613402565b6001600160a01b038216612c3b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161083a565b6000818152600260205260409020546001600160a01b031615612ca05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161083a565b6001600160a01b0382166000908152600360205260408120805460019290612cc9908490613855565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518060e0016040528060008152602001600081526020016000815260200160008152602001600081526020016000801916815260200160006002811115612d7257612d726139ce565b905290565b82805482825590600052602060002090601f01602090048101928215612e0d5791602002820160005b83821115612dde57835183826101000a81548160ff021916908360ff1602179055509260200192600101602081600001049283019260010302612da0565b8015612e0b5782816101000a81549060ff0219169055600101602081600001049283019260010302612dde565b505b50612e19929150612e1d565b5090565b5b80821115612e195760008155600101612e1e565b600082601f830112612e4357600080fd5b8151612e56612e518261382e565b6137fe565b818152846020838601011115612e6b57600080fd5b6121ef8260208301602087016138dc565b80516001600160401b0381168114611f4c57600080fd5b8051611f4c81613a49565b600060208284031215612eb057600080fd5b8135610bdd81613a10565b60008060408385031215612ece57600080fd5b8235612ed981613a10565b91506020830135612ee981613a10565b809150509250929050565b600080600060608486031215612f0957600080fd5b8335612f1481613a10565b92506020840135612f2481613a10565b929592945050506040919091013590565b60008060008060808587031215612f4b57600080fd5b8435612f5681613a10565b93506020850135612f6681613a10565b92506040850135915060608501356001600160401b03811115612f8857600080fd5b8501601f81018713612f9957600080fd5b8035612fa7612e518261382e565b818152886020838501011115612fbc57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080600060608486031215612ff357600080fd5b8335612ffe81613a10565b92506020848101356001600160401b038082111561301b57600080fd5b818701915087601f83011261302f57600080fd5b813581811115613041576130416139fa565b8060051b91506130528483016137fe565b8181528481019084860184860187018c101561306d57600080fd5b600095505b8386101561309c578035945061308785613a49565b84835260019590950194918601918601613072565b50979a979950505050604095909501359450505050565b600080604083850312156130c657600080fd5b82356130d181613a10565b91506020830135612ee981613a25565b600080604083850312156130f457600080fd5b82356130ff81613a10565b946020939093013593505050565b600080600080600080600060c0888a03121561312857600080fd5b873561313381613a10565b96506020880135955060408801359450606088013593506080880135925060a08801356001600160401b038082111561316b57600080fd5b818a0191508a601f83011261317f57600080fd5b81358181111561318e57600080fd5b8b60208285010111156131a057600080fd5b60208301945080935050505092959891949750929550565b6000602082840312156131ca57600080fd5b8135610bdd81613a33565b6000602082840312156131e757600080fd5b8151610bdd81613a33565b60006020828403121561320457600080fd5b81516001600160401b0381111561321a57600080fd5b6121ef84828501612e32565b6000806040838503121561323957600080fd5b8251610100811061324957600080fd5b60208401519092506001600160401b0381111561326557600080fd5b61327185828601612e32565b9150509250929050565b60006020828403121561328d57600080fd5b815160048110610bdd57600080fd5b600060208083850312156132af57600080fd5b82516001600160401b03808211156132c657600080fd5b90840190604082870312156132da57600080fd5b6132e26137b4565b82516132ed81613a25565b8152828401518281111561330057600080fd5b929092019160c0838803121561331557600080fd5b61331d6137dc565b83518381111561332c57600080fd5b84016040818a03121561333e57600080fd5b6133466137b4565b81518581111561335557600080fd5b6133618b828501612e32565b82525086820151945063ffffffff8516851461337c57600080fd5b808701859052825250613390848601612e93565b858201526133a060408501612e93565b60408201526133b160608501612e93565b60608201526133c260808501612e7c565b60808201526133d360a08501612e7c565b60a0820152938101939093525090949350505050565b6000602082840312156133fb57600080fd5b5035919050565b60006020828403121561341457600080fd5b5051919050565b600081518084526020808501945080840160005b8381101561344e57815160ff168752958201959082019060010161342f565b509495945050505050565b600081518084526134718160208601602086016138dc565b601f01601f19169290920160200192915050565b600083516134978184602088016138dc565b9190910191825250602001919050565b600083516134b98184602088016138dc565b8351908301906134cd8183602088016138dc565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061350990830184613459565b9695505050505050565b6001600160a01b03841681526060602082018190526000906135379083018561341b565b9050826040830152949350505050565b602081016005831061355b5761355b6139ce565b91905290565b602081016004831061355b5761355b6139ce565b602081526000610bdd6020830184613459565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600060e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c0830151600381106136b3576136b36139ce565b8060c08401525092915050565b602080825282516001600160a01b031682820152820151606060408301526000906136ee608084018261341b565b9050604084015160608401528091505092915050565b6020815281511515602082015260006020830151604080840152805160c060608501528051604061012086015261373f610160860182613459565b60209283015163ffffffff166101408701529183015160ff81166080870152919050604083015160ff811660a08701529150606083015160ff811660c0870152915060808301516001600160401b03811660e0870152915060a08301519250611b816101008601846001600160401b03169052565b604080519081016001600160401b03811182821017156137d6576137d66139fa565b60405290565b60405160c081016001600160401b03811182821017156137d6576137d66139fa565b604051601f8201601f191681016001600160401b0381118282101715613826576138266139fa565b604052919050565b60006001600160401b03821115613847576138476139fa565b50601f01601f191660200190565b60008219821115613868576138686139a2565b500190565b600060ff821660ff84168060ff0382111561388a5761388a6139a2565b019392505050565b6000826138a1576138a16139b8565b500490565b60008160001904831182151516156138c0576138c06139a2565b500290565b6000828210156138d7576138d76139a2565b500390565b60005b838110156138f75781810151838201526020016138df565b838111156112ec5750506000910152565b600181811c9082168061391c57607f821691505b60208210811415610a3957634e487b7160e01b600052602260045260246000fd5b6000600019821415613951576139516139a2565b5060010190565b600060ff821660ff81141561396f5761396f6139a2565b60010192915050565b600082613987576139876139b8565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611dc757600080fd5b8015158114611dc757600080fd5b6001600160e01b031981168114611dc757600080fd5b60ff81168114611dc757600080fdfe5769746d6f6e733a206e6f7420696e2052616e646f6d697a696e6720737461747573a264697066735822122004a4df6295a9b07e19bf27621fd5107b217a19e49db1ec976258ab39fc934dc764736f6c63430008070033

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

0000000000000000000000009e4fae1c7ac543a81e4e2a5486a0ddaad8194bda000000000000000000000000109b0c420d2fa7e664e34ce4a570a6953985d64400000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001400000000000000000000000008d86bc475bedcb08179c5e6a4d494ebd3b44ea8b0000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000002ee00000000000000000000000000000000000000000000000000000000000000003157697474792043726561747572657320322e30202d204c6973636f6e2032303231205370656369616c2045646974696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000957495454593230323100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000003c

-----Decoded View---------------
Arg [0] : _witnet (address): 0x9E4fae1c7ac543a81E4E2a5486a0dDaad8194bdA
Arg [1] : _decorator (address): 0x109b0c420D2fA7E664e34cE4A570a6953985D644
Arg [2] : _name (string): Witty Creatures 2.0 - Liscon 2021 Special Edition
Arg [3] : _symbol (string): WITTY2021
Arg [4] : _signator (address): 0x8d86Bc475bEDCB08179c5e6a4d494EbD3b44Ea8B
Arg [5] : _percentileMarks (uint8[]): 10,30,60
Arg [6] : _expirationBlocks (uint256): 192000

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000009e4fae1c7ac543a81e4e2a5486a0ddaad8194bda
Arg [1] : 000000000000000000000000109b0c420d2fa7e664e34ce4a570a6953985d644
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000008d86bc475bedcb08179c5e6a4d494ebd3b44ea8b
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [6] : 000000000000000000000000000000000000000000000000000000000002ee00
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [8] : 57697474792043726561747572657320322e30202d204c6973636f6e20323032
Arg [9] : 31205370656369616c2045646974696f6e000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [11] : 5749545459323032310000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [13] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [14] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [15] : 000000000000000000000000000000000000000000000000000000000000003c


Deployed Bytecode Sourcemap

80674:14534:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53178:305;;;;;;;;;;-1:-1:-1;53178:305:0;;;;;:::i;:::-;;:::i;:::-;;;13799:14:1;;13792:22;13774:41;;13762:2;13747:18;53178:305:0;;;;;;;;90489:184;;;;;;;;;;-1:-1:-1;90489:184:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54123:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55682:221::-;;;;;;;;;;-1:-1:-1;55682:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;12669:32:1;;;12651:51;;12639:2;12624:18;55682:221:0;12505:203:1;55205:411:0;;;;;;;;;;-1:-1:-1;55205:411:0;;;;;:::i;:::-;;:::i;:::-;;92219:169;;;;;;;;;;-1:-1:-1;92219:169:0;;;;;:::i;:::-;92322:7;92354:26;;;:16;:26;;;;;;;92219:169;;;;13972:25:1;;;13960:2;13945:18;92219:169:0;13826:177:1;92396:211:0;;;;;;;;;;;;;:::i;56572:339::-;;;;;;;;;;-1:-1:-1;56572:339:0;;;;;:::i;:::-;;:::i;91121:753::-;;;;;;;;;;-1:-1:-1;91121:753:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56982:185::-;;;;;;;;;;-1:-1:-1;56982:185:0;;;;;:::i;:::-;;:::i;27500:42::-;;;;;;;;;;;;;;;92615:140;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;90681:432::-;;;;;;;;;;-1:-1:-1;90681:432:0;;;;;:::i;:::-;;:::i;53817:239::-;;;;;;;;;;-1:-1:-1;53817:239:0;;;;;:::i;:::-;;:::i;82263:165::-;;;;;;;;;;;;;:::i;53547:208::-;;;;;;;;;;-1:-1:-1;53547:208:0;;;;;:::i;:::-;;:::i;66913:94::-;;;;;;;;;;;;;:::i;86506:1207::-;;;;;;;;;;;;;:::i;66262:87::-;;;;;;;;;;-1:-1:-1;66335:6:0;;-1:-1:-1;;;;;66335:6:0;66262:87;;54292:104;;;;;;;;;;;;;:::i;55975:295::-;;;;;;;;;;-1:-1:-1;55975:295:0;;;;;:::i;:::-;;:::i;92056:155::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57238:328::-;;;;;;;;;;-1:-1:-1;57238:328:0;;;;;:::i;:::-;;:::i;82863:271::-;;;;;;;;;;-1:-1:-1;82863:271:0;;;;;:::i;:::-;;:::i;91882:166::-;;;;;;;;;;-1:-1:-1;92023:16:0;;-1:-1:-1;;;;;92023:16:0;91882:166;;83447:342;;;;;;;;;;-1:-1:-1;83447:342:0;;;;;:::i;:::-;;:::i;84201:1122::-;;;;;;;;;;-1:-1:-1;84201:1122:0;;;;;:::i;:::-;;:::i;87886:1465::-;;;;;;;;;;-1:-1:-1;87886:1465:0;;;;;:::i;:::-;;:::i;82440:415::-;;;;;;;;;;-1:-1:-1;82440:415:0;;;;;:::i;:::-;;:::i;56341:164::-;;;;;;;;;;-1:-1:-1;56341:164:0;;;;;:::i;:::-;;:::i;89359:958::-;;;;;;;;;;-1:-1:-1;89359:958:0;;;;;:::i;:::-;;:::i;67162:192::-;;;;;;;;;;-1:-1:-1;67162:192:0;;;;;:::i;:::-;;:::i;85591:552::-;;;:::i;53178:305::-;53280:4;-1:-1:-1;;;;;;53317:40:0;;-1:-1:-1;;;53317:40:0;;:105;;-1:-1:-1;;;;;;;53374:48:0;;-1:-1:-1;;;53374:48:0;53317:105;:158;;;-1:-1:-1;;;;;;;;;;51840:40:0;;;53439:36;53297:178;53178:305;-1:-1:-1;;53178:305:0:o;90489:184::-;90590:23;;:::i;:::-;90638:6;:16;;:27;90655:9;90638:27;;;;;;;;;;;90631:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;-1:-1:-1;90631:34:0;90489:184;-1:-1:-1;;90489:184:0:o;54123:100::-;54177:13;54210:5;54203:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54123:100;:::o;55682:221::-;55758:7;59165:16;;;:7;:16;;;;;;-1:-1:-1;;;;;59165:16:0;55778:73;;;;-1:-1:-1;;;55778:73:0;;21479:2:1;55778:73:0;;;21461:21:1;21518:2;21498:18;;;21491:30;21557:34;21537:18;;;21530:62;-1:-1:-1;;;21608:18:1;;;21601:42;21660:19;;55778:73:0;;;;;;;;;-1:-1:-1;55871:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;55871:24:0;;55682:221::o;55205:411::-;55286:13;55302:23;55317:7;55302:14;:23::i;:::-;55286:39;;55350:5;-1:-1:-1;;;;;55344:11:0;:2;-1:-1:-1;;;;;55344:11:0;;;55336:57;;;;-1:-1:-1;;;55336:57:0;;23069:2:1;55336:57:0;;;23051:21:1;23108:2;23088:18;;;23081:30;23147:34;23127:18;;;23120:62;-1:-1:-1;;;23198:18:1;;;23191:31;23239:19;;55336:57:0;22867:397:1;55336:57:0;48775:10;-1:-1:-1;;;;;55428:21:0;;;;:62;;-1:-1:-1;55453:37:0;55470:5;48775:10;56341:164;:::i;55453:37::-;55406:168;;;;-1:-1:-1;;;55406:168:0;;19517:2:1;55406:168:0;;;19499:21:1;19556:2;19536:18;;;19529:30;19595:34;19575:18;;;19568:62;19666:26;19646:18;;;19639:54;19710:19;;55406:168:0;19315:420:1;55406:168:0;55587:21;55596:2;55600:7;55587:8;:21::i;:::-;55275:341;55205:411;;:::o;92396:211::-;92490:20;92560:28;:18;71073:14;;70981:114;92560:28;92538:61;;92396:211;:::o;56572:339::-;56767:41;48775:10;56800:7;56767:18;:41::i;:::-;56759:103;;;;-1:-1:-1;;;56759:103:0;;;;;;;:::i;:::-;56875:28;56885:4;56891:2;56895:7;56875:9;:28::i;91121:753::-;91232:22;91309:27;;;:16;:27;;;;;91351:22;;;;:36;91347:520;;-1:-1:-1;91411:28:0;;91121:753;-1:-1:-1;;91121:753:0:o;91347:520::-;91472:28;91503:15;:6;:13;:15::i;:::-;91472:46;-1:-1:-1;91554:23:0;91537:13;:40;;;;;;;;:::i;:::-;;91533:323;;;-1:-1:-1;91605:31:0;;91121:753;-1:-1:-1;;;91121:753:0:o;91533:323::-;91679:22;91662:13;:39;;;;;;;;:::i;:::-;;91658:198;;;-1:-1:-1;91729:30:0;;91121:753;-1:-1:-1;;;91121:753:0:o;91658:198::-;-1:-1:-1;91807:33:0;;91121:753;-1:-1:-1;;;91121:753:0:o;91658:198::-;91457:410;91347:520;91261:613;91121:753;;;:::o;56982:185::-;57120:39;57137:4;57143:2;57147:7;57120:39;;;;;;;;;;;;:16;:39::i;92615:140::-;92693:14;92732:15;:6;:13;:15::i;90681:432::-;90783:13;90868:28;90836;90854:9;90836:17;:28::i;:::-;:60;;;;;;;;:::i;:::-;;90814:137;;;;-1:-1:-1;;;90814:137:0;;25367:2:1;90814:137:0;;;25349:21:1;25406:2;25386:18;;;25379:30;25445:29;25425:18;;;25418:57;25492:18;;90814:137:0;25165:351:1;90814:137:0;90962:33;90998:27;;;:16;:27;;;;;;;;90962:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90998:27;;90962:63;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;-1:-1:-1;91060:16:0;;91043:62;;-1:-1:-1;;;91043:62:0;;90962:63;;-1:-1:-1;;;;;;91060:16:0;;91043:51;;:62;;90962:63;;91043:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;91043:62:0;;;;;;;;;;;;:::i;:::-;91036:69;90681:432;-1:-1:-1;;;90681:432:0:o;53817:239::-;53889:7;53925:16;;;:7;:16;;;;;;-1:-1:-1;;;;;53925:16:0;53960:19;53952:73;;;;-1:-1:-1;;;53952:73:0;;20353:2:1;53952:73:0;;;20335:21:1;20392:2;20372:18;;;20365:30;20431:34;20411:18;;;20404:62;-1:-1:-1;;;20482:18:1;;;20475:39;20531:19;;53952:73:0;20151:405:1;82263:165:0;82393:16;;82376:44;;;-1:-1:-1;;;82376:44:0;;;;82338:13;;-1:-1:-1;;;;;82393:16:0;;82376:42;;:44;;;;;82393:16;;82376:44;;;;;;;82393:16;82376:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;82376:44:0;;;;;;;;;;;;:::i;53547:208::-;53619:7;-1:-1:-1;;;;;53647:19:0;;53639:74;;;;-1:-1:-1;;;53639:74:0;;19942:2:1;53639:74:0;;;19924:21:1;19981:2;19961:18;;;19954:30;20020:34;20000:18;;;19993:62;-1:-1:-1;;;20071:18:1;;;20064:40;20121:19;;53639:74:0;19740:406:1;53639:74:0;-1:-1:-1;;;;;;53731:16:0;;;;;:9;:16;;;;;;;53547:208::o;66913:94::-;66335:6;;-1:-1:-1;;;;;66335:6:0;48775:10;66482:23;66474:68;;;;-1:-1:-1;;;66474:68:0;;;;;;;:::i;:::-;66978:21:::1;66996:1;66978:9;:21::i;:::-;66913:94::o:0;86506:1207::-;66335:6;;-1:-1:-1;;;;;66335:6:0;48775:10;66482:23;66474:68;;;;-1:-1:-1;;;66474:68:0;;;;;;;:::i;:::-;86612:26:::1;::::0;81150:15:::1;:6;:13;:15::i;:::-;:26;;;;;;;;:::i;:::-;;81191:36;81219:7;81191:27;:36::i;:::-;81128:110;;;;;-1:-1:-1::0;;;81128:110:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;86672:20:0;;86725:40:::2;86672:20:::0;86725:30:::2;:40::i;:::-;86703:129;;;::::0;-1:-1:-1;;;86703:129:0;;17583:2:1;86703:129:0::2;::::0;::::2;17565:21:1::0;17622:2;17602:18;;;17595:30;17661:34;17641:18;;;17634:62;-1:-1:-1;;;17712:18:1;;;17705:37;17759:19;;86703:129:0::2;17381:403:1::0;86703:129:0::2;86874:35;::::0;-1:-1:-1;;;86874:35:0;;::::2;::::0;::::2;13972:25:1::0;;;86843:28:0::2;::::0;86874:6:::2;-1:-1:-1::0;;;;;86874:25:0::2;::::0;::::2;::::0;13945:18:1;;86874:35:0::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;::::0;;::::2;-1:-1:-1::0;;86874:35:0::2;::::0;::::2;;::::0;::::2;::::0;;;::::2;::::0;::::2;:::i;:::-;86924:15:::0;;86843:66;;-1:-1:-1;86920:786:0::2;;;86956:19;86978:40;86994:6;-1:-1:-1::0;;;;;86994:14:0::2;;87009:7;86994:23;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;::::0;;::::2;-1:-1:-1::0;;86994:23:0::2;::::0;::::2;;::::0;::::2;::::0;;;::::2;::::0;::::2;:::i;:::-;86978:15;:40::i;:::-;87056:12;87033:20:::0;:35;87083:23;:37;;;87140:25:::2;::::0;13972::1;;;87083:37:0;;-1:-1:-1;87140:25:0::2;::::0;13960:2:1;13945:18;87140:25:0::2;;;;;;;;86941:236;55275:341:::0;55205:411;;:::o;86920:786::-:2;87221:1;87198:20:::0;:24;87374:30:::2;::::0;-1:-1:-1;;;87374:30:0;;87237:27:::2;::::0;-1:-1:-1;;;;;87374:6:0::2;:21;::::0;::::2;::::0;:30:::2;::::0;87396:7;;87374:30:::2;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;::::0;;::::2;-1:-1:-1::0;;87374:30:0::2;::::0;::::2;;::::0;::::2;::::0;;;::::2;::::0;::::2;:::i;:::-;;;87370:279;;;::::0;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;87621:11:0;-1:-1:-1;87370:279:0::2;;;87515:1:::0;-1:-1:-1;;87370:279:0::2;87668:26;87680:13;87668:26;;;;;;:::i;54292:104::-:0;54348:13;54381:7;54374:14;;;;;:::i;55975:295::-;-1:-1:-1;;;;;56078:24:0;;48775:10;56078:24;;56070:62;;;;-1:-1:-1;;;56070:62:0;;18750:2:1;56070:62:0;;;18732:21:1;18789:2;18769:18;;;18762:30;18828:27;18808:18;;;18801:55;18873:18;;56070:62:0;18548:349:1;56070:62:0;48775:10;56145:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;56145:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;56145:53:0;;;;;;;;;;56214:48;;13774:41:1;;;56145:42:0;;48775:10;56214:48;;13747:18:1;56214:48:0;;;;;;;55975:295;;:::o;92056:155::-;92140:25;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92140:25:0;92183:20;;;;;;;;92190:6;92183:20;;-1:-1:-1;;;;;92183:20:0;;;;;;;;;;;;;;;;;;;;;;;;92190:6;;92183:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92056:155;:::o;57238:328::-;57413:41;48775:10;57446:7;57413:18;:41::i;:::-;57405:103;;;;-1:-1:-1;;;57405:103:0;;;;;;;:::i;:::-;57519:39;57533:4;57539:2;57543:7;57552:5;57519:13;:39::i;:::-;57238:328;;;;:::o;82863:271::-;82995:13;82967:8;81338:17;81346:8;59141:4;59165:16;;;:7;:16;;;;;;-1:-1:-1;;;;;59165:16:0;:30;;;59076:127;81338:17;81316:97;;;;-1:-1:-1;;;81316:97:0;;24648:2:1;81316:97:0;;;24630:21:1;24687:2;24667:18;;;24660:30;24726:32;24706:18;;;24699:60;24776:18;;81316:97:0;24446:354:1;81316:97:0;83071:9:::1;:7;:9::i;:::-;83095:19;:8;:17;:19::i;:::-;83040:85;;;;;;;;;:::i;:::-;;;;;;;;;;;;;83026:100;;82863:271:::0;;;;:::o;83447:342::-;66335:6;;-1:-1:-1;;;;;66335:6:0;48775:10;66482:23;66474:68;;;;-1:-1:-1;;;66474:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;83628:33:0;::::1;83620:72;;;::::0;-1:-1:-1;;;83620:72:0;;20763:2:1;83620:72:0::1;::::0;::::1;20745:21:1::0;20802:2;20782:18;;;20775:30;20841:28;20821:18;;;20814:56;20887:18;;83620:72:0::1;20561:350:1::0;83620:72:0::1;83703:16:::0;:38;;-1:-1:-1;;;;;;83703:38:0::1;-1:-1:-1::0;;;;;83703:38:0;::::1;::::0;;::::1;::::0;;;83757:24:::1;::::0;12651:51:1;;;83757:24:0::1;::::0;12639:2:1;12624:18;83757:24:0::1;;;;;;;83447:342:::0;:::o;84201:1122::-;66335:6;;-1:-1:-1;;;;;66335:6:0;48775:10;66482:23;66474:68;;;;-1:-1:-1;;;66474:68:0;;;;;;;:::i;:::-;84432:23:::1;::::0;81150:15:::1;:6;:13;:15::i;:::-;:26;;;;;;;;:::i;:::-;;81191:36;81219:7;81191:27;:36::i;:::-;81128:110;;;;;-1:-1:-1::0;;;81128:110:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;;84481:23:0;::::2;84473:61;;;::::0;-1:-1:-1;;;84473:61:0;;17991:2:1;84473:61:0::2;::::0;::::2;17973:21:1::0;18030:2;18010:18;;;18003:30;18069:27;18049:18;;;18042:55;18114:18;;84473:61:0::2;17789:349:1::0;84473:61:0::2;84580:42;84586:31;84621:1;84580:42;:::i;:::-;84553:69;;:16;:23;:69;84545:116;;;::::0;-1:-1:-1;;;84545:116:0;;24245:2:1;84545:116:0::2;::::0;::::2;24227:21:1::0;24284:2;24264:18;;;24257:30;24323:34;24303:18;;;24296:62;-1:-1:-1;;;24374:18:1;;;24367:32;24416:19;;84545:116:0::2;24043:398:1::0;84545:116:0::2;84716:16;:23;-1:-1:-1::0;;;;;84704:36:0::2;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;84704:36:0::2;-1:-1:-1::0;84672:68:0;;::::2;::::0;:29;;:68:::2;::::0;;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;84751:15:0::2;::::0;84778:206:::2;84802:16;:23;84797:2;:28;;;84778:206;;;84849:11;84863:16;84880:2;84863:20;;;;;;;;;;:::i;:::-;;;;;;;84849:34;;84934:5;84898:6;:13;;:29;;84928:2;84898:33;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;84967:5;84954:18;;;;;:::i;:::-;;;84834:150;84827:5;;;;;:::i;:::-;;;;84778:206;;;;85002:9;:16;;85015:3;85002:16;84994:66;;;::::0;-1:-1:-1;;;84994:66:0;;22663:2:1;84994:66:0::2;::::0;::::2;22645:21:1::0;22702:2;22682:18;;;22675:30;22741:34;22721:18;;;22714:62;-1:-1:-1;;;22792:18:1;;;22785:35;22837:19;;84994:66:0::2;22461:401:1::0;84994:66:0::2;85081:6;:34:::0;;-1:-1:-1;;;;;;85081:34:0::2;-1:-1:-1::0;;;;;85081:34:0;::::2;;::::0;;85126:30;:50;;;85202:113:::2;::::0;::::2;::::0;::::2;::::0;85081:34;;85256:16;;85126:50;;85202:113:::2;:::i;:::-;;;;;;;;84462:861;66553:1:::1;84201:1122:::0;;;:::o;87886:1465::-;69254:1;69850:7;;:19;;69842:63;;;;-1:-1:-1;;;69842:63:0;;25007:2:1;69842:63:0;;;24989:21:1;25046:2;25026:18;;;25019:30;25085:33;25065:18;;;25058:61;25136:18;;69842:63:0;24805:355:1;69842:63:0;69254:1;69983:7;:18;;;69254:1;81150:15:::1;:6;:13;:15::i;:::-;:26;;;;;;;;:::i;:::-;;81191:36;81219:7;81191:27;:36::i;:::-;81128:110;;;;;-1:-1:-1::0;;;81128:110:0::1;;;;;;;;:::i;:::-;;88266:190:::2;88305:9;88329;88353:11;88379:9;88403:17;88435:10;;88266:190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;88266:24:0::2;::::0;-1:-1:-1;;;88266:190:0:i:2;:::-;88530:27;::::0;;;:16;:27:::2;::::0;;;;:35;:40;88508:118:::2;;;::::0;-1:-1:-1;;;88508:118:0;;16462:2:1;88508:118:0::2;::::0;::::2;16444:21:1::0;16501:2;16481:18;;;16474:30;16540;16520:18;;;16513:58;16588:18;;88508:118:0::2;16260:352:1::0;88508:118:0::2;88675:30;:18:::0;71192:19;;71210:1;71192:19;;;71103:127;88675:30:::2;88716:16;88735:28;:18:::0;71073:14;;70981:114;88735:28:::2;88716:47;;88811:33;88847:244;88875:8;88898:15;88964:9;88988:11;89014:9;89038:17;89070:10;;88847:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;88847:13:0::2;::::0;-1:-1:-1;;;88847:244:0:i:2;:::-;88811:280;;89164:9;89134:6;:16;;:27;89151:9;89134:27;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;::::0;;-1:-1:-1;;;89186:26:0::2;::::0;;;:16;:26:::2;::::0;;;;:38;;;89265:30:::2;89275:9:::0;89203:8;89265:9:::2;:30::i;:::-;89311:32;::::0;;28465:25:1;;;28521:2;28506:18;;28499:34;;;89311:32:0::2;::::0;28438:18:1;89311:32:0::2;;;;;;;-1:-1:-1::0;;69210:1:0;70162:7;:22;-1:-1:-1;;;;;;;;87886:1465:0:o;82440:415::-;82565:13;82537:8;81338:17;81346:8;59141:4;59165:16;;;:7;:16;;;;;;-1:-1:-1;;;;;59165:16:0;:30;;;59076:127;81338:17;81316:97;;;;-1:-1:-1;;;81316:97:0;;24648:2:1;81316:97:0;;;24630:21:1;24687:2;24667:18;;;24660:30;24726:32;24706:18;;;24699:60;24776:18;;81316:97:0;24446:354:1;81316:97:0;82596:17:::1;82616:26:::0;;;:16;:26:::1;::::0;;;;;;;;82689:27;;;:16;:27;;;;;82653:63;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;;;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;82616:26;;82596:17;82653:63;82689:27;;82653:63;;;;::::1;::::0;;::::1;::::0;;::::1;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;::::0;;-1:-1:-1;82746:17:0;;82653:63;;-1:-1:-1;82734:29:0;::::1;82727:37;;;;:::i;:::-;82799:16:::0;;82782:65:::1;::::0;-1:-1:-1;;;82782:65:0;;-1:-1:-1;;;;;82799:16:0;;::::1;::::0;82782:54:::1;::::0;:65:::1;::::0;82837:9;;82782:65:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;82782:65:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;82775:72:::0;82440:415;-1:-1:-1;;;;;82440:415:0:o;56341:164::-;-1:-1:-1;;;;;56462:25:0;;;56438:4;56462:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;56341:164::o;89359:958::-;89720:13;89677:23;;81150:15;:6;:13;:15::i;:::-;:26;;;;;;;;:::i;:::-;;81191:36;81219:7;81191:27;:36::i;:::-;81128:110;;;;;-1:-1:-1;;;81128:110:0;;;;;;;;:::i;:::-;;89751:190:::1;89790:9;89814;89838:11;89864:9;89888:17;89920:10;;89751:190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;89751:24:0::1;::::0;-1:-1:-1;;;89751:190:0:i:1;:::-;90014:6;:16;;;;;;;;;;-1:-1:-1::0;;;;;90014:16:0::1;-1:-1:-1::0;;;;;89997:51:0::1;;90063:235;90095:1;90115::::0;90135:9:::1;90179:11;90209:9;90237:17;90273:10;;90063:235;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;90063:13:0::1;::::0;-1:-1:-1;;;90063:235:0:i:1;:::-;89997:312;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;89997:312:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;89990:319:::0;89359:958;-1:-1:-1;;;;;;;;;89359:958:0:o;67162:192::-;66335:6;;-1:-1:-1;;;;;66335:6:0;48775:10;66482:23;66474:68;;;;-1:-1:-1;;;66474:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;67251:22:0;::::1;67243:73;;;::::0;-1:-1:-1;;;67243:73:0;;16819:2:1;67243:73:0::1;::::0;::::1;16801:21:1::0;16858:2;16838:18;;;16831:30;16897:34;16877:18;;;16870:62;-1:-1:-1;;;16948:18:1;;;16941:36;16994:19;;67243:73:0::1;16617:402:1::0;67243:73:0::1;67327:19;67337:8;67327:9;:19::i;:::-;67162:192:::0;:::o;85591:552::-;69254:1;69850:7;;:19;;69842:63;;;;-1:-1:-1;;;69842:63:0;;25007:2:1;69842:63:0;;;24989:21:1;25046:2;25026:18;;;25019:30;25085:33;25065:18;;;25058:61;25136:18;;69842:63:0;24805:355:1;69842:63:0;69254:1;69983:7;:18;66335:6;;-1:-1:-1;;;;;66335:6:0;48775:10;66482:23:::1;66474:68;;;;-1:-1:-1::0;;;66474:68:0::1;;;;;;;:::i;:::-;85726:23:::2;::::0;81150:15:::2;:6;:13;:15::i;:::-;:26;;;;;;;;:::i;:::-;;81191:36;81219:7;81191:27;:36::i;:::-;81128:110;;;;;-1:-1:-1::0;;;81128:110:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;85952:16:0;;85861:21:::3;::::0;85933:36:::3;::::0;-1:-1:-1;;;;;85952:16:0::3;85933:18;:36::i;:::-;85894:20:::0;85893:76;;;;;-1:-1:-1;86027:9:0::3;:25:::0;-1:-1:-1;86023:113:0::3;;;86077:10;86069:55;86098:25;86110:13:::0;86098:9:::3;:25;:::i;:::-;86069:55;::::0;;::::3;::::0;;::::3;::::0;::::3;::::0;;;;;;::::3;;;;;;;;;;;;;::::0;::::3;;;;;;86023:113;-1:-1:-1::0;;69210:1:0;70162:7;:22;85591:552::o;73438:459::-;73543:21;;;;73515:6;;73543:35;73539:351;;73639:28;;;;73618:18;;;;:49;;73639:28;73618:49;:::i;:::-;73603:12;:64;73602:135;;73722:15;73602:135;;;73688:14;73595:142;73438:459;-1:-1:-1;;73438:459:0:o;73539:351::-;73759:18;;;;:22;73755:135;;-1:-1:-1;73805:18:0;;73438:459;-1:-1:-1;73438:459:0:o;73755:135::-;-1:-1:-1;73863:15:0;;73438:459;-1:-1:-1;73438:459:0:o;73755:135::-;73438:459;;;:::o;73982:601::-;74068:13;74114:14;74103:7;:25;;;;;;;;:::i;:::-;;74099:477;;;-1:-1:-1;;74145:39:0;;;;;;;;;;;;;;;;;;73982:601::o;74099:477::-;74217:15;74206:7;:26;;;;;;;;:::i;:::-;;74202:374;;;-1:-1:-1;;74249:40:0;;;;;;;;;;;;;;;;;;73982:601::o;74202:374::-;74322:18;74311:7;:29;;;;;;;;:::i;:::-;;74307:269;;;74357:43;;;;;;;;;;;;;;;;;;73982:601;-1:-1:-1;;73982:601:0:o;74307:269::-;74433:15;74422:7;:26;;;;;;;;:::i;:::-;;74418:158;;;-1:-1:-1;;74465:40:0;;;;;;;;;;;;;;;;;;73982:601::o;74418:158::-;-1:-1:-1;;74538:26:0;;;;;;;;;;;;-1:-1:-1;;;74538:26:0;;;;;73982:601::o;63058:174::-;63133:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63133:29:0;-1:-1:-1;;;;;63133:29:0;;;;;;;;:24;;63187:23;63133:24;63187:14;:23::i;:::-;-1:-1:-1;;;;;63178:46:0;;;;;;;;;;;63058:174;;:::o;59370:348::-;59463:4;59165:16;;;:7;:16;;;;;;-1:-1:-1;;;;;59165:16:0;59480:73;;;;-1:-1:-1;;;59480:73:0;;19104:2:1;59480:73:0;;;19086:21:1;19143:2;19123:18;;;19116:30;19182:34;19162:18;;;19155:62;-1:-1:-1;;;19233:18:1;;;19226:42;19285:19;;59480:73:0;18902:408:1;59480:73:0;59564:13;59580:23;59595:7;59580:14;:23::i;:::-;59564:39;;59633:5;-1:-1:-1;;;;;59622:16:0;:7;-1:-1:-1;;;;;59622:16:0;;:51;;;;59666:7;-1:-1:-1;;;;;59642:31:0;:20;59654:7;59642:11;:20::i;:::-;-1:-1:-1;;;;;59642:31:0;;59622:51;:87;;;;59677:32;59694:5;59701:7;59677:16;:32::i;:::-;59614:96;59370:348;-1:-1:-1;;;;59370:348:0:o;62362:578::-;62521:4;-1:-1:-1;;;;;62494:31:0;:23;62509:7;62494:14;:23::i;:::-;-1:-1:-1;;;;;62494:31:0;;62486:85;;;;-1:-1:-1;;;62486:85:0;;22253:2:1;62486:85:0;;;22235:21:1;22292:2;22272:18;;;22265:30;22331:34;22311:18;;;22304:62;-1:-1:-1;;;22382:18:1;;;22375:39;22431:19;;62486:85:0;22051:405:1;62486:85:0;-1:-1:-1;;;;;62590:16:0;;62582:65;;;;-1:-1:-1;;;62582:65:0;;18345:2:1;62582:65:0;;;18327:21:1;18384:2;18364:18;;;18357:30;18423:34;18403:18;;;18396:62;-1:-1:-1;;;18474:18:1;;;18467:34;18518:19;;62582:65:0;18143:400:1;62582:65:0;62764:29;62781:1;62785:7;62764:8;:29::i;:::-;-1:-1:-1;;;;;62806:15:0;;;;;;:9;:15;;;;;:20;;62825:1;;62806:15;:20;;62825:1;;62806:20;:::i;:::-;;;;-1:-1:-1;;;;;;;62837:13:0;;;;;;:9;:13;;;;;:18;;62854:1;;62837:13;:18;;62854:1;;62837:18;:::i;:::-;;;;-1:-1:-1;;62866:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;62866:21:0;-1:-1:-1;;;;;62866:21:0;;;;;;;;;62905:27;;62866:16;;62905:27;;;;;;;62362:578;;;:::o;67362:173::-;67437:6;;;-1:-1:-1;;;;;67454:17:0;;;-1:-1:-1;;;;;;67454:17:0;;;;;;;67487:40;;67437:6;;;67454:17;67437:6;;67487:40;;67418:16;;67487:40;67407:128;67362:173;:::o;28742:205::-;28853:4;28912:27;28882:26;;-1:-1:-1;;;28882:26:0;;;;;13972:25:1;;;28882:6:0;-1:-1:-1;;;;;28882:21:0;;;;13945:18:1;;28882:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:57;;;;;;;;:::i;:::-;;;28742:205;-1:-1:-1;;28742:205:0:o;94927:278::-;95010:10;95038:9;95063:2;95050:3;:10;:15;:33;;95073:3;:10;95050:33;;;95068:2;95050:33;95038:45;;95099:7;95094:104;95117:4;95112:2;:9;95094:104;;;95179:6;:2;95184:1;95179:6;:::i;:::-;95159:3;95163:2;95159:7;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;95159:7:0;95151:35;;95145:41;;;;;95123:5;;;;:::i;:::-;;;;95094:104;;58448:315;58605:28;58615:4;58621:2;58625:7;58605:9;:28::i;:::-;58652:48;58675:4;58681:2;58685:7;58694:5;58652:22;:48::i;:::-;58644:111;;;;-1:-1:-1;;;58644:111:0;;;;;;;:::i;49198:723::-;49254:13;49475:10;49471:53;;-1:-1:-1;;49502:10:0;;;;;;;;;;;;-1:-1:-1;;;49502:10:0;;;;;49198:723::o;49471:53::-;49549:5;49534:12;49590:78;49597:9;;49590:78;;49623:8;;;;:::i;:::-;;-1:-1:-1;49646:10:0;;-1:-1:-1;49654:2:0;49646:10;;:::i;:::-;;;49590:78;;;49678:19;49710:6;-1:-1:-1;;;;;49700:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49700:17:0;;49678:39;;49728:154;49735:10;;49728:154;;49762:11;49772:1;49762:11;;:::i;:::-;;-1:-1:-1;49831:10:0;49839:2;49831:5;:10;:::i;:::-;49818:24;;:2;:24;:::i;:::-;49805:39;;49788:6;49795;49788:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;49788:56:0;;;;;;;;-1:-1:-1;49859:11:0;49868:2;49859:11;;:::i;:::-;;;49728:154;;93982:688;94349:157;;-1:-1:-1;;11420:2:1;11416:15;;;11412:53;94349:157:0;;;11400:66:1;11482:12;;;11475:28;;;11519:12;;;11512:28;;;11556:12;;;11549:28;;;11593:13;;;11586:29;;;94320:16:0;;11631:13:1;;94349:157:0;;;-1:-1:-1;;94349:157:0;;;;;;;;;94339:168;;94349:157;94339:168;;;;94585:6;:22;94339:168;;-1:-1:-1;;;;;;94585:22:0;94540:41;94339:168;94570:10;94540:19;:41::i;:::-;-1:-1:-1;;;;;94540:67:0;;94518:144;;;;-1:-1:-1;;;94518:144:0;;23471:2:1;94518:144:0;;;23453:21:1;23510:2;23490:18;;;23483:30;23549:29;23529:18;;;23522:57;23596:18;;94518:144:0;23269:351:1;94518:144:0;94280:390;93982:688;;;;;;:::o;93008:966::-;93345:23;;:::i;:::-;93386:20;93423:17;93409:11;:31;:113;;93504:17;93483;:11;93497:3;93483:17;:::i;:::-;93482:39;;;;:::i;:::-;93409:113;;;93456:3;93409:113;93386:136;;93550:416;;;;;;;;93591:8;93550:416;;;;93624:15;93550:416;;;;93731:9;93550:416;;;;93765:9;93550:416;;;;93801:11;93550:416;;;;93886:10;93915:6;:23;;;93851:102;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;93851:102:0;;;;;;;;;93841:113;;93851:102;93841:113;;;;93550:416;;;93667:39;:6;93691:14;93667:23;:39::i;:::-;93550:416;;;;;;;;:::i;:::-;;;93543:423;93008:966;-1:-1:-1;;;;;;;;;93008:966:0:o;60060:110::-;60136:26;60146:2;60150:7;60136:26;;;;;;;;;;;;:9;:26::i;:::-;60060:110;;:::o;30125:254::-;30231:11;30244:15;30287:23;:21;:23::i;:::-;30327:44;;-1:-1:-1;;;30327:44:0;;-1:-1:-1;;;;;12669:32:1;;;30327:44:0;;;12651:51:1;30277:33:0;;-1:-1:-1;30327:6:0;:18;;;;;;30277:33;;12624:18:1;;30327:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30321:50;;30125:254;;;:::o;63797:799::-;63952:4;-1:-1:-1;;;;;63973:13:0;;41084:20;41132:8;63969:620;;64009:72;;-1:-1:-1;;;64009:72:0;;-1:-1:-1;;;;;64009:36:0;;;;;:72;;48775:10;;64060:4;;64066:7;;64075:5;;64009:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64009:72:0;;;;;;;;-1:-1:-1;;64009:72:0;;;;;;;;;;;;:::i;:::-;;;64005:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64251:13:0;;64247:272;;64294:60;;-1:-1:-1;;;64294:60:0;;;;;;;:::i;64247:272::-;64469:6;64463:13;64454:6;64450:2;64446:15;64439:38;64005:529;-1:-1:-1;;;;;;64132:51:0;-1:-1:-1;;;64132:51:0;;-1:-1:-1;64125:58:0;;63969:620;-1:-1:-1;64573:4:0;63797:799;;;;;;:::o;75751:708::-;75853:7;75882:10;:17;75903:2;75882:23;75878:75;;-1:-1:-1;75938:1:0;75922:19;;75878:75;76072:4;76056:21;;76050:28;76119:4;76103:21;;76097:28;76174:4;76158:21;;76152:28;75963:9;76144:37;76219:66;76206:79;;76202:129;;;76317:1;76302:17;;;;;;;76202:129;76345:1;:7;;76350:2;76345:7;;:18;;;;;76356:1;:7;;76361:2;76356:7;;76345:18;76341:68;;;76395:1;76380:17;;;;;;;76341:68;76426:25;;;;;;;;;;;;14235::1;;;14308:4;14296:17;;14276:18;;;14269:45;;;;14330:18;;;14323:34;;;14373:18;;;14366:34;;;76426:25:0;;14207:19:1;;76426:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;76426:25:0;;-1:-1:-1;;76426:25:0;;;75751:708;-1:-1:-1;;;;;;;75751:708:0:o;72952:439::-;73064:16;73098:8;73108:14;73133:213;73145:28;;;:35;73140:40;;;;73133:213;;;73216:28;;;:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;73204:44;;;;;:::i;:::-;;;73285:8;73267:26;;:14;:26;;;73263:72;;73314:5;;73263:72;73182:5;;;;:::i;:::-;;;;73133:213;;;73380:2;73363:20;;;;;;;;;;:::i;60397:321::-;60527:18;60533:2;60537:7;60527:5;:18::i;:::-;60578:54;60609:1;60613:2;60617:7;60626:5;60578:22;:54::i;:::-;60556:154;;;;-1:-1:-1;;;60556:154:0;;;;;;;:::i;29607:165::-;29730:34;;-1:-1:-1;;;29730:34:0;;29752:11;29730:34;;;13972:25:1;29698:7:0;;29730:6;-1:-1:-1;;;;;29730:21:0;;;;13945:18:1;;29730:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;61054:382::-;-1:-1:-1;;;;;61134:16:0;;61126:61;;;;-1:-1:-1;;;61126:61:0;;21118:2:1;61126:61:0;;;21100:21:1;;;21137:18;;;21130:30;21196:34;21176:18;;;21169:62;21248:18;;61126:61:0;20916:356:1;61126:61:0;59141:4;59165:16;;;:7;:16;;;;;;-1:-1:-1;;;;;59165:16:0;:30;61198:58;;;;-1:-1:-1;;;61198:58:0;;17226:2:1;61198:58:0;;;17208:21:1;17265:2;17245:18;;;17238:30;17304;17284:18;;;17277:58;17352:18;;61198:58:0;17024:352:1;61198:58:0;-1:-1:-1;;;;;61327:13:0;;;;;;:9;:13;;;;;:18;;61344:1;;61327:13;:18;;61344:1;;61327:18;:::i;:::-;;;;-1:-1:-1;;61356:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;61356:21:0;-1:-1:-1;;;;;61356:21:0;;;;;;;;61395:33;;61356:16;;;61395:33;;61356:16;;61395:33;61054:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:428:1;67:5;120:3;113:4;105:6;101:17;97:27;87:55;;138:1;135;128:12;87:55;167:6;161:13;198:48;214:31;242:2;214:31;:::i;:::-;198:48;:::i;:::-;271:2;262:7;255:19;317:3;310:4;305:2;297:6;293:15;289:26;286:35;283:55;;;334:1;331;324:12;283:55;347:64;408:2;401:4;392:7;388:18;381:4;373:6;369:17;347:64;:::i;447:175::-;525:13;;-1:-1:-1;;;;;567:30:1;;557:41;;547:69;;612:1;609;602:12;627:134;704:13;;726:29;704:13;726:29;:::i;766:247::-;825:6;878:2;866:9;857:7;853:23;849:32;846:52;;;894:1;891;884:12;846:52;933:9;920:23;952:31;977:5;952:31;:::i;1018:388::-;1086:6;1094;1147:2;1135:9;1126:7;1122:23;1118:32;1115:52;;;1163:1;1160;1153:12;1115:52;1202:9;1189:23;1221:31;1246:5;1221:31;:::i;:::-;1271:5;-1:-1:-1;1328:2:1;1313:18;;1300:32;1341:33;1300:32;1341:33;:::i;:::-;1393:7;1383:17;;;1018:388;;;;;:::o;1411:456::-;1488:6;1496;1504;1557:2;1545:9;1536:7;1532:23;1528:32;1525:52;;;1573:1;1570;1563:12;1525:52;1612:9;1599:23;1631:31;1656:5;1631:31;:::i;:::-;1681:5;-1:-1:-1;1738:2:1;1723:18;;1710:32;1751:33;1710:32;1751:33;:::i;:::-;1411:456;;1803:7;;-1:-1:-1;;;1857:2:1;1842:18;;;;1829:32;;1411:456::o;1872:1016::-;1967:6;1975;1983;1991;2044:3;2032:9;2023:7;2019:23;2015:33;2012:53;;;2061:1;2058;2051:12;2012:53;2100:9;2087:23;2119:31;2144:5;2119:31;:::i;:::-;2169:5;-1:-1:-1;2226:2:1;2211:18;;2198:32;2239:33;2198:32;2239:33;:::i;:::-;2291:7;-1:-1:-1;2345:2:1;2330:18;;2317:32;;-1:-1:-1;2400:2:1;2385:18;;2372:32;-1:-1:-1;;;;;2416:30:1;;2413:50;;;2459:1;2456;2449:12;2413:50;2482:22;;2535:4;2527:13;;2523:27;-1:-1:-1;2513:55:1;;2564:1;2561;2554:12;2513:55;2600:2;2587:16;2625:48;2641:31;2669:2;2641:31;:::i;2625:48::-;2696:2;2689:5;2682:17;2736:7;2731:2;2726;2722;2718:11;2714:20;2711:33;2708:53;;;2757:1;2754;2747:12;2708:53;2812:2;2807;2803;2799:11;2794:2;2787:5;2783:14;2770:45;2856:1;2851:2;2846;2839:5;2835:14;2831:23;2824:34;2877:5;2867:15;;;;;1872:1016;;;;;;;:::o;2893:1237::-;2993:6;3001;3009;3062:2;3050:9;3041:7;3037:23;3033:32;3030:52;;;3078:1;3075;3068:12;3030:52;3117:9;3104:23;3136:31;3161:5;3136:31;:::i;:::-;3186:5;-1:-1:-1;3210:2:1;3248:18;;;3235:32;-1:-1:-1;;;;;3316:14:1;;;3313:34;;;3343:1;3340;3333:12;3313:34;3381:6;3370:9;3366:22;3356:32;;3426:7;3419:4;3415:2;3411:13;3407:27;3397:55;;3448:1;3445;3438:12;3397:55;3484:2;3471:16;3506:2;3502;3499:10;3496:36;;;3512:18;;:::i;:::-;3558:2;3555:1;3551:10;3541:20;;3581:28;3605:2;3601;3597:11;3581:28;:::i;:::-;3643:15;;;3674:12;;;;3706:11;;;3736;;;3732:20;;3729:33;-1:-1:-1;3726:53:1;;;3775:1;3772;3765:12;3726:53;3797:1;3788:10;;3807:242;3821:2;3818:1;3815:9;3807:242;;;3894:3;3881:17;3866:32;;3911:31;3934:7;3911:31;:::i;:::-;3955:20;;;3839:1;3832:9;;;;;3995:12;;;;4027;;3807:242;;;-1:-1:-1;2893:1237:1;;4068:5;;-1:-1:-1;;;;4120:2:1;4105:18;;;;4092:32;;-1:-1:-1;;;;2893:1237:1:o;4135:382::-;4200:6;4208;4261:2;4249:9;4240:7;4236:23;4232:32;4229:52;;;4277:1;4274;4267:12;4229:52;4316:9;4303:23;4335:31;4360:5;4335:31;:::i;:::-;4385:5;-1:-1:-1;4442:2:1;4427:18;;4414:32;4455:30;4414:32;4455:30;:::i;4522:315::-;4590:6;4598;4651:2;4639:9;4630:7;4626:23;4622:32;4619:52;;;4667:1;4664;4657:12;4619:52;4706:9;4693:23;4725:31;4750:5;4725:31;:::i;:::-;4775:5;4827:2;4812:18;;;;4799:32;;-1:-1:-1;;;4522:315:1:o;4842:1001::-;4957:6;4965;4973;4981;4989;4997;5005;5058:3;5046:9;5037:7;5033:23;5029:33;5026:53;;;5075:1;5072;5065:12;5026:53;5114:9;5101:23;5133:31;5158:5;5133:31;:::i;:::-;5183:5;-1:-1:-1;5235:2:1;5220:18;;5207:32;;-1:-1:-1;5286:2:1;5271:18;;5258:32;;-1:-1:-1;5337:2:1;5322:18;;5309:32;;-1:-1:-1;5388:3:1;5373:19;;5360:33;;-1:-1:-1;5444:3:1;5429:19;;5416:33;-1:-1:-1;;;;;5498:14:1;;;5495:34;;;5525:1;5522;5515:12;5495:34;5563:6;5552:9;5548:22;5538:32;;5608:7;5601:4;5597:2;5593:13;5589:27;5579:55;;5630:1;5627;5620:12;5579:55;5670:2;5657:16;5696:2;5688:6;5685:14;5682:34;;;5712:1;5709;5702:12;5682:34;5757:7;5752:2;5743:6;5739:2;5735:15;5731:24;5728:37;5725:57;;;5778:1;5775;5768:12;5725:57;5809:2;5805;5801:11;5791:21;;5831:6;5821:16;;;;;4842:1001;;;;;;;;;;:::o;5848:245::-;5906:6;5959:2;5947:9;5938:7;5934:23;5930:32;5927:52;;;5975:1;5972;5965:12;5927:52;6014:9;6001:23;6033:30;6057:5;6033:30;:::i;6098:249::-;6167:6;6220:2;6208:9;6199:7;6195:23;6191:32;6188:52;;;6236:1;6233;6226:12;6188:52;6268:9;6262:16;6287:30;6311:5;6287:30;:::i;6352:335::-;6431:6;6484:2;6472:9;6463:7;6459:23;6455:32;6452:52;;;6500:1;6497;6490:12;6452:52;6533:9;6527:16;-1:-1:-1;;;;;6558:6:1;6555:30;6552:50;;;6598:1;6595;6588:12;6552:50;6621:60;6673:7;6664:6;6653:9;6649:22;6621:60;:::i;6969:489::-;7072:6;7080;7133:2;7121:9;7112:7;7108:23;7104:32;7101:52;;;7149:1;7146;7139:12;7101:52;7181:9;7175:16;7220:3;7213:5;7210:14;7200:42;;7238:1;7235;7228:12;7200:42;7310:2;7295:18;;7289:25;7261:5;;-1:-1:-1;;;;;;7326:30:1;;7323:50;;;7369:1;7366;7359:12;7323:50;7392:60;7444:7;7435:6;7424:9;7420:22;7392:60;:::i;:::-;7382:70;;;6969:489;;;;;:::o;7463:274::-;7547:6;7600:2;7588:9;7579:7;7575:23;7571:32;7568:52;;;7616:1;7613;7606:12;7568:52;7648:9;7642:16;7687:1;7680:5;7677:12;7667:40;;7703:1;7700;7693:12;8083:1799;8176:6;8207:2;8250;8238:9;8229:7;8225:23;8221:32;8218:52;;;8266:1;8263;8256:12;8218:52;8299:9;8293:16;-1:-1:-1;;;;;8369:2:1;8361:6;8358:14;8355:34;;;8385:1;8382;8375:12;8355:34;8408:22;;;;8464:4;8446:16;;;8442:27;8439:47;;;8482:1;8479;8472:12;8439:47;8508:22;;:::i;:::-;8560:2;8554:9;8572:30;8594:7;8572:30;:::i;:::-;8611:22;;8664:11;;;8658:18;8688:16;;;8685:36;;;8717:1;8714;8707:12;8685:36;8740:17;;;;;8791:4;8773:16;;;8769:27;8766:47;;;8809:1;8806;8799:12;8766:47;8837:22;;:::i;:::-;8890:2;8884:9;8918:2;8908:8;8905:16;8902:36;;;8934:1;8931;8924:12;8902:36;8957:17;;9008:4;8990:16;;;8986:27;8983:47;;;9026:1;9023;9016:12;8983:47;9054:22;;:::i;:::-;9107:2;9101:9;9135:2;9125:8;9122:16;9119:36;;;9151:1;9148;9141:12;9119:36;9180:55;9227:7;9216:8;9212:2;9208:17;9180:55;:::i;:::-;9171:7;9164:72;;9274:2;9270;9266:11;9260:18;9245:33;;9322:10;9313:7;9309:24;9300:7;9297:37;9287:65;;9348:1;9345;9338:12;9287:65;9368:16;;;9361:33;;;9403:24;;-1:-1:-1;9461:40:1;9489:11;;;9461:40;:::i;:::-;9456:2;9447:7;9443:16;9436:66;9538:42;9574:4;9570:2;9566:13;9538:42;:::i;:::-;9531:4;9522:7;9518:18;9511:70;9615:40;9651:2;9647;9643:11;9615:40;:::i;:::-;9610:2;9601:7;9597:16;9590:66;9691:42;9728:3;9724:2;9720:12;9691:42;:::i;:::-;9685:3;9676:7;9672:17;9665:69;9769:42;9806:3;9802:2;9798:12;9769:42;:::i;:::-;9763:3;9750:17;;9743:69;9828:14;;;9821:31;;;;-1:-1:-1;9832:5:1;;8083:1799;-1:-1:-1;;;;8083:1799:1:o;9887:180::-;9946:6;9999:2;9987:9;9978:7;9974:23;9970:32;9967:52;;;10015:1;10012;10005:12;9967:52;-1:-1:-1;10038:23:1;;9887:180;-1:-1:-1;9887:180:1:o;10072:184::-;10142:6;10195:2;10183:9;10174:7;10170:23;10166:32;10163:52;;;10211:1;10208;10201:12;10163:52;-1:-1:-1;10234:16:1;;10072:184;-1:-1:-1;10072:184:1:o;10261:444::-;10312:3;10350:5;10344:12;10377:6;10372:3;10365:19;10403:4;10432:2;10427:3;10423:12;10416:19;;10469:2;10462:5;10458:14;10490:1;10500:180;10514:6;10511:1;10508:13;10500:180;;;10579:13;;10594:4;10575:24;10563:37;;10620:12;;;;10655:15;;;;10536:1;10529:9;10500:180;;;-1:-1:-1;10696:3:1;;10261:444;-1:-1:-1;;;;;10261:444:1:o;10710:257::-;10751:3;10789:5;10783:12;10816:6;10811:3;10804:19;10832:63;10888:6;10881:4;10876:3;10872:14;10865:4;10858:5;10854:16;10832:63;:::i;:::-;10949:2;10928:15;-1:-1:-1;;10924:29:1;10915:39;;;;10956:4;10911:50;;10710:257;-1:-1:-1;;10710:257:1:o;11655:370::-;11812:3;11850:6;11844:13;11866:53;11912:6;11907:3;11900:4;11892:6;11888:17;11866:53;:::i;:::-;11941:16;;;;11966:21;;;-1:-1:-1;12014:4:1;12003:16;;11655:370;-1:-1:-1;11655:370:1:o;12030:470::-;12209:3;12247:6;12241:13;12263:53;12309:6;12304:3;12297:4;12289:6;12285:17;12263:53;:::i;:::-;12379:13;;12338:16;;;;12401:57;12379:13;12338:16;12435:4;12423:17;;12401:57;:::i;:::-;12474:20;;12030:470;-1:-1:-1;;;;12030:470:1:o;12713:488::-;-1:-1:-1;;;;;12982:15:1;;;12964:34;;13034:15;;13029:2;13014:18;;13007:43;13081:2;13066:18;;13059:34;;;13129:3;13124:2;13109:18;;13102:31;;;12907:4;;13150:45;;13175:19;;13167:6;13150:45;:::i;:::-;13142:53;12713:488;-1:-1:-1;;;;;;12713:488:1:o;13206:423::-;-1:-1:-1;;;;;13437:32:1;;13419:51;;13506:2;13501;13486:18;;13479:30;;;-1:-1:-1;;13526:54:1;;13561:18;;13553:6;13526:54;:::i;:::-;13518:62;;13616:6;13611:2;13600:9;13596:18;13589:34;13206:423;;;;;;:::o;15115:250::-;15266:2;15251:18;;15299:1;15288:13;;15278:47;;15305:18;;:::i;:::-;15334:25;;;15115:250;:::o;15370:242::-;15513:2;15498:18;;15546:1;15535:13;;15525:47;;15552:18;;:::i;15617:219::-;15766:2;15755:9;15748:21;15729:4;15786:44;15826:2;15815:9;15811:18;15803:6;15786:44;:::i;15841:414::-;16043:2;16025:21;;;16082:2;16062:18;;;16055:30;16121:34;16116:2;16101:18;;16094:62;-1:-1:-1;;;16187:2:1;16172:18;;16165:48;16245:3;16230:19;;15841:414::o;21690:356::-;21892:2;21874:21;;;21911:18;;;21904:30;21970:34;21965:2;21950:18;;21943:62;22037:2;22022:18;;21690:356::o;23625:413::-;23827:2;23809:21;;;23866:2;23846:18;;;23839:30;23905:34;23900:2;23885:18;;23878:62;-1:-1:-1;;;23971:2:1;23956:18;;23949:47;24028:3;24013:19;;23625:413::o;25521:718::-;25665:4;25707:3;25696:9;25692:19;25684:27;;25744:6;25738:13;25727:9;25720:32;25808:4;25800:6;25796:17;25790:24;25783:4;25772:9;25768:20;25761:54;25871:4;25863:6;25859:17;25853:24;25846:4;25835:9;25831:20;25824:54;25934:4;25926:6;25922:17;25916:24;25909:4;25898:9;25894:20;25887:54;25997:4;25989:6;25985:17;25979:24;25972:4;25961:9;25957:20;25950:54;26060:4;26052:6;26048:17;26042:24;26035:4;26024:9;26020:20;26013:54;26114:4;26106:6;26102:17;26096:24;26156:1;26142:12;26139:19;26129:53;;26162:18;;:::i;:::-;26220:12;26213:4;26202:9;26198:20;26191:42;;25521:718;;;;:::o;26244:530::-;26429:2;26411:21;;;26472:13;;-1:-1:-1;;;;;26468:39:1;26448:18;;;26441:67;26543:15;;26537:22;26595:4;26590:2;26575:18;;26568:32;-1:-1:-1;;26623:61:1;26679:3;26664:19;;26537:22;26623:61;:::i;:::-;26609:75;;26740:2;26732:6;26728:15;26722:22;26715:4;26704:9;26700:20;26693:52;26762:6;26754:14;;;26244:530;;;;:::o;26779:1325::-;26954:2;26943:9;26936:21;27013:6;27007:13;27000:21;26993:29;26988:2;26977:9;26973:18;26966:57;26917:4;27070:2;27062:6;27058:15;27052:22;27112:4;27105;27094:9;27090:20;27083:34;27154:12;27148:19;27203:4;27198:2;27187:9;27183:18;27176:32;27245:14;27239:21;27297:4;27291:3;27280:9;27276:19;27269:33;27325:53;27373:3;27362:9;27358:19;27342:14;27325:53;:::i;:::-;27445:2;27425:23;;;27419:30;27451:10;27415:47;27409:3;27394:19;;27387:76;27500:21;;;27494:28;11146:4;11135:16;;27579:3;27564:19;;11123:29;27494:28;27311:67;-1:-1:-1;27639:4:1;27621:23;;27615:30;11146:4;11135:16;;27702:3;27687:19;;11123:29;27615:30;-1:-1:-1;27762:2:1;27744:21;;27738:28;11146:4;11135:16;;27823:4;27808:20;;11123:29;27738:28;-1:-1:-1;27884:3:1;27866:22;;27860:29;-1:-1:-1;;;;;11037:30:1;;27947:3;27932:19;;11025:43;27860:29;-1:-1:-1;28007:3:1;27993:12;27989:22;27983:29;27961:51;;28021:54;28070:3;28059:9;28055:19;28039:14;-1:-1:-1;;;;;11037:30:1;11025:43;;10972:102;28544:257;28616:4;28610:11;;;28648:17;;-1:-1:-1;;;;;28680:34:1;;28716:22;;;28677:62;28674:88;;;28742:18;;:::i;:::-;28778:4;28771:24;28544:257;:::o;28806:253::-;28878:2;28872:9;28920:4;28908:17;;-1:-1:-1;;;;;28940:34:1;;28976:22;;;28937:62;28934:88;;;29002:18;;:::i;29064:275::-;29135:2;29129:9;29200:2;29181:13;;-1:-1:-1;;29177:27:1;29165:40;;-1:-1:-1;;;;;29220:34:1;;29256:22;;;29217:62;29214:88;;;29282:18;;:::i;:::-;29318:2;29311:22;29064:275;;-1:-1:-1;29064:275:1:o;29344:186::-;29392:4;-1:-1:-1;;;;;29417:6:1;29414:30;29411:56;;;29447:18;;:::i;:::-;-1:-1:-1;29513:2:1;29492:15;-1:-1:-1;;29488:29:1;29519:4;29484:40;;29344:186::o;29535:128::-;29575:3;29606:1;29602:6;29599:1;29596:13;29593:39;;;29612:18;;:::i;:::-;-1:-1:-1;29648:9:1;;29535:128::o;29668:204::-;29706:3;29742:4;29739:1;29735:12;29774:4;29771:1;29767:12;29809:3;29803:4;29799:14;29794:3;29791:23;29788:49;;;29817:18;;:::i;:::-;29853:13;;29668:204;-1:-1:-1;;;29668:204:1:o;29877:120::-;29917:1;29943;29933:35;;29948:18;;:::i;:::-;-1:-1:-1;29982:9:1;;29877:120::o;30002:168::-;30042:7;30108:1;30104;30100:6;30096:14;30093:1;30090:21;30085:1;30078:9;30071:17;30067:45;30064:71;;;30115:18;;:::i;:::-;-1:-1:-1;30155:9:1;;30002:168::o;30175:125::-;30215:4;30243:1;30240;30237:8;30234:34;;;30248:18;;:::i;:::-;-1:-1:-1;30285:9:1;;30175:125::o;30305:258::-;30377:1;30387:113;30401:6;30398:1;30395:13;30387:113;;;30477:11;;;30471:18;30458:11;;;30451:39;30423:2;30416:10;30387:113;;;30518:6;30515:1;30512:13;30509:48;;;-1:-1:-1;;30553:1:1;30535:16;;30528:27;30305:258::o;30568:380::-;30647:1;30643:12;;;;30690;;;30711:61;;30765:4;30757:6;30753:17;30743:27;;30711:61;30818:2;30810:6;30807:14;30787:18;30784:38;30781:161;;;30864:10;30859:3;30855:20;30852:1;30845:31;30899:4;30896:1;30889:15;30927:4;30924:1;30917:15;30953:135;30992:3;-1:-1:-1;;31013:17:1;;31010:43;;;31033:18;;:::i;:::-;-1:-1:-1;31080:1:1;31069:13;;30953:135::o;31093:175::-;31130:3;31174:4;31167:5;31163:16;31203:4;31194:7;31191:17;31188:43;;;31211:18;;:::i;:::-;31260:1;31247:15;;31093:175;-1:-1:-1;;31093:175:1:o;31273:112::-;31305:1;31331;31321:35;;31336:18;;:::i;:::-;-1:-1:-1;31370:9:1;;31273:112::o;31390:127::-;31451:10;31446:3;31442:20;31439:1;31432:31;31482:4;31479:1;31472:15;31506:4;31503:1;31496:15;31522:127;31583:10;31578:3;31574:20;31571:1;31564:31;31614:4;31611:1;31604:15;31638:4;31635:1;31628:15;31654:127;31715:10;31710:3;31706:20;31703:1;31696:31;31746:4;31743:1;31736:15;31770:4;31767:1;31760:15;31786:127;31847:10;31842:3;31838:20;31835:1;31828:31;31878:4;31875:1;31868:15;31902:4;31899:1;31892:15;31918:127;31979:10;31974:3;31970:20;31967:1;31960:31;32010:4;32007:1;32000:15;32034:4;32031:1;32024:15;32050:127;32111:10;32106:3;32102:20;32099:1;32092:31;32142:4;32139:1;32132:15;32166:4;32163:1;32156:15;32182:131;-1:-1:-1;;;;;32257:31:1;;32247:42;;32237:70;;32303:1;32300;32293:12;32318:118;32404:5;32397:13;32390:21;32383:5;32380:32;32370:60;;32426:1;32423;32416:12;32441:131;-1:-1:-1;;;;;;32515:32:1;;32505:43;;32495:71;;32562:1;32559;32552:12;32577:114;32661:4;32654:5;32650:16;32643:5;32640:27;32630:55;;32681:1;32678;32671:12

Swarm Source

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