ETH Price: $3,422.52 (-1.65%)
Gas: 6 Gwei

Token

0xTHULU Relic of Membership (0xRoM)
 

Overview

Max Total Supply

7,341 0xRoM

Holders

888

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cyeric.eth
Balance
1 0xRoM
0xa24c1d869119cc57ca64b2028b83842b235f9bee
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Oxthulu

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-23
*/

// File: contracts/Initializable.sol



pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}
// File: contracts/EIP712Base.sol



pragma solidity ^0.8.0;


contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}
// File: contracts/ContentMixin.sol



pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}
// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: contracts/NativeMetaTransaction.sol



pragma solidity ^0.8.0;



contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}
// File: @openzeppelin/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/ERC721Tradable.sol



pragma solidity ^0.8.0;








contract OwnableDelegateProxy {}

/**
 * Used to delegate ownership of a contract to another address, to save on unneeded transactions to approve contract use for users
 */
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
abstract contract ERC721Tradable is ERC721, ContextMixin, NativeMetaTransaction, Ownable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    /**
     * We rely on the OZ Counter util to keep track of the next available ID.
     * We track the nextTokenId instead of the currentTokenId to save users on gas costs. 
     * Read more about it here: https://shiny.mirror.xyz/OUampBbIz9ebEicfGnQf5At_ReMHlZy0tB4glb9xQ0E
     */ 
    Counters.Counter private _nextTokenId;
    address proxyRegistryAddress;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        // nextTokenId is initialized to 1, since starting at 0 leads to higher gas cost for the first minter
        _nextTokenId.increment();
        _initializeEIP712(_name);
    }

    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    /*function mintTo(address _to) public override  {
        uint256 currentTokenId = _nextTokenId.current();
        _nextTokenId.increment();
        _safeMint(_to, currentTokenId);
    }*/

    /**
        @dev Returns the total tokens minted so far.
        1 is always subtracted from the Counter since it tracks the next available tokenId.
     */

    function baseTokenURI() virtual public pure returns (string memory);

    /*function tokenURI(uint256 _tokenId) override public pure returns (string memory) {
        return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId)));
    }*/

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

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}
// File: contracts/0xthulu_2.sol



pragma solidity ^0.8.0;


/**
 * @title Creature
 * Creature - a contract for my non-fungible creatures.
 */
contract Oxthulu is ERC721Tradable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _nextTokenId;
    uint public Pricestatus;
    uint256 public Priceval;
    uint public mintLimit;
    
    bool public contractstatus;
    mapping(address => uint256) public mintaddresscount;
    mapping(uint256 => string) private _tokenURIs;
    mapping(address => bool) public whitelistedAddresses;
