ETH Price: $3,108.65 (+1.24%)
Gas: 6 Gwei

Token

TCG World Dragons (TCGD)
 

Overview

Max Total Supply

10,000 TCGD

Holders

2,279

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 TCGD
0xe59455b7d61dba7d70db666a8930d4152400e9a6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The TCG Dragon Cave Club is a collection of 10,000 Dragon NFTs living on OpenSea with exclusive utility in the Metaverse.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TCGDragons

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-04
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.11;



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


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

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

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

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

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

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

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

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

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

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

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

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

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



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


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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}



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


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



/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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



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



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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}




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;
    }
}


// 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 substraction 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;
        }
    }
}


contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}


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)
            );
    }
}


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
            );
    }
}


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

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


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 public proxyRegistryAddress;

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

    function setProxy(address _proxyRegistryAddress) public onlyOwner{
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    /**
     * @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 onlyOwner {
        uint256 currentTokenId = _nextTokenId.current();
        _nextTokenId.increment();
        _safeMint(_to, currentTokenId);
    }

    function claimMintTo(address _to) private {
        uint256 currentTokenId = _nextTokenId.current();
        _nextTokenId.increment();
        _safeMint(_to, currentTokenId);
        emit Dragon(_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 totalSupply() public view returns (uint256) {
        return _nextTokenId.current() - 1;
    }

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

    function tokenURI(uint256 _tokenId) override public view 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();
    }


    // game developer's account
    address public original_signer = 0x839C90C930C635ec6E0052592A402D5E341d213e;
    mapping(string => bool) public mintKeys;
    event Dragon(address indexed _to, uint256 indexed _id);
    bytes32 public session_token;
    string public abii;

    // set signer address
    function setOriginalSigner(address _original_signer) public onlyOwner{
        original_signer = _original_signer;
    }

    // player claims price
    function claimDragon(bytes32 _hashedMessage, uint8 _v, bytes32 _r, bytes32 _s, string memory _mintKey) public  returns (bool) {
        bytes memory prefix = "\x19Ethereum Signed Message:\n32";


        
        session_token = keccak256(abi.encodePacked(_mintKey));


        if(session_token != _hashedMessage){
            return false;
        }
        
        bytes32 prefixedHashMessage = keccak256(abi.encodePacked(prefix, _hashedMessage));
        address signer = ecrecover(prefixedHashMessage, _v, _r, _s);

        if(mintKeys[_mintKey] != true){
            // if the signature is signed by the owner
            if (signer == original_signer) {
                claimMintTo(msg.sender);
                mintKeys[_mintKey] = true;
                // give player (msg.sender) a prize
                return true;
            }
        }
        return false;
    }
}



/**
 * @title Creature
 * Creature - a contract for my non-fungible creatures.
 */
contract TCGDragons is ERC721Tradable {
  string _tokenURI;  

  constructor() ERC721Tradable("TCG World Dragons", "TCGD") { 
      _tokenURI = "https://tcg.blockczech.io/dragons/";
   }

  function baseTokenURI() public view override returns (string memory) {
    return _tokenURI;
  }

  function _setTokenURI(string memory tokenURI) public onlyOwner {
        _tokenURI = tokenURI;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"Dragon","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":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"tokenURI","type":"string"}],"name":"_setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"abii","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hashedMessage","type":"bytes32"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"},{"internalType":"string","name":"_mintKey","type":"string"}],"name":"claimDragon","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[{"internalType":"string","name":"","type":"string"}],"name":"mintKeys","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"original_signer","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"session_token","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_original_signer","type":"address"}],"name":"setOriginalSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"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"}]

