ETH Price: $2,923.00 (-9.81%)
Gas: 29 Gwei

Token

Otherside Keys (KEYS)
 

Overview

Max Total Supply

0 KEYS

Holders

262

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dlweb3.eth
Balance
1 KEYS
0x1649c7e888af08337d4743385f38037b242d24ed
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

[Otherside](https://othersidekeys.xyz/) is an exciting, interactive NFT experience built around a passionate community which gives you access to Exclusive whitelists, tools, and web3 opportunities. Bayc, Mayc, Bakc, Meebits and Crypto Punk holders will receive one for Free and...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OthersideKeys

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-11
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

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

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

        return super.tokenURI(tokenId);
    }

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

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: contracts/NFT.sol

pragma solidity ^0.8.4;





contract OthersideKeys is ERC721, ERC721URIStorage, Pausable, Ownable {
    constructor() ERC721("Otherside Keys", "KEYS") {}

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function safeMint(address to, uint256 tokenId, string memory uri)
        public
        onlyOwner
    {
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, uri);
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // The following functions are overrides required by Solidity.

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    function contractURI() public view returns (string memory) {
        return "https://ipfs.io/ipfs/Qmb6kqGfYtBj3YHvEEKcw3afViGx3j4BjpVX7WC2UU5qxg";
    }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600e81526020017f4f7468657273696465204b6579730000000000000000000000000000000000008152506040518060400160405280600481526020017f4b45595300000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001c1565b508060019080519060200190620000af929190620001c1565b5050506000600760006101000a81548160ff021916908315150217905550620000ed620000e1620000f360201b60201c565b620000fb60201b60201c565b620002d6565b600033905090565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cf9062000271565b90600052602060002090601f016020900481019282620001f357600085556200023f565b82601f106200020e57805160ff19168380011785556200023f565b828001600101855582156200023f579182015b828111156200023e57825182559160200191906001019062000221565b5b5090506200024e919062000252565b5090565b5b808211156200026d57600081600090555060010162000253565b5090565b600060028204905060018216806200028a57607f821691505b60208210811415620002a157620002a0620002a7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612fc380620002e66000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063b88d4fde1161007c578063b88d4fde14610302578063c87b56dd1461031e578063cd279c7c1461034e578063e8a3d4851461036a578063e985e9c514610388578063f2fde38b146103b857610137565b8063715018a6146102965780638456cb59146102a05780638da5cb5b146102aa57806395d89b41146102c8578063a22cb465146102e657610137565b80633f4ba83a116100ff5780633f4ba83a146101f257806342842e0e146101fc5780635c975abb146102185780636352211e1461023657806370a082311461026657610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba57806323b872dd146101d6575b600080fd5b61015660048036038101906101519190612076565b6103d4565b6040516101639190612488565b60405180910390f35b6101746104b6565b60405161018191906124a3565b60405180910390f35b6101a4600480360381019061019f91906120d0565b610548565b6040516101b19190612421565b60405180910390f35b6101d460048036038101906101cf9190611fc7565b61058e565b005b6101f060048036038101906101eb9190611eb1565b6106a6565b005b6101fa610706565b005b61021660048036038101906102119190611eb1565b610718565b005b610220610738565b60405161022d9190612488565b60405180910390f35b610250600480360381019061024b91906120d0565b61074f565b60405161025d9190612421565b60405180910390f35b610280600480360381019061027b9190611e44565b610801565b60405161028d91906126c5565b60405180910390f35b61029e6108b9565b005b6102a86108cd565b005b6102b26108df565b6040516102bf9190612421565b60405180910390f35b6102d0610909565b6040516102dd91906124a3565b60405180910390f35b61030060048036038101906102fb9190611f87565b61099b565b005b61031c60048036038101906103179190611f04565b6109b1565b005b610338600480360381019061033391906120d0565b610a13565b60405161034591906124a3565b60405180910390f35b61036860048036038101906103639190612007565b610a25565b005b610372610a46565b60405161037f91906124a3565b60405180910390f35b6103a2600480360381019061039d9190611e71565b610a66565b6040516103af9190612488565b60405180910390f35b6103d260048036038101906103cd9190611e44565b610afa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061049f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104af57506104ae82610b7e565b5b9050919050565b6060600080546104c59061291b565b80601f01602080910402602001604051908101604052809291908181526020018280546104f19061291b565b801561053e5780601f106105135761010080835404028352916020019161053e565b820191906000526020600020905b81548152906001019060200180831161052157829003601f168201915b5050505050905090565b600061055382610be8565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105998261074f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561060a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060190612685565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610629610c33565b73ffffffffffffffffffffffffffffffffffffffff161480610658575061065781610652610c33565b610a66565b5b610697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068e90612605565b60405180910390fd5b6106a18383610c3b565b505050565b6106b76106b1610c33565b82610cf4565b6106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed906126a5565b60405180910390fd5b610701838383610d89565b505050565b61070e610ff0565b61071661106e565b565b610733838383604051806020016040528060008152506109b1565b505050565b6000600760009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ef90612665565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610872576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610869906125c5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c1610ff0565b6108cb60006110d1565b565b6108d5610ff0565b6108dd611197565b565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546109189061291b565b80601f01602080910402602001604051908101604052809291908181526020018280546109449061291b565b80156109915780601f1061096657610100808354040283529160200191610991565b820191906000526020600020905b81548152906001019060200180831161097457829003601f168201915b5050505050905090565b6109ad6109a6610c33565b83836111fa565b5050565b6109c26109bc610c33565b83610cf4565b610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f8906126a5565b60405180910390fd5b610a0d84848484611367565b50505050565b6060610a1e826113c3565b9050919050565b610a2d610ff0565b610a3783836114d6565b610a4182826114f4565b505050565b6060604051806080016040528060438152602001612f4b60439139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b02610ff0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990612505565b60405180910390fd5b610b7b816110d1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610bf181611568565b610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2790612665565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610cae8361074f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610d008361074f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d425750610d418185610a66565b5b80610d8057508373ffffffffffffffffffffffffffffffffffffffff16610d6884610548565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610da98261074f565b73ffffffffffffffffffffffffffffffffffffffff1614610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690612525565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690612565565b60405180910390fd5b610e7a8383836115d4565b610e85600082610c3b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ed59190612831565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f2c91906127aa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610feb8383836115ec565b505050565b610ff8610c33565b73ffffffffffffffffffffffffffffffffffffffff166110166108df565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390612645565b60405180910390fd5b565b6110766115f1565b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6110ba610c33565b6040516110c79190612421565b60405180910390a1565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61119f61163a565b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111e3610c33565b6040516111f09190612421565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090612585565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135a9190612488565b60405180910390a3505050565b611372848484610d89565b61137e84848484611684565b6113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b4906124e5565b60405180910390fd5b50505050565b60606113ce82610be8565b60006006600084815260200190815260200160002080546113ee9061291b565b80601f016020809104026020016040519081016040528092919081815260200182805461141a9061291b565b80156114675780601f1061143c57610100808354040283529160200191611467565b820191906000526020600020905b81548152906001019060200180831161144a57829003601f168201915b50505050509050600061147861181b565b905060008151141561148e5781925050506114d1565b6000825111156114c35780826040516020016114ab9291906123fd565b604051602081830303815290604052925050506114d1565b6114cc84611832565b925050505b919050565b6114f082826040518060200160405280600081525061189a565b5050565b6114fd82611568565b61153c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611533906125e5565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611563929190611c58565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6115dc61163a565b6115e78383836118f5565b505050565b505050565b6115f9610738565b611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f906124c5565b60405180910390fd5b565b611642610738565b15611682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611679906125a5565b60405180910390fd5b565b60006116a58473ffffffffffffffffffffffffffffffffffffffff166118fa565b1561180e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026116ce610c33565b8786866040518563ffffffff1660e01b81526004016116f0949392919061243c565b602060405180830381600087803b15801561170a57600080fd5b505af192505050801561173b57506040513d601f19601f8201168201806040525081019061173891906120a3565b60015b6117be573d806000811461176b576040519150601f19603f3d011682016040523d82523d6000602084013e611770565b606091505b506000815114156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad906124e5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611813565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061183d82610be8565b600061184761181b565b905060008151116118675760405180602001604052806000815250611892565b806118718461191d565b6040516020016118829291906123fd565b6040516020818303038152906040525b915050919050565b6118a48383611a7e565b6118b16000848484611684565b6118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e7906124e5565b60405180910390fd5b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000821415611965576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a79565b600082905060005b600082146119975780806119809061297e565b915050600a826119909190612800565b915061196d565b60008167ffffffffffffffff8111156119b3576119b2612ab4565b5b6040519080825280601f01601f1916602001820160405280156119e55781602001600182028036833780820191505090505b5090505b60008514611a72576001826119fe9190612831565b9150600a85611a0d91906129c7565b6030611a1991906127aa565b60f81b818381518110611a2f57611a2e612a85565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611a6b9190612800565b94506119e9565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590612625565b60405180910390fd5b611af781611568565b15611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e90612545565b60405180910390fd5b611b43600083836115d4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b9391906127aa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c54600083836115ec565b5050565b828054611c649061291b565b90600052602060002090601f016020900481019282611c865760008555611ccd565b82601f10611c9f57805160ff1916838001178555611ccd565b82800160010185558215611ccd579182015b82811115611ccc578251825591602001919060010190611cb1565b5b509050611cda9190611cde565b5090565b5b80821115611cf7576000816000905550600101611cdf565b5090565b6000611d0e611d0984612705565b6126e0565b905082815260208101848484011115611d2a57611d29612ae8565b5b611d358482856128d9565b509392505050565b6000611d50611d4b84612736565b6126e0565b905082815260208101848484011115611d6c57611d6b612ae8565b5b611d778482856128d9565b509392505050565b600081359050611d8e81612eee565b92915050565b600081359050611da381612f05565b92915050565b600081359050611db881612f1c565b92915050565b600081519050611dcd81612f1c565b92915050565b600082601f830112611de857611de7612ae3565b5b8135611df8848260208601611cfb565b91505092915050565b600082601f830112611e1657611e15612ae3565b5b8135611e26848260208601611d3d565b91505092915050565b600081359050611e3e81612f33565b92915050565b600060208284031215611e5a57611e59612af2565b5b6000611e6884828501611d7f565b91505092915050565b60008060408385031215611e8857611e87612af2565b5b6000611e9685828601611d7f565b9250506020611ea785828601611d7f565b9150509250929050565b600080600060608486031215611eca57611ec9612af2565b5b6000611ed886828701611d7f565b9350506020611ee986828701611d7f565b9250506040611efa86828701611e2f565b9150509250925092565b60008060008060808587031215611f1e57611f1d612af2565b5b6000611f2c87828801611d7f565b9450506020611f3d87828801611d7f565b9350506040611f4e87828801611e2f565b925050606085013567ffffffffffffffff811115611f6f57611f6e612aed565b5b611f7b87828801611dd3565b91505092959194509250565b60008060408385031215611f9e57611f9d612af2565b5b6000611fac85828601611d7f565b9250506020611fbd85828601611d94565b9150509250929050565b60008060408385031215611fde57611fdd612af2565b5b6000611fec85828601611d7f565b9250506020611ffd85828601611e2f565b9150509250929050565b6000806000606084860312156120205761201f612af2565b5b600061202e86828701611d7f565b935050602061203f86828701611e2f565b925050604084013567ffffffffffffffff8111156120605761205f612aed565b5b61206c86828701611e01565b9150509250925092565b60006020828403121561208c5761208b612af2565b5b600061209a84828501611da9565b91505092915050565b6000602082840312156120b9576120b8612af2565b5b60006120c784828501611dbe565b91505092915050565b6000602082840312156120e6576120e5612af2565b5b60006120f484828501611e2f565b91505092915050565b61210681612865565b82525050565b61211581612877565b82525050565b600061212682612767565b612130818561277d565b93506121408185602086016128e8565b61214981612af7565b840191505092915050565b600061215f82612772565b612169818561278e565b93506121798185602086016128e8565b61218281612af7565b840191505092915050565b600061219882612772565b6121a2818561279f565b93506121b28185602086016128e8565b80840191505092915050565b60006121cb60148361278e565b91506121d682612b08565b602082019050919050565b60006121ee60328361278e565b91506121f982612b31565b604082019050919050565b600061221160268361278e565b915061221c82612b80565b604082019050919050565b600061223460258361278e565b915061223f82612bcf565b604082019050919050565b6000612257601c8361278e565b915061226282612c1e565b602082019050919050565b600061227a60248361278e565b915061228582612c47565b604082019050919050565b600061229d60198361278e565b91506122a882612c96565b602082019050919050565b60006122c060108361278e565b91506122cb82612cbf565b602082019050919050565b60006122e360298361278e565b91506122ee82612ce8565b604082019050919050565b6000612306602e8361278e565b915061231182612d37565b604082019050919050565b6000612329603e8361278e565b915061233482612d86565b604082019050919050565b600061234c60208361278e565b915061235782612dd5565b602082019050919050565b600061236f60208361278e565b915061237a82612dfe565b602082019050919050565b600061239260188361278e565b915061239d82612e27565b602082019050919050565b60006123b560218361278e565b91506123c082612e50565b604082019050919050565b60006123d8602e8361278e565b91506123e382612e9f565b604082019050919050565b6123f7816128cf565b82525050565b6000612409828561218d565b9150612415828461218d565b91508190509392505050565b600060208201905061243660008301846120fd565b92915050565b600060808201905061245160008301876120fd565b61245e60208301866120fd565b61246b60408301856123ee565b818103606083015261247d818461211b565b905095945050505050565b600060208201905061249d600083018461210c565b92915050565b600060208201905081810360008301526124bd8184612154565b905092915050565b600060208201905081810360008301526124de816121be565b9050919050565b600060208201905081810360008301526124fe816121e1565b9050919050565b6000602082019050818103600083015261251e81612204565b9050919050565b6000602082019050818103600083015261253e81612227565b9050919050565b6000602082019050818103600083015261255e8161224a565b9050919050565b6000602082019050818103600083015261257e8161226d565b9050919050565b6000602082019050818103600083015261259e81612290565b9050919050565b600060208201905081810360008301526125be816122b3565b9050919050565b600060208201905081810360008301526125de816122d6565b9050919050565b600060208201905081810360008301526125fe816122f9565b9050919050565b6000602082019050818103600083015261261e8161231c565b9050919050565b6000602082019050818103600083015261263e8161233f565b9050919050565b6000602082019050818103600083015261265e81612362565b9050919050565b6000602082019050818103600083015261267e81612385565b9050919050565b6000602082019050818103600083015261269e816123a8565b9050919050565b600060208201905081810360008301526126be816123cb565b9050919050565b60006020820190506126da60008301846123ee565b92915050565b60006126ea6126fb565b90506126f6828261294d565b919050565b6000604051905090565b600067ffffffffffffffff8211156127205761271f612ab4565b5b61272982612af7565b9050602081019050919050565b600067ffffffffffffffff82111561275157612750612ab4565b5b61275a82612af7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006127b5826128cf565b91506127c0836128cf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127f5576127f46129f8565b5b828201905092915050565b600061280b826128cf565b9150612816836128cf565b92508261282657612825612a27565b5b828204905092915050565b600061283c826128cf565b9150612847836128cf565b92508282101561285a576128596129f8565b5b828203905092915050565b6000612870826128af565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156129065780820151818401526020810190506128eb565b83811115612915576000848401525b50505050565b6000600282049050600182168061293357607f821691505b6020821081141561294757612946612a56565b5b50919050565b61295682612af7565b810181811067ffffffffffffffff8211171561297557612974612ab4565b5b80604052505050565b6000612989826128cf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129bc576129bb6129f8565b5b600182019050919050565b60006129d2826128cf565b91506129dd836128cf565b9250826129ed576129ec612a27565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b612ef781612865565b8114612f0257600080fd5b50565b612f0e81612877565b8114612f1957600080fd5b50565b612f2581612883565b8114612f3057600080fd5b50565b612f3c816128cf565b8114612f4757600080fd5b5056fe68747470733a2f2f697066732e696f2f697066732f516d62366b7147665974426a3359487645454b637733616656694778336a34426a70565837574332555535717867a2646970667358221220214c5361704cfe27849a27a005c0a6635cad96b6896151797da57b26baf56d7764736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063b88d4fde1161007c578063b88d4fde14610302578063c87b56dd1461031e578063cd279c7c1461034e578063e8a3d4851461036a578063e985e9c514610388578063f2fde38b146103b857610137565b8063715018a6146102965780638456cb59146102a05780638da5cb5b146102aa57806395d89b41146102c8578063a22cb465146102e657610137565b80633f4ba83a116100ff5780633f4ba83a146101f257806342842e0e146101fc5780635c975abb146102185780636352211e1461023657806370a082311461026657610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba57806323b872dd146101d6575b600080fd5b61015660048036038101906101519190612076565b6103d4565b6040516101639190612488565b60405180910390f35b6101746104b6565b60405161018191906124a3565b60405180910390f35b6101a4600480360381019061019f91906120d0565b610548565b6040516101b19190612421565b60405180910390f35b6101d460048036038101906101cf9190611fc7565b61058e565b005b6101f060048036038101906101eb9190611eb1565b6106a6565b005b6101fa610706565b005b61021660048036038101906102119190611eb1565b610718565b005b610220610738565b60405161022d9190612488565b60405180910390f35b610250600480360381019061024b91906120d0565b61074f565b60405161025d9190612421565b60405180910390f35b610280600480360381019061027b9190611e44565b610801565b60405161028d91906126c5565b60405180910390f35b61029e6108b9565b005b6102a86108cd565b005b6102b26108df565b6040516102bf9190612421565b60405180910390f35b6102d0610909565b6040516102dd91906124a3565b60405180910390f35b61030060048036038101906102fb9190611f87565b61099b565b005b61031c60048036038101906103179190611f04565b6109b1565b005b610338600480360381019061033391906120d0565b610a13565b60405161034591906124a3565b60405180910390f35b61036860048036038101906103639190612007565b610a25565b005b610372610a46565b60405161037f91906124a3565b60405180910390f35b6103a2600480360381019061039d9190611e71565b610a66565b6040516103af9190612488565b60405180910390f35b6103d260048036038101906103cd9190611e44565b610afa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061049f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104af57506104ae82610b7e565b5b9050919050565b6060600080546104c59061291b565b80601f01602080910402602001604051908101604052809291908181526020018280546104f19061291b565b801561053e5780601f106105135761010080835404028352916020019161053e565b820191906000526020600020905b81548152906001019060200180831161052157829003601f168201915b5050505050905090565b600061055382610be8565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105998261074f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561060a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060190612685565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610629610c33565b73ffffffffffffffffffffffffffffffffffffffff161480610658575061065781610652610c33565b610a66565b5b610697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068e90612605565b60405180910390fd5b6106a18383610c3b565b505050565b6106b76106b1610c33565b82610cf4565b6106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed906126a5565b60405180910390fd5b610701838383610d89565b505050565b61070e610ff0565b61071661106e565b565b610733838383604051806020016040528060008152506109b1565b505050565b6000600760009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ef90612665565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610872576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610869906125c5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c1610ff0565b6108cb60006110d1565b565b6108d5610ff0565b6108dd611197565b565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546109189061291b565b80601f01602080910402602001604051908101604052809291908181526020018280546109449061291b565b80156109915780601f1061096657610100808354040283529160200191610991565b820191906000526020600020905b81548152906001019060200180831161097457829003601f168201915b5050505050905090565b6109ad6109a6610c33565b83836111fa565b5050565b6109c26109bc610c33565b83610cf4565b610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f8906126a5565b60405180910390fd5b610a0d84848484611367565b50505050565b6060610a1e826113c3565b9050919050565b610a2d610ff0565b610a3783836114d6565b610a4182826114f4565b505050565b6060604051806080016040528060438152602001612f4b60439139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b02610ff0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990612505565b60405180910390fd5b610b7b816110d1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610bf181611568565b610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2790612665565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610cae8361074f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610d008361074f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d425750610d418185610a66565b5b80610d8057508373ffffffffffffffffffffffffffffffffffffffff16610d6884610548565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610da98261074f565b73ffffffffffffffffffffffffffffffffffffffff1614610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690612525565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690612565565b60405180910390fd5b610e7a8383836115d4565b610e85600082610c3b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ed59190612831565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f2c91906127aa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610feb8383836115ec565b505050565b610ff8610c33565b73ffffffffffffffffffffffffffffffffffffffff166110166108df565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390612645565b60405180910390fd5b565b6110766115f1565b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6110ba610c33565b6040516110c79190612421565b60405180910390a1565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61119f61163a565b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111e3610c33565b6040516111f09190612421565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090612585565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135a9190612488565b60405180910390a3505050565b611372848484610d89565b61137e84848484611684565b6113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b4906124e5565b60405180910390fd5b50505050565b60606113ce82610be8565b60006006600084815260200190815260200160002080546113ee9061291b565b80601f016020809104026020016040519081016040528092919081815260200182805461141a9061291b565b80156114675780601f1061143c57610100808354040283529160200191611467565b820191906000526020600020905b81548152906001019060200180831161144a57829003601f168201915b50505050509050600061147861181b565b905060008151141561148e5781925050506114d1565b6000825111156114c35780826040516020016114ab9291906123fd565b604051602081830303815290604052925050506114d1565b6114cc84611832565b925050505b919050565b6114f082826040518060200160405280600081525061189a565b5050565b6114fd82611568565b61153c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611533906125e5565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611563929190611c58565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6115dc61163a565b6115e78383836118f5565b505050565b505050565b6115f9610738565b611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f906124c5565b60405180910390fd5b565b611642610738565b15611682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611679906125a5565b60405180910390fd5b565b60006116a58473ffffffffffffffffffffffffffffffffffffffff166118fa565b1561180e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026116ce610c33565b8786866040518563ffffffff1660e01b81526004016116f0949392919061243c565b602060405180830381600087803b15801561170a57600080fd5b505af192505050801561173b57506040513d601f19601f8201168201806040525081019061173891906120a3565b60015b6117be573d806000811461176b576040519150601f19603f3d011682016040523d82523d6000602084013e611770565b606091505b506000815114156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad906124e5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611813565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061183d82610be8565b600061184761181b565b905060008151116118675760405180602001604052806000815250611892565b806118718461191d565b6040516020016118829291906123fd565b6040516020818303038152906040525b915050919050565b6118a48383611a7e565b6118b16000848484611684565b6118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e7906124e5565b60405180910390fd5b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000821415611965576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a79565b600082905060005b600082146119975780806119809061297e565b915050600a826119909190612800565b915061196d565b60008167ffffffffffffffff8111156119b3576119b2612ab4565b5b6040519080825280601f01601f1916602001820160405280156119e55781602001600182028036833780820191505090505b5090505b60008514611a72576001826119fe9190612831565b9150600a85611a0d91906129c7565b6030611a1991906127aa565b60f81b818381518110611a2f57611a2e612a85565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611a6b9190612800565b94506119e9565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590612625565b60405180910390fd5b611af781611568565b15611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e90612545565b60405180910390fd5b611b43600083836115d4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b9391906127aa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c54600083836115ec565b5050565b828054611c649061291b565b90600052602060002090601f016020900481019282611c865760008555611ccd565b82601f10611c9f57805160ff1916838001178555611ccd565b82800160010185558215611ccd579182015b82811115611ccc578251825591602001919060010190611cb1565b5b509050611cda9190611cde565b5090565b5b80821115611cf7576000816000905550600101611cdf565b5090565b6000611d0e611d0984612705565b6126e0565b905082815260208101848484011115611d2a57611d29612ae8565b5b611d358482856128d9565b509392505050565b6000611d50611d4b84612736565b6126e0565b905082815260208101848484011115611d6c57611d6b612ae8565b5b611d778482856128d9565b509392505050565b600081359050611d8e81612eee565b92915050565b600081359050611da381612f05565b92915050565b600081359050611db881612f1c565b92915050565b600081519050611dcd81612f1c565b92915050565b600082601f830112611de857611de7612ae3565b5b8135611df8848260208601611cfb565b91505092915050565b600082601f830112611e1657611e15612ae3565b5b8135611e26848260208601611d3d565b91505092915050565b600081359050611e3e81612f33565b92915050565b600060208284031215611e5a57611e59612af2565b5b6000611e6884828501611d7f565b91505092915050565b60008060408385031215611e8857611e87612af2565b5b6000611e9685828601611d7f565b9250506020611ea785828601611d7f565b9150509250929050565b600080600060608486031215611eca57611ec9612af2565b5b6000611ed886828701611d7f565b9350506020611ee986828701611d7f565b9250506040611efa86828701611e2f565b9150509250925092565b60008060008060808587031215611f1e57611f1d612af2565b5b6000611f2c87828801611d7f565b9450506020611f3d87828801611d7f565b9350506040611f4e87828801611e2f565b925050606085013567ffffffffffffffff811115611f6f57611f6e612aed565b5b611f7b87828801611dd3565b91505092959194509250565b60008060408385031215611f9e57611f9d612af2565b5b6000611fac85828601611d7f565b9250506020611fbd85828601611d94565b9150509250929050565b60008060408385031215611fde57611fdd612af2565b5b6000611fec85828601611d7f565b9250506020611ffd85828601611e2f565b9150509250929050565b6000806000606084860312156120205761201f612af2565b5b600061202e86828701611d7f565b935050602061203f86828701611e2f565b925050604084013567ffffffffffffffff8111156120605761205f612aed565b5b61206c86828701611e01565b9150509250925092565b60006020828403121561208c5761208b612af2565b5b600061209a84828501611da9565b91505092915050565b6000602082840312156120b9576120b8612af2565b5b60006120c784828501611dbe565b91505092915050565b6000602082840312156120e6576120e5612af2565b5b60006120f484828501611e2f565b91505092915050565b61210681612865565b82525050565b61211581612877565b82525050565b600061212682612767565b612130818561277d565b93506121408185602086016128e8565b61214981612af7565b840191505092915050565b600061215f82612772565b612169818561278e565b93506121798185602086016128e8565b61218281612af7565b840191505092915050565b600061219882612772565b6121a2818561279f565b93506121b28185602086016128e8565b80840191505092915050565b60006121cb60148361278e565b91506121d682612b08565b602082019050919050565b60006121ee60328361278e565b91506121f982612b31565b604082019050919050565b600061221160268361278e565b915061221c82612b80565b604082019050919050565b600061223460258361278e565b915061223f82612bcf565b604082019050919050565b6000612257601c8361278e565b915061226282612c1e565b602082019050919050565b600061227a60248361278e565b915061228582612c47565b604082019050919050565b600061229d60198361278e565b91506122a882612c96565b602082019050919050565b60006122c060108361278e565b91506122cb82612cbf565b602082019050919050565b60006122e360298361278e565b91506122ee82612ce8565b604082019050919050565b6000612306602e8361278e565b915061231182612d37565b604082019050919050565b6000612329603e8361278e565b915061233482612d86565b604082019050919050565b600061234c60208361278e565b915061235782612dd5565b602082019050919050565b600061236f60208361278e565b915061237a82612dfe565b602082019050919050565b600061239260188361278e565b915061239d82612e27565b602082019050919050565b60006123b560218361278e565b91506123c082612e50565b604082019050919050565b60006123d8602e8361278e565b91506123e382612e9f565b604082019050919050565b6123f7816128cf565b82525050565b6000612409828561218d565b9150612415828461218d565b91508190509392505050565b600060208201905061243660008301846120fd565b92915050565b600060808201905061245160008301876120fd565b61245e60208301866120fd565b61246b60408301856123ee565b818103606083015261247d818461211b565b905095945050505050565b600060208201905061249d600083018461210c565b92915050565b600060208201905081810360008301526124bd8184612154565b905092915050565b600060208201905081810360008301526124de816121be565b9050919050565b600060208201905081810360008301526124fe816121e1565b9050919050565b6000602082019050818103600083015261251e81612204565b9050919050565b6000602082019050818103600083015261253e81612227565b9050919050565b6000602082019050818103600083015261255e8161224a565b9050919050565b6000602082019050818103600083015261257e8161226d565b9050919050565b6000602082019050818103600083015261259e81612290565b9050919050565b600060208201905081810360008301526125be816122b3565b9050919050565b600060208201905081810360008301526125de816122d6565b9050919050565b600060208201905081810360008301526125fe816122f9565b9050919050565b6000602082019050818103600083015261261e8161231c565b9050919050565b6000602082019050818103600083015261263e8161233f565b9050919050565b6000602082019050818103600083015261265e81612362565b9050919050565b6000602082019050818103600083015261267e81612385565b9050919050565b6000602082019050818103600083015261269e816123a8565b9050919050565b600060208201905081810360008301526126be816123cb565b9050919050565b60006020820190506126da60008301846123ee565b92915050565b60006126ea6126fb565b90506126f6828261294d565b919050565b6000604051905090565b600067ffffffffffffffff8211156127205761271f612ab4565b5b61272982612af7565b9050602081019050919050565b600067ffffffffffffffff82111561275157612750612ab4565b5b61275a82612af7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006127b5826128cf565b91506127c0836128cf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127f5576127f46129f8565b5b828201905092915050565b600061280b826128cf565b9150612816836128cf565b92508261282657612825612a27565b5b828204905092915050565b600061283c826128cf565b9150612847836128cf565b92508282101561285a576128596129f8565b5b828203905092915050565b6000612870826128af565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156129065780820151818401526020810190506128eb565b83811115612915576000848401525b50505050565b6000600282049050600182168061293357607f821691505b6020821081141561294757612946612a56565b5b50919050565b61295682612af7565b810181811067ffffffffffffffff8211171561297557612974612ab4565b5b80604052505050565b6000612989826128cf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129bc576129bb6129f8565b5b600182019050919050565b60006129d2826128cf565b91506129dd836128cf565b9250826129ed576129ec612a27565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b612ef781612865565b8114612f0257600080fd5b50565b612f0e81612877565b8114612f1957600080fd5b50565b612f2581612883565b8114612f3057600080fd5b50565b612f3c816128cf565b8114612f4757600080fd5b5056fe68747470733a2f2f697066732e696f2f697066732f516d62366b7147665974426a3359487645454b637733616656694778336a34426a70565837574332555535717867a2646970667358221220214c5361704cfe27849a27a005c0a6635cad96b6896151797da57b26baf56d7764736f6c63430008070033

Deployed Bytecode Sourcemap

42600:1231:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27392:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28319:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29832:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29349:417;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30532:336;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42803:65;;;:::i;:::-;;30939:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7763:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28030:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27761:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;:::i;:::-;;42734:61;;;:::i;:::-;;4625:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28488:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30075:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31195:323;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43470:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42876:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43674:154;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30301:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27392:305;27494:4;27546:25;27531:40;;;:11;:40;;;;:105;;;;27603:33;27588:48;;;:11;:48;;;;27531:105;:158;;;;27653:36;27677:11;27653:23;:36::i;:::-;27531:158;27511:178;;27392:305;;;:::o;28319:100::-;28373:13;28406:5;28399:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28319:100;:::o;29832:171::-;29908:7;29928:23;29943:7;29928:14;:23::i;:::-;29971:15;:24;29987:7;29971:24;;;;;;;;;;;;;;;;;;;;;29964:31;;29832:171;;;:::o;29349:417::-;29430:13;29446:23;29461:7;29446:14;:23::i;:::-;29430:39;;29494:5;29488:11;;:2;:11;;;;29480:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29588:5;29572:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29597:37;29614:5;29621:12;:10;:12::i;:::-;29597:16;:37::i;:::-;29572:62;29550:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;29737:21;29746:2;29750:7;29737:8;:21::i;:::-;29419:347;29349:417;;:::o;30532:336::-;30727:41;30746:12;:10;:12::i;:::-;30760:7;30727:18;:41::i;:::-;30719:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30832:28;30842:4;30848:2;30852:7;30832:9;:28::i;:::-;30532:336;;;:::o;42803:65::-;4511:13;:11;:13::i;:::-;42850:10:::1;:8;:10::i;:::-;42803:65::o:0;30939:185::-;31077:39;31094:4;31100:2;31104:7;31077:39;;;;;;;;;;;;:16;:39::i;:::-;30939:185;;;:::o;7763:86::-;7810:4;7834:7;;;;;;;;;;;7827:14;;7763:86;:::o;28030:222::-;28102:7;28122:13;28138:7;:16;28146:7;28138:16;;;;;;;;;;;;;;;;;;;;;28122:32;;28190:1;28173:19;;:5;:19;;;;28165:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;28239:5;28232:12;;;28030:222;;;:::o;27761:207::-;27833:7;27878:1;27861:19;;:5;:19;;;;27853:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27944:9;:16;27954:5;27944:16;;;;;;;;;;;;;;;;27937:23;;27761:207;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;42734:61::-;4511:13;:11;:13::i;:::-;42779:8:::1;:6;:8::i;:::-;42734:61::o:0;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;28488:104::-;28544:13;28577:7;28570:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28488:104;:::o;30075:155::-;30170:52;30189:12;:10;:12::i;:::-;30203:8;30213;30170:18;:52::i;:::-;30075:155;;:::o;31195:323::-;31369:41;31388:12;:10;:12::i;:::-;31402:7;31369:18;:41::i;:::-;31361:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;31472:38;31486:4;31492:2;31496:7;31505:4;31472:13;:38::i;:::-;31195:323;;;;:::o;43470:196::-;43597:13;43635:23;43650:7;43635:14;:23::i;:::-;43628:30;;43470:196;;;:::o;42876:184::-;4511:13;:11;:13::i;:::-;42993:22:::1;43003:2;43007:7;42993:9;:22::i;:::-;43026:26;43039:7;43048:3;43026:12;:26::i;:::-;42876:184:::0;;;:::o;43674:154::-;43718:13;43744:76;;;;;;;;;;;;;;;;;;;43674:154;:::o;30301:164::-;30398:4;30422:18;:25;30441:5;30422:25;;;;;;;;;;;;;;;:35;30448:8;30422:35;;;;;;;;;;;;;;;;;;;;;;;;;30415:42;;30301:164;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;20134:157::-;20219:4;20258:25;20243:40;;;:11;:40;;;;20236:47;;20134:157;;;:::o;37807:135::-;37889:16;37897:7;37889;:16::i;:::-;37881:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;37807:135;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;37086:174::-;37188:2;37161:15;:24;37177:7;37161:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37244:7;37240:2;37206:46;;37215:23;37230:7;37215:14;:23::i;:::-;37206:46;;;;;;;;;;;;37086:174;;:::o;33319:264::-;33412:4;33429:13;33445:23;33460:7;33445:14;:23::i;:::-;33429:39;;33498:5;33487:16;;:7;:16;;;:52;;;;33507:32;33524:5;33531:7;33507:16;:32::i;:::-;33487:52;:87;;;;33567:7;33543:31;;:20;33555:7;33543:11;:20::i;:::-;:31;;;33487:87;33479:96;;;33319:264;;;;:::o;36342:625::-;36501:4;36474:31;;:23;36489:7;36474:14;:23::i;:::-;:31;;;36466:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;36580:1;36566:16;;:2;:16;;;;36558:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36636:39;36657:4;36663:2;36667:7;36636:20;:39::i;:::-;36740:29;36757:1;36761:7;36740:8;:29::i;:::-;36801:1;36782:9;:15;36792:4;36782:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36830:1;36813:9;:13;36823:2;36813:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36861:2;36842:7;:16;36850:7;36842:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36900:7;36896:2;36881:27;;36890:4;36881:27;;;;;;;;;;;;36921:38;36941:4;36947:2;36951:7;36921:19;:38::i;:::-;36342:625;;;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;8618:120::-;7627:16;:14;:16::i;:::-;8687:5:::1;8677:7;;:15;;;;;;;;;;;;;;;;;;8708:22;8717:12;:10;:12::i;:::-;8708:22;;;;;;:::i;:::-;;;;;;;;8618:120::o:0;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;8359:118::-;7368:19;:17;:19::i;:::-;8429:4:::1;8419:7;;:14;;;;;;;;;;;;;;;;;;8449:20;8456:12;:10;:12::i;:::-;8449:20;;;;;;:::i;:::-;;;;;;;;8359:118::o:0;37403:315::-;37558:8;37549:17;;:5;:17;;;;37541:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;37645:8;37607:18;:25;37626:5;37607:25;;;;;;;;;;;;;;;:35;37633:8;37607:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37691:8;37669:41;;37684:5;37669:41;;;37701:8;37669:41;;;;;;:::i;:::-;;;;;;;;37403:315;;;:::o;32399:313::-;32555:28;32565:4;32571:2;32575:7;32555:9;:28::i;:::-;32602:47;32625:4;32631:2;32635:7;32644:4;32602:22;:47::i;:::-;32594:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32399:313;;;;:::o;41100:624::-;41173:13;41199:23;41214:7;41199:14;:23::i;:::-;41235;41261:10;:19;41272:7;41261:19;;;;;;;;;;;41235:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41291:18;41312:10;:8;:10::i;:::-;41291:31;;41420:1;41404:4;41398:18;:23;41394:72;;;41445:9;41438:16;;;;;;41394:72;41596:1;41576:9;41570:23;:27;41566:108;;;41645:4;41651:9;41628:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41614:48;;;;;;41566:108;41693:23;41708:7;41693:14;:23::i;:::-;41686:30;;;;41100:624;;;;:::o;33925:110::-;34001:26;34011:2;34015:7;34001:26;;;;;;;;;;;;:9;:26::i;:::-;33925:110;;:::o;41880:217::-;41980:16;41988:7;41980;:16::i;:::-;41972:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;42080:9;42058:10;:19;42069:7;42058:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;41880:217;;:::o;33025:127::-;33090:4;33142:1;33114:30;;:7;:16;33122:7;33114:16;;;;;;;;;;;;;;;;;;;;;:30;;;;33107:37;;33025:127;;;:::o;43068:201::-;7368:19;:17;:19::i;:::-;43216:45:::1;43243:4;43249:2;43253:7;43216:26;:45::i;:::-;43068:201:::0;;;:::o;40442:125::-;;;;:::o;8107:108::-;8174:8;:6;:8::i;:::-;8166:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;8107:108::o;7922:::-;7993:8;:6;:8::i;:::-;7992:9;7984:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;7922:108::o;38506:853::-;38660:4;38681:15;:2;:13;;;:15::i;:::-;38677:675;;;38733:2;38717:36;;;38754:12;:10;:12::i;:::-;38768:4;38774:7;38783:4;38717:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38713:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38975:1;38958:6;:13;:18;38954:328;;;39001:60;;;;;;;;;;:::i;:::-;;;;;;;;38954:328;39232:6;39226:13;39217:6;39213:2;39209:15;39202:38;38713:584;38849:41;;;38839:51;;;:6;:51;;;;38832:58;;;;;38677:675;39336:4;39329:11;;38506:853;;;;;;;:::o;29193:94::-;29244:13;29270:9;;;;;;;;;;;;;;29193:94;:::o;28663:281::-;28736:13;28762:23;28777:7;28762:14;:23::i;:::-;28798:21;28822:10;:8;:10::i;:::-;28798:34;;28874:1;28856:7;28850:21;:25;:86;;;;;;;;;;;;;;;;;28902:7;28911:18;:7;:16;:18::i;:::-;28885:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28850:86;28843:93;;;28663:281;;;:::o;34262:319::-;34391:18;34397:2;34401:7;34391:5;:18::i;:::-;34442:53;34473:1;34477:2;34481:7;34490:4;34442:22;:53::i;:::-;34420:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;34262:319;;;:::o;39931:126::-;;;;:::o;9978:326::-;10038:4;10295:1;10273:7;:19;;;:23;10266:30;;9978:326;;;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;34917:439::-;35011:1;34997:16;;:2;:16;;;;34989:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35070:16;35078:7;35070;:16::i;:::-;35069:17;35061:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35132:45;35161:1;35165:2;35169:7;35132:20;:45::i;:::-;35207:1;35190:9;:13;35200:2;35190:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35238:2;35219:7;:16;35227:7;35219:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35283:7;35279:2;35258:33;;35275:1;35258:33;;;;;;;;;;;;35304:44;35332:1;35336:2;35340:7;35304:19;:44::i;:::-;34917:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:799::-;5707:6;5715;5723;5772:2;5760:9;5751:7;5747:23;5743:32;5740:119;;;5778:79;;:::i;:::-;5740:119;5898:1;5923:53;5968:7;5959:6;5948:9;5944:22;5923:53;:::i;:::-;5913:63;;5869:117;6025:2;6051:53;6096:7;6087:6;6076:9;6072:22;6051:53;:::i;:::-;6041:63;;5996:118;6181:2;6170:9;6166:18;6153:32;6212:18;6204:6;6201:30;6198:117;;;6234:79;;:::i;:::-;6198:117;6339:63;6394:7;6385:6;6374:9;6370:22;6339:63;:::i;:::-;6329:73;;6124:288;5620:799;;;;;:::o;6425:327::-;6483:6;6532:2;6520:9;6511:7;6507:23;6503:32;6500:119;;;6538:79;;:::i;:::-;6500:119;6658:1;6683:52;6727:7;6718:6;6707:9;6703:22;6683:52;:::i;:::-;6673:62;;6629:116;6425:327;;;;:::o;6758:349::-;6827:6;6876:2;6864:9;6855:7;6851:23;6847:32;6844:119;;;6882:79;;:::i;:::-;6844:119;7002:1;7027:63;7082:7;7073:6;7062:9;7058:22;7027:63;:::i;:::-;7017:73;;6973:127;6758:349;;;;:::o;7113:329::-;7172:6;7221:2;7209:9;7200:7;7196:23;7192:32;7189:119;;;7227:79;;:::i;:::-;7189:119;7347:1;7372:53;7417:7;7408:6;7397:9;7393:22;7372:53;:::i;:::-;7362:63;;7318:117;7113:329;;;;:::o;7448:118::-;7535:24;7553:5;7535:24;:::i;:::-;7530:3;7523:37;7448:118;;:::o;7572:109::-;7653:21;7668:5;7653:21;:::i;:::-;7648:3;7641:34;7572:109;;:::o;7687:360::-;7773:3;7801:38;7833:5;7801:38;:::i;:::-;7855:70;7918:6;7913:3;7855:70;:::i;:::-;7848:77;;7934:52;7979:6;7974:3;7967:4;7960:5;7956:16;7934:52;:::i;:::-;8011:29;8033:6;8011:29;:::i;:::-;8006:3;8002:39;7995:46;;7777:270;7687:360;;;;:::o;8053:364::-;8141:3;8169:39;8202:5;8169:39;:::i;:::-;8224:71;8288:6;8283:3;8224:71;:::i;:::-;8217:78;;8304:52;8349:6;8344:3;8337:4;8330:5;8326:16;8304:52;:::i;:::-;8381:29;8403:6;8381:29;:::i;:::-;8376:3;8372:39;8365:46;;8145:272;8053:364;;;;:::o;8423:377::-;8529:3;8557:39;8590:5;8557:39;:::i;:::-;8612:89;8694:6;8689:3;8612:89;:::i;:::-;8605:96;;8710:52;8755:6;8750:3;8743:4;8736:5;8732:16;8710:52;:::i;:::-;8787:6;8782:3;8778:16;8771:23;;8533:267;8423:377;;;;:::o;8806:366::-;8948:3;8969:67;9033:2;9028:3;8969:67;:::i;:::-;8962:74;;9045:93;9134:3;9045:93;:::i;:::-;9163:2;9158:3;9154:12;9147:19;;8806:366;;;:::o;9178:::-;9320:3;9341:67;9405:2;9400:3;9341:67;:::i;:::-;9334:74;;9417:93;9506:3;9417:93;:::i;:::-;9535:2;9530:3;9526:12;9519:19;;9178:366;;;:::o;9550:::-;9692:3;9713:67;9777:2;9772:3;9713:67;:::i;:::-;9706:74;;9789:93;9878:3;9789:93;:::i;:::-;9907:2;9902:3;9898:12;9891:19;;9550:366;;;:::o;9922:::-;10064:3;10085:67;10149:2;10144:3;10085:67;:::i;:::-;10078:74;;10161:93;10250:3;10161:93;:::i;:::-;10279:2;10274:3;10270:12;10263:19;;9922:366;;;:::o;10294:::-;10436:3;10457:67;10521:2;10516:3;10457:67;:::i;:::-;10450:74;;10533:93;10622:3;10533:93;:::i;:::-;10651:2;10646:3;10642:12;10635:19;;10294:366;;;:::o;10666:::-;10808:3;10829:67;10893:2;10888:3;10829:67;:::i;:::-;10822:74;;10905:93;10994:3;10905:93;:::i;:::-;11023:2;11018:3;11014:12;11007:19;;10666:366;;;:::o;11038:::-;11180:3;11201:67;11265:2;11260:3;11201:67;:::i;:::-;11194:74;;11277:93;11366:3;11277:93;:::i;:::-;11395:2;11390:3;11386:12;11379:19;;11038:366;;;:::o;11410:::-;11552:3;11573:67;11637:2;11632:3;11573:67;:::i;:::-;11566:74;;11649:93;11738:3;11649:93;:::i;:::-;11767:2;11762:3;11758:12;11751:19;;11410:366;;;:::o;11782:::-;11924:3;11945:67;12009:2;12004:3;11945:67;:::i;:::-;11938:74;;12021:93;12110:3;12021:93;:::i;:::-;12139:2;12134:3;12130:12;12123:19;;11782:366;;;:::o;12154:::-;12296:3;12317:67;12381:2;12376:3;12317:67;:::i;:::-;12310:74;;12393:93;12482:3;12393:93;:::i;:::-;12511:2;12506:3;12502:12;12495:19;;12154:366;;;:::o;12526:::-;12668:3;12689:67;12753:2;12748:3;12689:67;:::i;:::-;12682:74;;12765:93;12854:3;12765:93;:::i;:::-;12883:2;12878:3;12874:12;12867:19;;12526:366;;;:::o;12898:::-;13040:3;13061:67;13125:2;13120:3;13061:67;:::i;:::-;13054:74;;13137:93;13226:3;13137:93;:::i;:::-;13255:2;13250:3;13246:12;13239:19;;12898:366;;;:::o;13270:::-;13412:3;13433:67;13497:2;13492:3;13433:67;:::i;:::-;13426:74;;13509:93;13598:3;13509:93;:::i;:::-;13627:2;13622:3;13618:12;13611:19;;13270:366;;;:::o;13642:::-;13784:3;13805:67;13869:2;13864:3;13805:67;:::i;:::-;13798:74;;13881:93;13970:3;13881:93;:::i;:::-;13999:2;13994:3;13990:12;13983:19;;13642:366;;;:::o;14014:::-;14156:3;14177:67;14241:2;14236:3;14177:67;:::i;:::-;14170:74;;14253:93;14342:3;14253:93;:::i;:::-;14371:2;14366:3;14362:12;14355:19;;14014:366;;;:::o;14386:::-;14528:3;14549:67;14613:2;14608:3;14549:67;:::i;:::-;14542:74;;14625:93;14714:3;14625:93;:::i;:::-;14743:2;14738:3;14734:12;14727:19;;14386:366;;;:::o;14758:118::-;14845:24;14863:5;14845:24;:::i;:::-;14840:3;14833:37;14758:118;;:::o;14882:435::-;15062:3;15084:95;15175:3;15166:6;15084:95;:::i;:::-;15077:102;;15196:95;15287:3;15278:6;15196:95;:::i;:::-;15189:102;;15308:3;15301:10;;14882:435;;;;;:::o;15323:222::-;15416:4;15454:2;15443:9;15439:18;15431:26;;15467:71;15535:1;15524:9;15520:17;15511:6;15467:71;:::i;:::-;15323:222;;;;:::o;15551:640::-;15746:4;15784:3;15773:9;15769:19;15761:27;;15798:71;15866:1;15855:9;15851:17;15842:6;15798:71;:::i;:::-;15879:72;15947:2;15936:9;15932:18;15923:6;15879:72;:::i;:::-;15961;16029:2;16018:9;16014:18;16005:6;15961:72;:::i;:::-;16080:9;16074:4;16070:20;16065:2;16054:9;16050:18;16043:48;16108:76;16179:4;16170:6;16108:76;:::i;:::-;16100:84;;15551:640;;;;;;;:::o;16197:210::-;16284:4;16322:2;16311:9;16307:18;16299:26;;16335:65;16397:1;16386:9;16382:17;16373:6;16335:65;:::i;:::-;16197:210;;;;:::o;16413:313::-;16526:4;16564:2;16553:9;16549:18;16541:26;;16613:9;16607:4;16603:20;16599:1;16588:9;16584:17;16577:47;16641:78;16714:4;16705:6;16641:78;:::i;:::-;16633:86;;16413:313;;;;:::o;16732:419::-;16898:4;16936:2;16925:9;16921:18;16913:26;;16985:9;16979:4;16975:20;16971:1;16960:9;16956:17;16949:47;17013:131;17139:4;17013:131;:::i;:::-;17005:139;;16732:419;;;:::o;17157:::-;17323:4;17361:2;17350:9;17346:18;17338:26;;17410:9;17404:4;17400:20;17396:1;17385:9;17381:17;17374:47;17438:131;17564:4;17438:131;:::i;:::-;17430:139;;17157:419;;;:::o;17582:::-;17748:4;17786:2;17775:9;17771:18;17763:26;;17835:9;17829:4;17825:20;17821:1;17810:9;17806:17;17799:47;17863:131;17989:4;17863:131;:::i;:::-;17855:139;;17582:419;;;:::o;18007:::-;18173:4;18211:2;18200:9;18196:18;18188:26;;18260:9;18254:4;18250:20;18246:1;18235:9;18231:17;18224:47;18288:131;18414:4;18288:131;:::i;:::-;18280:139;;18007:419;;;:::o;18432:::-;18598:4;18636:2;18625:9;18621:18;18613:26;;18685:9;18679:4;18675:20;18671:1;18660:9;18656:17;18649:47;18713:131;18839:4;18713:131;:::i;:::-;18705:139;;18432:419;;;:::o;18857:::-;19023:4;19061:2;19050:9;19046:18;19038:26;;19110:9;19104:4;19100:20;19096:1;19085:9;19081:17;19074:47;19138:131;19264:4;19138:131;:::i;:::-;19130:139;;18857:419;;;:::o;19282:::-;19448:4;19486:2;19475:9;19471:18;19463:26;;19535:9;19529:4;19525:20;19521:1;19510:9;19506:17;19499:47;19563:131;19689:4;19563:131;:::i;:::-;19555:139;;19282:419;;;:::o;19707:::-;19873:4;19911:2;19900:9;19896:18;19888:26;;19960:9;19954:4;19950:20;19946:1;19935:9;19931:17;19924:47;19988:131;20114:4;19988:131;:::i;:::-;19980:139;;19707:419;;;:::o;20132:::-;20298:4;20336:2;20325:9;20321:18;20313:26;;20385:9;20379:4;20375:20;20371:1;20360:9;20356:17;20349:47;20413:131;20539:4;20413:131;:::i;:::-;20405:139;;20132:419;;;:::o;20557:::-;20723:4;20761:2;20750:9;20746:18;20738:26;;20810:9;20804:4;20800:20;20796:1;20785:9;20781:17;20774:47;20838:131;20964:4;20838:131;:::i;:::-;20830:139;;20557:419;;;:::o;20982:::-;21148:4;21186:2;21175:9;21171:18;21163:26;;21235:9;21229:4;21225:20;21221:1;21210:9;21206:17;21199:47;21263:131;21389:4;21263:131;:::i;:::-;21255:139;;20982:419;;;:::o;21407:::-;21573:4;21611:2;21600:9;21596:18;21588:26;;21660:9;21654:4;21650:20;21646:1;21635:9;21631:17;21624:47;21688:131;21814:4;21688:131;:::i;:::-;21680:139;;21407:419;;;:::o;21832:::-;21998:4;22036:2;22025:9;22021:18;22013:26;;22085:9;22079:4;22075:20;22071:1;22060:9;22056:17;22049:47;22113:131;22239:4;22113:131;:::i;:::-;22105:139;;21832:419;;;:::o;22257:::-;22423:4;22461:2;22450:9;22446:18;22438:26;;22510:9;22504:4;22500:20;22496:1;22485:9;22481:17;22474:47;22538:131;22664:4;22538:131;:::i;:::-;22530:139;;22257:419;;;:::o;22682:::-;22848:4;22886:2;22875:9;22871:18;22863:26;;22935:9;22929:4;22925:20;22921:1;22910:9;22906:17;22899:47;22963:131;23089:4;22963:131;:::i;:::-;22955:139;;22682:419;;;:::o;23107:::-;23273:4;23311:2;23300:9;23296:18;23288:26;;23360:9;23354:4;23350:20;23346:1;23335:9;23331:17;23324:47;23388:131;23514:4;23388:131;:::i;:::-;23380:139;;23107:419;;;:::o;23532:222::-;23625:4;23663:2;23652:9;23648:18;23640:26;;23676:71;23744:1;23733:9;23729:17;23720:6;23676:71;:::i;:::-;23532:222;;;;:::o;23760:129::-;23794:6;23821:20;;:::i;:::-;23811:30;;23850:33;23878:4;23870:6;23850:33;:::i;:::-;23760:129;;;:::o;23895:75::-;23928:6;23961:2;23955:9;23945:19;;23895:75;:::o;23976:307::-;24037:4;24127:18;24119:6;24116:30;24113:56;;;24149:18;;:::i;:::-;24113:56;24187:29;24209:6;24187:29;:::i;:::-;24179:37;;24271:4;24265;24261:15;24253:23;;23976:307;;;:::o;24289:308::-;24351:4;24441:18;24433:6;24430:30;24427:56;;;24463:18;;:::i;:::-;24427:56;24501:29;24523:6;24501:29;:::i;:::-;24493:37;;24585:4;24579;24575:15;24567:23;;24289:308;;;:::o;24603:98::-;24654:6;24688:5;24682:12;24672:22;;24603:98;;;:::o;24707:99::-;24759:6;24793:5;24787:12;24777:22;;24707:99;;;:::o;24812:168::-;24895:11;24929:6;24924:3;24917:19;24969:4;24964:3;24960:14;24945:29;;24812:168;;;;:::o;24986:169::-;25070:11;25104:6;25099:3;25092:19;25144:4;25139:3;25135:14;25120:29;;24986:169;;;;:::o;25161:148::-;25263:11;25300:3;25285:18;;25161:148;;;;:::o;25315:305::-;25355:3;25374:20;25392:1;25374:20;:::i;:::-;25369:25;;25408:20;25426:1;25408:20;:::i;:::-;25403:25;;25562:1;25494:66;25490:74;25487:1;25484:81;25481:107;;;25568:18;;:::i;:::-;25481:107;25612:1;25609;25605:9;25598:16;;25315:305;;;;:::o;25626:185::-;25666:1;25683:20;25701:1;25683:20;:::i;:::-;25678:25;;25717:20;25735:1;25717:20;:::i;:::-;25712:25;;25756:1;25746:35;;25761:18;;:::i;:::-;25746:35;25803:1;25800;25796:9;25791:14;;25626:185;;;;:::o;25817:191::-;25857:4;25877:20;25895:1;25877:20;:::i;:::-;25872:25;;25911:20;25929:1;25911:20;:::i;:::-;25906:25;;25950:1;25947;25944:8;25941:34;;;25955:18;;:::i;:::-;25941:34;26000:1;25997;25993:9;25985:17;;25817:191;;;;:::o;26014:96::-;26051:7;26080:24;26098:5;26080:24;:::i;:::-;26069:35;;26014:96;;;:::o;26116:90::-;26150:7;26193:5;26186:13;26179:21;26168:32;;26116:90;;;:::o;26212:149::-;26248:7;26288:66;26281:5;26277:78;26266:89;;26212:149;;;:::o;26367:126::-;26404:7;26444:42;26437:5;26433:54;26422:65;;26367:126;;;:::o;26499:77::-;26536:7;26565:5;26554:16;;26499:77;;;:::o;26582:154::-;26666:6;26661:3;26656;26643:30;26728:1;26719:6;26714:3;26710:16;26703:27;26582:154;;;:::o;26742:307::-;26810:1;26820:113;26834:6;26831:1;26828:13;26820:113;;;26919:1;26914:3;26910:11;26904:18;26900:1;26895:3;26891:11;26884:39;26856:2;26853:1;26849:10;26844:15;;26820:113;;;26951:6;26948:1;26945:13;26942:101;;;27031:1;27022:6;27017:3;27013:16;27006:27;26942:101;26791:258;26742:307;;;:::o;27055:320::-;27099:6;27136:1;27130:4;27126:12;27116:22;;27183:1;27177:4;27173:12;27204:18;27194:81;;27260:4;27252:6;27248:17;27238:27;;27194:81;27322:2;27314:6;27311:14;27291:18;27288:38;27285:84;;;27341:18;;:::i;:::-;27285:84;27106:269;27055:320;;;:::o;27381:281::-;27464:27;27486:4;27464:27;:::i;:::-;27456:6;27452:40;27594:6;27582:10;27579:22;27558:18;27546:10;27543:34;27540:62;27537:88;;;27605:18;;:::i;:::-;27537:88;27645:10;27641:2;27634:22;27424:238;27381:281;;:::o;27668:233::-;27707:3;27730:24;27748:5;27730:24;:::i;:::-;27721:33;;27776:66;27769:5;27766:77;27763:103;;;27846:18;;:::i;:::-;27763:103;27893:1;27886:5;27882:13;27875:20;;27668:233;;;:::o;27907:176::-;27939:1;27956:20;27974:1;27956:20;:::i;:::-;27951:25;;27990:20;28008:1;27990:20;:::i;:::-;27985:25;;28029:1;28019:35;;28034:18;;:::i;:::-;28019:35;28075:1;28072;28068:9;28063:14;;27907:176;;;;:::o;28089:180::-;28137:77;28134:1;28127:88;28234:4;28231:1;28224:15;28258:4;28255:1;28248:15;28275:180;28323:77;28320:1;28313:88;28420:4;28417:1;28410:15;28444:4;28441:1;28434:15;28461:180;28509:77;28506:1;28499:88;28606:4;28603:1;28596:15;28630:4;28627:1;28620:15;28647:180;28695:77;28692:1;28685:88;28792:4;28789:1;28782:15;28816:4;28813:1;28806:15;28833:180;28881:77;28878:1;28871:88;28978:4;28975:1;28968:15;29002:4;28999:1;28992:15;29019:117;29128:1;29125;29118:12;29142:117;29251:1;29248;29241:12;29265:117;29374:1;29371;29364:12;29388:117;29497:1;29494;29487:12;29511:102;29552:6;29603:2;29599:7;29594:2;29587:5;29583:14;29579:28;29569:38;;29511:102;;;:::o;29619:170::-;29759:22;29755:1;29747:6;29743:14;29736:46;29619:170;:::o;29795:237::-;29935:34;29931:1;29923:6;29919:14;29912:58;30004:20;29999:2;29991:6;29987:15;29980:45;29795:237;:::o;30038:225::-;30178:34;30174:1;30166:6;30162:14;30155:58;30247:8;30242:2;30234:6;30230:15;30223:33;30038:225;:::o;30269:224::-;30409:34;30405:1;30397:6;30393:14;30386:58;30478:7;30473:2;30465:6;30461:15;30454:32;30269:224;:::o;30499:178::-;30639:30;30635:1;30627:6;30623:14;30616:54;30499:178;:::o;30683:223::-;30823:34;30819:1;30811:6;30807:14;30800:58;30892:6;30887:2;30879:6;30875:15;30868:31;30683:223;:::o;30912:175::-;31052:27;31048:1;31040:6;31036:14;31029:51;30912:175;:::o;31093:166::-;31233:18;31229:1;31221:6;31217:14;31210:42;31093:166;:::o;31265:228::-;31405:34;31401:1;31393:6;31389:14;31382:58;31474:11;31469:2;31461:6;31457:15;31450:36;31265:228;:::o;31499:233::-;31639:34;31635:1;31627:6;31623:14;31616:58;31708:16;31703:2;31695:6;31691:15;31684:41;31499:233;:::o;31738:249::-;31878:34;31874:1;31866:6;31862:14;31855:58;31947:32;31942:2;31934:6;31930:15;31923:57;31738:249;:::o;31993:182::-;32133:34;32129:1;32121:6;32117:14;32110:58;31993:182;:::o;32181:::-;32321:34;32317:1;32309:6;32305:14;32298:58;32181:182;:::o;32369:174::-;32509:26;32505:1;32497:6;32493:14;32486:50;32369:174;:::o;32549:220::-;32689:34;32685:1;32677:6;32673:14;32666:58;32758:3;32753:2;32745:6;32741:15;32734:28;32549:220;:::o;32775:233::-;32915:34;32911:1;32903:6;32899:14;32892:58;32984:16;32979:2;32971:6;32967:15;32960:41;32775:233;:::o;33014:122::-;33087:24;33105:5;33087:24;:::i;:::-;33080:5;33077:35;33067:63;;33126:1;33123;33116:12;33067:63;33014:122;:::o;33142:116::-;33212:21;33227:5;33212:21;:::i;:::-;33205:5;33202:32;33192:60;;33248:1;33245;33238:12;33192:60;33142:116;:::o;33264:120::-;33336:23;33353:5;33336:23;:::i;:::-;33329:5;33326:34;33316:62;;33374:1;33371;33364:12;33316:62;33264:120;:::o;33390:122::-;33463:24;33481:5;33463:24;:::i;:::-;33456:5;33453:35;33443:63;;33502:1;33499;33492:12;33443:63;33390:122;:::o

Swarm Source

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