//    mapping(address => bool) presaleAddresses;
    uint public currentmintLimit;
    uint public paidmintLimit;
    address public Oxthulu_ETH_HOLDER;
    bool public pauseState;
    using SafeMath for uint256;
    address private Owner;
    uint Oxthulu_Total_Mint;        
    constructor(address _proxyRegistryAddress)
        ERC721Tradable("0xTHULU Relic of Membership", "0xRoM", _proxyRegistryAddress)
    {
        Pricestatus=0;
		Priceval=(2/100)* 10**18;
        mintLimit=10;
        currentmintLimit=10;        
        paidmintLimit=10;
        contractstatus=false;        
        pauseState = false;
        Owner = msg.sender;
        Oxthulu_Total_Mint=11138;
        _nextTokenId.increment();
    }

    function baseTokenURI() override public pure returns (string memory) {
        return "https://ipfs.perma.store/content/"; //Live
        //return "http://lktest.funblockchain.com/contentv2/";
    }

    function contractURI() public pure returns (string memory) {
        return "https://ipfs.perma.store/content/"; //Live
        //return "http://lktest.funblockchain.com/contentv2/";
    }

    /*function mintTo(string memory uri) public  {
        uint256 currentTokenId = _nextTokenId.current();        
        _safeMint(msg.sender, currentTokenId);
        _setTokenURI(currentTokenId,uri);
        _nextTokenId.increment();
    }*/

    function tokenMint(string memory uri) private {
        uint256 currentcount = mintaddresscount[msg.sender];
        require(currentcount < mintLimit,"Total mint limit has reached.");
          	   
	    uint256 tokenId = _nextTokenId.current();
        _nextTokenId.increment();
        _safeMint(msg.sender, tokenId);
        _setTokenURI(tokenId, uri);
          
        if(currentcount>=1){ currentcount++; }else{ currentcount=1;}
        mintaddresscount[msg.sender]=currentcount;
    }

     function tokenMint_pay(string memory uri) private {

        require(Pricestatus == 1, "Pricing is not enabled yet.");
        //require( this.balanceOf(msg.sender) < mintLimit,"Total: mint limit has reached.");                  
        /*if(Pricestatus!=0){
            uint256 Total_tobe_paid = calculate_transaction_pay(Priceval);
            require(msg.value == Total_tobe_paid, "Insufficient balance. Please transfer appropriate ETH."); 
           // transfer(Royalty_wallet, 0.002);
        }*/       
	   
	    uint256 tokenId = _nextTokenId.current();
        _nextTokenId.increment();
        _safeMint(msg.sender, tokenId);
        _setTokenURI(tokenId, uri);
                  
    }

    function tokenMintmultiple(string[] memory uris) external  payable whenNotPaused {
        require(totalSupply() < Oxthulu_Total_Mint, "Total Mint has been reached.");
        if(Pricestatus == 1){
            if(contractstatus == true || verifyUser(msg.sender) == true){
            require(contractstatus == true,"Contract is disabled. Please comeback later.");
            require(uris.length <= paidmintLimit,"Current mint limit exceeded.");

            if(Pricestatus!=0){
                uint256 Total_tobe_paid = calculate_transaction_pay(uris);
                require(msg.value == Total_tobe_paid, "Insufficient balance. Please transfer appropriate ETH."); 
                require(Oxthulu_ETH_HOLDER != address(0), "ETH Holder account should not be empty.");
                {(bool sent, bytes memory data) = Oxthulu_ETH_HOLDER.call{value: msg.value}("");}
           // transfer(Royalty_wallet, 0.002);
            }        
	   
            for(uint i=0;i<uris.length;i++){
                tokenMint_pay(uris[i]);
            }            
            }
           else{
            require(contractstatus == false,"Contract is in paused state.");
            require(verifyUser(msg.sender), "User is not whitelisted");
        }
            /*if(Pricestatus !=0 )
            {(bool sent, bytes memory data) = LK_ETH_HOLDER.call{value: msg.value}("");}*/
        }
        else{require(Pricestatus == 1, "Pricing is not enabled yet.");}
     }

     function tokenMintmultiple_free(string[] memory uris) external whenNotPaused {      
            require(totalSupply() < Oxthulu_Total_Mint, "Total Mint has been reached.");
            if(contractstatus == true || verifyUser(msg.sender) == true){
            //require(contractstatus == true,"Please comeback later.");
            require(uris.length <= currentmintLimit,"Current mint limit exceeded.");
            require(Pricestatus == 0,"Invalid Mint function to be called.");
                        
            for(uint i=0;i<uris.length;i++){
                tokenMint(uris[i]);
            }            
        }
        else{
        require(contractstatus == false,"Please comeback later.");
        require(verifyUser(msg.sender), "User is not whitelisted");
        }
        
        
     }

    function totalSupply() public view returns (uint256) {
        /*if(balanceOf(0x68A619Ded624fe9b51E3657dA3241493e007fFf1) ==0 ){
        return 0;}
        else{*/
        return _nextTokenId.current() - 1;
    }


    function calculate_transaction_pay_test(string[] memory uris, uint256 _priceval) public view virtual returns (uint256) {
        
        //uint256 _priceval = Priceval;
        uint256 total = _priceval.mul(uris.length);
        return total;
    }
    function calculate_transaction_pay(string[] memory uris) internal returns (uint256) {
                
        uint256 total = Priceval.mul(uris.length);
        return total;
    }

     /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory _tokenURI = _tokenURIs[tokenId];
        //string memory base = _baseURI();
        string memory base = baseTokenURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }


    function matic_getBalance() public view returns(uint) {
        return address(this).balance;
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    function _requireMinted(uint256 tokenId) override internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    function addUser(address _addressToWhitelist) public onlyOwner {
      whitelistedAddresses[_addressToWhitelist] = true;
    }

   function addUser_list(address[] memory _addressToWhitelist) public onlyOwner {
        for(uint i=0;i<_addressToWhitelist.length;i++){
            whitelistedAddresses[_addressToWhitelist[i]] = true;      
        }  
      
    }
    function removeUser(address _addressToWhitelist) public onlyOwner {
      whitelistedAddresses[_addressToWhitelist] = false;
    }

    /*function addPresaleUser(address _addressToPresale) public onlyOwner {
      presaleAddresses[_addressToPresale] = true;
    }*/

    function verifyUser(address _whitelistedAddress) public view returns(bool) {
      bool userIsWhitelisted = whitelistedAddresses[_whitelistedAddress];
      return userIsWhitelisted;
    }

    /*function verifyPresaleUser(address presaleAddress) public view returns(bool) {
      bool userIsPresale = presaleAddresses[presaleAddress];
      return userIsPresale;
    }*/
    
    function setPriceStatus(uint _val) public onlyOwner {
        Pricestatus = _val;
    }

    function setPriceval(uint256 amount) public onlyOwner {
        Priceval =amount;
    }
    function setmintLimit(uint256 val) public onlyOwner {
        mintLimit = val;
    }
    function setpaidmintLimit(uint256 val) public onlyOwner {
        paidmintLimit = val;
    }
    function setmintCurrentLimit(uint256 val) public onlyOwner {
        currentmintLimit = val;
    }

    function setContractStatus(bool _val) public onlyOwner {
        contractstatus = _val;
    }
    function setETHHolder(address payable _val) public onlyOwner {
        Oxthulu_ETH_HOLDER = _val;
    }

    function set0xthuluTotalMint(uint _val) public onlyOwner {
        Oxthulu_Total_Mint = _val;
    }

    function setPaused(bool _paused) public onlyOwner {
        pauseState = _paused;
    }

    function Burn(uint256 tid) public onlyOwner {
        require(ownerOf(tid) == msg.sender,"You are not Owner of the token!!" );
        _burn(tid);
    }

    function paused() public view virtual returns (bool) {
        return pauseState;
    }

    modifier whenNotPaused() {
        require (pauseState == false, "Contract is in the paused state.");
        //_requireNotPaused();
        _;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"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":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"tid","type":"uint256"}],"name":"Burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Oxthulu_ETH_HOLDER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Pricestatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Priceval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addressToWhitelist","type":"address"}],"name":"addUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressToWhitelist","type":"address[]"}],"name":"addUser_list","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string[]","name":"uris","type":"string[]"},{"internalType":"uint256","name":"_priceval","type":"uint256"}],"name":"calculate_transaction_pay_test","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"contractstatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentmintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","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":[],"name":"matic_getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintaddresscount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paidmintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addressToWhitelist","type":"address"}],"name":"removeUser","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_val","type":"uint256"}],"name":"set0xthuluTotalMint","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":"bool","name":"_val","type":"bool"}],"name":"setContractStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_val","type":"address"}],"name":"setETHHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setPriceStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPriceval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setmintCurrentLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setmintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setpaidmintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"uris","type":"string[]"}],"name":"tokenMintmultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string[]","name":"uris","type":"string[]"}],"name":"tokenMintmultiple_free","outputs":[],"stateMutability":"nonpayable","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":"","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":[{"internalType":"address","name":"_whitelistedAddress","type":"address"}],"name":"verifyUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526006805460ff191690553480156200001b57600080fd5b50604051620035f4380380620035f48339810160408190526200003e9162000412565b6040518060400160405280601b81526020017f30785448554c552052656c6963206f66204d656d626572736869700000000000815250604051806040016040528060058152602001643078526f4d60d81b8152508282828160009080519060200190620000ad9291906200036c565b508051620000c39060019060208401906200036c565b505050620000e0620000da6200019060201b60201c565b620001ac565b600b80546001600160a01b0319166001600160a01b03831617905562000113600a620001fe602090811b62001a3417901c565b6200011e8362000207565b50506000600d555066470de4df820000600e55600a600f81905560148190556015556010805460ff191690556016805460ff60a01b1916905560178054336001600160a01b0319909116179055612b8260185562000189600c620001fe602090811b62001a3417901c565b5062000481565b6000620001a76200026b60201b62001a3d1760201c565b905090565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b60065460ff1615620002505760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b6200025b81620002ca565b506006805460ff19166001179055565b600033301415620002c457600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002c79050565b50335b90565b6040518060800160405280604f8152602001620035a5604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600755565b8280546200037a9062000444565b90600052602060002090601f0160209004810192826200039e5760008555620003e9565b82601f10620003b957805160ff1916838001178555620003e9565b82800160010185558215620003e9579182015b82811115620003e9578251825591602001919060010190620003cc565b50620003f7929150620003fb565b5090565b5b80821115620003f75760008155600101620003fc565b6000602082840312156200042557600080fd5b81516001600160a01b03811681146200043d57600080fd5b9392505050565b600181811c908216806200045957607f821691505b602082108114156200047b57634e487b7160e01b600052602260045260246000fd5b50919050565b61311480620004916000396000f3fe60806040526004361061031a5760003560e01c806367d48afd116101ab578063a6dd1b77116100f7578063d547cfb711610095578063e8a3d4851161006f578063e8a3d485146108cf578063e985e9c514610925578063f2fde38b14610945578063f33c038f1461096557600080fd5b8063d547cfb7146108cf578063d7118351146108e4578063e02a64a11461090557600080fd5b8063c85b5255116100d1578063c85b525514610859578063c87b56dd14610879578063cd73548d14610899578063d297e2c8146108b957600080fd5b8063a6dd1b77146107f9578063b88d4fde14610819578063b90306ad1461083957600080fd5b806380b259771161016457806395d89b411161013e57806395d89b411461078e57806398575188146107a3578063996517cf146107c3578063a22cb465146107d957600080fd5b806380b259771461073a57806388b8084f146107505780638da5cb5b1461077057600080fd5b806367d48afd14610698578063692a81be146106b25780636f05433a146106c55780636f82ad00146106e557806370a0823114610705578063715018a61461072557600080fd5b80632935d6e21161026a578063421b2d8b116102235780634d813120116101fd5780634d8131201461060a5780635c975abb14610643578063608048d4146106625780636352211e1461067857600080fd5b8063421b2d8b146105aa57806342842e0e146105ca5780634d1a5b9d146105ea57600080fd5b80632935d6e2146104f85780632c5d6bcb146105185780632d0335ab1461052b5780632da5804c146105615780633408e470146105815780633b42004d1461059457600080fd5b80630f7e5970116102d75780631712cd8d116102b15780631712cd8d1461048057806318160ddd146104a057806320379ee5146104c357806323b872dd146104d857600080fd5b80630f7e59701461041357806311ed14e21461044057806316c38b3c1461046057600080fd5b806301ffc9a71461031f57806306c933d81461035457806306fdde0314610384578063081812fc146103a6578063095ea7b3146103de5780630c53c51c14610400575b600080fd5b34801561032b57600080fd5b5061033f61033a36600461283a565b610992565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5061033f61036f36600461286c565b60136020526000908152604090205460ff1681565b34801561039057600080fd5b506103996109e4565b60405161034b91906128e1565b3480156103b257600080fd5b506103c66103c13660046128f4565b610a76565b6040516001600160a01b03909116815260200161034b565b3480156103ea57600080fd5b506103fe6103f936600461290d565b610a9d565b005b61039961040e3660046129f8565b610bca565b34801561041f57600080fd5b50610399604051806040016040528060018152602001603160f81b81525081565b34801561044c57600080fd5b506103fe61045b3660046128f4565b610db4565b34801561046c57600080fd5b506103fe61047b366004612a8b565b610dc1565b34801561048c57600080fd5b506103fe61049b3660046128f4565b610de7565b3480156104ac57600080fd5b506104b5610df4565b60405190815260200161034b565b3480156104cf57600080fd5b506007546104b5565b3480156104e457600080fd5b506103fe6104f3366004612aa6565b610e10565b34801561050457600080fd5b506016546103c6906001600160a01b031681565b34801561052457600080fd5b50476104b5565b34801561053757600080fd5b506104b561054636600461286c565b6001600160a01b031660009081526008602052604090205490565b34801561056d57600080fd5b506103fe61057c3660046128f4565b610e48565b34801561058d57600080fd5b50466104b5565b3480156105a057600080fd5b506104b560155481565b3480156105b657600080fd5b506103fe6105c536600461286c565b610e55565b3480156105d657600080fd5b506103fe6105e5366004612aa6565b610e81565b3480156105f657600080fd5b506103fe61060536600461286c565b610e9c565b34801561061657600080fd5b5061033f61062536600461286c565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561064f57600080fd5b50601654600160a01b900460ff1661033f565b34801561066e57600080fd5b506104b560145481565b34801561068457600080fd5b506103c66106933660046128f4565b610ec6565b3480156106a457600080fd5b5060105461033f9060ff1681565b6103fe6106c0366004612bb0565b610f26565b3480156106d157600080fd5b506103fe6106e03660046128f4565b611364565b3480156106f157600080fd5b506103fe6107003660046128f4565b611371565b34801561071157600080fd5b506104b561072036600461286c565b61137e565b34801561073157600080fd5b506103fe611404565b34801561074657600080fd5b506104b5600d5481565b34801561075c57600080fd5b506103fe61076b366004612a8b565b611418565b34801561077c57600080fd5b506009546001600160a01b03166103c6565b34801561079a57600080fd5b50610399611433565b3480156107af57600080fd5b506103fe6107be36600461286c565b611442565b3480156107cf57600080fd5b506104b5600f5481565b3480156107e557600080fd5b506103fe6107f4366004612be5565b61146b565b34801561080557600080fd5b506103fe610814366004612bb0565b61147d565b34801561082557600080fd5b506103fe610834366004612c1a565b611699565b34801561084557600080fd5b506103fe6108543660046128f4565b6116d8565b34801561086557600080fd5b506103fe610874366004612c86565b611749565b34801561088557600080fd5b506103996108943660046128f4565b6117b9565b3480156108a557600080fd5b506103fe6108b43660046128f4565b6118bd565b3480156108c557600080fd5b506104b5600e5481565b3480156108db57600080fd5b506103996118ca565b3480156108f057600080fd5b5060165461033f90600160a01b900460ff1681565b34801561091157600080fd5b506104b5610920366004612d20565b6118ea565b34801561093157600080fd5b5061033f610940366004612d65565b611901565b34801561095157600080fd5b506103fe61096036600461286c565b6119be565b34801561097157600080fd5b506104b561098036600461286c565b60116020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b14806109c357506001600160e01b03198216635b5e139f60e01b145b806109de57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546109f390612d9e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1f90612d9e565b8015610a6c5780601f10610a4157610100808354040283529160200191610a6c565b820191906000526020600020905b815481529060010190602001808311610a4f57829003601f168201915b5050505050905090565b6000610a8182611a9a565b506000908152600460205260409020546001600160a01b031690565b6000610aa882610ec6565b9050806001600160a01b0316836001600160a01b03161415610b1b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b806001600160a01b0316610b2d611af9565b6001600160a01b03161480610b495750610b4981610940611af9565b610bbb5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610b12565b610bc58383611b03565b505050565b60408051606081810183526001600160a01b03881660008181526008602090815290859020548452830152918101869052610c088782878787611b71565b610c5e5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610b12565b6001600160a01b038716600090815260086020526040902054610c82906001611c61565b6001600160a01b0388166000908152600860205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610cd290899033908a90612dd9565b60405180910390a1600080306001600160a01b0316888a604051602001610cfa929190612e0e565b60408051601f1981840301815290829052610d1491612e45565b6000604051808303816000865af19150503d8060008114610d51576040519150601f19603f3d011682016040523d82523d6000602084013e610d56565b606091505b509150915081610da85760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610b12565b98975050505050505050565b610dbc611c74565b600d55565b610dc9611c74565b60168054911515600160a01b0260ff60a01b19909216919091179055565b610def611c74565b601455565b60006001610e01600c5490565b610e0b9190612e77565b905090565b610e21610e1b611af9565b82611ced565b610e3d5760405162461bcd60e51b8152600401610b1290612e8e565b610bc5838383611d4b565b610e50611c74565b600f55565b610e5d611c74565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b610bc583838360405180602001604052806000815250611699565b610ea4611c74565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806109de5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b12565b601654600160a01b900460ff1615610f805760405162461bcd60e51b815260206004820181905260248201527f436f6e747261637420697320696e20746865207061757365642073746174652e6044820152606401610b12565b601854610f8b610df4565b10610fd85760405162461bcd60e51b815260206004820152601c60248201527f546f74616c204d696e7420686173206265656e20726561636865642e000000006044820152606401610b12565b600d54600114156113125760105460ff1615156001148061100d57503360009081526013602052604090205460ff1615156001145b1561125d5760105460ff16151560011461107e5760405162461bcd60e51b815260206004820152602c60248201527f436f6e74726163742069732064697361626c65642e20506c6561736520636f6d60448201526b32b130b1b5903630ba32b91760a11b6064820152608401610b12565b601554815111156110d15760405162461bcd60e51b815260206004820152601c60248201527f43757272656e74206d696e74206c696d69742065786365656465642e000000006044820152606401610b12565b600d54156112195760006110e482611ee7565b90508034146111545760405162461bcd60e51b815260206004820152603660248201527f496e73756666696369656e742062616c616e63652e20506c65617365207472616044820152753739b332b91030b8383937b83934b0ba329022aa241760511b6064820152608401610b12565b6016546001600160a01b03166111bc5760405162461bcd60e51b815260206004820152602760248201527f45544820486f6c646572206163636f756e742073686f756c64206e6f742062656044820152661032b6b83a3c9760c91b6064820152608401610b12565b60165460405160009182916001600160a01b039091169034908381818185875af1925050503d806000811461120d576040519150601f19603f3d011682016040523d82523d6000602084013e611212565b606091505b5050505050505b60005b81518110156112595761124782828151811061123a5761123a612edc565b6020026020010151611f00565b8061125181612ef2565b91505061121c565b5050565b60105460ff16156112b05760405162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420697320696e207061757365642073746174652e000000006044820152606401610b12565b3360009081526013602052604090205460ff1661130f5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b12565b50565b600d5460011461130f5760405162461bcd60e51b815260206004820152601b60248201527f50726963696e67206973206e6f7420656e61626c6564207965742e00000000006044820152606401610b12565b61136c611c74565b600e55565b611379611c74565b601555565b60006001600160a01b0382166113e85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610b12565b506001600160a01b031660009081526003602052604090205490565b61140c611c74565b6114166000611f81565b565b611420611c74565b6010805460ff1916911515919091179055565b6060600180546109f390612d9e565b61144a611c74565b6001600160a01b03166000908152601360205260409020805460ff19169055565b611259611476611af9565b8383611fd3565b601654600160a01b900460ff16156114d75760405162461bcd60e51b815260206004820181905260248201527f436f6e747261637420697320696e20746865207061757365642073746174652e6044820152606401610b12565b6018546114e2610df4565b1061152f5760405162461bcd60e51b815260206004820152601c60248201527f546f74616c204d696e7420686173206265656e20726561636865642e000000006044820152606401610b12565b60105460ff1615156001148061155957503360009081526013602052604090205460ff1615156001145b1561164d57601454815111156115b15760405162461bcd60e51b815260206004820152601c60248201527f43757272656e74206d696e74206c696d69742065786365656465642e000000006044820152606401610b12565b600d541561160d5760405162461bcd60e51b815260206004820152602360248201527f496e76616c6964204d696e742066756e6374696f6e20746f2062652063616c6c60448201526232b21760e91b6064820152608401610b12565b60005b81518110156112595761163b82828151811061162e5761162e612edc565b60200260200101516120a2565b8061164581612ef2565b915050611610565b60105460ff16156112b05760405162461bcd60e51b8152602060048201526016602482015275283632b0b9b29031b7b6b2b130b1b5903630ba32b91760511b6044820152606401610b12565b6116aa6116a4611af9565b83611ced565b6116c65760405162461bcd60e51b8152600401610b1290612e8e565b6116d284848484612165565b50505050565b6116e0611c74565b336116ea82610ec6565b6001600160a01b0316146117405760405162461bcd60e51b815260206004820181905260248201527f596f7520617265206e6f74204f776e6572206f662074686520746f6b656e21216044820152606401610b12565b61130f81612198565b611751611c74565b60005b81518110156112595760016013600084848151811061177557611775612edc565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806117b181612ef2565b915050611754565b60606117c482611a9a565b600082815260126020526040812080546117dd90612d9e565b80601f016020809104026020016040519081016040528092919081815260200182805461180990612d9e565b80156118565780601f1061182b57610100808354040283529160200191611856565b820191906000526020600020905b81548152906001019060200180831161183957829003601f168201915b5050505050905060006118676118ca565b905080516000141561187a575092915050565b8151156118ac578082604051602001611894929190612f0d565b60405160208183030381529060405292505050919050565b6118b584612233565b949350505050565b6118c5611c74565b601855565b60606040518060600160405280602181526020016130be60219139905090565b6000806118b58451846122a690919063ffffffff16565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611953573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119779190612f3c565b6001600160a01b031614156119905760019150506109de565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff166118b5565b6119c6611c74565b6001600160a01b038116611a2b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b12565b61130f81611f81565b80546001019055565b600033301415611a9457600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150611a979050565b50335b90565b6000818152600260205260409020546001600160a01b031661130f5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b12565b6000610e0b611a3d565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b3882610ec6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611bd75760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610b12565b6001611bea611be5876122b2565b61232f565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611c38573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611c6d8284612f59565b9392505050565b611c7c611af9565b6001600160a01b0316611c976009546001600160a01b031690565b6001600160a01b0316146114165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b600080611cf983610ec6565b9050806001600160a01b0316846001600160a01b03161480611d205750611d208185611901565b806118b55750836001600160a01b0316611d3984610a76565b6001600160a01b031614949350505050565b826001600160a01b0316611d5e82610ec6565b6001600160a01b031614611dc25760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610b12565b6001600160a01b038216611e245760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b12565b611e2f600082611b03565b6001600160a01b0383166000908152600360205260408120805460019290611e58908490612e77565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e86908490612f59565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080611c6d8351600e546122a690919063ffffffff16565b600d54600114611f525760405162461bcd60e51b815260206004820152601b60248201527f50726963696e67206973206e6f7420656e61626c6564207965742e00000000006044820152606401610b12565b6000611f5d600c5490565b9050611f6d600c80546001019055565b611f77338261235f565b6112598183612379565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120355760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b12565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b33600090815260116020526040902054600f5481106121035760405162461bcd60e51b815260206004820152601d60248201527f546f74616c206d696e74206c696d69742068617320726561636865642e0000006044820152606401610b12565b600061210e600c5490565b905061211e600c80546001019055565b612128338261235f565b6121328184612379565b6001821061214c578161214481612ef2565b925050612151565b600191505b503360009081526011602052604090205550565b612170848484611d4b565b61217c84848484612413565b6116d25760405162461bcd60e51b8152600401610b1290612f71565b60006121a382610ec6565b90506121b0600083611b03565b6001600160a01b03811660009081526003602052604081208054600192906121d9908490612e77565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606061223e82611a9a565b600061225560408051602081019091526000815290565b905060008151116122755760405180602001604052806000815250611c6d565b8061227f84612518565b604051602001612290929190612f0d565b6040516020818303038152906040529392505050565b6000611c6d8284612fc3565b600060405180608001604052806043815260200161307b6043913980516020918201208351848301516040808701518051908601209051612312950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061233a60075490565b60405161190160f01b6020820152602281019190915260428101839052606201612312565b611259828260405180602001604052806000815250612616565b6000828152600260205260409020546001600160a01b03166123f45760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610b12565b60008281526012602090815260409091208251610bc59284019061278b565b60006001600160a01b0384163b1561250d57836001600160a01b031663150b7a0261243c611af9565b8786866040518563ffffffff1660e01b815260040161245e9493929190612fe2565b6020604051808303816000875af1925050508015612499575060408051601f3d908101601f191682019092526124969181019061301f565b60015b6124f3573d8080156124c7576040519150601f19603f3d011682016040523d82523d6000602084013e6124cc565b606091505b5080516124eb5760405162461bcd60e51b8152600401610b1290612f71565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118b5565b506001949350505050565b60608161253c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612566578061255081612ef2565b915061255f9050600a83613052565b9150612540565b60008167ffffffffffffffff81111561258157612581612939565b6040519080825280601f01601f1916602001820160405280156125ab576020820181803683370190505b5090505b84156118b5576125c0600183612e77565b91506125cd600a86613066565b6125d8906030612f59565b60f81b8183815181106125ed576125ed612edc565b60200101906001600160f81b031916908160001a90535061260f600a86613052565b94506125af565b6126208383612649565b61262d6000848484612413565b610bc55760405162461bcd60e51b8152600401610b1290612f71565b6001600160a01b03821661269f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b12565b6000818152600260205260409020546001600160a01b0316156127045760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b12565b6001600160a01b038216600090815260036020526040812080546001929061272d908490612f59565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461279790612d9e565b90600052602060002090601f0160209004810192826127b957600085556127ff565b82601f106127d257805160ff19168380011785556127ff565b828001600101855582156127ff579182015b828111156127ff5782518255916020019190600101906127e4565b5061280b92915061280f565b5090565b5b8082111561280b5760008155600101612810565b6001600160e01b03198116811461130f57600080fd5b60006020828403121561284c57600080fd5b8135611c6d81612824565b6001600160a01b038116811461130f57600080fd5b60006020828403121561287e57600080fd5b8135611c6d81612857565b60005b838110156128a457818101518382015260200161288c565b838111156116d25750506000910152565b600081518084526128cd816020860160208601612889565b601f01601f19169290920160200192915050565b602081526000611c6d60208301846128b5565b60006020828403121561290657600080fd5b5035919050565b6000806040838503121561292057600080fd5b823561292b81612857565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561297857612978612939565b604052919050565b600067ffffffffffffffff83111561299a5761299a612939565b6129ad601f8401601f191660200161294f565b90508281528383830111156129c157600080fd5b828260208301376000602084830101529392505050565b600082601f8301126129e957600080fd5b611c6d83833560208501612980565b600080600080600060a08688031215612a1057600080fd5b8535612a1b81612857565b9450602086013567ffffffffffffffff811115612a3757600080fd5b612a43888289016129d8565b9450506040860135925060608601359150608086013560ff81168114612a6857600080fd5b809150509295509295909350565b80358015158114612a8657600080fd5b919050565b600060208284031215612a9d57600080fd5b611c6d82612a76565b600080600060608486031215612abb57600080fd5b8335612ac681612857565b92506020840135612ad681612857565b929592945050506040919091013590565b600067ffffffffffffffff821115612b0157612b01612939565b5060051b60200190565b600082601f830112612b1c57600080fd5b81356020612b31612b2c83612ae7565b61294f565b82815260059290921b84018101918181019086841115612b5057600080fd5b8286015b84811015612ba557803567ffffffffffffffff811115612b745760008081fd5b8701603f81018913612b865760008081fd5b612b97898683013560408401612980565b845250918301918301612b54565b509695505050505050565b600060208284031215612bc257600080fd5b813567ffffffffffffffff811115612bd957600080fd5b6118b584828501612b0b565b60008060408385031215612bf857600080fd5b8235612c0381612857565b9150612c1160208401612a76565b90509250929050565b60008060008060808587031215612c3057600080fd5b8435612c3b81612857565b93506020850135612c4b81612857565b925060408501359150606085013567ffffffffffffffff811115612c6e57600080fd5b612c7a878288016129d8565b91505092959194509250565b60006020808385031215612c9957600080fd5b823567ffffffffffffffff811115612cb057600080fd5b8301601f81018513612cc157600080fd5b8035612ccf612b2c82612ae7565b81815260059190911b82018301908381019087831115612cee57600080fd5b928401925b82841015612d15578335612d0681612857565b82529284019290840190612cf3565b979650505050505050565b60008060408385031215612d3357600080fd5b823567ffffffffffffffff811115612d4a57600080fd5b612d5685828601612b0b565b95602094909401359450505050565b60008060408385031215612d7857600080fd5b8235612d8381612857565b91506020830135612d9381612857565b809150509250929050565b600181811c90821680612db257607f821691505b60208210811415612dd357634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b03848116825283166020820152606060408201819052600090612e05908301846128b5565b95945050505050565b60008351612e20818460208801612889565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008251612e57818460208701612889565b9190910192915050565b634e487b7160e01b600052601160045260246000fd5b600082821015612e8957612e89612e61565b500390565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612f0657612f06612e61565b5060010190565b60008351612f1f818460208801612889565b835190830190612f33818360208801612889565b01949350505050565b600060208284031215612f4e57600080fd5b8151611c6d81612857565b60008219821115612f6c57612f6c612e61565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000816000190483118215151615612fdd57612fdd612e61565b500290565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613015908301846128b5565b9695505050505050565b60006020828403121561303157600080fd5b8151611c6d81612824565b634e487b7160e01b600052601260045260246000fd5b6000826130615761306161303c565b500490565b6000826130755761307561303c565b50069056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f697066732e7065726d612e73746f72652f636f6e74656e742fa2646970667358221220d89b13e98e7847975179e8bd8442f55a8857a66daf08f919dab2bb6d1252afd864736f6c634300080a0033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x60806040526004361061031a5760003560e01c806367d48afd116101ab578063a6dd1b77116100f7578063d547cfb711610095578063e8a3d4851161006f578063e8a3d485146108cf578063e985e9c514610925578063f2fde38b14610945578063f33c038f1461096557600080fd5b8063d547cfb7146108cf578063d7118351146108e4578063e02a64a11461090557600080fd5b8063c85b5255116100d1578063c85b525514610859578063c87b56dd14610879578063cd73548d14610899578063d297e2c8146108b957600080fd5b8063a6dd1b77146107f9578063b88d4fde14610819578063b90306ad1461083957600080fd5b806380b259771161016457806395d89b411161013e57806395d89b411461078e57806398575188146107a3578063996517cf146107c3578063a22cb465146107d957600080fd5b806380b259771461073a57806388b8084f146107505780638da5cb5b1461077057600080fd5b806367d48afd14610698578063692a81be146106b25780636f05433a146106c55780636f82ad00146106e557806370a0823114610705578063715018a61461072557600080fd5b80632935d6e21161026a578063421b2d8b116102235780634d813120116101fd5780634d8131201461060a5780635c975abb14610643578063608048d4146106625780636352211e1461067857600080fd5b8063421b2d8b146105aa57806342842e0e146105ca5780634d1a5b9d146105ea57600080fd5b80632935d6e2146104f85780632c5d6bcb146105185780632d0335ab1461052b5780632da5804c146105615780633408e470146105815780633b42004d1461059457600080fd5b80630f7e5970116102d75780631712cd8d116102b15780631712cd8d1461048057806318160ddd146104a057806320379ee5146104c357806323b872dd146104d857600080fd5b80630f7e59701461041357806311ed14e21461044057806316c38b3c1461046057600080fd5b806301ffc9a71461031f57806306c933d81461035457806306fdde0314610384578063081812fc146103a6578063095ea7b3146103de5780630c53c51c14610400575b600080fd5b34801561032b57600080fd5b5061033f61033a36600461283a565b610992565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5061033f61036f36600461286c565b60136020526000908152604090205460ff1681565b34801561039057600080fd5b506103996109e4565b60405161034b91906128e1565b3480156103b257600080fd5b506103c66103c13660046128f4565b610a76565b6040516001600160a01b03909116815260200161034b565b3480156103ea57600080fd5b506103fe6103f936600461290d565b610a9d565b005b61039961040e3660046129f8565b610bca565b34801561041f57600080fd5b50610399604051806040016040528060018152602001603160f81b81525081565b34801561044c57600080fd5b506103fe61045b3660046128f4565b610db4565b34801561046c57600080fd5b506103fe61047b366004612a8b565b610dc1565b34801561048c57600080fd5b506103fe61049b3660046128f4565b610de7565b3480156104ac57600080fd5b506104b5610df4565b60405190815260200161034b565b3480156104cf57600080fd5b506007546104b5565b3480156104e457600080fd5b506103fe6104f3366004612aa6565b610e10565b34801561050457600080fd5b506016546103c6906001600160a01b031681565b34801561052457600080fd5b50476104b5565b34801561053757600080fd5b506104b561054636600461286c565b6001600160a01b031660009081526008602052604090205490565b34801561056d57600080fd5b506103fe61057c3660046128f4565b610e48565b34801561058d57600080fd5b50466104b5565b3480156105a057600080fd5b506104b560155481565b3480156105b657600080fd5b506103fe6105c536600461286c565b610e55565b3480156105d657600080fd5b506103fe6105e5366004612aa6565b610e81565b3480156105f657600080fd5b506103fe61060536600461286c565b610e9c565b34801561061657600080fd5b5061033f61062536600461286c565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561064f57600080fd5b50601654600160a01b900460ff1661033f565b34801561066e57600080fd5b506104b560145481565b34801561068457600080fd5b506103c66106933660046128f4565b610ec6565b3480156106a457600080fd5b5060105461033f9060ff1681565b6103fe6106c0366004612bb0565b610f26565b3480156106d157600080fd5b506103fe6106e03660046128f4565b611364565b3480156106f157600080fd5b506103fe6107003660046128f4565b611371565b34801561071157600080fd5b506104b561072036600461286c565b61137e565b34801561073157600080fd5b506103fe611404565b34801561074657600080fd5b506104b5600d5481565b34801561075c57600080fd5b506103fe61076b366004612a8b565b611418565b34801561077c57600080fd5b506009546001600160a01b03166103c6565b34801561079a57600080fd5b50610399611433565b3480156107af57600080fd5b506103fe6107be36600461286c565b611442565b3480156107cf57600080fd5b506104b5600f5481565b3480156107e557600080fd5b506103fe6107f4366004612be5565b61146b565b34801561080557600080fd5b506103fe610814366004612bb0565b61147d565b34801561082557600080fd5b506103fe610834366004612c1a565b611699565b34801561084557600080fd5b506103fe6108543660046128f4565b6116d8565b34801561086557600080fd5b506103fe610874366004612c86565b611749565b34801561088557600080fd5b506103996108943660046128f4565b6117b9565b3480156108a557600080fd5b506103fe6108b43660046128f4565b6118bd565b3480156108c557600080fd5b506104b5600e5481565b3480156108db57600080fd5b506103996118ca565b3480156108f057600080fd5b5060165461033f90600160a01b900460ff1681565b34801561091157600080fd5b506104b5610920366004612d20565b6118ea565b34801561093157600080fd5b5061033f610940366004612d65565b611901565b34801561095157600080fd5b506103fe61096036600461286c565b6119be565b34801561097157600080fd5b506104b561098036600461286c565b60116020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b14806109c357506001600160e01b03198216635b5e139f60e01b145b806109de57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546109f390612d9e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1f90612d9e565b8015610a6c5780601f10610a4157610100808354040283529160200191610a6c565b820191906000526020600020905b815481529060010190602001808311610a4f57829003601f168201915b5050505050905090565b6000610a8182611a9a565b506000908152600460205260409020546001600160a01b031690565b6000610aa882610ec6565b9050806001600160a01b0316836001600160a01b03161415610b1b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b806001600160a01b0316610b2d611af9565b6001600160a01b03161480610b495750610b4981610940611af9565b610bbb5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610b12565b610bc58383611b03565b505050565b60408051606081810183526001600160a01b03881660008181526008602090815290859020548452830152918101869052610c088782878787611b71565b610c5e5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610b12565b6001600160a01b038716600090815260086020526040902054610c82906001611c61565b6001600160a01b0388166000908152600860205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610cd290899033908a90612dd9565b60405180910390a1600080306001600160a01b0316888a604051602001610cfa929190612e0e565b60408051601f1981840301815290829052610d1491612e45565b6000604051808303816000865af19150503d8060008114610d51576040519150601f19603f3d011682016040523d82523d6000602084013e610d56565b606091505b509150915081610da85760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610b12565b98975050505050505050565b610dbc611c74565b600d55565b610dc9611c74565b60168054911515600160a01b0260ff60a01b19909216919091179055565b610def611c74565b601455565b60006001610e01600c5490565b610e0b9190612e77565b905090565b610e21610e1b611af9565b82611ced565b610e3d5760405162461bcd60e51b8152600401610b1290612e8e565b610bc5838383611d4b565b610e50611c74565b600f55565b610e5d611c74565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b610bc583838360405180602001604052806000815250611699565b610ea4611c74565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806109de5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b12565b601654600160a01b900460ff1615610f805760405162461bcd60e51b815260206004820181905260248201527f436f6e747261637420697320696e20746865207061757365642073746174652e6044820152606401610b12565b601854610f8b610df4565b10610fd85760405162461bcd60e51b815260206004820152601c60248201527f546f74616c204d696e7420686173206265656e20726561636865642e000000006044820152606401610b12565b600d54600114156113125760105460ff1615156001148061100d57503360009081526013602052604090205460ff1615156001145b1561125d5760105460ff16151560011461107e5760405162461bcd60e51b815260206004820152602c60248201527f436f6e74726163742069732064697361626c65642e20506c6561736520636f6d60448201526b32b130b1b5903630ba32b91760a11b6064820152608401610b12565b601554815111156110d15760405162461bcd60e51b815260206004820152601c60248201527f43757272656e74206d696e74206c696d69742065786365656465642e000000006044820152606401610b12565b600d54156112195760006110e482611ee7565b90508034146111545760405162461bcd60e51b815260206004820152603660248201527f496e73756666696369656e742062616c616e63652e20506c65617365207472616044820152753739b332b91030b8383937b83934b0ba329022aa241760511b6064820152608401610b12565b6016546001600160a01b03166111bc5760405162461bcd60e51b815260206004820152602760248201527f45544820486f6c646572206163636f756e742073686f756c64206e6f742062656044820152661032b6b83a3c9760c91b6064820152608401610b12565b60165460405160009182916001600160a01b039091169034908381818185875af1925050503d806000811461120d576040519150601f19603f3d011682016040523d82523d6000602084013e611212565b606091505b5050505050505b60005b81518110156112595761124782828151811061123a5761123a612edc565b6020026020010151611f00565b8061125181612ef2565b91505061121c565b5050565b60105460ff16156112b05760405162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420697320696e207061757365642073746174652e000000006044820152606401610b12565b3360009081526013602052604090205460ff1661130f5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b12565b50565b600d5460011461130f5760405162461bcd60e51b815260206004820152601b60248201527f50726963696e67206973206e6f7420656e61626c6564207965742e00000000006044820152606401610b12565b61136c611c74565b600e55565b611379611c74565b601555565b60006001600160a01b0382166113e85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610b12565b506001600160a01b031660009081526003602052604090205490565b61140c611c74565b6114166000611f81565b565b611420611c74565b6010805460ff1916911515919091179055565b6060600180546109f390612d9e565b61144a611c74565b6001600160a01b03166000908152601360205260409020805460ff19169055565b611259611476611af9565b8383611fd3565b601654600160a01b900460ff16156114d75760405162461bcd60e51b815260206004820181905260248201527f436f6e747261637420697320696e20746865207061757365642073746174652e6044820152606401610b12565b6018546114e2610df4565b1061152f5760405162461bcd60e51b815260206004820152601c60248201527f546f74616c204d696e7420686173206265656e20726561636865642e000000006044820152606401610b12565b60105460ff1615156001148061155957503360009081526013602052604090205460ff1615156001145b1561164d57601454815111156115b15760405162461bcd60e51b815260206004820152601c60248201527f43757272656e74206d696e74206c696d69742065786365656465642e000000006044820152606401610b12565b600d541561160d5760405162461bcd60e51b815260206004820152602360248201527f496e76616c6964204d696e742066756e6374696f6e20746f2062652063616c6c60448201526232b21760e91b6064820152608401610b12565b60005b81518110156112595761163b82828151811061162e5761162e612edc565b60200260200101516120a2565b8061164581612ef2565b915050611610565b60105460ff16156112b05760405162461bcd60e51b8152602060048201526016602482015275283632b0b9b29031b7b6b2b130b1b5903630ba32b91760511b6044820152606401610b12565b6116aa6116a4611af9565b83611ced565b6116c65760405162461bcd60e51b8152600401610b1290612e8e565b6116d284848484612165565b50505050565b6116e0611c74565b336116ea82610ec6565b6001600160a01b0316146117405760405162461bcd60e51b815260206004820181905260248201527f596f7520617265206e6f74204f776e6572206f662074686520746f6b656e21216044820152606401610b12565b61130f81612198565b611751611c74565b60005b81518110156112595760016013600084848151811061177557611775612edc565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806117b181612ef2565b915050611754565b60606117c482611a9a565b600082815260126020526040812080546117dd90612d9e565b80601f016020809104026020016040519081016040528092919081815260200182805461180990612d9e565b80156118565780601f1061182b57610100808354040283529160200191611856565b820191906000526020600020905b81548152906001019060200180831161183957829003601f168201915b5050505050905060006118676118ca565b905080516000141561187a575092915050565b8151156118ac578082604051602001611894929190612f0d565b60405160208183030381529060405292505050919050565b6118b584612233565b949350505050565b6118c5611c74565b601855565b60606040518060600160405280602181526020016130be60219139905090565b6000806118b58451846122a690919063ffffffff16565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611953573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119779190612f3c565b6001600160a01b031614156119905760019150506109de565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff166118b5565b6119c6611c74565b6001600160a01b038116611a2b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b12565b61130f81611f81565b80546001019055565b600033301415611a9457600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150611a979050565b50335b90565b6000818152600260205260409020546001600160a01b031661130f5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b12565b6000610e0b611a3d565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b3882610ec6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611bd75760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610b12565b6001611bea611be5876122b2565b61232f565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611c38573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611c6d8284612f59565b9392505050565b611c7c611af9565b6001600160a01b0316611c976009546001600160a01b031690565b6001600160a01b0316146114165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b600080611cf983610ec6565b9050806001600160a01b0316846001600160a01b03161480611d205750611d208185611901565b806118b55750836001600160a01b0316611d3984610a76565b6001600160a01b031614949350505050565b826001600160a01b0316611d5e82610ec6565b6001600160a01b031614611dc25760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610b12565b6001600160a01b038216611e245760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b12565b611e2f600082611b03565b6001600160a01b0383166000908152600360205260408120805460019290611e58908490612e77565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e86908490612f59565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080611c6d8351600e546122a690919063ffffffff16565b600d54600114611f525760405162461bcd60e51b815260206004820152601b60248201527f50726963696e67206973206e6f7420656e61626c6564207965742e00000000006044820152606401610b12565b6000611f5d600c5490565b9050611f6d600c80546001019055565b611f77338261235f565b6112598183612379565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120355760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b12565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b33600090815260116020526040902054600f5481106121035760405162461bcd60e51b815260206004820152601d60248201527f546f74616c206d696e74206c696d69742068617320726561636865642e0000006044820152606401610b12565b600061210e600c5490565b905061211e600c80546001019055565b612128338261235f565b6121328184612379565b6001821061214c578161214481612ef2565b925050612151565b600191505b503360009081526011602052604090205550565b612170848484611d4b565b61217c84848484612413565b6116d25760405162461bcd60e51b8152600401610b1290612f71565b60006121a382610ec6565b90506121b0600083611b03565b6001600160a01b03811660009081526003602052604081208054600192906121d9908490612e77565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606061223e82611a9a565b600061225560408051602081019091526000815290565b905060008151116122755760405180602001604052806000815250611c6d565b8061227f84612518565b604051602001612290929190612f0d565b6040516020818303038152906040529392505050565b6000611c6d8284612fc3565b600060405180608001604052806043815260200161307b6043913980516020918201208351848301516040808701518051908601209051612312950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061233a60075490565b60405161190160f01b6020820152602281019190915260428101839052606201612312565b611259828260405180602001604052806000815250612616565b6000828152600260205260409020546001600160a01b03166123f45760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610b12565b60008281526012602090815260409091208251610bc59284019061278b565b60006001600160a01b0384163b1561250d57836001600160a01b031663150b7a0261243c611af9565b8786866040518563ffffffff1660e01b815260040161245e9493929190612fe2565b6020604051808303816000875af1925050508015612499575060408051601f3d908101601f191682019092526124969181019061301f565b60015b6124f3573d8080156124c7576040519150601f19603f3d011682016040523d82523d6000602084013e6124cc565b606091505b5080516124eb5760405162461bcd60e51b8152600401610b1290612f71565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118b5565b506001949350505050565b60608161253c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612566578061255081612ef2565b915061255f9050600a83613052565b9150612540565b60008167ffffffffffffffff81111561258157612581612939565b6040519080825280601f01601f1916602001820160405280156125ab576020820181803683370190505b5090505b84156118b5576125c0600183612e77565b91506125cd600a86613066565b6125d8906030612f59565b60f81b8183815181106125ed576125ed612edc565b60200101906001600160f81b031916908160001a90535061260f600a86613052565b94506125af565b6126208383612649565b61262d6000848484612413565b610bc55760405162461bcd60e51b8152600401610b1290612f71565b6001600160a01b03821661269f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b12565b6000818152600260205260409020546001600160a01b0316156127045760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b12565b6001600160a01b038216600090815260036020526040812080546001929061272d908490612f59565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461279790612d9e565b90600052602060002090601f0160209004810192826127b957600085556127ff565b82601f106127d257805160ff19168380011785556127ff565b828001600101855582156127ff579182015b828111156127ff5782518255916020019190600101906127e4565b5061280b92915061280f565b5090565b5b8082111561280b5760008155600101612810565b6001600160e01b03198116811461130f57600080fd5b60006020828403121561284c57600080fd5b8135611c6d81612824565b6001600160a01b038116811461130f57600080fd5b60006020828403121561287e57600080fd5b8135611c6d81612857565b60005b838110156128a457818101518382015260200161288c565b838111156116d25750506000910152565b600081518084526128cd816020860160208601612889565b601f01601f19169290920160200192915050565b602081526000611c6d60208301846128b5565b60006020828403121561290657600080fd5b5035919050565b6000806040838503121561292057600080fd5b823561292b81612857565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561297857612978612939565b604052919050565b600067ffffffffffffffff83111561299a5761299a612939565b6129ad601f8401601f191660200161294f565b90508281528383830111156129c157600080fd5b828260208301376000602084830101529392505050565b600082601f8301126129e957600080fd5b611c6d83833560208501612980565b600080600080600060a08688031215612a1057600080fd5b8535612a1b81612857565b9450602086013567ffffffffffffffff811115612a3757600080fd5b612a43888289016129d8565b9450506040860135925060608601359150608086013560ff81168114612a6857600080fd5b809150509295509295909350565b80358015158114612a8657600080fd5b919050565b600060208284031215612a9d57600080fd5b611c6d82612a76565b600080600060608486031215612abb57600080fd5b8335612ac681612857565b92506020840135612ad681612857565b929592945050506040919091013590565b600067ffffffffffffffff821115612b0157612b01612939565b5060051b60200190565b600082601f830112612b1c57600080fd5b81356020612b31612b2c83612ae7565b61294f565b82815260059290921b84018101918181019086841115612b5057600080fd5b8286015b84811015612ba557803567ffffffffffffffff811115612b745760008081fd5b8701603f81018913612b865760008081fd5b612b97898683013560408401612980565b845250918301918301612b54565b509695505050505050565b600060208284031215612bc257600080fd5b813567ffffffffffffffff811115612bd957600080fd5b6118b584828501612b0b565b60008060408385031215612bf857600080fd5b8235612c0381612857565b9150612c1160208401612a76565b90509250929050565b60008060008060808587031215612c3057600080fd5b8435612c3b81612857565b93506020850135612c4b81612857565b925060408501359150606085013567ffffffffffffffff811115612c6e57600080fd5b612c7a878288016129d8565b91505092959194509250565b60006020808385031215612c9957600080fd5b823567ffffffffffffffff811115612cb057600080fd5b8301601f81018513612cc157600080fd5b8035612ccf612b2c82612ae7565b81815260059190911b82018301908381019087831115612cee57600080fd5b928401925b82841015612d15578335612d0681612857565b82529284019290840190612cf3565b979650505050505050565b60008060408385031215612d3357600080fd5b823567ffffffffffffffff811115612d4a57600080fd5b612d5685828601612b0b565b95602094909401359450505050565b60008060408385031215612d7857600080fd5b8235612d8381612857565b91506020830135612d9381612857565b809150509250929050565b600181811c90821680612db257607f821691505b60208210811415612dd357634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b03848116825283166020820152606060408201819052600090612e05908301846128b5565b95945050505050565b60008351612e20818460208801612889565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008251612e57818460208701612889565b9190910192915050565b634e487b7160e01b600052601160045260246000fd5b600082821015612e8957612e89612e61565b500390565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612f0657612f06612e61565b5060010190565b60008351612f1f818460208801612889565b835190830190612f33818360208801612889565b01949350505050565b600060208284031215612f4e57600080fd5b8151611c6d81612857565b60008219821115612f6c57612f6c612e61565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000816000190483118215151615612fdd57612fdd612e61565b500290565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613015908301846128b5565b9695505050505050565b60006020828403121561303157600080fd5b8151611c6d81612824565b634e487b7160e01b600052601260045260246000fd5b6000826130615761306161303c565b500490565b6000826130755761307561303c565b50069056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f697066732e7065726d612e73746f72652f636f6e74656e742fa2646970667358221220d89b13e98e7847975179e8bd8442f55a8857a66daf08f919dab2bb6d1252afd864736f6c634300080a0033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

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

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