60806040526000600660006101000a81548160ff02191690831515021790555073839c90c930c635ec6e0052592a402d5e341d213e600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b506040518060400160405280601181526020017f54434720576f726c6420447261676f6e730000000000000000000000000000008152506040518060400160405280600481526020017f54434744000000000000000000000000000000000000000000000000000000008152508181816000908051906020019062000108929190620004e4565b50806001908051906020019062000121929190620004e4565b5050506200014462000138620001fb60201b60201c565b6200021760201b60201c565b73a5409ec958c83c3f309868babaca7c86dcb077c1600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001b0600a620002dd60201b62001a471760201c565b620001c182620002f360201b60201c565b505060405180606001604052806022815260200162004c4b6022913960109080519060200190620001f4929190620004e4565b5062000739565b6000620002126200037560201b62001a5d1760201c565b905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600660009054906101000a900460ff161562000346576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033d90620005f5565b60405180910390fd5b62000357816200042860201b60201c565b6001600660006101000a81548160ff02191690831515021790555050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156200042157600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff81830151169250505062000425565b3390505b90565b6040518060800160405280604f815260200162004bfc604f91398051906020012081805190602001206040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525080519060200120306200049f620004d760201b60201c565b60001b604051602001620004b895949392919062000677565b6040516020818303038152906040528051906020012060078190555050565b6000804690508091505090565b828054620004f29062000703565b90600052602060002090601f01602090048101928262000516576000855562000562565b82601f106200053157805160ff191683800117855562000562565b8280016001018555821562000562579182015b828111156200056157825182559160200191906001019062000544565b5b50905062000571919062000575565b5090565b5b808211156200059057600081600090555060010162000576565b5090565b600082825260208201905092915050565b7f616c726561647920696e69746564000000000000000000000000000000000000600082015250565b6000620005dd600e8362000594565b9150620005ea82620005a5565b602082019050919050565b600060208201905081810360008301526200061081620005ce565b9050919050565b6000819050919050565b6200062c8162000617565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200065f8262000632565b9050919050565b620006718162000652565b82525050565b600060a0820190506200068e600083018862000621565b6200069d602083018762000621565b620006ac604083018662000621565b620006bb606083018562000666565b620006ca608083018462000621565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200071c57607f821691505b60208210811415620007335762000732620006d4565b5b50919050565b6144b380620007496000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063b88d4fde116100a0578063d547cfb71161006f578063d547cfb714610704578063e985e9c51461072f578063ee8ff70c1461076c578063f2fde38b14610797578063fe7f9aa4146107c0576101ee565b8063b88d4fde1461064a578063c87b56dd14610673578063cd7c0326146106b0578063d0dff02d146106db576101ee565b806391d67782116100dc57806391d67782146105a257806395d89b41146105cd57806397107d6d146105f8578063a22cb46514610621576101ee565b8063715018a61461050e578063755edd171461052557806387f350b81461054e5780638da5cb5b14610577576101ee565b80631ac3f25a116101855780633408e470116101545780633408e4701461044057806342842e0e1461046b5780636352211e1461049457806370a08231146104d1576101ee565b80631ac3f25a1461038457806320379ee5146103af57806323b872dd146103da5780632d0335ab14610403576101ee565b8063095ea7b3116101c1578063095ea7b3146102d55780630c53c51c146102fe5780630f7e59701461032e57806318160ddd14610359576101ee565b80630108eaef146101f357806301ffc9a71461023057806306fdde031461026d578063081812fc14610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612d21565b6107fd565b6040516102279190612dd3565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612e46565b6109e3565b6040516102649190612dd3565b60405180910390f35b34801561027957600080fd5b50610282610ac5565b60405161028f9190612efb565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612f53565b610b57565b6040516102cc9190612fc1565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190613008565b610bdc565b005b610318600480360381019061031391906130e9565b610cf4565b60405161032591906131d5565b60405180910390f35b34801561033a57600080fd5b50610343610f66565b6040516103509190612efb565b60405180910390f35b34801561036557600080fd5b5061036e610f9f565b60405161037b9190613206565b60405180910390f35b34801561039057600080fd5b50610399610fbc565b6040516103a69190612efb565b60405180910390f35b3480156103bb57600080fd5b506103c461104a565b6040516103d19190613230565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc919061324b565b611054565b005b34801561040f57600080fd5b5061042a6004803603810190610425919061329e565b6110b4565b6040516104379190613206565b60405180910390f35b34801561044c57600080fd5b506104556110fd565b6040516104629190613206565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d919061324b565b61110a565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190612f53565b61112a565b6040516104c89190612fc1565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f3919061329e565b6111dc565b6040516105059190613206565b60405180910390f35b34801561051a57600080fd5b50610523611294565b005b34801561053157600080fd5b5061054c6004803603810190610547919061329e565b61131c565b005b34801561055a57600080fd5b50610575600480360381019061057091906132cb565b6113be565b005b34801561058357600080fd5b5061058c611454565b6040516105999190612fc1565b60405180910390f35b3480156105ae57600080fd5b506105b761147e565b6040516105c49190612fc1565b60405180910390f35b3480156105d957600080fd5b506105e26114a4565b6040516105ef9190612efb565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a919061329e565b611536565b005b34801561062d57600080fd5b5061064860048036038101906106439190613340565b6115f6565b005b34801561065657600080fd5b50610671600480360381019061066c9190613380565b61160c565b005b34801561067f57600080fd5b5061069a60048036038101906106959190612f53565b61166e565b6040516106a79190612efb565b60405180910390f35b3480156106bc57600080fd5b506106c56116a8565b6040516106d29190612fc1565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd919061329e565b6116ce565b005b34801561071057600080fd5b5061071961178e565b6040516107269190612efb565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190613403565b611820565b6040516107639190612dd3565b60405180910390f35b34801561077857600080fd5b50610781611913565b60405161078e9190613230565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b9919061329e565b611919565b005b3480156107cc57600080fd5b506107e760048036038101906107e291906132cb565b611a11565b6040516107f49190612dd3565b60405180910390f35b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250905082604051602001610849919061347f565b60405160208183030381529060405280519060200120600e8190555086600e54146108785760009150506109da565b6000818860405160200161088d9291906134f3565b6040516020818303038152906040528051906020012090506000600182898989604051600081526020016040526040516108ca949392919061352a565b6020604051602081039080840390855afa1580156108ec573d6000803e3d6000fd5b50505060206040510351905060011515600d8660405161090c919061347f565b908152602001604051809103902060009054906101000a900460ff161515146109d257600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109d15761098e33611b0e565b6001600d866040516109a0919061347f565b908152602001604051809103902060006101000a81548160ff021916908315150217905550600193505050506109da565b5b600093505050505b95945050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abe5750610abd82611b78565b5b9050919050565b606060008054610ad49061359e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b009061359e565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b6282611be2565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890613642565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be78261112a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906136d4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c77611c4e565b73ffffffffffffffffffffffffffffffffffffffff161480610ca65750610ca581610ca0611c4e565b611820565b5b610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90613766565b60405180910390fd5b610cef8383611c5d565b505050565b606060006040518060600160405280600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff168152602001878152509050610d778782878787611d16565b610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad906137f8565b60405180910390fd5b610e096001600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e1f90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610e7f93929190613839565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610eb49291906138bf565b604051602081830303815290604052604051610ed091906138e7565b6000604051808303816000865af19150503d8060008114610f0d576040519150601f19603f3d011682016040523d82523d6000602084013e610f12565b606091505b509150915081610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e9061394a565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b60006001610fad600a611e35565b610fb79190613999565b905090565b600f8054610fc99061359e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff59061359e565b80156110425780601f1061101757610100808354040283529160200191611042565b820191906000526020600020905b81548152906001019060200180831161102557829003601f168201915b505050505081565b6000600754905090565b61106561105f611c4e565b82611e43565b6110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90613a3f565b60405180910390fd5b6110af838383611f21565b505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000804690508091505090565b6111258383836040518060200160405280600081525061160c565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca90613ad1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561124d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124490613b63565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61129c611c4e565b73ffffffffffffffffffffffffffffffffffffffff166112ba611454565b73ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790613bcf565b60405180910390fd5b61131a6000612188565b565b611324611c4e565b73ffffffffffffffffffffffffffffffffffffffff16611342611454565b73ffffffffffffffffffffffffffffffffffffffff1614611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90613bcf565b60405180910390fd5b60006113a4600a611e35565b90506113b0600a611a47565b6113ba828261224e565b5050565b6113c6611c4e565b73ffffffffffffffffffffffffffffffffffffffff166113e4611454565b73ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190613bcf565b60405180910390fd5b8060109080519060200190611450929190612ab5565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546114b39061359e565b80601f01602080910402602001604051908101604052809291908181526020018280546114df9061359e565b801561152c5780601f106115015761010080835404028352916020019161152c565b820191906000526020600020905b81548152906001019060200180831161150f57829003601f168201915b5050505050905090565b61153e611c4e565b73ffffffffffffffffffffffffffffffffffffffff1661155c611454565b73ffffffffffffffffffffffffffffffffffffffff16146115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a990613bcf565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611608611601611c4e565b838361226c565b5050565b61161d611617611c4e565b83611e43565b61165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390613a3f565b60405180910390fd5b611668848484846123d9565b50505050565b606061167861178e565b61168183612435565b604051602001611692929190613c3b565b6040516020818303038152906040529050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116d6611c4e565b73ffffffffffffffffffffffffffffffffffffffff166116f4611454565b73ffffffffffffffffffffffffffffffffffffffff161461174a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174190613bcf565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606010805461179d9061359e565b80601f01602080910402602001604051908101604052809291908181526020018280546117c99061359e565b80156118165780601f106117eb57610100808354040283529160200191611816565b820191906000526020600020905b8154815290600101906020018083116117f957829003601f168201915b5050505050905090565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016118989190612fc1565b602060405180830381865afa1580156118b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d99190613ca8565b73ffffffffffffffffffffffffffffffffffffffff1614156118ff57600191505061190d565b6119098484612596565b9150505b92915050565b600e5481565b611921611c4e565b73ffffffffffffffffffffffffffffffffffffffff1661193f611454565b73ffffffffffffffffffffffffffffffffffffffff1614611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90613bcf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90613d47565b60405180910390fd5b611a0e81612188565b50565b600d818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900460ff1681565b6001816000016000828254019250508190555050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611b0757600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050611b0b565b3390505b90565b6000611b1a600a611e35565b9050611b26600a611a47565b611b30828261224e565b808273ffffffffffffffffffffffffffffffffffffffff167f0a46f5d69b8116650ea98cca37177c3b556c96e940432e70a62d54c56ddaf3dd60405160405180910390a35050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000611c58611a5d565b905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cd08361112a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90613dd9565b60405180910390fd5b6001611d9a611d958761262a565b612692565b83868660405160008152602001604052604051611dba949392919061352a565b6020604051602081039080840390855afa158015611ddc573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b60008183611e2d9190613df9565b905092915050565b600081600001549050919050565b6000611e4e82611be2565b611e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8490613ec1565b60405180910390fd5b6000611e988361112a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f0757508373ffffffffffffffffffffffffffffffffffffffff16611eef84610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f185750611f178185611820565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f418261112a565b73ffffffffffffffffffffffffffffffffffffffff1614611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e90613f53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffe90613fe5565b60405180910390fd5b6120128383836126cb565b61201d600082611c5d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461206d9190613999565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120c49190613df9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121838383836126d0565b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122688282604051806020016040528060008152506126d5565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d290614051565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123cc9190612dd3565b60405180910390a3505050565b6123e4848484611f21565b6123f084848484612730565b61242f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612426906140e3565b60405180910390fd5b50505050565b6060600082141561247d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612591565b600082905060005b600082146124af57808061249890614103565b915050600a826124a8919061417b565b9150612485565b60008167ffffffffffffffff8111156124cb576124ca612bf6565b5b6040519080825280601f01601f1916602001820160405280156124fd5781602001600182028036833780820191505090505b5090505b6000851461258a576001826125169190613999565b9150600a8561252591906141ac565b60306125319190613df9565b60f81b818381518110612547576125466141dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612583919061417b565b9450612501565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060405180608001604052806043815260200161443b604391398051906020012082600001518360200151846040015180519060200120604051602001612675949392919061420c565b604051602081830303815290604052805190602001209050919050565b600061269c61104a565b826040516020016126ae92919061429d565b604051602081830303815290604052805190602001209050919050565b505050565b505050565b6126df83836128b8565b6126ec6000848484612730565b61272b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612722906140e3565b60405180910390fd5b505050565b60006127518473ffffffffffffffffffffffffffffffffffffffff16612a92565b156128ab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261277a611c4e565b8786866040518563ffffffff1660e01b815260040161279c94939291906142d4565b6020604051808303816000875af19250505080156127d857506040513d601f19601f820116820180604052508101906127d59190614335565b60015b61285b573d8060008114612808576040519150601f19603f3d011682016040523d82523d6000602084013e61280d565b606091505b50600081511415612853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284a906140e3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128b0565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f906143ae565b60405180910390fd5b61293181611be2565b15612971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129689061441a565b60405180910390fd5b61297d600083836126cb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129cd9190613df9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a8e600083836126d0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612ac19061359e565b90600052602060002090601f016020900481019282612ae35760008555612b2a565b82601f10612afc57805160ff1916838001178555612b2a565b82800160010185558215612b2a579182015b82811115612b29578251825591602001919060010190612b0e565b5b509050612b379190612b3b565b5090565b5b80821115612b54576000816000905550600101612b3c565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612b7f81612b6c565b8114612b8a57600080fd5b50565b600081359050612b9c81612b76565b92915050565b600060ff82169050919050565b612bb881612ba2565b8114612bc357600080fd5b50565b600081359050612bd581612baf565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c2e82612be5565b810181811067ffffffffffffffff82111715612c4d57612c4c612bf6565b5b80604052505050565b6000612c60612b58565b9050612c6c8282612c25565b919050565b600067ffffffffffffffff821115612c8c57612c8b612bf6565b5b612c9582612be5565b9050602081019050919050565b82818337600083830152505050565b6000612cc4612cbf84612c71565b612c56565b905082815260208101848484011115612ce057612cdf612be0565b5b612ceb848285612ca2565b509392505050565b600082601f830112612d0857612d07612bdb565b5b8135612d18848260208601612cb1565b91505092915050565b600080600080600060a08688031215612d3d57612d3c612b62565b5b6000612d4b88828901612b8d565b9550506020612d5c88828901612bc6565b9450506040612d6d88828901612b8d565b9350506060612d7e88828901612b8d565b925050608086013567ffffffffffffffff811115612d9f57612d9e612b67565b5b612dab88828901612cf3565b9150509295509295909350565b60008115159050919050565b612dcd81612db8565b82525050565b6000602082019050612de86000830184612dc4565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e2381612dee565b8114612e2e57600080fd5b50565b600081359050612e4081612e1a565b92915050565b600060208284031215612e5c57612e5b612b62565b5b6000612e6a84828501612e31565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ead578082015181840152602081019050612e92565b83811115612ebc576000848401525b50505050565b6000612ecd82612e73565b612ed78185612e7e565b9350612ee7818560208601612e8f565b612ef081612be5565b840191505092915050565b60006020820190508181036000830152612f158184612ec2565b905092915050565b6000819050919050565b612f3081612f1d565b8114612f3b57600080fd5b50565b600081359050612f4d81612f27565b92915050565b600060208284031215612f6957612f68612b62565b5b6000612f7784828501612f3e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fab82612f80565b9050919050565b612fbb81612fa0565b82525050565b6000602082019050612fd66000830184612fb2565b92915050565b612fe581612fa0565b8114612ff057600080fd5b50565b60008135905061300281612fdc565b92915050565b6000806040838503121561301f5761301e612b62565b5b600061302d85828601612ff3565b925050602061303e85828601612f3e565b9150509250929050565b600067ffffffffffffffff82111561306357613062612bf6565b5b61306c82612be5565b9050602081019050919050565b600061308c61308784613048565b612c56565b9050828152602081018484840111156130a8576130a7612be0565b5b6130b3848285612ca2565b509392505050565b600082601f8301126130d0576130cf612bdb565b5b81356130e0848260208601613079565b91505092915050565b600080600080600060a0868803121561310557613104612b62565b5b600061311388828901612ff3565b955050602086013567ffffffffffffffff81111561313457613133612b67565b5b613140888289016130bb565b945050604061315188828901612b8d565b935050606061316288828901612b8d565b925050608061317388828901612bc6565b9150509295509295909350565b600081519050919050565b600082825260208201905092915050565b60006131a782613180565b6131b1818561318b565b93506131c1818560208601612e8f565b6131ca81612be5565b840191505092915050565b600060208201905081810360008301526131ef818461319c565b905092915050565b61320081612f1d565b82525050565b600060208201905061321b60008301846131f7565b92915050565b61322a81612b6c565b82525050565b60006020820190506132456000830184613221565b92915050565b60008060006060848603121561326457613263612b62565b5b600061327286828701612ff3565b935050602061328386828701612ff3565b925050604061329486828701612f3e565b9150509250925092565b6000602082840312156132b4576132b3612b62565b5b60006132c284828501612ff3565b91505092915050565b6000602082840312156132e1576132e0612b62565b5b600082013567ffffffffffffffff8111156132ff576132fe612b67565b5b61330b84828501612cf3565b91505092915050565b61331d81612db8565b811461332857600080fd5b50565b60008135905061333a81613314565b92915050565b6000806040838503121561335757613356612b62565b5b600061336585828601612ff3565b92505060206133768582860161332b565b9150509250929050565b6000806000806080858703121561339a57613399612b62565b5b60006133a887828801612ff3565b94505060206133b987828801612ff3565b93505060406133ca87828801612f3e565b925050606085013567ffffffffffffffff8111156133eb576133ea612b67565b5b6133f7878288016130bb565b91505092959194509250565b6000806040838503121561341a57613419612b62565b5b600061342885828601612ff3565b925050602061343985828601612ff3565b9150509250929050565b600081905092915050565b600061345982612e73565b6134638185613443565b9350613473818560208601612e8f565b80840191505092915050565b600061348b828461344e565b915081905092915050565b600081905092915050565b60006134ac82613180565b6134b68185613496565b93506134c6818560208601612e8f565b80840191505092915050565b6000819050919050565b6134ed6134e882612b6c565b6134d2565b82525050565b60006134ff82856134a1565b915061350b82846134dc565b6020820191508190509392505050565b61352481612ba2565b82525050565b600060808201905061353f6000830187613221565b61354c602083018661351b565b6135596040830185613221565b6135666060830184613221565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135b657607f821691505b602082108114156135ca576135c961356f565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061362c602c83612e7e565b9150613637826135d0565b604082019050919050565b6000602082019050818103600083015261365b8161361f565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006136be602183612e7e565b91506136c982613662565b604082019050919050565b600060208201905081810360008301526136ed816136b1565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613750603883612e7e565b915061375b826136f4565b604082019050919050565b6000602082019050818103600083015261377f81613743565b9050919050565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b60006137e2602183612e7e565b91506137ed82613786565b604082019050919050565b60006020820190508181036000830152613811816137d5565b9050919050565b600061382382612f80565b9050919050565b61383381613818565b82525050565b600060608201905061384e6000830186612fb2565b61385b602083018561382a565b818103604083015261386d818461319c565b9050949350505050565b60008160601b9050919050565b600061388f82613877565b9050919050565b60006138a182613884565b9050919050565b6138b96138b482612fa0565b613896565b82525050565b60006138cb82856134a1565b91506138d782846138a8565b6014820191508190509392505050565b60006138f382846134a1565b915081905092915050565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b6000613934601c83612e7e565b915061393f826138fe565b602082019050919050565b6000602082019050818103600083015261396381613927565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139a482612f1d565b91506139af83612f1d565b9250828210156139c2576139c161396a565b5b828203905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613a29603183612e7e565b9150613a34826139cd565b604082019050919050565b60006020820190508181036000830152613a5881613a1c565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613abb602983612e7e565b9150613ac682613a5f565b604082019050919050565b60006020820190508181036000830152613aea81613aae565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613b4d602a83612e7e565b9150613b5882613af1565b604082019050919050565b60006020820190508181036000830152613b7c81613b40565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bb9602083612e7e565b9150613bc482613b83565b602082019050919050565b60006020820190508181036000830152613be881613bac565b9050919050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613c25600183613443565b9150613c3082613bef565b600182019050919050565b6000613c47828561344e565b9150613c53828461344e565b9150613c5e82613c18565b91508190509392505050565b6000613c7582612fa0565b9050919050565b613c8581613c6a565b8114613c9057600080fd5b50565b600081519050613ca281613c7c565b92915050565b600060208284031215613cbe57613cbd612b62565b5b6000613ccc84828501613c93565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d31602683612e7e565b9150613d3c82613cd5565b604082019050919050565b60006020820190508181036000830152613d6081613d24565b9050919050565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b6000613dc3602583612e7e565b9150613dce82613d67565b604082019050919050565b60006020820190508181036000830152613df281613db6565b9050919050565b6000613e0482612f1d565b9150613e0f83612f1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4457613e4361396a565b5b828201905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613eab602c83612e7e565b9150613eb682613e4f565b604082019050919050565b60006020820190508181036000830152613eda81613e9e565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613f3d602583612e7e565b9150613f4882613ee1565b604082019050919050565b60006020820190508181036000830152613f6c81613f30565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fcf602483612e7e565b9150613fda82613f73565b604082019050919050565b60006020820190508181036000830152613ffe81613fc2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061403b601983612e7e565b915061404682614005565b602082019050919050565b6000602082019050818103600083015261406a8161402e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006140cd603283612e7e565b91506140d882614071565b604082019050919050565b600060208201905081810360008301526140fc816140c0565b9050919050565b600061410e82612f1d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141415761414061396a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061418682612f1d565b915061419183612f1d565b9250826141a1576141a061414c565b5b828204905092915050565b60006141b782612f1d565b91506141c283612f1d565b9250826141d2576141d161414c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006080820190506142216000830187613221565b61422e60208301866131f7565b61423b6040830185612fb2565b6142486060830184613221565b95945050505050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000614287600283613443565b915061429282614251565b600282019050919050565b60006142a88261427a565b91506142b482856134dc565b6020820191506142c482846134dc565b6020820191508190509392505050565b60006080820190506142e96000830187612fb2565b6142f66020830186612fb2565b61430360408301856131f7565b8181036060830152614315818461319c565b905095945050505050565b60008151905061432f81612e1a565b92915050565b60006020828403121561434b5761434a612b62565b5b600061435984828501614320565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614398602083612e7e565b91506143a382614362565b602082019050919050565b600060208201905081810360008301526143c78161438b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614404601c83612e7e565b915061440f826143ce565b602082019050919050565b60006020820190508181036000830152614433816143f7565b905091905056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220878938e3547a3be2eab2c732711298bdaff6ad8ce47861ff1c63ea4a1caa038b64736f6c634300080b0033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742968747470733a2f2f7463672e626c6f636b637a6563682e696f2f647261676f6e732f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063b88d4fde116100a0578063d547cfb71161006f578063d547cfb714610704578063e985e9c51461072f578063ee8ff70c1461076c578063f2fde38b14610797578063fe7f9aa4146107c0576101ee565b8063b88d4fde1461064a578063c87b56dd14610673578063cd7c0326146106b0578063d0dff02d146106db576101ee565b806391d67782116100dc57806391d67782146105a257806395d89b41146105cd57806397107d6d146105f8578063a22cb46514610621576101ee565b8063715018a61461050e578063755edd171461052557806387f350b81461054e5780638da5cb5b14610577576101ee565b80631ac3f25a116101855780633408e470116101545780633408e4701461044057806342842e0e1461046b5780636352211e1461049457806370a08231146104d1576101ee565b80631ac3f25a1461038457806320379ee5146103af57806323b872dd146103da5780632d0335ab14610403576101ee565b8063095ea7b3116101c1578063095ea7b3146102d55780630c53c51c146102fe5780630f7e59701461032e57806318160ddd14610359576101ee565b80630108eaef146101f357806301ffc9a71461023057806306fdde031461026d578063081812fc14610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612d21565b6107fd565b6040516102279190612dd3565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612e46565b6109e3565b6040516102649190612dd3565b60405180910390f35b34801561027957600080fd5b50610282610ac5565b60405161028f9190612efb565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612f53565b610b57565b6040516102cc9190612fc1565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190613008565b610bdc565b005b610318600480360381019061031391906130e9565b610cf4565b60405161032591906131d5565b60405180910390f35b34801561033a57600080fd5b50610343610f66565b6040516103509190612efb565b60405180910390f35b34801561036557600080fd5b5061036e610f9f565b60405161037b9190613206565b60405180910390f35b34801561039057600080fd5b50610399610fbc565b6040516103a69190612efb565b60405180910390f35b3480156103bb57600080fd5b506103c461104a565b6040516103d19190613230565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc919061324b565b611054565b005b34801561040f57600080fd5b5061042a6004803603810190610425919061329e565b6110b4565b6040516104379190613206565b60405180910390f35b34801561044c57600080fd5b506104556110fd565b6040516104629190613206565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d919061324b565b61110a565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190612f53565b61112a565b6040516104c89190612fc1565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f3919061329e565b6111dc565b6040516105059190613206565b60405180910390f35b34801561051a57600080fd5b50610523611294565b005b34801561053157600080fd5b5061054c6004803603810190610547919061329e565b61131c565b005b34801561055a57600080fd5b50610575600480360381019061057091906132cb565b6113be565b005b34801561058357600080fd5b5061058c611454565b6040516105999190612fc1565b60405180910390f35b3480156105ae57600080fd5b506105b761147e565b6040516105c49190612fc1565b60405180910390f35b3480156105d957600080fd5b506105e26114a4565b6040516105ef9190612efb565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a919061329e565b611536565b005b34801561062d57600080fd5b5061064860048036038101906106439190613340565b6115f6565b005b34801561065657600080fd5b50610671600480360381019061066c9190613380565b61160c565b005b34801561067f57600080fd5b5061069a60048036038101906106959190612f53565b61166e565b6040516106a79190612efb565b60405180910390f35b3480156106bc57600080fd5b506106c56116a8565b6040516106d29190612fc1565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd919061329e565b6116ce565b005b34801561071057600080fd5b5061071961178e565b6040516107269190612efb565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190613403565b611820565b6040516107639190612dd3565b60405180910390f35b34801561077857600080fd5b50610781611913565b60405161078e9190613230565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b9919061329e565b611919565b005b3480156107cc57600080fd5b506107e760048036038101906107e291906132cb565b611a11565b6040516107f49190612dd3565b60405180910390f35b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250905082604051602001610849919061347f565b60405160208183030381529060405280519060200120600e8190555086600e54146108785760009150506109da565b6000818860405160200161088d9291906134f3565b6040516020818303038152906040528051906020012090506000600182898989604051600081526020016040526040516108ca949392919061352a565b6020604051602081039080840390855afa1580156108ec573d6000803e3d6000fd5b50505060206040510351905060011515600d8660405161090c919061347f565b908152602001604051809103902060009054906101000a900460ff161515146109d257600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109d15761098e33611b0e565b6001600d866040516109a0919061347f565b908152602001604051809103902060006101000a81548160ff021916908315150217905550600193505050506109da565b5b600093505050505b95945050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abe5750610abd82611b78565b5b9050919050565b606060008054610ad49061359e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b009061359e565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b6282611be2565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890613642565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be78261112a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906136d4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c77611c4e565b73ffffffffffffffffffffffffffffffffffffffff161480610ca65750610ca581610ca0611c4e565b611820565b5b610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90613766565b60405180910390fd5b610cef8383611c5d565b505050565b606060006040518060600160405280600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff168152602001878152509050610d778782878787611d16565b610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad906137f8565b60405180910390fd5b610e096001600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e1f90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610e7f93929190613839565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610eb49291906138bf565b604051602081830303815290604052604051610ed091906138e7565b6000604051808303816000865af19150503d8060008114610f0d576040519150601f19603f3d011682016040523d82523d6000602084013e610f12565b606091505b509150915081610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e9061394a565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b60006001610fad600a611e35565b610fb79190613999565b905090565b600f8054610fc99061359e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff59061359e565b80156110425780601f1061101757610100808354040283529160200191611042565b820191906000526020600020905b81548152906001019060200180831161102557829003601f168201915b505050505081565b6000600754905090565b61106561105f611c4e565b82611e43565b6110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90613a3f565b60405180910390fd5b6110af838383611f21565b505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000804690508091505090565b6111258383836040518060200160405280600081525061160c565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca90613ad1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561124d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124490613b63565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61129c611c4e565b73ffffffffffffffffffffffffffffffffffffffff166112ba611454565b73ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790613bcf565b60405180910390fd5b61131a6000612188565b565b611324611c4e565b73ffffffffffffffffffffffffffffffffffffffff16611342611454565b73ffffffffffffffffffffffffffffffffffffffff1614611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90613bcf565b60405180910390fd5b60006113a4600a611e35565b90506113b0600a611a47565b6113ba828261224e565b5050565b6113c6611c4e565b73ffffffffffffffffffffffffffffffffffffffff166113e4611454565b73ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190613bcf565b60405180910390fd5b8060109080519060200190611450929190612ab5565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546114b39061359e565b80601f01602080910402602001604051908101604052809291908181526020018280546114df9061359e565b801561152c5780601f106115015761010080835404028352916020019161152c565b820191906000526020600020905b81548152906001019060200180831161150f57829003601f168201915b5050505050905090565b61153e611c4e565b73ffffffffffffffffffffffffffffffffffffffff1661155c611454565b73ffffffffffffffffffffffffffffffffffffffff16146115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a990613bcf565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611608611601611c4e565b838361226c565b5050565b61161d611617611c4e565b83611e43565b61165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390613a3f565b60405180910390fd5b611668848484846123d9565b50505050565b606061167861178e565b61168183612435565b604051602001611692929190613c3b565b6040516020818303038152906040529050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116d6611c4e565b73ffffffffffffffffffffffffffffffffffffffff166116f4611454565b73ffffffffffffffffffffffffffffffffffffffff161461174a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174190613bcf565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606010805461179d9061359e565b80601f01602080910402602001604051908101604052809291908181526020018280546117c99061359e565b80156118165780601f106117eb57610100808354040283529160200191611816565b820191906000526020600020905b8154815290600101906020018083116117f957829003601f168201915b5050505050905090565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016118989190612fc1565b602060405180830381865afa1580156118b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d99190613ca8565b73ffffffffffffffffffffffffffffffffffffffff1614156118ff57600191505061190d565b6119098484612596565b9150505b92915050565b600e5481565b611921611c4e565b73ffffffffffffffffffffffffffffffffffffffff1661193f611454565b73ffffffffffffffffffffffffffffffffffffffff1614611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90613bcf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90613d47565b60405180910390fd5b611a0e81612188565b50565b600d818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900460ff1681565b6001816000016000828254019250508190555050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611b0757600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050611b0b565b3390505b90565b6000611b1a600a611e35565b9050611b26600a611a47565b611b30828261224e565b808273ffffffffffffffffffffffffffffffffffffffff167f0a46f5d69b8116650ea98cca37177c3b556c96e940432e70a62d54c56ddaf3dd60405160405180910390a35050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000611c58611a5d565b905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cd08361112a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90613dd9565b60405180910390fd5b6001611d9a611d958761262a565b612692565b83868660405160008152602001604052604051611dba949392919061352a565b6020604051602081039080840390855afa158015611ddc573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b60008183611e2d9190613df9565b905092915050565b600081600001549050919050565b6000611e4e82611be2565b611e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8490613ec1565b60405180910390fd5b6000611e988361112a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f0757508373ffffffffffffffffffffffffffffffffffffffff16611eef84610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f185750611f178185611820565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f418261112a565b73ffffffffffffffffffffffffffffffffffffffff1614611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e90613f53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffe90613fe5565b60405180910390fd5b6120128383836126cb565b61201d600082611c5d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461206d9190613999565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120c49190613df9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121838383836126d0565b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122688282604051806020016040528060008152506126d5565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d290614051565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123cc9190612dd3565b60405180910390a3505050565b6123e4848484611f21565b6123f084848484612730565b61242f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612426906140e3565b60405180910390fd5b50505050565b6060600082141561247d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612591565b600082905060005b600082146124af57808061249890614103565b915050600a826124a8919061417b565b9150612485565b60008167ffffffffffffffff8111156124cb576124ca612bf6565b5b6040519080825280601f01601f1916602001820160405280156124fd5781602001600182028036833780820191505090505b5090505b6000851461258a576001826125169190613999565b9150600a8561252591906141ac565b60306125319190613df9565b60f81b818381518110612547576125466141dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612583919061417b565b9450612501565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060405180608001604052806043815260200161443b604391398051906020012082600001518360200151846040015180519060200120604051602001612675949392919061420c565b604051602081830303815290604052805190602001209050919050565b600061269c61104a565b826040516020016126ae92919061429d565b604051602081830303815290604052805190602001209050919050565b505050565b505050565b6126df83836128b8565b6126ec6000848484612730565b61272b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612722906140e3565b60405180910390fd5b505050565b60006127518473ffffffffffffffffffffffffffffffffffffffff16612a92565b156128ab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261277a611c4e565b8786866040518563ffffffff1660e01b815260040161279c94939291906142d4565b6020604051808303816000875af19250505080156127d857506040513d601f19601f820116820180604052508101906127d59190614335565b60015b61285b573d8060008114612808576040519150601f19603f3d011682016040523d82523d6000602084013e61280d565b606091505b50600081511415612853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284a906140e3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128b0565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f906143ae565b60405180910390fd5b61293181611be2565b15612971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129689061441a565b60405180910390fd5b61297d600083836126cb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129cd9190613df9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a8e600083836126d0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612ac19061359e565b90600052602060002090601f016020900481019282612ae35760008555612b2a565b82601f10612afc57805160ff1916838001178555612b2a565b82800160010185558215612b2a579182015b82811115612b29578251825591602001919060010190612b0e565b5b509050612b379190612b3b565b5090565b5b80821115612b54576000816000905550600101612b3c565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612b7f81612b6c565b8114612b8a57600080fd5b50565b600081359050612b9c81612b76565b92915050565b600060ff82169050919050565b612bb881612ba2565b8114612bc357600080fd5b50565b600081359050612bd581612baf565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c2e82612be5565b810181811067ffffffffffffffff82111715612c4d57612c4c612bf6565b5b80604052505050565b6000612c60612b58565b9050612c6c8282612c25565b919050565b600067ffffffffffffffff821115612c8c57612c8b612bf6565b5b612c9582612be5565b9050602081019050919050565b82818337600083830152505050565b6000612cc4612cbf84612c71565b612c56565b905082815260208101848484011115612ce057612cdf612be0565b5b612ceb848285612ca2565b509392505050565b600082601f830112612d0857612d07612bdb565b5b8135612d18848260208601612cb1565b91505092915050565b600080600080600060a08688031215612d3d57612d3c612b62565b5b6000612d4b88828901612b8d565b9550506020612d5c88828901612bc6565b9450506040612d6d88828901612b8d565b9350506060612d7e88828901612b8d565b925050608086013567ffffffffffffffff811115612d9f57612d9e612b67565b5b612dab88828901612cf3565b9150509295509295909350565b60008115159050919050565b612dcd81612db8565b82525050565b6000602082019050612de86000830184612dc4565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e2381612dee565b8114612e2e57600080fd5b50565b600081359050612e4081612e1a565b92915050565b600060208284031215612e5c57612e5b612b62565b5b6000612e6a84828501612e31565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ead578082015181840152602081019050612e92565b83811115612ebc576000848401525b50505050565b6000612ecd82612e73565b612ed78185612e7e565b9350612ee7818560208601612e8f565b612ef081612be5565b840191505092915050565b60006020820190508181036000830152612f158184612ec2565b905092915050565b6000819050919050565b612f3081612f1d565b8114612f3b57600080fd5b50565b600081359050612f4d81612f27565b92915050565b600060208284031215612f6957612f68612b62565b5b6000612f7784828501612f3e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fab82612f80565b9050919050565b612fbb81612fa0565b82525050565b6000602082019050612fd66000830184612fb2565b92915050565b612fe581612fa0565b8114612ff057600080fd5b50565b60008135905061300281612fdc565b92915050565b6000806040838503121561301f5761301e612b62565b5b600061302d85828601612ff3565b925050602061303e85828601612f3e565b9150509250929050565b600067ffffffffffffffff82111561306357613062612bf6565b5b61306c82612be5565b9050602081019050919050565b600061308c61308784613048565b612c56565b9050828152602081018484840111156130a8576130a7612be0565b5b6130b3848285612ca2565b509392505050565b600082601f8301126130d0576130cf612bdb565b5b81356130e0848260208601613079565b91505092915050565b600080600080600060a0868803121561310557613104612b62565b5b600061311388828901612ff3565b955050602086013567ffffffffffffffff81111561313457613133612b67565b5b613140888289016130bb565b945050604061315188828901612b8d565b935050606061316288828901612b8d565b925050608061317388828901612bc6565b9150509295509295909350565b600081519050919050565b600082825260208201905092915050565b60006131a782613180565b6131b1818561318b565b93506131c1818560208601612e8f565b6131ca81612be5565b840191505092915050565b600060208201905081810360008301526131ef818461319c565b905092915050565b61320081612f1d565b82525050565b600060208201905061321b60008301846131f7565b92915050565b61322a81612b6c565b82525050565b60006020820190506132456000830184613221565b92915050565b60008060006060848603121561326457613263612b62565b5b600061327286828701612ff3565b935050602061328386828701612ff3565b925050604061329486828701612f3e565b9150509250925092565b6000602082840312156132b4576132b3612b62565b5b60006132c284828501612ff3565b91505092915050565b6000602082840312156132e1576132e0612b62565b5b600082013567ffffffffffffffff8111156132ff576132fe612b67565b5b61330b84828501612cf3565b91505092915050565b61331d81612db8565b811461332857600080fd5b50565b60008135905061333a81613314565b92915050565b6000806040838503121561335757613356612b62565b5b600061336585828601612ff3565b92505060206133768582860161332b565b9150509250929050565b6000806000806080858703121561339a57613399612b62565b5b60006133a887828801612ff3565b94505060206133b987828801612ff3565b93505060406133ca87828801612f3e565b925050606085013567ffffffffffffffff8111156133eb576133ea612b67565b5b6133f7878288016130bb565b91505092959194509250565b6000806040838503121561341a57613419612b62565b5b600061342885828601612ff3565b925050602061343985828601612ff3565b9150509250929050565b600081905092915050565b600061345982612e73565b6134638185613443565b9350613473818560208601612e8f565b80840191505092915050565b600061348b828461344e565b915081905092915050565b600081905092915050565b60006134ac82613180565b6134b68185613496565b93506134c6818560208601612e8f565b80840191505092915050565b6000819050919050565b6134ed6134e882612b6c565b6134d2565b82525050565b60006134ff82856134a1565b915061350b82846134dc565b6020820191508190509392505050565b61352481612ba2565b82525050565b600060808201905061353f6000830187613221565b61354c602083018661351b565b6135596040830185613221565b6135666060830184613221565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135b657607f821691505b602082108114156135ca576135c961356f565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061362c602c83612e7e565b9150613637826135d0565b604082019050919050565b6000602082019050818103600083015261365b8161361f565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006136be602183612e7e565b91506136c982613662565b604082019050919050565b600060208201905081810360008301526136ed816136b1565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613750603883612e7e565b915061375b826136f4565b604082019050919050565b6000602082019050818103600083015261377f81613743565b9050919050565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b60006137e2602183612e7e565b91506137ed82613786565b604082019050919050565b60006020820190508181036000830152613811816137d5565b9050919050565b600061382382612f80565b9050919050565b61383381613818565b82525050565b600060608201905061384e6000830186612fb2565b61385b602083018561382a565b818103604083015261386d818461319c565b9050949350505050565b60008160601b9050919050565b600061388f82613877565b9050919050565b60006138a182613884565b9050919050565b6138b96138b482612fa0565b613896565b82525050565b60006138cb82856134a1565b91506138d782846138a8565b6014820191508190509392505050565b60006138f382846134a1565b915081905092915050565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b6000613934601c83612e7e565b915061393f826138fe565b602082019050919050565b6000602082019050818103600083015261396381613927565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139a482612f1d565b91506139af83612f1d565b9250828210156139c2576139c161396a565b5b828203905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613a29603183612e7e565b9150613a34826139cd565b604082019050919050565b60006020820190508181036000830152613a5881613a1c565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613abb602983612e7e565b9150613ac682613a5f565b604082019050919050565b60006020820190508181036000830152613aea81613aae565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613b4d602a83612e7e565b9150613b5882613af1565b604082019050919050565b60006020820190508181036000830152613b7c81613b40565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bb9602083612e7e565b9150613bc482613b83565b602082019050919050565b60006020820190508181036000830152613be881613bac565b9050919050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613c25600183613443565b9150613c3082613bef565b600182019050919050565b6000613c47828561344e565b9150613c53828461344e565b9150613c5e82613c18565b91508190509392505050565b6000613c7582612fa0565b9050919050565b613c8581613c6a565b8114613c9057600080fd5b50565b600081519050613ca281613c7c565b92915050565b600060208284031215613cbe57613cbd612b62565b5b6000613ccc84828501613c93565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d31602683612e7e565b9150613d3c82613cd5565b604082019050919050565b60006020820190508181036000830152613d6081613d24565b9050919050565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b6000613dc3602583612e7e565b9150613dce82613d67565b604082019050919050565b60006020820190508181036000830152613df281613db6565b9050919050565b6000613e0482612f1d565b9150613e0f83612f1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4457613e4361396a565b5b828201905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613eab602c83612e7e565b9150613eb682613e4f565b604082019050919050565b60006020820190508181036000830152613eda81613e9e565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613f3d602583612e7e565b9150613f4882613ee1565b604082019050919050565b60006020820190508181036000830152613f6c81613f30565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fcf602483612e7e565b9150613fda82613f73565b604082019050919050565b60006020820190508181036000830152613ffe81613fc2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061403b601983612e7e565b915061404682614005565b602082019050919050565b6000602082019050818103600083015261406a8161402e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006140cd603283612e7e565b91506140d882614071565b604082019050919050565b600060208201905081810360008301526140fc816140c0565b9050919050565b600061410e82612f1d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141415761414061396a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061418682612f1d565b915061419183612f1d565b9250826141a1576141a061414c565b5b828204905092915050565b60006141b782612f1d565b91506141c283612f1d565b9250826141d2576141d161414c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006080820190506142216000830187613221565b61422e60208301866131f7565b61423b6040830185612fb2565b6142486060830184613221565b95945050505050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000614287600283613443565b915061429282614251565b600282019050919050565b60006142a88261427a565b91506142b482856134dc565b6020820191506142c482846134dc565b6020820191508190509392505050565b60006080820190506142e96000830187612fb2565b6142f66020830186612fb2565b61430360408301856131f7565b8181036060830152614315818461319c565b905095945050505050565b60008151905061432f81612e1a565b92915050565b60006020828403121561434b5761434a612b62565b5b600061435984828501614320565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614398602083612e7e565b91506143a382614362565b602082019050919050565b600060208201905081810360008301526143c78161438b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614404601c83612e7e565b915061440f826143ce565b602082019050919050565b60006020820190508181036000830152614433816143f7565b905091905056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220878938e3547a3be2eab2c732711298bdaff6ad8ce47861ff1c63ea4a1caa038b64736f6c634300080b0033

Deployed Bytecode Sourcemap

54850:404:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53850:902;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36789:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37734:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39300:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38823:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33375:1151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30638:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52120:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53638:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31647:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40050:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34952:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31756:161;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40460:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37428:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37158:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18558:103;;;;;;;;;;;;;:::i;:::-;;51524:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55151:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17907:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53414:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37903:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51252:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39593:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40716:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52309:180;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50831:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53692:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55047:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52621:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53603:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18816:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53496:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53850:902;53970:4;53987:19;:56;;;;;;;;;;;;;;;;;;;54111:8;54094:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;54084:37;;;;;;54068:13;:53;;;;54156:14;54139:13;;:31;54136:74;;54193:5;54186:12;;;;;54136:74;54230:27;54287:6;54295:14;54270:40;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54260:51;;;;;;54230:81;;54322:14;54339:42;54349:19;54370:2;54374;54378;54339:42;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54322:59;;54419:4;54397:26;;:8;54406;54397:18;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:26;;;54394:328;;54509:15;;;;;;;;;;;54499:25;;:6;:25;;;54495:216;;;54545:23;54557:10;54545:11;:23::i;:::-;54608:4;54587:8;54596;54587:18;;;;;;:::i;:::-;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;54691:4;54684:11;;;;;;;54495:216;54394:328;54739:5;54732:12;;;;;53850:902;;;;;;;;:::o;36789:305::-;36891:4;36943:25;36928:40;;;:11;:40;;;;:105;;;;37000:33;36985:48;;;:11;:48;;;;36928:105;:158;;;;37050:36;37074:11;37050:23;:36::i;:::-;36928:158;36908:178;;36789:305;;;:::o;37734:100::-;37788:13;37821:5;37814:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37734:100;:::o;39300:221::-;39376:7;39404:16;39412:7;39404;:16::i;:::-;39396:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39489:15;:24;39505:7;39489:24;;;;;;;;;;;;;;;;;;;;;39482:31;;39300:221;;;:::o;38823:411::-;38904:13;38920:23;38935:7;38920:14;:23::i;:::-;38904:39;;38968:5;38962:11;;:2;:11;;;;38954:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;39062:5;39046:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;39071:37;39088:5;39095:12;:10;:12::i;:::-;39071:16;:37::i;:::-;39046:62;39024:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;39205:21;39214:2;39218:7;39205:8;:21::i;:::-;38893:341;38823:411;;:::o;33375:1151::-;33576:12;33601:29;33633:152;;;;;;;;33671:6;:19;33678:11;33671:19;;;;;;;;;;;;;;;;33633:152;;;;33711:11;33633:152;;;;;;33756:17;33633:152;;;33601:184;;33820:45;33827:11;33840:6;33848:4;33854;33860;33820:6;:45::i;:::-;33798:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;34015:26;34039:1;34015:6;:19;34022:11;34015:19;;;;;;;;;;;;;;;;:23;;:26;;;;:::i;:::-;33993:6;:19;34000:11;33993:19;;;;;;;;;;;;;;;:48;;;;34059:126;34097:11;34131:10;34157:17;34059:126;;;;;;;;:::i;:::-;;;;;;;;34296:12;34310:23;34345:4;34337:18;;34387:17;34406:11;34370:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34337:92;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34295:134;;;;34448:7;34440:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;34508:10;34501:17;;;;;33375:1151;;;;;;;:::o;30638:43::-;;;;;;;;;;;;;;;;;;;:::o;52120:105::-;52164:7;52216:1;52191:22;:12;:20;:22::i;:::-;:26;;;;:::i;:::-;52184:33;;52120:105;:::o;53638:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31647:101::-;31698:7;31725:15;;31718:22;;31647:101;:::o;40050:339::-;40245:41;40264:12;:10;:12::i;:::-;40278:7;40245:18;:41::i;:::-;40237:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;40353:28;40363:4;40369:2;40373:7;40353:9;:28::i;:::-;40050:339;;;:::o;34952:107::-;35005:13;35039:6;:12;35046:4;35039:12;;;;;;;;;;;;;;;;35031:20;;34952:107;;;:::o;31756:161::-;31799:7;31819:10;31870:9;31864:15;;31907:2;31900:9;;;31756:161;:::o;40460:185::-;40598:39;40615:4;40621:2;40625:7;40598:39;;;;;;;;;;;;:16;:39::i;:::-;40460:185;;;:::o;37428:239::-;37500:7;37520:13;37536:7;:16;37544:7;37536:16;;;;;;;;;;;;;;;;;;;;;37520:32;;37588:1;37571:19;;:5;:19;;;;37563:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37654:5;37647:12;;;37428:239;;;:::o;37158:208::-;37230:7;37275:1;37258:19;;:5;:19;;;;37250:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;37342:9;:16;37352:5;37342:16;;;;;;;;;;;;;;;;37335:23;;37158:208;;;:::o;18558:103::-;18138:12;:10;:12::i;:::-;18127:23;;:7;:5;:7::i;:::-;:23;;;18119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18623:30:::1;18650:1;18623:18;:30::i;:::-;18558:103::o:0;51524:188::-;18138:12;:10;:12::i;:::-;18127:23;;:7;:5;:7::i;:::-;:23;;;18119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51581:22:::1;51606;:12;:20;:22::i;:::-;51581:47;;51639:24;:12;:22;:24::i;:::-;51674:30;51684:3;51689:14;51674:9;:30::i;:::-;51570:142;51524:188:::0;:::o;55151:100::-;18138:12;:10;:12::i;:::-;18127:23;;:7;:5;:7::i;:::-;:23;;;18119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55237:8:::1;55225:9;:20;;;;;;;;;;;;:::i;:::-;;55151:100:::0;:::o;17907:87::-;17953:7;17980:6;;;;;;;;;;;17973:13;;17907:87;:::o;53414:75::-;;;;;;;;;;;;;:::o;37903:104::-;37959:13;37992:7;37985:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37903:104;:::o;51252:128::-;18138:12;:10;:12::i;:::-;18127:23;;:7;:5;:7::i;:::-;:23;;;18119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51351:21:::1;51328:20;;:44;;;;;;;;;;;;;;;;;;51252:128:::0;:::o;39593:155::-;39688:52;39707:12;:10;:12::i;:::-;39721:8;39731;39688:18;:52::i;:::-;39593:155;;:::o;40716:328::-;40891:41;40910:12;:10;:12::i;:::-;40924:7;40891:18;:41::i;:::-;40883:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;40997:39;41011:4;41017:2;41021:7;41030:5;40997:13;:39::i;:::-;40716:328;;;;:::o;52309:180::-;52375:13;52432:14;:12;:14::i;:::-;52448:26;52465:8;52448:16;:26::i;:::-;52415:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52401:80;;52309:180;;;:::o;50831:35::-;;;;;;;;;;;;;:::o;53692:122::-;18138:12;:10;:12::i;:::-;18127:23;;:7;:5;:7::i;:::-;:23;;;18119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53790:16:::1;53772:15;;:34;;;;;;;;;;;;;;;;;;53692:122:::0;:::o;55047:98::-;55101:13;55130:9;55123:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55047:98;:::o;52621:445::-;52746:4;52831:27;52875:20;;;;;;;;;;;52831:65;;52952:8;52911:49;;52919:13;:21;;;52941:5;52919:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52911:49;;;52907:93;;;52984:4;52977:11;;;;;52907:93;53019:39;53042:5;53049:8;53019:22;:39::i;:::-;53012:46;;;52621:445;;;;;:::o;53603:28::-;;;;:::o;18816:201::-;18138:12;:10;:12::i;:::-;18127:23;;:7;:5;:7::i;:::-;:23;;;18119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18925:1:::1;18905:22;;:8;:22;;;;18897:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18981:28;19000:8;18981:18;:28::i;:::-;18816:201:::0;:::o;53496:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20232:127::-;20339:1;20321:7;:14;;;:19;;;;;;;;;;;20232:127;:::o;22736:650::-;22807:22;22873:4;22851:27;;:10;:27;;;22847:508;;;22895:18;22916:8;;22895:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22939:13;22955:8;;:15;;22939:31;;23207:42;23177:5;23170;23166:17;23160:24;23134:134;23124:144;;22994:289;;22847:508;;;23332:10;23315:28;;22847:508;22736:650;:::o;51720:227::-;51773:22;51798;:12;:20;:22::i;:::-;51773:47;;51831:24;:12;:22;:24::i;:::-;51866:30;51876:3;51881:14;51866:9;:30::i;:::-;51924:14;51919:3;51912:27;;;;;;;;;;;;51762:185;51720:227;:::o;16064:157::-;16149:4;16188:25;16173:40;;;:11;:40;;;;16166:47;;16064:157;;;:::o;42554:127::-;42619:4;42671:1;42643:30;;:7;:16;42651:7;42643:16;;;;;;;;;;;;;;;;;;;;;:30;;;;42636:37;;42554:127;;;:::o;53210:161::-;53300:14;53339:24;:22;:24::i;:::-;53332:31;;53210:161;:::o;46700:174::-;46802:2;46775:15;:24;46791:7;46775:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;46858:7;46854:2;46820:46;;46829:23;46844:7;46829:14;:23::i;:::-;46820:46;;;;;;;;;;;;46700:174;;:::o;35067:486::-;35245:4;35288:1;35270:20;;:6;:20;;;;35262:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;35386:159;35414:47;35433:27;35453:6;35433:19;:27::i;:::-;35414:18;:47::i;:::-;35480:4;35503;35526;35386:159;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35363:182;;:6;:182;;;35343:202;;35067:486;;;;;;;:::o;26106:98::-;26164:7;26195:1;26191;:5;;;;:::i;:::-;26184:12;;26106:98;;;;:::o;20110:114::-;20175:7;20202;:14;;;20195:21;;20110:114;;;:::o;42848:348::-;42941:4;42966:16;42974:7;42966;:16::i;:::-;42958:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43042:13;43058:23;43073:7;43058:14;:23::i;:::-;43042:39;;43111:5;43100:16;;:7;:16;;;:51;;;;43144:7;43120:31;;:20;43132:7;43120:11;:20::i;:::-;:31;;;43100:51;:87;;;;43155:32;43172:5;43179:7;43155:16;:32::i;:::-;43100:87;43092:96;;;42848:348;;;;:::o;45957:625::-;46116:4;46089:31;;:23;46104:7;46089:14;:23::i;:::-;:31;;;46081:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46195:1;46181:16;;:2;:16;;;;46173:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46251:39;46272:4;46278:2;46282:7;46251:20;:39::i;:::-;46355:29;46372:1;46376:7;46355:8;:29::i;:::-;46416:1;46397:9;:15;46407:4;46397:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;46445:1;46428:9;:13;46438:2;46428:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;46476:2;46457:7;:16;46465:7;46457:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;46515:7;46511:2;46496:27;;46505:4;46496:27;;;;;;;;;;;;46536:38;46556:4;46562:2;46566:7;46536:19;:38::i;:::-;45957:625;;;:::o;19177:191::-;19251:16;19270:6;;;;;;;;;;;19251:25;;19296:8;19287:6;;:17;;;;;;;;;;;;;;;;;;19351:8;19320:40;;19341:8;19320:40;;;;;;;;;;;;19240:128;19177:191;:::o;43538:110::-;43614:26;43624:2;43628:7;43614:26;;;;;;;;;;;;:9;:26::i;:::-;43538:110;;:::o;47016:315::-;47171:8;47162:17;;:5;:17;;;;47154:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47258:8;47220:18;:25;47239:5;47220:25;;;;;;;;;;;;;;;:35;47246:8;47220:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;47304:8;47282:41;;47297:5;47282:41;;;47314:8;47282:41;;;;;;:::i;:::-;;;;;;;;47016:315;;;:::o;41926:::-;42083:28;42093:4;42099:2;42103:7;42083:9;:28::i;:::-;42130:48;42153:4;42159:2;42163:7;42172:5;42130:22;:48::i;:::-;42122:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;41926:315;;;;:::o;20933:723::-;20989:13;21219:1;21210:5;:10;21206:53;;;21237:10;;;;;;;;;;;;;;;;;;;;;21206:53;21269:12;21284:5;21269:20;;21300:14;21325:78;21340:1;21332:4;:9;21325:78;;21358:8;;;;;:::i;:::-;;;;21389:2;21381:10;;;;;:::i;:::-;;;21325:78;;;21413:19;21445:6;21435:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21413:39;;21463:154;21479:1;21470:5;:10;21463:154;;21507:1;21497:11;;;;;:::i;:::-;;;21574:2;21566:5;:10;;;;:::i;:::-;21553:2;:24;;;;:::i;:::-;21540:39;;21523:6;21530;21523:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21603:2;21594:11;;;;;:::i;:::-;;;21463:154;;;21641:6;21627:21;;;;;20933:723;;;;:::o;39819:164::-;39916:4;39940:18;:25;39959:5;39940:25;;;;;;;;;;;;;;;:35;39966:8;39940:35;;;;;;;;;;;;;;;;;;;;;;;;;39933:42;;39819:164;;;;:::o;34534:410::-;34644:7;32711:100;;;;;;;;;;;;;;;;;32691:127;;;;;;34798:6;:12;;;34833:6;:11;;;34877:6;:24;;;34867:35;;;;;;34717:204;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34689:247;;;;;;34669:267;;34534:410;;;:::o;32286:258::-;32385:7;32487:20;:18;:20::i;:::-;32509:11;32458:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32430:106;;;;;;32410:126;;32286:258;;;:::o;49267:126::-;;;;:::o;49778:125::-;;;;:::o;43875:321::-;44005:18;44011:2;44015:7;44005:5;:18::i;:::-;44056:54;44087:1;44091:2;44095:7;44104:5;44056:22;:54::i;:::-;44034:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;43875:321;;;:::o;47896:799::-;48051:4;48072:15;:2;:13;;;:15::i;:::-;48068:620;;;48124:2;48108:36;;;48145:12;:10;:12::i;:::-;48159:4;48165:7;48174:5;48108:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48104:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48367:1;48350:6;:13;:18;48346:272;;;48393:60;;;;;;;;;;:::i;:::-;;;;;;;;48346:272;48568:6;48562:13;48553:6;48549:2;48545:15;48538:38;48104:529;48241:41;;;48231:51;;;:6;:51;;;;48224:58;;;;;48068:620;48672:4;48665:11;;47896:799;;;;;;;:::o;44532:439::-;44626:1;44612:16;;:2;:16;;;;44604:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;44685:16;44693:7;44685;:16::i;:::-;44684:17;44676:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44747:45;44776:1;44780:2;44784:7;44747:20;:45::i;:::-;44822:1;44805:9;:13;44815:2;44805:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;44853:2;44834:7;:16;44842:7;44834:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44898:7;44894:2;44873:33;;44890:1;44873:33;;;;;;;;;;;;44919:44;44947:1;44951:2;44955:7;44919:19;:44::i;:::-;44532:439;;:::o;8092:326::-;8152:4;8409:1;8387:7;:19;;;:23;8380:30;;8092:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:86::-;725:7;765:4;758:5;754:16;743:27;;690:86;;;:::o;782:118::-;853:22;869:5;853:22;:::i;:::-;846:5;843:33;833:61;;890:1;887;880:12;833:61;782:118;:::o;906:135::-;950:5;988:6;975:20;966:29;;1004:31;1029:5;1004:31;:::i;:::-;906:135;;;;:::o;1047:117::-;1156:1;1153;1146:12;1170:117;1279:1;1276;1269:12;1293:102;1334:6;1385:2;1381:7;1376:2;1369:5;1365:14;1361:28;1351:38;;1293:102;;;:::o;1401:180::-;1449:77;1446:1;1439:88;1546:4;1543:1;1536:15;1570:4;1567:1;1560:15;1587:281;1670:27;1692:4;1670:27;:::i;:::-;1662:6;1658:40;1800:6;1788:10;1785:22;1764:18;1752:10;1749:34;1746:62;1743:88;;;1811:18;;:::i;:::-;1743:88;1851:10;1847:2;1840:22;1630:238;1587:281;;:::o;1874:129::-;1908:6;1935:20;;:::i;:::-;1925:30;;1964:33;1992:4;1984:6;1964:33;:::i;:::-;1874:129;;;:::o;2009:308::-;2071:4;2161:18;2153:6;2150:30;2147:56;;;2183:18;;:::i;:::-;2147:56;2221:29;2243:6;2221:29;:::i;:::-;2213:37;;2305:4;2299;2295:15;2287:23;;2009:308;;;:::o;2323:154::-;2407:6;2402:3;2397;2384:30;2469:1;2460:6;2455:3;2451:16;2444:27;2323:154;;;:::o;2483:412::-;2561:5;2586:66;2602:49;2644:6;2602:49;:::i;:::-;2586:66;:::i;:::-;2577:75;;2675:6;2668:5;2661:21;2713:4;2706:5;2702:16;2751:3;2742:6;2737:3;2733:16;2730:25;2727:112;;;2758:79;;:::i;:::-;2727:112;2848:41;2882:6;2877:3;2872;2848:41;:::i;:::-;2567:328;2483:412;;;;;:::o;2915:340::-;2971:5;3020:3;3013:4;3005:6;3001:17;2997:27;2987:122;;3028:79;;:::i;:::-;2987:122;3145:6;3132:20;3170:79;3245:3;3237:6;3230:4;3222:6;3218:17;3170:79;:::i;:::-;3161:88;;2977:278;2915:340;;;;:::o;3261:1087::-;3364:6;3372;3380;3388;3396;3445:3;3433:9;3424:7;3420:23;3416:33;3413:120;;;3452:79;;:::i;:::-;3413:120;3572:1;3597:53;3642:7;3633:6;3622:9;3618:22;3597:53;:::i;:::-;3587:63;;3543:117;3699:2;3725:51;3768:7;3759:6;3748:9;3744:22;3725:51;:::i;:::-;3715:61;;3670:116;3825:2;3851:53;3896:7;3887:6;3876:9;3872:22;3851:53;:::i;:::-;3841:63;;3796:118;3953:2;3979:53;4024:7;4015:6;4004:9;4000:22;3979:53;:::i;:::-;3969:63;;3924:118;4109:3;4098:9;4094:19;4081:33;4141:18;4133:6;4130:30;4127:117;;;4163:79;;:::i;:::-;4127:117;4268:63;4323:7;4314:6;4303:9;4299:22;4268:63;:::i;:::-;4258:73;;4052:289;3261:1087;;;;;;;;:::o;4354:90::-;4388:7;4431:5;4424:13;4417:21;4406:32;;4354:90;;;:::o;4450:109::-;4531:21;4546:5;4531:21;:::i;:::-;4526:3;4519:34;4450:109;;:::o;4565:210::-;4652:4;4690:2;4679:9;4675:18;4667:26;;4703:65;4765:1;4754:9;4750:17;4741:6;4703:65;:::i;:::-;4565:210;;;;:::o;4781:149::-;4817:7;4857:66;4850:5;4846:78;4835:89;;4781:149;;;:::o;4936:120::-;5008:23;5025:5;5008:23;:::i;:::-;5001:5;4998:34;4988:62;;5046:1;5043;5036:12;4988:62;4936:120;:::o;5062:137::-;5107:5;5145:6;5132:20;5123:29;;5161:32;5187:5;5161:32;:::i;:::-;5062:137;;;;:::o;5205:327::-;5263:6;5312:2;5300:9;5291:7;5287:23;5283:32;5280:119;;;5318:79;;:::i;:::-;5280:119;5438:1;5463:52;5507:7;5498:6;5487:9;5483:22;5463:52;:::i;:::-;5453:62;;5409:116;5205:327;;;;:::o;5538:99::-;5590:6;5624:5;5618:12;5608:22;;5538:99;;;:::o;5643:169::-;5727:11;5761:6;5756:3;5749:19;5801:4;5796:3;5792:14;5777:29;;5643:169;;;;:::o;5818:307::-;5886:1;5896:113;5910:6;5907:1;5904:13;5896:113;;;5995:1;5990:3;5986:11;5980:18;5976:1;5971:3;5967:11;5960:39;5932:2;5929:1;5925:10;5920:15;;5896:113;;;6027:6;6024:1;6021:13;6018:101;;;6107:1;6098:6;6093:3;6089:16;6082:27;6018:101;5867:258;5818:307;;;:::o;6131:364::-;6219:3;6247:39;6280:5;6247:39;:::i;:::-;6302:71;6366:6;6361:3;6302:71;:::i;:::-;6295:78;;6382:52;6427:6;6422:3;6415:4;6408:5;6404:16;6382:52;:::i;:::-;6459:29;6481:6;6459:29;:::i;:::-;6454:3;6450:39;6443:46;;6223:272;6131:364;;;;:::o;6501:313::-;6614:4;6652:2;6641:9;6637:18;6629:26;;6701:9;6695:4;6691:20;6687:1;6676:9;6672:17;6665:47;6729:78;6802:4;6793:6;6729:78;:::i;:::-;6721:86;;6501:313;;;;:::o;6820:77::-;6857:7;6886:5;6875:16;;6820:77;;;:::o;6903:122::-;6976:24;6994:5;6976:24;:::i;:::-;6969:5;6966:35;6956:63;;7015:1;7012;7005:12;6956:63;6903:122;:::o;7031:139::-;7077:5;7115:6;7102:20;7093:29;;7131:33;7158:5;7131:33;:::i;:::-;7031:139;;;;:::o;7176:329::-;7235:6;7284:2;7272:9;7263:7;7259:23;7255:32;7252:119;;;7290:79;;:::i;:::-;7252:119;7410:1;7435:53;7480:7;7471:6;7460:9;7456:22;7435:53;:::i;:::-;7425:63;;7381:117;7176:329;;;;:::o;7511:126::-;7548:7;7588:42;7581:5;7577:54;7566:65;;7511:126;;;:::o;7643:96::-;7680:7;7709:24;7727:5;7709:24;:::i;:::-;7698:35;;7643:96;;;:::o;7745:118::-;7832:24;7850:5;7832:24;:::i;:::-;7827:3;7820:37;7745:118;;:::o;7869:222::-;7962:4;8000:2;7989:9;7985:18;7977:26;;8013:71;8081:1;8070:9;8066:17;8057:6;8013:71;:::i;:::-;7869:222;;;;:::o;8097:122::-;8170:24;8188:5;8170:24;:::i;:::-;8163:5;8160:35;8150:63;;8209:1;8206;8199:12;8150:63;8097:122;:::o;8225:139::-;8271:5;8309:6;8296:20;8287:29;;8325:33;8352:5;8325:33;:::i;:::-;8225:139;;;;:::o;8370:474::-;8438:6;8446;8495:2;8483:9;8474:7;8470:23;8466:32;8463:119;;;8501:79;;:::i;:::-;8463:119;8621:1;8646:53;8691:7;8682:6;8671:9;8667:22;8646:53;:::i;:::-;8636:63;;8592:117;8748:2;8774:53;8819:7;8810:6;8799:9;8795:22;8774:53;:::i;:::-;8764:63;;8719:118;8370:474;;;;;:::o;8850:307::-;8911:4;9001:18;8993:6;8990:30;8987:56;;;9023:18;;:::i;:::-;8987:56;9061:29;9083:6;9061:29;:::i;:::-;9053:37;;9145:4;9139;9135:15;9127:23;;8850:307;;;:::o;9163:410::-;9240:5;9265:65;9281:48;9322:6;9281:48;:::i;:::-;9265:65;:::i;:::-;9256:74;;9353:6;9346:5;9339:21;9391:4;9384:5;9380:16;9429:3;9420:6;9415:3;9411:16;9408:25;9405:112;;;9436:79;;:::i;:::-;9405:112;9526:41;9560:6;9555:3;9550;9526:41;:::i;:::-;9246:327;9163:410;;;;;:::o;9592:338::-;9647:5;9696:3;9689:4;9681:6;9677:17;9673:27;9663:122;;9704:79;;:::i;:::-;9663:122;9821:6;9808:20;9846:78;9920:3;9912:6;9905:4;9897:6;9893:17;9846:78;:::i;:::-;9837:87;;9653:277;9592:338;;;;:::o;9936:1085::-;10038:6;10046;10054;10062;10070;10119:3;10107:9;10098:7;10094:23;10090:33;10087:120;;;10126:79;;:::i;:::-;10087:120;10246:1;10271:53;10316:7;10307:6;10296:9;10292:22;10271:53;:::i;:::-;10261:63;;10217:117;10401:2;10390:9;10386:18;10373:32;10432:18;10424:6;10421:30;10418:117;;;10454:79;;:::i;:::-;10418:117;10559:62;10613:7;10604:6;10593:9;10589:22;10559:62;:::i;:::-;10549:72;;10344:287;10670:2;10696:53;10741:7;10732:6;10721:9;10717:22;10696:53;:::i;:::-;10686:63;;10641:118;10798:2;10824:53;10869:7;10860:6;10849:9;10845:22;10824:53;:::i;:::-;10814:63;;10769:118;10926:3;10953:51;10996:7;10987:6;10976:9;10972:22;10953:51;:::i;:::-;10943:61;;10897:117;9936:1085;;;;;;;;:::o;11027:98::-;11078:6;11112:5;11106:12;11096:22;;11027:98;;;:::o;11131:168::-;11214:11;11248:6;11243:3;11236:19;11288:4;11283:3;11279:14;11264:29;;11131:168;;;;:::o;11305:360::-;11391:3;11419:38;11451:5;11419:38;:::i;:::-;11473:70;11536:6;11531:3;11473:70;:::i;:::-;11466:77;;11552:52;11597:6;11592:3;11585:4;11578:5;11574:16;11552:52;:::i;:::-;11629:29;11651:6;11629:29;:::i;:::-;11624:3;11620:39;11613:46;;11395:270;11305:360;;;;:::o;11671:309::-;11782:4;11820:2;11809:9;11805:18;11797:26;;11869:9;11863:4;11859:20;11855:1;11844:9;11840:17;11833:47;11897:76;11968:4;11959:6;11897:76;:::i;:::-;11889:84;;11671:309;;;;:::o;11986:118::-;12073:24;12091:5;12073:24;:::i;:::-;12068:3;12061:37;11986:118;;:::o;12110:222::-;12203:4;12241:2;12230:9;12226:18;12218:26;;12254:71;12322:1;12311:9;12307:17;12298:6;12254:71;:::i;:::-;12110:222;;;;:::o;12338:118::-;12425:24;12443:5;12425:24;:::i;:::-;12420:3;12413:37;12338:118;;:::o;12462:222::-;12555:4;12593:2;12582:9;12578:18;12570:26;;12606:71;12674:1;12663:9;12659:17;12650:6;12606:71;:::i;:::-;12462:222;;;;:::o;12690:619::-;12767:6;12775;12783;12832:2;12820:9;12811:7;12807:23;12803:32;12800:119;;;12838:79;;:::i;:::-;12800:119;12958:1;12983:53;13028:7;13019:6;13008:9;13004:22;12983:53;:::i;:::-;12973:63;;12929:117;13085:2;13111:53;13156:7;13147:6;13136:9;13132:22;13111:53;:::i;:::-;13101:63;;13056:118;13213:2;13239:53;13284:7;13275:6;13264:9;13260:22;13239:53;:::i;:::-;13229:63;;13184:118;12690:619;;;;;:::o;13315:329::-;13374:6;13423:2;13411:9;13402:7;13398:23;13394:32;13391:119;;;13429:79;;:::i;:::-;13391:119;13549:1;13574:53;13619:7;13610:6;13599:9;13595:22;13574:53;:::i;:::-;13564:63;;13520:117;13315:329;;;;:::o;13650:509::-;13719:6;13768:2;13756:9;13747:7;13743:23;13739:32;13736:119;;;13774:79;;:::i;:::-;13736:119;13922:1;13911:9;13907:17;13894:31;13952:18;13944:6;13941:30;13938:117;;;13974:79;;:::i;:::-;13938:117;14079:63;14134:7;14125:6;14114:9;14110:22;14079:63;:::i;:::-;14069:73;;13865:287;13650:509;;;;:::o;14165:116::-;14235:21;14250:5;14235:21;:::i;:::-;14228:5;14225:32;14215:60;;14271:1;14268;14261:12;14215:60;14165:116;:::o;14287:133::-;14330:5;14368:6;14355:20;14346:29;;14384:30;14408:5;14384:30;:::i;:::-;14287:133;;;;:::o;14426:468::-;14491:6;14499;14548:2;14536:9;14527:7;14523:23;14519:32;14516:119;;;14554:79;;:::i;:::-;14516:119;14674:1;14699:53;14744:7;14735:6;14724:9;14720:22;14699:53;:::i;:::-;14689:63;;14645:117;14801:2;14827:50;14869:7;14860:6;14849:9;14845:22;14827:50;:::i;:::-;14817:60;;14772:115;14426:468;;;;;:::o;14900:943::-;14995:6;15003;15011;15019;15068:3;15056:9;15047:7;15043:23;15039:33;15036:120;;;15075:79;;:::i;:::-;15036:120;15195:1;15220:53;15265:7;15256:6;15245:9;15241:22;15220:53;:::i;:::-;15210:63;;15166:117;15322:2;15348:53;15393:7;15384:6;15373:9;15369:22;15348:53;:::i;:::-;15338:63;;15293:118;15450:2;15476:53;15521:7;15512:6;15501:9;15497:22;15476:53;:::i;:::-;15466:63;;15421:118;15606:2;15595:9;15591:18;15578:32;15637:18;15629:6;15626:30;15623:117;;;15659:79;;:::i;:::-;15623:117;15764:62;15818:7;15809:6;15798:9;15794:22;15764:62;:::i;:::-;15754:72;;15549:287;14900:943;;;;;;;:::o;15849:474::-;15917:6;15925;15974:2;15962:9;15953:7;15949:23;15945:32;15942:119;;;15980:79;;:::i;:::-;15942:119;16100:1;16125:53;16170:7;16161:6;16150:9;16146:22;16125:53;:::i;:::-;16115:63;;16071:117;16227:2;16253:53;16298:7;16289:6;16278:9;16274:22;16253:53;:::i;:::-;16243:63;;16198:118;15849:474;;;;;:::o;16329:148::-;16431:11;16468:3;16453:18;;16329:148;;;;:::o;16483:377::-;16589:3;16617:39;16650:5;16617:39;:::i;:::-;16672:89;16754:6;16749:3;16672:89;:::i;:::-;16665:96;;16770:52;16815:6;16810:3;16803:4;16796:5;16792:16;16770:52;:::i;:::-;16847:6;16842:3;16838:16;16831:23;;16593:267;16483:377;;;;:::o;16866:275::-;16998:3;17020:95;17111:3;17102:6;17020:95;:::i;:::-;17013:102;;17132:3;17125:10;;16866:275;;;;:::o;17147:147::-;17248:11;17285:3;17270:18;;17147:147;;;;:::o;17300:373::-;17404:3;17432:38;17464:5;17432:38;:::i;:::-;17486:88;17567:6;17562:3;17486:88;:::i;:::-;17479:95;;17583:52;17628:6;17623:3;17616:4;17609:5;17605:16;17583:52;:::i;:::-;17660:6;17655:3;17651:16;17644:23;;17408:265;17300:373;;;;:::o;17679:79::-;17718:7;17747:5;17736:16;;17679:79;;;:::o;17764:157::-;17869:45;17889:24;17907:5;17889:24;:::i;:::-;17869:45;:::i;:::-;17864:3;17857:58;17764:157;;:::o;17927:412::-;18085:3;18107:93;18196:3;18187:6;18107:93;:::i;:::-;18100:100;;18210:75;18281:3;18272:6;18210:75;:::i;:::-;18310:2;18305:3;18301:12;18294:19;;18330:3;18323:10;;17927:412;;;;;:::o;18345:112::-;18428:22;18444:5;18428:22;:::i;:::-;18423:3;18416:35;18345:112;;:::o;18463:545::-;18636:4;18674:3;18663:9;18659:19;18651:27;;18688:71;18756:1;18745:9;18741:17;18732:6;18688:71;:::i;:::-;18769:68;18833:2;18822:9;18818:18;18809:6;18769:68;:::i;:::-;18847:72;18915:2;18904:9;18900:18;18891:6;18847:72;:::i;:::-;18929;18997:2;18986:9;18982:18;18973:6;18929:72;:::i;:::-;18463:545;;;;;;;:::o;19014:180::-;19062:77;19059:1;19052:88;19159:4;19156:1;19149:15;19183:4;19180:1;19173:15;19200:320;19244:6;19281:1;19275:4;19271:12;19261:22;;19328:1;19322:4;19318:12;19349:18;19339:81;;19405:4;19397:6;19393:17;19383:27;;19339:81;19467:2;19459:6;19456:14;19436:18;19433:38;19430:84;;;19486:18;;:::i;:::-;19430:84;19251:269;19200:320;;;:::o;19526:231::-;19666:34;19662:1;19654:6;19650:14;19643:58;19735:14;19730:2;19722:6;19718:15;19711:39;19526:231;:::o;19763:366::-;19905:3;19926:67;19990:2;19985:3;19926:67;:::i;:::-;19919:74;;20002:93;20091:3;20002:93;:::i;:::-;20120:2;20115:3;20111:12;20104:19;;19763:366;;;:::o;20135:419::-;20301:4;20339:2;20328:9;20324:18;20316:26;;20388:9;20382:4;20378:20;20374:1;20363:9;20359:17;20352:47;20416:131;20542:4;20416:131;:::i;:::-;20408:139;;20135:419;;;:::o;20560:220::-;20700:34;20696:1;20688:6;20684:14;20677:58;20769:3;20764:2;20756:6;20752:15;20745:28;20560:220;:::o;20786:366::-;20928:3;20949:67;21013:2;21008:3;20949:67;:::i;:::-;20942:74;;21025:93;21114:3;21025:93;:::i;:::-;21143:2;21138:3;21134:12;21127:19;;20786:366;;;:::o;21158:419::-;21324:4;21362:2;21351:9;21347:18;21339:26;;21411:9;21405:4;21401:20;21397:1;21386:9;21382:17;21375:47;21439:131;21565:4;21439:131;:::i;:::-;21431:139;;21158:419;;;:::o;21583:243::-;21723:34;21719:1;21711:6;21707:14;21700:58;21792:26;21787:2;21779:6;21775:15;21768:51;21583:243;:::o;21832:366::-;21974:3;21995:67;22059:2;22054:3;21995:67;:::i;:::-;21988:74;;22071:93;22160:3;22071:93;:::i;:::-;22189:2;22184:3;22180:12;22173:19;;21832:366;;;:::o;22204:419::-;22370:4;22408:2;22397:9;22393:18;22385:26;;22457:9;22451:4;22447:20;22443:1;22432:9;22428:17;22421:47;22485:131;22611:4;22485:131;:::i;:::-;22477:139;;22204:419;;;:::o;22629:220::-;22769:34;22765:1;22757:6;22753:14;22746:58;22838:3;22833:2;22825:6;22821:15;22814:28;22629:220;:::o;22855:366::-;22997:3;23018:67;23082:2;23077:3;23018:67;:::i;:::-;23011:74;;23094:93;23183:3;23094:93;:::i;:::-;23212:2;23207:3;23203:12;23196:19;;22855:366;;;:::o;23227:419::-;23393:4;23431:2;23420:9;23416:18;23408:26;;23480:9;23474:4;23470:20;23466:1;23455:9;23451:17;23444:47;23508:131;23634:4;23508:131;:::i;:::-;23500:139;;23227:419;;;:::o;23652:104::-;23697:7;23726:24;23744:5;23726:24;:::i;:::-;23715:35;;23652:104;;;:::o;23762:142::-;23865:32;23891:5;23865:32;:::i;:::-;23860:3;23853:45;23762:142;;:::o;23910:561::-;24093:4;24131:2;24120:9;24116:18;24108:26;;24144:71;24212:1;24201:9;24197:17;24188:6;24144:71;:::i;:::-;24225:88;24309:2;24298:9;24294:18;24285:6;24225:88;:::i;:::-;24360:9;24354:4;24350:20;24345:2;24334:9;24330:18;24323:48;24388:76;24459:4;24450:6;24388:76;:::i;:::-;24380:84;;23910:561;;;;;;:::o;24477:94::-;24510:8;24558:5;24554:2;24550:14;24529:35;;24477:94;;;:::o;24577:::-;24616:7;24645:20;24659:5;24645:20;:::i;:::-;24634:31;;24577:94;;;:::o;24677:100::-;24716:7;24745:26;24765:5;24745:26;:::i;:::-;24734:37;;24677:100;;;:::o;24783:157::-;24888:45;24908:24;24926:5;24908:24;:::i;:::-;24888:45;:::i;:::-;24883:3;24876:58;24783:157;;:::o;24946:412::-;25104:3;25126:93;25215:3;25206:6;25126:93;:::i;:::-;25119:100;;25229:75;25300:3;25291:6;25229:75;:::i;:::-;25329:2;25324:3;25320:12;25313:19;;25349:3;25342:10;;24946:412;;;;;:::o;25364:271::-;25494:3;25516:93;25605:3;25596:6;25516:93;:::i;:::-;25509:100;;25626:3;25619:10;;25364:271;;;;:::o;25641:178::-;25781:30;25777:1;25769:6;25765:14;25758:54;25641:178;:::o;25825:366::-;25967:3;25988:67;26052:2;26047:3;25988:67;:::i;:::-;25981:74;;26064:93;26153:3;26064:93;:::i;:::-;26182:2;26177:3;26173:12;26166:19;;25825:366;;;:::o;26197:419::-;26363:4;26401:2;26390:9;26386:18;26378:26;;26450:9;26444:4;26440:20;26436:1;26425:9;26421:17;26414:47;26478:131;26604:4;26478:131;:::i;:::-;26470:139;;26197:419;;;:::o;26622:180::-;26670:77;26667:1;26660:88;26767:4;26764:1;26757:15;26791:4;26788:1;26781:15;26808:191;26848:4;26868:20;26886:1;26868:20;:::i;:::-;26863:25;;26902:20;26920:1;26902:20;:::i;:::-;26897:25;;26941:1;26938;26935:8;26932:34;;;26946:18;;:::i;:::-;26932:34;26991:1;26988;26984:9;26976:17;;26808:191;;;;:::o;27005:236::-;27145:34;27141:1;27133:6;27129:14;27122:58;27214:19;27209:2;27201:6;27197:15;27190:44;27005:236;:::o;27247:366::-;27389:3;27410:67;27474:2;27469:3;27410:67;:::i;:::-;27403:74;;27486:93;27575:3;27486:93;:::i;:::-;27604:2;27599:3;27595:12;27588:19;;27247:366;;;:::o;27619:419::-;27785:4;27823:2;27812:9;27808:18;27800:26;;27872:9;27866:4;27862:20;27858:1;27847:9;27843:17;27836:47;27900:131;28026:4;27900:131;:::i;:::-;27892:139;;27619:419;;;:::o;28044:228::-;28184:34;28180:1;28172:6;28168:14;28161:58;28253:11;28248:2;28240:6;28236:15;28229:36;28044:228;:::o;28278:366::-;28420:3;28441:67;28505:2;28500:3;28441:67;:::i;:::-;28434:74;;28517:93;28606:3;28517:93;:::i;:::-;28635:2;28630:3;28626:12;28619:19;;28278:366;;;:::o;28650:419::-;28816:4;28854:2;28843:9;28839:18;28831:26;;28903:9;28897:4;28893:20;28889:1;28878:9;28874:17;28867:47;28931:131;29057:4;28931:131;:::i;:::-;28923:139;;28650:419;;;:::o;29075:229::-;29215:34;29211:1;29203:6;29199:14;29192:58;29284:12;29279:2;29271:6;29267:15;29260:37;29075:229;:::o;29310:366::-;29452:3;29473:67;29537:2;29532:3;29473:67;:::i;:::-;29466:74;;29549:93;29638:3;29549:93;:::i;:::-;29667:2;29662:3;29658:12;29651:19;;29310:366;;;:::o;29682:419::-;29848:4;29886:2;29875:9;29871:18;29863:26;;29935:9;29929:4;29925:20;29921:1;29910:9;29906:17;29899:47;29963:131;30089:4;29963:131;:::i;:::-;29955:139;;29682:419;;;:::o;30107:182::-;30247:34;30243:1;30235:6;30231:14;30224:58;30107:182;:::o;30295:366::-;30437:3;30458:67;30522:2;30517:3;30458:67;:::i;:::-;30451:74;;30534:93;30623:3;30534:93;:::i;:::-;30652:2;30647:3;30643:12;30636:19;;30295:366;;;:::o;30667:419::-;30833:4;30871:2;30860:9;30856:18;30848:26;;30920:9;30914:4;30910:20;30906:1;30895:9;30891:17;30884:47;30948:131;31074:4;30948:131;:::i;:::-;30940:139;;30667:419;;;:::o;31092:151::-;31232:3;31228:1;31220:6;31216:14;31209:27;31092:151;:::o;31249:400::-;31409:3;31430:84;31512:1;31507:3;31430:84;:::i;:::-;31423:91;;31523:93;31612:3;31523:93;:::i;:::-;31641:1;31636:3;31632:11;31625:18;;31249:400;;;:::o;31655:701::-;31936:3;31958:95;32049:3;32040:6;31958:95;:::i;:::-;31951:102;;32070:95;32161:3;32152:6;32070:95;:::i;:::-;32063:102;;32182:148;32326:3;32182:148;:::i;:::-;32175:155;;32347:3;32340:10;;31655:701;;;;;:::o;32362:125::-;32428:7;32457:24;32475:5;32457:24;:::i;:::-;32446:35;;32362:125;;;:::o;32493:180::-;32595:53;32642:5;32595:53;:::i;:::-;32588:5;32585:64;32575:92;;32663:1;32660;32653:12;32575:92;32493:180;:::o;32679:201::-;32765:5;32796:6;32790:13;32781:22;;32812:62;32868:5;32812:62;:::i;:::-;32679:201;;;;:::o;32886:409::-;32985:6;33034:2;33022:9;33013:7;33009:23;33005:32;33002:119;;;33040:79;;:::i;:::-;33002:119;33160:1;33185:93;33270:7;33261:6;33250:9;33246:22;33185:93;:::i;:::-;33175:103;;33131:157;32886:409;;;;:::o;33301:225::-;33441:34;33437:1;33429:6;33425:14;33418:58;33510:8;33505:2;33497:6;33493:15;33486:33;33301:225;:::o;33532:366::-;33674:3;33695:67;33759:2;33754:3;33695:67;:::i;:::-;33688:74;;33771:93;33860:3;33771:93;:::i;:::-;33889:2;33884:3;33880:12;33873:19;;33532:366;;;:::o;33904:419::-;34070:4;34108:2;34097:9;34093:18;34085:26;;34157:9;34151:4;34147:20;34143:1;34132:9;34128:17;34121:47;34185:131;34311:4;34185:131;:::i;:::-;34177:139;;33904:419;;;:::o;34329:224::-;34469:34;34465:1;34457:6;34453:14;34446:58;34538:7;34533:2;34525:6;34521:15;34514:32;34329:224;:::o;34559:366::-;34701:3;34722:67;34786:2;34781:3;34722:67;:::i;:::-;34715:74;;34798:93;34887:3;34798:93;:::i;:::-;34916:2;34911:3;34907:12;34900:19;;34559:366;;;:::o;34931:419::-;35097:4;35135:2;35124:9;35120:18;35112:26;;35184:9;35178:4;35174:20;35170:1;35159:9;35155:17;35148:47;35212:131;35338:4;35212:131;:::i;:::-;35204:139;;34931:419;;;:::o;35356:305::-;35396:3;35415:20;35433:1;35415:20;:::i;:::-;35410:25;;35449:20;35467:1;35449:20;:::i;:::-;35444:25;;35603:1;35535:66;35531:74;35528:1;35525:81;35522:107;;;35609:18;;:::i;:::-;35522:107;35653:1;35650;35646:9;35639:16;;35356:305;;;;:::o;35667:231::-;35807:34;35803:1;35795:6;35791:14;35784:58;35876:14;35871:2;35863:6;35859:15;35852:39;35667:231;:::o;35904:366::-;36046:3;36067:67;36131:2;36126:3;36067:67;:::i;:::-;36060:74;;36143:93;36232:3;36143:93;:::i;:::-;36261:2;36256:3;36252:12;36245:19;;35904:366;;;:::o;36276:419::-;36442:4;36480:2;36469:9;36465:18;36457:26;;36529:9;36523:4;36519:20;36515:1;36504:9;36500:17;36493:47;36557:131;36683:4;36557:131;:::i;:::-;36549:139;;36276:419;;;:::o;36701:224::-;36841:34;36837:1;36829:6;36825:14;36818:58;36910:7;36905:2;36897:6;36893:15;36886:32;36701:224;:::o;36931:366::-;37073:3;37094:67;37158:2;37153:3;37094:67;:::i;:::-;37087:74;;37170:93;37259:3;37170:93;:::i;:::-;37288:2;37283:3;37279:12;37272:19;;36931:366;;;:::o;37303:419::-;37469:4;37507:2;37496:9;37492:18;37484:26;;37556:9;37550:4;37546:20;37542:1;37531:9;37527:17;37520:47;37584:131;37710:4;37584:131;:::i;:::-;37576:139;;37303:419;;;:::o;37728:223::-;37868:34;37864:1;37856:6;37852:14;37845:58;37937:6;37932:2;37924:6;37920:15;37913:31;37728:223;:::o;37957:366::-;38099:3;38120:67;38184:2;38179:3;38120:67;:::i;:::-;38113:74;;38196:93;38285:3;38196:93;:::i;:::-;38314:2;38309:3;38305:12;38298:19;;37957:366;;;:::o;38329:419::-;38495:4;38533:2;38522:9;38518:18;38510:26;;38582:9;38576:4;38572:20;38568:1;38557:9;38553:17;38546:47;38610:131;38736:4;38610:131;:::i;:::-;38602:139;;38329:419;;;:::o;38754:175::-;38894:27;38890:1;38882:6;38878:14;38871:51;38754:175;:::o;38935:366::-;39077:3;39098:67;39162:2;39157:3;39098:67;:::i;:::-;39091:74;;39174:93;39263:3;39174:93;:::i;:::-;39292:2;39287:3;39283:12;39276:19;;38935:366;;;:::o;39307:419::-;39473:4;39511:2;39500:9;39496:18;39488:26;;39560:9;39554:4;39550:20;39546:1;39535:9;39531:17;39524:47;39588:131;39714:4;39588:131;:::i;:::-;39580:139;;39307:419;;;:::o;39732:237::-;39872:34;39868:1;39860:6;39856:14;39849:58;39941:20;39936:2;39928:6;39924:15;39917:45;39732:237;:::o;39975:366::-;40117:3;40138:67;40202:2;40197:3;40138:67;:::i;:::-;40131:74;;40214:93;40303:3;40214:93;:::i;:::-;40332:2;40327:3;40323:12;40316:19;;39975:366;;;:::o;40347:419::-;40513:4;40551:2;40540:9;40536:18;40528:26;;40600:9;40594:4;40590:20;40586:1;40575:9;40571:17;40564:47;40628:131;40754:4;40628:131;:::i;:::-;40620:139;;40347:419;;;:::o;40772:233::-;40811:3;40834:24;40852:5;40834:24;:::i;:::-;40825:33;;40880:66;40873:5;40870:77;40867:103;;;40950:18;;:::i;:::-;40867:103;40997:1;40990:5;40986:13;40979:20;;40772:233;;;:::o;41011:180::-;41059:77;41056:1;41049:88;41156:4;41153:1;41146:15;41180:4;41177:1;41170:15;41197:185;41237:1;41254:20;41272:1;41254:20;:::i;:::-;41249:25;;41288:20;41306:1;41288:20;:::i;:::-;41283:25;;41327:1;41317:35;;41332:18;;:::i;:::-;41317:35;41374:1;41371;41367:9;41362:14;;41197:185;;;;:::o;41388:176::-;41420:1;41437:20;41455:1;41437:20;:::i;:::-;41432:25;;41471:20;41489:1;41471:20;:::i;:::-;41466:25;;41510:1;41500:35;;41515:18;;:::i;:::-;41500:35;41556:1;41553;41549:9;41544:14;;41388:176;;;;:::o;41570:180::-;41618:77;41615:1;41608:88;41715:4;41712:1;41705:15;41739:4;41736:1;41729:15;41756:553;41933:4;41971:3;41960:9;41956:19;41948:27;;41985:71;42053:1;42042:9;42038:17;42029:6;41985:71;:::i;:::-;42066:72;42134:2;42123:9;42119:18;42110:6;42066:72;:::i;:::-;42148;42216:2;42205:9;42201:18;42192:6;42148:72;:::i;:::-;42230;42298:2;42287:9;42283:18;42274:6;42230:72;:::i;:::-;41756:553;;;;;;;:::o;42315:214::-;42455:66;42451:1;42443:6;42439:14;42432:90;42315:214;:::o;42535:400::-;42695:3;42716:84;42798:1;42793:3;42716:84;:::i;:::-;42709:91;;42809:93;42898:3;42809:93;:::i;:::-;42927:1;42922:3;42918:11;42911:18;;42535:400;;;:::o;42941:663::-;43182:3;43204:148;43348:3;43204:148;:::i;:::-;43197:155;;43362:75;43433:3;43424:6;43362:75;:::i;:::-;43462:2;43457:3;43453:12;43446:19;;43475:75;43546:3;43537:6;43475:75;:::i;:::-;43575:2;43570:3;43566:12;43559:19;;43595:3;43588:10;;42941:663;;;;;:::o;43610:640::-;43805:4;43843:3;43832:9;43828:19;43820:27;;43857:71;43925:1;43914:9;43910:17;43901:6;43857:71;:::i;:::-;43938:72;44006:2;43995:9;43991:18;43982:6;43938:72;:::i;:::-;44020;44088:2;44077:9;44073:18;44064:6;44020:72;:::i;:::-;44139:9;44133:4;44129:20;44124:2;44113:9;44109:18;44102:48;44167:76;44238:4;44229:6;44167:76;:::i;:::-;44159:84;;43610:640;;;;;;;:::o;44256:141::-;44312:5;44343:6;44337:13;44328:22;;44359:32;44385:5;44359:32;:::i;:::-;44256:141;;;;:::o;44403:349::-;44472:6;44521:2;44509:9;44500:7;44496:23;44492:32;44489:119;;;44527:79;;:::i;:::-;44489:119;44647:1;44672:63;44727:7;44718:6;44707:9;44703:22;44672:63;:::i;:::-;44662:73;;44618:127;44403:349;;;;:::o;44758:182::-;44898:34;44894:1;44886:6;44882:14;44875:58;44758:182;:::o;44946:366::-;45088:3;45109:67;45173:2;45168:3;45109:67;:::i;:::-;45102:74;;45185:93;45274:3;45185:93;:::i;:::-;45303:2;45298:3;45294:12;45287:19;;44946:366;;;:::o;45318:419::-;45484:4;45522:2;45511:9;45507:18;45499:26;;45571:9;45565:4;45561:20;45557:1;45546:9;45542:17;45535:47;45599:131;45725:4;45599:131;:::i;:::-;45591:139;;45318:419;;;:::o;45743:178::-;45883:30;45879:1;45871:6;45867:14;45860:54;45743:178;:::o;45927:366::-;46069:3;46090:67;46154:2;46149:3;46090:67;:::i;:::-;46083:74;;46166:93;46255:3;46166:93;:::i;:::-;46284:2;46279:3;46275:12;46268:19;;45927:366;;;:::o;46299:419::-;46465:4;46503:2;46492:9;46488:18;46480:26;;46552:9;46546:4;46542:20;46538:1;46527:9;46523:17;46516:47;46580:131;46706:4;46580:131;:::i;:::-;46572:139;;46299:419;;;:::o

Swarm Source

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