Deployed Bytecode Sourcemap

55928:9859:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39507:305;;;;;;;;;;-1:-1:-1;39507:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;39507:305:0;;;;;;;;56326:52;;;;;;;;;;-1:-1:-1;56326:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;40434:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41947:171::-;;;;;;;;;;-1:-1:-1;41947:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2080:32:1;;;2062:51;;2050:2;2035:18;41947:171:0;1916:203:1;41464:417:0;;;;;;;;;;-1:-1:-1;41464:417:0;;;;;:::i;:::-;;:::i;:::-;;11122:1151;;;;;;:::i;:::-;;:::i;502:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;502:43:0;;;;;64455:89;;;;;;;;;;-1:-1:-1;64455:89:0;;;;;:::i;:::-;;:::i;65270:::-;;;;;;;;;;-1:-1:-1;65270:89:0;;;;;:::i;:::-;;:::i;64839:100::-;;;;;;;;;;-1:-1:-1;64839:100:0;;;;;:::i;:::-;;:::i;61349:217::-;;;;;;;;;;;;;:::i;:::-;;;4974:25:1;;;4962:2;4947:18;61349:217:0;4828:177:1;1511:101:0;;;;;;;;;;-1:-1:-1;1589:15:0;;1511:101;;42647:336;;;;;;;;;;-1:-1:-1;42647:336:0;;;;;:::i;:::-;;:::i;56502:33::-;;;;;;;;;;-1:-1:-1;56502:33:0;;;;-1:-1:-1;;;;;56502:33:0;;;62775:101;;;;;;;;;;-1:-1:-1;62847:21:0;62775:101;;12699:107;;;;;;;;;;-1:-1:-1;12699:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;12786:12:0;12752:13;12786:12;;;:6;:12;;;;;;;12699:107;64647:86;;;;;;;;;;-1:-1:-1;64647:86:0;;;;;:::i;:::-;;:::i;1620:161::-;;;;;;;;;;-1:-1:-1;1734:9:0;1620:161;;56470:25;;;;;;;;;;;;;;;;63409:128;;;;;;;;;;-1:-1:-1;63409:128:0;;;;;:::i;:::-;;:::i;43054:185::-;;;;;;;;;;-1:-1:-1;43054:185:0;;;;;:::i;:::-;;:::i;65048:105::-;;;;;;;;;;-1:-1:-1;65048:105:0;;;;;:::i;:::-;;:::i;64064:191::-;;;;;;;;;;-1:-1:-1;64064:191:0;;;;;:::i;:::-;-1:-1:-1;;;;;64173:41:0;64133:4;64173:41;;;:20;:41;;;;;;;;;64064:191;65530:89;;;;;;;;;;-1:-1:-1;65601:10:0;;-1:-1:-1;;;65601:10:0;;;;65530:89;;56435:28;;;;;;;;;;;;;;;;40145:222;;;;;;;;;;-1:-1:-1;40145:222:0;;;;;:::i;:::-;;:::i;56183:26::-;;;;;;;;;;-1:-1:-1;56183:26:0;;;;;;;;59024:1484;;;;;;:::i;:::-;;:::i;64552:89::-;;;;;;;;;;-1:-1:-1;64552:89:0;;;;;:::i;:::-;;:::i;64739:94::-;;;;;;;;;;-1:-1:-1;64739:94:0;;;;;:::i;:::-;;:::i;39876:207::-;;;;;;;;;;-1:-1:-1;39876:207:0;;;;;:::i;:::-;;:::i;20043:103::-;;;;;;;;;;;;;:::i;56089:23::-;;;;;;;;;;;;;;;;64947:95;;;;;;;;;;-1:-1:-1;64947:95:0;;;;;:::i;:::-;;:::i;19395:87::-;;;;;;;;;;-1:-1:-1;19468:6:0;;-1:-1:-1;;;;;19468:6:0;19395:87;;40603:104;;;;;;;;;;;;;:::i;63785:132::-;;;;;;;;;;-1:-1:-1;63785:132:0;;;;;:::i;:::-;;:::i;56149:21::-;;;;;;;;;;;;;;;;42190:155;;;;;;;;;;-1:-1:-1;42190:155:0;;;;;:::i;:::-;;:::i;60517:824::-;;;;;;;;;;-1:-1:-1;60517:824:0;;;;;:::i;:::-;;:::i;43310:323::-;;;;;;;;;;-1:-1:-1;43310:323:0;;;;;:::i;:::-;;:::i;65367:155::-;;;;;;;;;;-1:-1:-1;65367:155:0;;;;;:::i;:::-;;:::i;63544:235::-;;;;;;;;;;-1:-1:-1;63544:235:0;;;;;:::i;:::-;;:::i;62093:672::-;;;;;;;;;;-1:-1:-1;62093:672:0;;;;;:::i;:::-;;:::i;65161:101::-;;;;;;;;;;-1:-1:-1;65161:101:0;;;;;:::i;:::-;;:::i;56119:23::-;;;;;;;;;;;;;;;;57129:201;;;;;;;;;;;;;:::i;56542:22::-;;;;;;;;;;-1:-1:-1;56542:22:0;;;;-1:-1:-1;;;56542:22:0;;;;;;61576:254;;;;;;;;;;-1:-1:-1;61576:254:0;;;;;:::i;:::-;;:::i;55017:445::-;;;;;;;;;;-1:-1:-1;55017:445:0;;;;;:::i;:::-;;:::i;20301:201::-;;;;;;;;;;-1:-1:-1;20301:201:0;;;;;:::i;:::-;;:::i;56216:51::-;;;;;;;;;;-1:-1:-1;56216:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;39507:305;39609:4;-1:-1:-1;;;;;;39646:40:0;;-1:-1:-1;;;39646:40:0;;:105;;-1:-1:-1;;;;;;;39703:48:0;;-1:-1:-1;;;39703:48:0;39646:105;:158;;;-1:-1:-1;;;;;;;;;;32358:40:0;;;39768:36;39626:178;39507:305;-1:-1:-1;;39507:305:0:o;40434:100::-;40488:13;40521:5;40514:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40434:100;:::o;41947:171::-;42023:7;42043:23;42058:7;42043:14;:23::i;:::-;-1:-1:-1;42086:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42086:24:0;;41947:171::o;41464:417::-;41545:13;41561:23;41576:7;41561:14;:23::i;:::-;41545:39;;41609:5;-1:-1:-1;;;;;41603:11:0;:2;-1:-1:-1;;;;;41603:11:0;;;41595:57;;;;-1:-1:-1;;;41595:57:0;;10924:2:1;41595:57:0;;;10906:21:1;10963:2;10943:18;;;10936:30;11002:34;10982:18;;;10975:62;-1:-1:-1;;;11053:18:1;;;11046:31;11094:19;;41595:57:0;;;;;;;;;41703:5;-1:-1:-1;;;;;41687:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;41687:21:0;;:62;;;;41712:37;41729:5;41736:12;:10;:12::i;41712:37::-;41665:174;;;;-1:-1:-1;;;41665:174:0;;11326:2:1;41665:174:0;;;11308:21:1;11365:2;11345:18;;;11338:30;11404:34;11384:18;;;11377:62;11475:32;11455:18;;;11448:60;11525:19;;41665:174:0;11124:426:1;41665:174:0;41852:21;41861:2;41865:7;41852:8;:21::i;:::-;41534:347;41464:417;;:::o;11122:1151::-;11380:152;;;11323:12;11380:152;;;;;-1:-1:-1;;;;;11418:19:0;;11348:29;11418:19;;;:6;:19;;;;;;;;;11380:152;;;;;;;;;;;11567:45;11425:11;11380:152;11595:4;11601;11607;11567:6;:45::i;:::-;11545:128;;;;-1:-1:-1;;;11545:128:0;;11757:2:1;11545:128:0;;;11739:21:1;11796:2;11776:18;;;11769:30;11835:34;11815:18;;;11808:62;-1:-1:-1;;;11886:18:1;;;11879:31;11927:19;;11545:128:0;11555:397:1;11545:128:0;-1:-1:-1;;;;;11762:19:0;;;;;;:6;:19;;;;;;:26;;11786:1;11762:23;:26::i;:::-;-1:-1:-1;;;;;11740:19:0;;;;;;:6;:19;;;;;;;:48;;;;11806:126;;;;;11747:11;;11878:10;;11904:17;;11806:126;:::i;:::-;;;;;;;;12043:12;12057:23;12092:4;-1:-1:-1;;;;;12084:18:0;12134:17;12153:11;12117:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;12117:48:0;;;;;;;;;;12084:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12042:134;;;;12195:7;12187:48;;;;-1:-1:-1;;;12187:48:0;;13295:2:1;12187:48:0;;;13277:21:1;13334:2;13314:18;;;13307:30;13373;13353:18;;;13346:58;13421:18;;12187:48:0;13093:352:1;12187:48:0;12255:10;11122:1151;-1:-1:-1;;;;;;;;11122:1151:0:o;64455:89::-;19281:13;:11;:13::i;:::-;64518:11:::1;:18:::0;64455:89::o;65270:::-;19281:13;:11;:13::i;:::-;65331:10:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;65331:20:0::1;-1:-1:-1::0;;;;65331:20:0;;::::1;::::0;;;::::1;::::0;;65270:89::o;64839:100::-;19281:13;:11;:13::i;:::-;64909:16:::1;:22:::0;64839:100::o;61349:217::-;61393:7;61557:1;61532:22;:12;14269:14;;14177:114;61532:22;:26;;;;:::i;:::-;61525:33;;61349:217;:::o;42647:336::-;42842:41;42861:12;:10;:12::i;:::-;42875:7;42842:18;:41::i;:::-;42834:100;;;;-1:-1:-1;;;42834:100:0;;;;;;;:::i;:::-;42947:28;42957:4;42963:2;42967:7;42947:9;:28::i;64647:86::-;19281:13;:11;:13::i;:::-;64710:9:::1;:15:::0;64647:86::o;63409:128::-;19281:13;:11;:13::i;:::-;-1:-1:-1;;;;;63481:41:0::1;;::::0;;;:20:::1;:41;::::0;;;;:48;;-1:-1:-1;;63481:48:0::1;63525:4;63481:48;::::0;;63409:128::o;43054:185::-;43192:39;43209:4;43215:2;43219:7;43192:39;;;;;;;;;;;;:16;:39::i;65048:105::-;19281:13;:11;:13::i;:::-;65120:18:::1;:25:::0;;-1:-1:-1;;;;;;65120:25:0::1;-1:-1:-1::0;;;;;65120:25:0;;;::::1;::::0;;;::::1;::::0;;65048:105::o;40145:222::-;40217:7;40253:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40253:16:0;40288:19;40280:56;;;;-1:-1:-1;;;40280:56:0;;14329:2:1;40280:56:0;;;14311:21:1;14368:2;14348:18;;;14341:30;-1:-1:-1;;;14387:18:1;;;14380:54;14451:18;;40280:56:0;14127:348:1;59024:1484:0;65672:10;;-1:-1:-1;;;65672:10:0;;;;:19;65663:65;;;;-1:-1:-1;;;65663:65:0;;14682:2:1;65663:65:0;;;14664:21:1;;;14701:18;;;14694:30;14760:34;14740:18;;;14733:62;14812:18;;65663:65:0;14480:356:1;65663:65:0;59140:18:::1;;59124:13;:11;:13::i;:::-;:34;59116:75;;;::::0;-1:-1:-1;;;59116:75:0;;15043:2:1;59116:75:0::1;::::0;::::1;15025:21:1::0;15082:2;15062:18;;;15055:30;15121;15101:18;;;15094:58;15169:18;;59116:75:0::1;14841:352:1::0;59116:75:0::1;59205:11;;59220:1;59205:16;59202:1298;;;59240:14;::::0;::::1;;:22;;:14:::0;:22:::1;::::0;:56:::1;;-1:-1:-1::0;59277:10:0::1;64133:4:::0;64173:41;;;:20;:41;;;;;;;;59266:30:::1;;59292:4;59266:30;59240:56;59237:1051;;;59320:14;::::0;::::1;;:22;;:14:::0;:22:::1;59312:78;;;::::0;-1:-1:-1;;;59312:78:0;;15400:2:1;59312:78:0::1;::::0;::::1;15382:21:1::0;15439:2;15419:18;;;15412:30;15478:34;15458:18;;;15451:62;-1:-1:-1;;;15529:18:1;;;15522:42;15581:19;;59312:78:0::1;15198:408:1::0;59312:78:0::1;59428:13;;59413:4;:11;:28;;59405:68;;;::::0;-1:-1:-1;;;59405:68:0;;15813:2:1;59405:68:0::1;::::0;::::1;15795:21:1::0;15852:2;15832:18;;;15825:30;15891;15871:18;;;15864:58;15939:18;;59405:68:0::1;15611:352:1::0;59405:68:0::1;59493:11;::::0;:14;59490:475:::1;;59527:23;59553:31;59579:4;59553:25;:31::i;:::-;59527:57;;59624:15;59611:9;:28;59603:95;;;::::0;-1:-1:-1;;;59603:95:0;;16170:2:1;59603:95:0::1;::::0;::::1;16152:21:1::0;16209:2;16189:18;;;16182:30;16248:34;16228:18;;;16221:62;-1:-1:-1;;;16299:18:1;;;16292:52;16361:19;;59603:95:0::1;15968:418:1::0;59603:95:0::1;59726:18;::::0;-1:-1:-1;;;;;59726:18:0::1;59718:84;;;::::0;-1:-1:-1;;;59718:84:0;;16593:2:1;59718:84:0::1;::::0;::::1;16575:21:1::0;16632:2;16612:18;;;16605:30;16671:34;16651:18;;;16644:62;-1:-1:-1;;;16722:18:1;;;16715:37;16769:19;;59718:84:0::1;16391:403:1::0;59718:84:0::1;59855:18;::::0;:45:::1;::::0;59823:9:::1;::::0;;;-1:-1:-1;;;;;59855:18:0;;::::1;::::0;59886:9:::1;::::0;59823;59855:45;59823:9;59855:45;59886:9;59855:18;:45:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;;59490:475:0::1;59997:6;59993:88;60008:4;:11;60006:1;:13;59993:88;;;60043:22;60057:4;60062:1;60057:7;;;;;;;;:::i;:::-;;;;;;;60043:13;:22::i;:::-;60020:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59993:88;;;;59024:1484:::0;:::o;59237:1051::-:1;60148:14;::::0;::::1;;:23;60140:63;;;::::0;-1:-1:-1;;;60140:63:0;;17483:2:1;60140:63:0::1;::::0;::::1;17465:21:1::0;17522:2;17502:18;;;17495:30;17561;17541:18;;;17534:58;17609:18;;60140:63:0::1;17281:352:1::0;60140:63:0::1;60237:10;64133:4:::0;64173:41;;;:20;:41;;;;;;;;60218:58:::1;;;::::0;-1:-1:-1;;;60218:58:0;;17840:2:1;60218:58:0::1;::::0;::::1;17822:21:1::0;17879:2;17859:18;;;17852:30;17918:25;17898:18;;;17891:53;17961:18;;60218:58:0::1;17638:347:1::0;60218:58:0::1;59024:1484:::0;:::o;59202:1298::-:1;60450:11;;60465:1;60450:16;60442:56;;;::::0;-1:-1:-1;;;60442:56:0;;18192:2:1;60442:56:0::1;::::0;::::1;18174:21:1::0;18231:2;18211:18;;;18204:30;18270:29;18250:18;;;18243:57;18317:18;;60442:56:0::1;17990:351:1::0;64552:89:0;19281:13;:11;:13::i;:::-;64617:8:::1;:16:::0;64552:89::o;64739:94::-;19281:13;:11;:13::i;:::-;64806::::1;:19:::0;64739:94::o;39876:207::-;39948:7;-1:-1:-1;;;;;39976:19:0;;39968:73;;;;-1:-1:-1;;;39968:73:0;;18548:2:1;39968:73:0;;;18530:21:1;18587:2;18567:18;;;18560:30;18626:34;18606:18;;;18599:62;-1:-1:-1;;;18677:18:1;;;18670:39;18726:19;;39968:73:0;18346:405:1;39968:73:0;-1:-1:-1;;;;;;40059:16:0;;;;;:9;:16;;;;;;;39876:207::o;20043:103::-;19281:13;:11;:13::i;:::-;20108:30:::1;20135:1;20108:18;:30::i;:::-;20043:103::o:0;64947:95::-;19281:13;:11;:13::i;:::-;65013:14:::1;:21:::0;;-1:-1:-1;;65013:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64947:95::o;40603:104::-;40659:13;40692:7;40685:14;;;;;:::i;63785:132::-;19281:13;:11;:13::i;:::-;-1:-1:-1;;;;;63860:41:0::1;63904:5;63860:41:::0;;;:20:::1;:41;::::0;;;;:49;;-1:-1:-1;;63860:49:0::1;::::0;;63785:132::o;42190:155::-;42285:52;42304:12;:10;:12::i;:::-;42318:8;42328;42285:18;:52::i;60517:824::-;65672:10;;-1:-1:-1;;;65672:10:0;;;;:19;65663:65;;;;-1:-1:-1;;;65663:65:0;;14682:2:1;65663:65:0;;;14664:21:1;;;14701:18;;;14694:30;14760:34;14740:18;;;14733:62;14812:18;;65663:65:0;14480:356:1;65663:65:0;60639:18:::1;;60623:13;:11;:13::i;:::-;:34;60615:75;;;::::0;-1:-1:-1;;;60615:75:0;;15043:2:1;60615:75:0::1;::::0;::::1;15025:21:1::0;15082:2;15062:18;;;15055:30;15121;15101:18;;;15094:58;15169:18;;60615:75:0::1;14841:352:1::0;60615:75:0::1;60708:14;::::0;::::1;;:22;;:14:::0;:22:::1;::::0;:56:::1;;-1:-1:-1::0;60745:10:0::1;64133:4:::0;64173:41;;;:20;:41;;;;;;;;60734:30:::1;;60760:4;60734:30;60708:56;60705:608;;;60876:16;;60861:4;:11;:31;;60853:71;;;::::0;-1:-1:-1;;;60853:71:0;;15813:2:1;60853:71:0::1;::::0;::::1;15795:21:1::0;15852:2;15832:18;;;15825:30;15891;15871:18;;;15864:58;15939:18;;60853:71:0::1;15611:352:1::0;60853:71:0::1;60947:11;::::0;:16;60939:63:::1;;;::::0;-1:-1:-1;;;60939:63:0;;18958:2:1;60939:63:0::1;::::0;::::1;18940:21:1::0;18997:2;18977:18;;;18970:30;19036:34;19016:18;;;19009:62;-1:-1:-1;;;19087:18:1;;;19080:33;19130:19;;60939:63:0::1;18756:399:1::0;60939:63:0::1;61047:6;61043:84;61058:4;:11;61056:1;:13;61043:84;;;61093:18;61103:4;61108:1;61103:7;;;;;;;;:::i;:::-;;;;;;;61093:9;:18::i;:::-;61070:3:::0;::::1;::::0;::::1;:::i;:::-;;;;61043:84;;60705:608;61183:14;::::0;::::1;;:23;61175:57;;;::::0;-1:-1:-1;;;61175:57:0;;19362:2:1;61175:57:0::1;::::0;::::1;19344:21:1::0;19401:2;19381:18;;;19374:30;-1:-1:-1;;;19420:18:1;;;19413:52;19482:18;;61175:57:0::1;19160:346:1::0;43310:323:0;43484:41;43503:12;:10;:12::i;:::-;43517:7;43484:18;:41::i;:::-;43476:100;;;;-1:-1:-1;;;43476:100:0;;;;;;;:::i;:::-;43587:38;43601:4;43607:2;43611:7;43620:4;43587:13;:38::i;:::-;43310:323;;;;:::o;65367:155::-;19281:13;:11;:13::i;:::-;65446:10:::1;65430:12;65438:3:::0;65430:7:::1;:12::i;:::-;-1:-1:-1::0;;;;;65430:26:0::1;;65422:71;;;::::0;-1:-1:-1;;;65422:71:0;;19713:2:1;65422:71:0::1;::::0;::::1;19695:21:1::0;;;19732:18;;;19725:30;19791:34;19771:18;;;19764:62;19843:18;;65422:71:0::1;19511:356:1::0;65422:71:0::1;65504:10;65510:3;65504:5;:10::i;63544:235::-:0;19281:13;:11;:13::i;:::-;63636:6:::1;63632:130;63647:19;:26;63645:1;:28;63632:130;;;63740:4;63693:20;:44;63714:19;63734:1;63714:22;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;63693:44:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;63693:44:0;:51;;-1:-1:-1;;63693:51:0::1;::::0;::::1;;::::0;;;::::1;::::0;;63674:3;::::1;::::0;::::1;:::i;:::-;;;;63632:130;;62093:672:::0;62166:13;62192:23;62207:7;62192:14;:23::i;:::-;62228;62254:19;;;:10;:19;;;;;62228:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62328:18;62349:14;:12;:14::i;:::-;62328:35;;62445:4;62439:18;62461:1;62439:23;62435:72;;;-1:-1:-1;62486:9:0;62093:672;-1:-1:-1;;62093:672:0:o;62435:72::-;62611:23;;:27;62607:108;;62686:4;62692:9;62669:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62655:48;;;;62093:672;;;:::o;62607:108::-;62734:23;62749:7;62734:14;:23::i;:::-;62727:30;62093:672;-1:-1:-1;;;;62093:672:0:o;65161:101::-;19281:13;:11;:13::i;:::-;65229:18:::1;:25:::0;65161:101::o;57129:201::-;57183:13;57209:42;;;;;;;;;;;;;;;;;;;57129:201;:::o;61576:254::-;61686:7;61757:13;61773:26;61787:4;:11;61773:9;:13;;:26;;;;:::i;55017:445::-;55271:20;;55315:28;;-1:-1:-1;;;55315:28:0;;-1:-1:-1;;;;;2080:32:1;;;55315:28:0;;;2062:51:1;55142:4:0;;55271:20;;;55307:49;;;;55271:20;;55315:21;;2035:18:1;;55315:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;55307:49:0;;55303:93;;;55380:4;55373:11;;;;;55303:93;-1:-1:-1;;;;;42537:25:0;;;42513:4;42537:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;55415:39;42416:164;20301:201;19281:13;:11;:13::i;:::-;-1:-1:-1;;;;;20390:22:0;::::1;20382:73;;;::::0;-1:-1:-1;;;20382:73:0;;20834:2:1;20382:73:0::1;::::0;::::1;20816:21:1::0;20873:2;20853:18;;;20846:30;20912:34;20892:18;;;20885:62;-1:-1:-1;;;20963:18:1;;;20956:36;21009:19;;20382:73:0::1;20632:402:1::0;20382:73:0::1;20466:28;20485:8;20466:18;:28::i;14299:127::-:0;14388:19;;14406:1;14388:19;;;14299:127::o;2521:650::-;2592:22;2636:10;2658:4;2636:27;2632:508;;;2680:18;2701:8;;2680:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;2740:8:0;2951:17;2945:24;-1:-1:-1;;;;;2919:134:0;;-1:-1:-1;2632:508:0;;-1:-1:-1;2632:508:0;;-1:-1:-1;3117:10:0;2632:508;2521:650;:::o;63257:144::-;45205:4;45229:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45229:16:0;63340:53;;;;-1:-1:-1;;;63340:53:0;;14329:2:1;63340:53:0;;;14311:21:1;14368:2;14348:18;;;14341:30;-1:-1:-1;;;14387:18:1;;;14380:54;14451:18;;63340:53:0;14127:348:1;55606:161:0;55696:14;55735:24;:22;:24::i;49201:174::-;49276:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;49276:29:0;-1:-1:-1;;;;;49276:29:0;;;;;;;;:24;;49330:23;49276:24;49330:14;:23::i;:::-;-1:-1:-1;;;;;49321:46:0;;;;;;;;;;;49201:174;;:::o;12814:486::-;12992:4;-1:-1:-1;;;;;13017:20:0;;13009:70;;;;-1:-1:-1;;;13009:70:0;;21241:2:1;13009:70:0;;;21223:21:1;21280:2;21260:18;;;21253:30;21319:34;21299:18;;;21292:62;-1:-1:-1;;;21370:18:1;;;21363:35;21415:19;;13009:70:0;21039:401:1;13009:70:0;13133:159;13161:47;13180:27;13200:6;13180:19;:27::i;:::-;13161:18;:47::i;:::-;13133:159;;;;;;;;;;;;21672:25:1;;;;21745:4;21733:17;;21713:18;;;21706:45;21767:18;;;21760:34;;;21810:18;;;21803:34;;;21644:19;;13133:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13110:182:0;:6;-1:-1:-1;;;;;13110:182:0;;13090:202;;12814:486;;;;;;;:::o;6052:98::-;6110:7;6137:5;6141:1;6137;:5;:::i;:::-;6130:12;6052:98;-1:-1:-1;;;6052:98:0:o;19560:132::-;19635:12;:10;:12::i;:::-;-1:-1:-1;;;;;19624:23:0;:7;19468:6;;-1:-1:-1;;;;;19468:6:0;;19395:87;19624:7;-1:-1:-1;;;;;19624:23:0;;19616:68;;;;-1:-1:-1;;;19616:68:0;;22183:2:1;19616:68:0;;;22165:21:1;;;22202:18;;;22195:30;22261:34;22241:18;;;22234:62;22313:18;;19616:68:0;21981:356:1;45434:264:0;45527:4;45544:13;45560:23;45575:7;45560:14;:23::i;:::-;45544:39;;45613:5;-1:-1:-1;;;;;45602:16:0;:7;-1:-1:-1;;;;;45602:16:0;;:52;;;;45622:32;45639:5;45646:7;45622:16;:32::i;:::-;45602:87;;;;45682:7;-1:-1:-1;;;;;45658:31:0;:20;45670:7;45658:11;:20::i;:::-;-1:-1:-1;;;;;45658:31:0;;;45434:264;-1:-1:-1;;;;45434:264:0:o;48457:625::-;48616:4;-1:-1:-1;;;;;48589:31:0;:23;48604:7;48589:14;:23::i;:::-;-1:-1:-1;;;;;48589:31:0;;48581:81;;;;-1:-1:-1;;;48581:81:0;;22544:2:1;48581:81:0;;;22526:21:1;22583:2;22563:18;;;22556:30;22622:34;22602:18;;;22595:62;-1:-1:-1;;;22673:18:1;;;22666:35;22718:19;;48581:81:0;22342:401:1;48581:81:0;-1:-1:-1;;;;;48681:16:0;;48673:65;;;;-1:-1:-1;;;48673:65:0;;22950:2:1;48673:65:0;;;22932:21:1;22989:2;22969:18;;;22962:30;23028:34;23008:18;;;23001:62;-1:-1:-1;;;23079:18:1;;;23072:34;23123:19;;48673:65:0;22748:400:1;48673:65:0;48855:29;48872:1;48876:7;48855:8;:29::i;:::-;-1:-1:-1;;;;;48897:15:0;;;;;;:9;:15;;;;;:20;;48916:1;;48897:15;:20;;48916:1;;48897:20;:::i;:::-;;;;-1:-1:-1;;;;;;;48928:13:0;;;;;;:9;:13;;;;;:18;;48945:1;;48928:13;:18;;48945:1;;48928:18;:::i;:::-;;;;-1:-1:-1;;48957:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48957:21:0;-1:-1:-1;;;;;48957:21:0;;;;;;;;;48996:27;;48957:16;;48996:27;;;;;;;41534:347;41464:417;;:::o;61836:185::-;61911:7;61949:13;61965:25;61978:4;:11;61965:8;;:12;;:25;;;;:::i;58304:712::-;58375:11;;58390:1;58375:16;58367:56;;;;-1:-1:-1;;;58367:56:0;;18192:2:1;58367:56:0;;;18174:21:1;18231:2;18211:18;;;18204:30;18270:29;18250:18;;;18243:57;18317:18;;58367:56:0;17990:351:1;58367:56:0;58835:15;58853:22;:12;14269:14;;14177:114;58853:22;58835:40;;58886:24;:12;14388:19;;14406:1;14388:19;;;14299:127;58886:24;58921:30;58931:10;58943:7;58921:9;:30::i;:::-;58962:26;58975:7;58984:3;58962:12;:26::i;20662:191::-;20755:6;;;-1:-1:-1;;;;;20772:17:0;;;-1:-1:-1;;;;;;20772:17:0;;;;;;;20805:40;;20755:6;;;20772:17;20755:6;;20805:40;;20736:16;;20805:40;20725:128;20662:191;:::o;49518:315::-;49673:8;-1:-1:-1;;;;;49664:17:0;:5;-1:-1:-1;;;;;49664:17:0;;;49656:55;;;;-1:-1:-1;;;49656:55:0;;23355:2:1;49656:55:0;;;23337:21:1;23394:2;23374:18;;;23367:30;23433:27;23413:18;;;23406:55;23478:18;;49656:55:0;23153:349:1;49656:55:0;-1:-1:-1;;;;;49722:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;49722:46:0;;;;;;;;;;49784:41;;540::1;;;49784::0;;513:18:1;49784:41:0;;;;;;;49518:315;;;:::o;57792:503::-;57889:10;57849:20;57872:28;;;:16;:28;;;;;;57934:9;;57919:24;;57911:65;;;;-1:-1:-1;;;57911:65:0;;23709:2:1;57911:65:0;;;23691:21:1;23748:2;23728:18;;;23721:30;23787:31;23767:18;;;23760:59;23836:18;;57911:65:0;23507:353:1;57911:65:0;58000:15;58018:22;:12;14269:14;;14177:114;58018:22;58000:40;;58051:24;:12;14388:19;;14406:1;14388:19;;;14299:127;58051:24;58086:30;58096:10;58108:7;58086:9;:30::i;:::-;58127:26;58140:7;58149:3;58127:12;:26::i;:::-;58193:1;58179:12;:15;58176:60;;58197:14;;;;:::i;:::-;;;;58176:60;;;58233:1;58220:14;;58176:60;-1:-1:-1;58263:10:0;58246:28;;;;:16;:28;;;;;:41;-1:-1:-1;57792:503:0:o;44514:313::-;44670:28;44680:4;44686:2;44690:7;44670:9;:28::i;:::-;44717:47;44740:4;44746:2;44750:7;44759:4;44717:22;:47::i;:::-;44709:110;;;;-1:-1:-1;;;44709:110:0;;;;;;;:::i;47700:420::-;47760:13;47776:23;47791:7;47776:14;:23::i;:::-;47760:39;;47901:29;47918:1;47922:7;47901:8;:29::i;:::-;-1:-1:-1;;;;;47943:16:0;;;;;;:9;:16;;;;;:21;;47963:1;;47943:16;:21;;47963:1;;47943:21;:::i;:::-;;;;-1:-1:-1;;47982:16:0;;;;:7;:16;;;;;;47975:23;;-1:-1:-1;;;;;;47975:23:0;;;48016:36;47990:7;;47982:16;-1:-1:-1;;;;;48016:36:0;;;;;47982:16;;48016:36;42190:155;;:::o;40778:281::-;40851:13;40877:23;40892:7;40877:14;:23::i;:::-;40913:21;40937:10;41385:9;;;;;;;;;-1:-1:-1;41385:9:0;;;41308:94;40937:10;40913:34;;40989:1;40971:7;40965:21;:25;:86;;;;;;;;;;;;;;;;;41017:7;41026:18;:7;:16;:18::i;:::-;41000:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40958:93;40778:281;-1:-1:-1;;;40778:281:0:o;6790:98::-;6848:7;6875:5;6879:1;6875;:5;:::i;12281:410::-;12391:7;10458:100;;;;;;;;;;;;;;;;;10438:127;;;;;;;12545:12;;12580:11;;;;12624:24;;;;;12614:35;;;;;;12464:204;;;;;24688:25:1;;;24744:2;24729:18;;24722:34;;;;-1:-1:-1;;;;;24792:32:1;24787:2;24772:18;;24765:60;24856:2;24841:18;;24834:34;24675:3;24660:19;;24457:417;12464:204:0;;;;;;;;;;;;;12436:247;;;;;;12416:267;;12281:410;;;:::o;2150:258::-;2249:7;2351:20;1589:15;;;1511:101;2351:20;2322:63;;-1:-1:-1;;;2322:63:0;;;25137:27:1;25180:11;;;25173:27;;;;25216:12;;;25209:28;;;25253:12;;2322:63:0;24879:392:1;46040:110:0;46116:26;46126:2;46130:7;46116:26;;;;;;;;;;;;:9;:26::i;63032:217::-;45205:4;45229:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45229:16:0;63124:75;;;;-1:-1:-1;;;63124:75:0;;25478:2:1;63124:75:0;;;25460:21:1;25517:2;25497:18;;;25490:30;25556:34;25536:18;;;25529:62;-1:-1:-1;;;25607:18:1;;;25600:44;25661:19;;63124:75:0;25276:410:1;63124:75:0;63210:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;50621:853::-;50775:4;-1:-1:-1;;;;;50796:13:0;;22388:19;:23;50792:675;;50848:2;-1:-1:-1;;;;;50832:36:0;;50869:12;:10;:12::i;:::-;50883:4;50889:7;50898:4;50832:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50832:71:0;;;;;;;;-1:-1:-1;;50832:71:0;;;;;;;;;;;;:::i;:::-;;;50828:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51073:13:0;;51069:328;;51116:60;;-1:-1:-1;;;51116:60:0;;;;;;;:::i;51069:328::-;51347:6;51341:13;51332:6;51328:2;51324:15;51317:38;50828:584;-1:-1:-1;;;;;;50954:51:0;-1:-1:-1;;;50954:51:0;;-1:-1:-1;50947:58:0;;50792:675;-1:-1:-1;51451:4:0;50621:853;;;;;;:::o;15200:723::-;15256:13;15477:10;15473:53;;-1:-1:-1;;15504:10:0;;;;;;;;;;;;-1:-1:-1;;;15504:10:0;;;;;15200:723::o;15473:53::-;15551:5;15536:12;15592:78;15599:9;;15592:78;;15625:8;;;;:::i;:::-;;-1:-1:-1;15648:10:0;;-1:-1:-1;15656:2:0;15648:10;;:::i;:::-;;;15592:78;;;15680:19;15712:6;15702:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15702:17:0;;15680:39;;15730:154;15737:10;;15730:154;;15764:11;15774:1;15764:11;;:::i;:::-;;-1:-1:-1;15833:10:0;15841:2;15833:5;:10;:::i;:::-;15820:24;;:2;:24;:::i;:::-;15807:39;;15790:6;15797;15790:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;15790:56:0;;;;;;;;-1:-1:-1;15861:11:0;15870:2;15861:11;;:::i;:::-;;;15730:154;;46377:319;46506:18;46512:2;46516:7;46506:5;:18::i;:::-;46557:53;46588:1;46592:2;46596:7;46605:4;46557:22;:53::i;:::-;46535:153;;;;-1:-1:-1;;;46535:153:0;;;;;;;:::i;47032:439::-;-1:-1:-1;;;;;47112:16:0;;47104:61;;;;-1:-1:-1;;;47104:61:0;;27015:2:1;47104:61:0;;;26997:21:1;;;27034:18;;;27027:30;27093:34;27073:18;;;27066:62;27145:18;;47104:61:0;26813:356:1;47104:61:0;45205:4;45229:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45229:16:0;:30;47176:58;;;;-1:-1:-1;;;47176:58:0;;27376:2:1;47176:58:0;;;27358:21:1;27415:2;27395:18;;;27388:30;27454;27434:18;;;27427:58;27502:18;;47176:58:0;27174:352:1;47176:58:0;-1:-1:-1;;;;;47305:13:0;;;;;;:9;:13;;;;;:18;;47322:1;;47305:13;:18;;47322:1;;47305:18;:::i;:::-;;;;-1:-1:-1;;47334:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;47334:21:0;-1:-1:-1;;;;;47334:21:0;;;;;;;;47373:33;;47334:16;;;47373:33;;47334:16;;47373:33;42190:155;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:131::-;-1:-1:-1;;;;;667:31:1;;657:42;;647:70;;713:1;710;703:12;728:247;787:6;840:2;828:9;819:7;815:23;811:32;808:52;;;856:1;853;846:12;808:52;895:9;882:23;914:31;939:5;914:31;:::i;980:258::-;1052:1;1062:113;1076:6;1073:1;1070:13;1062:113;;;1152:11;;;1146:18;1133:11;;;1126:39;1098:2;1091:10;1062:113;;;1193:6;1190:1;1187:13;1184:48;;;-1:-1:-1;;1228:1:1;1210:16;;1203:27;980:258::o;1243:::-;1285:3;1323:5;1317:12;1350:6;1345:3;1338:19;1366:63;1422:6;1415:4;1410:3;1406:14;1399:4;1392:5;1388:16;1366:63;:::i;:::-;1483:2;1462:15;-1:-1:-1;;1458:29:1;1449:39;;;;1490:4;1445:50;;1243:258;-1:-1:-1;;1243:258:1:o;1506:220::-;1655:2;1644:9;1637:21;1618:4;1675:45;1716:2;1705:9;1701:18;1693:6;1675:45;:::i;1731:180::-;1790:6;1843:2;1831:9;1822:7;1818:23;1814:32;1811:52;;;1859:1;1856;1849:12;1811:52;-1:-1:-1;1882:23:1;;1731:180;-1:-1:-1;1731:180:1:o;2124:315::-;2192:6;2200;2253:2;2241:9;2232:7;2228:23;2224:32;2221:52;;;2269:1;2266;2259:12;2221:52;2308:9;2295:23;2327:31;2352:5;2327:31;:::i;:::-;2377:5;2429:2;2414:18;;;;2401:32;;-1:-1:-1;;;2124:315:1:o;2444:127::-;2505:10;2500:3;2496:20;2493:1;2486:31;2536:4;2533:1;2526:15;2560:4;2557:1;2550:15;2576:275;2647:2;2641:9;2712:2;2693:13;;-1:-1:-1;;2689:27:1;2677:40;;2747:18;2732:34;;2768:22;;;2729:62;2726:88;;;2794:18;;:::i;:::-;2830:2;2823:22;2576:275;;-1:-1:-1;2576:275:1:o;2856:406::-;2920:5;2954:18;2946:6;2943:30;2940:56;;;2976:18;;:::i;:::-;3014:57;3059:2;3038:15;;-1:-1:-1;;3034:29:1;3065:4;3030:40;3014:57;:::i;:::-;3005:66;;3094:6;3087:5;3080:21;3134:3;3125:6;3120:3;3116:16;3113:25;3110:45;;;3151:1;3148;3141:12;3110:45;3200:6;3195:3;3188:4;3181:5;3177:16;3164:43;3254:1;3247:4;3238:6;3231:5;3227:18;3223:29;3216:40;2856:406;;;;;:::o;3267:220::-;3309:5;3362:3;3355:4;3347:6;3343:17;3339:27;3329:55;;3380:1;3377;3370:12;3329:55;3402:79;3477:3;3468:6;3455:20;3448:4;3440:6;3436:17;3402:79;:::i;3492:758::-;3594:6;3602;3610;3618;3626;3679:3;3667:9;3658:7;3654:23;3650:33;3647:53;;;3696:1;3693;3686:12;3647:53;3735:9;3722:23;3754:31;3779:5;3754:31;:::i;:::-;3804:5;-1:-1:-1;3860:2:1;3845:18;;3832:32;3887:18;3876:30;;3873:50;;;3919:1;3916;3909:12;3873:50;3942:49;3983:7;3974:6;3963:9;3959:22;3942:49;:::i;:::-;3932:59;;;4038:2;4027:9;4023:18;4010:32;4000:42;;4089:2;4078:9;4074:18;4061:32;4051:42;;4145:3;4134:9;4130:19;4117:33;4194:4;4185:7;4181:18;4172:7;4169:31;4159:59;;4214:1;4211;4204:12;4159:59;4237:7;4227:17;;;3492:758;;;;;;;;:::o;4478:160::-;4543:20;;4599:13;;4592:21;4582:32;;4572:60;;4628:1;4625;4618:12;4572:60;4478:160;;;:::o;4643:180::-;4699:6;4752:2;4740:9;4731:7;4727:23;4723:32;4720:52;;;4768:1;4765;4758:12;4720:52;4791:26;4807:9;4791:26;:::i;5192:456::-;5269:6;5277;5285;5338:2;5326:9;5317:7;5313:23;5309:32;5306:52;;;5354:1;5351;5344:12;5306:52;5393:9;5380:23;5412:31;5437:5;5412:31;:::i;:::-;5462:5;-1:-1:-1;5519:2:1;5504:18;;5491:32;5532:33;5491:32;5532:33;:::i;:::-;5192:456;;5584:7;;-1:-1:-1;;;5638:2:1;5623:18;;;;5610:32;;5192:456::o;5913:182::-;5972:4;6005:18;5997:6;5994:30;5991:56;;;6027:18;;:::i;:::-;-1:-1:-1;6072:1:1;6068:14;6084:4;6064:25;;5913:182::o;6100:1087::-;6153:5;6206:3;6199:4;6191:6;6187:17;6183:27;6173:55;;6224:1;6221;6214:12;6173:55;6260:6;6247:20;6286:4;6310:59;6326:42;6365:2;6326:42;:::i;:::-;6310:59;:::i;:::-;6403:15;;;6489:1;6485:10;;;;6473:23;;6469:32;;;6434:12;;;;6513:15;;;6510:35;;;6541:1;6538;6531:12;6510:35;6577:2;6569:6;6565:15;6589:569;6605:6;6600:3;6597:15;6589:569;;;6691:3;6678:17;6727:18;6714:11;6711:35;6708:125;;;6787:1;6816:2;6812;6805:14;6708:125;6856:24;;6915:2;6907:11;;6903:21;-1:-1:-1;6893:119:1;;6966:1;6995:2;6991;6984:14;6893:119;7037:78;7111:3;7105:2;7101;7097:11;7084:25;7079:2;7075;7071:11;7037:78;:::i;:::-;7025:91;;-1:-1:-1;7136:12:1;;;;6622;;6589:569;;;-1:-1:-1;7176:5:1;6100:1087;-1:-1:-1;;;;;;6100:1087:1:o;7192:357::-;7286:6;7339:2;7327:9;7318:7;7314:23;7310:32;7307:52;;;7355:1;7352;7345:12;7307:52;7395:9;7382:23;7428:18;7420:6;7417:30;7414:50;;;7460:1;7457;7450:12;7414:50;7483:60;7535:7;7526:6;7515:9;7511:22;7483:60;:::i;7554:315::-;7619:6;7627;7680:2;7668:9;7659:7;7655:23;7651:32;7648:52;;;7696:1;7693;7686:12;7648:52;7735:9;7722:23;7754:31;7779:5;7754:31;:::i;:::-;7804:5;-1:-1:-1;7828:35:1;7859:2;7844:18;;7828:35;:::i;:::-;7818:45;;7554:315;;;;;:::o;7874:665::-;7969:6;7977;7985;7993;8046:3;8034:9;8025:7;8021:23;8017:33;8014:53;;;8063:1;8060;8053:12;8014:53;8102:9;8089:23;8121:31;8146:5;8121:31;:::i;:::-;8171:5;-1:-1:-1;8228:2:1;8213:18;;8200:32;8241:33;8200:32;8241:33;:::i;:::-;8293:7;-1:-1:-1;8347:2:1;8332:18;;8319:32;;-1:-1:-1;8402:2:1;8387:18;;8374:32;8429:18;8418:30;;8415:50;;;8461:1;8458;8451:12;8415:50;8484:49;8525:7;8516:6;8505:9;8501:22;8484:49;:::i;:::-;8474:59;;;7874:665;;;;;;;:::o;8544:965::-;8628:6;8659:2;8702;8690:9;8681:7;8677:23;8673:32;8670:52;;;8718:1;8715;8708:12;8670:52;8758:9;8745:23;8791:18;8783:6;8780:30;8777:50;;;8823:1;8820;8813:12;8777:50;8846:22;;8899:4;8891:13;;8887:27;-1:-1:-1;8877:55:1;;8928:1;8925;8918:12;8877:55;8964:2;8951:16;8987:59;9003:42;9042:2;9003:42;:::i;8987:59::-;9080:15;;;9162:1;9158:10;;;;9150:19;;9146:28;;;9111:12;;;;9186:19;;;9183:39;;;9218:1;9215;9208:12;9183:39;9242:11;;;;9262:217;9278:6;9273:3;9270:15;9262:217;;;9358:3;9345:17;9375:31;9400:5;9375:31;:::i;:::-;9419:18;;9295:12;;;;9457;;;;9262:217;;;9498:5;8544:965;-1:-1:-1;;;;;;;8544:965:1:o;9514:425::-;9617:6;9625;9678:2;9666:9;9657:7;9653:23;9649:32;9646:52;;;9694:1;9691;9684:12;9646:52;9734:9;9721:23;9767:18;9759:6;9756:30;9753:50;;;9799:1;9796;9789:12;9753:50;9822:60;9874:7;9865:6;9854:9;9850:22;9822:60;:::i;:::-;9812:70;9929:2;9914:18;;;;9901:32;;-1:-1:-1;;;;9514:425:1:o;9944:388::-;10012:6;10020;10073:2;10061:9;10052:7;10048:23;10044:32;10041:52;;;10089:1;10086;10079:12;10041:52;10128:9;10115:23;10147:31;10172:5;10147:31;:::i;:::-;10197:5;-1:-1:-1;10254:2:1;10239:18;;10226:32;10267:33;10226:32;10267:33;:::i;:::-;10319:7;10309:17;;;9944:388;;;;;:::o;10337:380::-;10416:1;10412:12;;;;10459;;;10480:61;;10534:4;10526:6;10522:17;10512:27;;10480:61;10587:2;10579:6;10576:14;10556:18;10553:38;10550:161;;;10633:10;10628:3;10624:20;10621:1;10614:31;10668:4;10665:1;10658:15;10696:4;10693:1;10686:15;10550:161;;10337:380;;;:::o;11957:432::-;-1:-1:-1;;;;;12214:15:1;;;12196:34;;12266:15;;12261:2;12246:18;;12239:43;12318:2;12313;12298:18;;12291:30;;;12139:4;;12338:45;;12364:18;;12356:6;12338:45;:::i;:::-;12330:53;11957:432;-1:-1:-1;;;;;11957:432:1:o;12394:415::-;12551:3;12589:6;12583:13;12605:53;12651:6;12646:3;12639:4;12631:6;12627:17;12605:53;:::i;:::-;12727:2;12723:15;;;;-1:-1:-1;;12719:53:1;12680:16;;;;12705:68;;;12800:2;12789:14;;12394:415;-1:-1:-1;;12394:415:1:o;12814:274::-;12943:3;12981:6;12975:13;12997:53;13043:6;13038:3;13031:4;13023:6;13019:17;12997:53;:::i;:::-;13066:16;;;;;12814:274;-1:-1:-1;;12814:274:1:o;13450:127::-;13511:10;13506:3;13502:20;13499:1;13492:31;13542:4;13539:1;13532:15;13566:4;13563:1;13556:15;13582:125;13622:4;13650:1;13647;13644:8;13641:34;;;13655:18;;:::i;:::-;-1:-1:-1;13692:9:1;;13582:125::o;13712:410::-;13914:2;13896:21;;;13953:2;13933:18;;;13926:30;13992:34;13987:2;13972:18;;13965:62;-1:-1:-1;;;14058:2:1;14043:18;;14036:44;14112:3;14097:19;;13712:410::o;17009:127::-;17070:10;17065:3;17061:20;17058:1;17051:31;17101:4;17098:1;17091:15;17125:4;17122:1;17115:15;17141:135;17180:3;-1:-1:-1;;17201:17:1;;17198:43;;;17221:18;;:::i;:::-;-1:-1:-1;17268:1:1;17257:13;;17141:135::o;19872:470::-;20051:3;20089:6;20083:13;20105:53;20151:6;20146:3;20139:4;20131:6;20127:17;20105:53;:::i;:::-;20221:13;;20180:16;;;;20243:57;20221:13;20180:16;20277:4;20265:17;;20243:57;:::i;:::-;20316:20;;19872:470;-1:-1:-1;;;;19872:470:1:o;20347:280::-;20446:6;20499:2;20487:9;20478:7;20474:23;20470:32;20467:52;;;20515:1;20512;20505:12;20467:52;20547:9;20541:16;20566:31;20591:5;20566:31;:::i;21848:128::-;21888:3;21919:1;21915:6;21912:1;21909:13;21906:39;;;21925:18;;:::i;:::-;-1:-1:-1;21961:9:1;;21848:128::o;23865:414::-;24067:2;24049:21;;;24106:2;24086:18;;;24079:30;24145:34;24140:2;24125:18;;24118:62;-1:-1:-1;;;24211:2:1;24196:18;;24189:48;24269:3;24254:19;;23865:414::o;24284:168::-;24324:7;24390:1;24386;24382:6;24378:14;24375:1;24372:21;24367:1;24360:9;24353:17;24349:45;24346:71;;;24397:18;;:::i;:::-;-1:-1:-1;24437:9:1;;24284:168::o;25691:489::-;-1:-1:-1;;;;;25960:15:1;;;25942:34;;26012:15;;26007:2;25992:18;;25985:43;26059:2;26044:18;;26037:34;;;26107:3;26102:2;26087:18;;26080:31;;;25885:4;;26128:46;;26154:19;;26146:6;26128:46;:::i;:::-;26120:54;25691:489;-1:-1:-1;;;;;;25691:489:1:o;26185:249::-;26254:6;26307:2;26295:9;26286:7;26282:23;26278:32;26275:52;;;26323:1;26320;26313:12;26275:52;26355:9;26349:16;26374:30;26398:5;26374:30;:::i;26439:127::-;26500:10;26495:3;26491:20;26488:1;26481:31;26531:4;26528:1;26521:15;26555:4;26552:1;26545:15;26571:120;26611:1;26637;26627:35;;26642:18;;:::i;:::-;-1:-1:-1;26676:9:1;;26571:120::o;26696:112::-;26728:1;26754;26744:35;;26759:18;;:::i;:::-;-1:-1:-1;26793:9:1;;26696:112::o

Swarm Source

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