ETH Price: $3,335.84 (-1.73%)
Gas: 46 Gwei

Token

Ring of Trust (Ring of Trust)
 

Overview

Max Total Supply

0 Ring of Trust

Holders

134

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
binah.eth
Balance
1 Ring of Trust
0x26358e62c2eded350e311bfde51588b8383a9315
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
UnionRing

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 2021-11-25
*/

// Sources flattened with hardhat v2.6.8 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]


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/[email protected]


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() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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/token/ERC721/[email protected]


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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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/utils/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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 contracts/ERC721.sol


pragma solidity ^0.8.0;







/**
 * Same as standard implementation except with a mintBatch function
 */

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

    function _mintBatch(address to, uint256[] memory ids) internal virtual {
        for (uint256 i = 0; i < ids.length; i++) {
            require(!_exists(ids[i]), "ERC721: token already minted");
            _owners[ids[i]] = to;
        }

        _balances[to] += ids.length;
    }

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File contracts/UnionRing.sol

pragma solidity ^0.8.0;


contract UnionRing is ERC721("Ring of Trust", "Ring of Trust"), Ownable {
  using Strings for uint256;

  string public baseURI;

  function mintRing(address to, uint256 id) public onlyOwner {
    _mint(to, id);
  }

  function mintRings(address to, uint256[] memory ids) public onlyOwner {
    _mintBatch(to, ids);
  }

  function setBaseURI(string memory uri) public onlyOwner {
    baseURI = uri;
  }

  function contractURI() public view returns (string memory) {
    return string(abi.encodePacked(baseURI, "contract.json"));
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
  }
}

Contract Security Audit

Contract ABI

[{"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"mintRing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"mintRings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f52696e67206f66205472757374000000000000000000000000000000000000008152506040518060400160405280600d81526020017f52696e67206f6620547275737400000000000000000000000000000000000000815250816000908051906020019062000096929190620001a6565b508060019080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61329580620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80636c0360eb116100b8578063a22cb4651161007c578063a22cb46514610326578063b88d4fde14610342578063c87b56dd1461035e578063e8a3d4851461038e578063e985e9c5146103ac578063f2fde38b146103dc57610137565b80636c0360eb1461029257806370a08231146102b0578063715018a6146102e05780638da5cb5b146102ea57806395d89b411461030857610137565b806323b872dd116100ff57806323b872dd146101f257806332b6509e1461020e57806342842e0e1461022a57806355f804b3146102465780636352211e1461026257610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba57806314788b94146101d6575b600080fd5b61015660048036038101906101519190612146565b6103f8565b6040516101639190612693565b60405180910390f35b6101746104da565b60405161018191906126ae565b60405180910390f35b6101a4600480360381019061019f91906121e9565b61056c565b6040516101b1919061262c565b60405180910390f35b6101d460048036038101906101cf9190612106565b6105f1565b005b6101f060048036038101906101eb9190612106565b610709565b005b61020c60048036038101906102079190611f94565b610793565b005b6102286004803603810190610223919061206a565b6107f3565b005b610244600480360381019061023f9190611f94565b61087d565b005b610260600480360381019061025b91906121a0565b61089d565b005b61027c600480360381019061027791906121e9565b610933565b604051610289919061262c565b60405180910390f35b61029a6109e5565b6040516102a791906126ae565b60405180910390f35b6102ca60048036038101906102c59190611f27565b610a73565b6040516102d791906128d0565b60405180910390f35b6102e8610b2b565b005b6102f2610bb3565b6040516102ff919061262c565b60405180910390f35b610310610bdd565b60405161031d91906126ae565b60405180910390f35b610340600480360381019061033b91906120c6565b610c6f565b005b61035c60048036038101906103579190611fe7565b610df0565b005b610378600480360381019061037391906121e9565b610e52565b60405161038591906126ae565b60405180910390f35b610396610ece565b6040516103a391906126ae565b60405180910390f35b6103c660048036038101906103c19190611f54565b610ef6565b6040516103d39190612693565b60405180910390f35b6103f660048036038101906103f19190611f27565b610f8a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104c357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d357506104d282611082565b5b9050919050565b6060600080546104e990612b67565b80601f016020809104026020016040519081016040528092919081815260200182805461051590612b67565b80156105625780601f1061053757610100808354040283529160200191610562565b820191906000526020600020905b81548152906001019060200180831161054557829003601f168201915b5050505050905090565b6000610577826110ec565b6105b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ad90612810565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105fc82610933565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561066d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066490612890565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661068c611158565b73ffffffffffffffffffffffffffffffffffffffff1614806106bb57506106ba816106b5611158565b610ef6565b5b6106fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f190612790565b60405180910390fd5b6107048383611160565b505050565b610711611158565b73ffffffffffffffffffffffffffffffffffffffff1661072f610bb3565b73ffffffffffffffffffffffffffffffffffffffff1614610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077c90612830565b60405180910390fd5b61078f8282611219565b5050565b6107a461079e611158565b826113e7565b6107e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107da906128b0565b60405180910390fd5b6107ee8383836114c5565b505050565b6107fb611158565b73ffffffffffffffffffffffffffffffffffffffff16610819610bb3565b73ffffffffffffffffffffffffffffffffffffffff161461086f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086690612830565b60405180910390fd5b6108798282611721565b5050565b61089883838360405180602001604052806000815250610df0565b505050565b6108a5611158565b73ffffffffffffffffffffffffffffffffffffffff166108c3610bb3565b73ffffffffffffffffffffffffffffffffffffffff1614610919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091090612830565b60405180910390fd5b806007908051906020019061092f929190611c9d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d3906127d0565b60405180910390fd5b80915050919050565b600780546109f290612b67565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1e90612b67565b8015610a6b5780601f10610a4057610100808354040283529160200191610a6b565b820191906000526020600020905b815481529060010190602001808311610a4e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb906127b0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b33611158565b73ffffffffffffffffffffffffffffffffffffffff16610b51610bb3565b73ffffffffffffffffffffffffffffffffffffffff1614610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90612830565b60405180910390fd5b610bb1600061186b565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610bec90612b67565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1890612b67565b8015610c655780601f10610c3a57610100808354040283529160200191610c65565b820191906000526020600020905b815481529060010190602001808311610c4857829003601f168201915b5050505050905090565b610c77611158565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90612750565b60405180910390fd5b8060056000610cf2611158565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d9f611158565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610de49190612693565b60405180910390a35050565b610e01610dfb611158565b836113e7565b610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e37906128b0565b60405180910390fd5b610e4c84848484611931565b50505050565b6060610e5d826110ec565b610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390612870565b60405180910390fd5b6007610ea78361198d565b604051602001610eb89291906125db565b6040516020818303038152906040529050919050565b60606007604051602001610ee2919061260a565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f92611158565b73ffffffffffffffffffffffffffffffffffffffff16610fb0610bb3565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90612830565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d906126f0565b60405180910390fd5b61107f8161186b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111d383610933565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611280906127f0565b60405180910390fd5b611292816110ec565b156112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990612710565b60405180910390fd5b6112de60008383611aee565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461132e91906129f6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006113f2826110ec565b611431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142890612770565b60405180910390fd5b600061143c83610933565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114ab57508373ffffffffffffffffffffffffffffffffffffffff166114938461056c565b73ffffffffffffffffffffffffffffffffffffffff16145b806114bc57506114bb8185610ef6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166114e582610933565b73ffffffffffffffffffffffffffffffffffffffff161461153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290612850565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290612730565b60405180910390fd5b6115b6838383611aee565b6115c1600082611160565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116119190612a7d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461166891906129f6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60005b815181101561180f5761175082828151811061174357611742612cd1565b5b60200260200101516110ec565b15611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790612710565b60405180910390fd5b82600260008484815181106117a8576117a7612cd1565b5b6020026020010151815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808061180790612bca565b915050611724565b508051600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461186091906129f6565b925050819055505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61193c8484846114c5565b61194884848484611af3565b611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e906126d0565b60405180910390fd5b50505050565b606060008214156119d5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ae9565b600082905060005b60008214611a075780806119f090612bca565b915050600a82611a009190612a4c565b91506119dd565b60008167ffffffffffffffff811115611a2357611a22612d00565b5b6040519080825280601f01601f191660200182016040528015611a555781602001600182028036833780820191505090505b5090505b60008514611ae257600182611a6e9190612a7d565b9150600a85611a7d9190612c13565b6030611a8991906129f6565b60f81b818381518110611a9f57611a9e612cd1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611adb9190612a4c565b9450611a59565b8093505050505b919050565b505050565b6000611b148473ffffffffffffffffffffffffffffffffffffffff16611c8a565b15611c7d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b3d611158565b8786866040518563ffffffff1660e01b8152600401611b5f9493929190612647565b602060405180830381600087803b158015611b7957600080fd5b505af1925050508015611baa57506040513d601f19601f82011682018060405250810190611ba79190612173565b60015b611c2d573d8060008114611bda576040519150601f19603f3d011682016040523d82523d6000602084013e611bdf565b606091505b50600081511415611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c906126d0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c82565b600190505b949350505050565b600080823b905060008111915050919050565b828054611ca990612b67565b90600052602060002090601f016020900481019282611ccb5760008555611d12565b82601f10611ce457805160ff1916838001178555611d12565b82800160010185558215611d12579182015b82811115611d11578251825591602001919060010190611cf6565b5b509050611d1f9190611d23565b5090565b5b80821115611d3c576000816000905550600101611d24565b5090565b6000611d53611d4e84612910565b6128eb565b90508083825260208201905082856020860282011115611d7657611d75612d34565b5b60005b85811015611da65781611d8c8882611f12565b845260208401935060208301925050600181019050611d79565b5050509392505050565b6000611dc3611dbe8461293c565b6128eb565b905082815260208101848484011115611ddf57611dde612d39565b5b611dea848285612b25565b509392505050565b6000611e05611e008461296d565b6128eb565b905082815260208101848484011115611e2157611e20612d39565b5b611e2c848285612b25565b509392505050565b600081359050611e4381613203565b92915050565b600082601f830112611e5e57611e5d612d2f565b5b8135611e6e848260208601611d40565b91505092915050565b600081359050611e868161321a565b92915050565b600081359050611e9b81613231565b92915050565b600081519050611eb081613231565b92915050565b600082601f830112611ecb57611eca612d2f565b5b8135611edb848260208601611db0565b91505092915050565b600082601f830112611ef957611ef8612d2f565b5b8135611f09848260208601611df2565b91505092915050565b600081359050611f2181613248565b92915050565b600060208284031215611f3d57611f3c612d43565b5b6000611f4b84828501611e34565b91505092915050565b60008060408385031215611f6b57611f6a612d43565b5b6000611f7985828601611e34565b9250506020611f8a85828601611e34565b9150509250929050565b600080600060608486031215611fad57611fac612d43565b5b6000611fbb86828701611e34565b9350506020611fcc86828701611e34565b9250506040611fdd86828701611f12565b9150509250925092565b6000806000806080858703121561200157612000612d43565b5b600061200f87828801611e34565b945050602061202087828801611e34565b935050604061203187828801611f12565b925050606085013567ffffffffffffffff81111561205257612051612d3e565b5b61205e87828801611eb6565b91505092959194509250565b6000806040838503121561208157612080612d43565b5b600061208f85828601611e34565b925050602083013567ffffffffffffffff8111156120b0576120af612d3e565b5b6120bc85828601611e49565b9150509250929050565b600080604083850312156120dd576120dc612d43565b5b60006120eb85828601611e34565b92505060206120fc85828601611e77565b9150509250929050565b6000806040838503121561211d5761211c612d43565b5b600061212b85828601611e34565b925050602061213c85828601611f12565b9150509250929050565b60006020828403121561215c5761215b612d43565b5b600061216a84828501611e8c565b91505092915050565b60006020828403121561218957612188612d43565b5b600061219784828501611ea1565b91505092915050565b6000602082840312156121b6576121b5612d43565b5b600082013567ffffffffffffffff8111156121d4576121d3612d3e565b5b6121e084828501611ee4565b91505092915050565b6000602082840312156121ff576121fe612d43565b5b600061220d84828501611f12565b91505092915050565b61221f81612ab1565b82525050565b61222e81612ac3565b82525050565b600061223f826129b3565b61224981856129c9565b9350612259818560208601612b34565b61226281612d48565b840191505092915050565b6000612278826129be565b61228281856129da565b9350612292818560208601612b34565b61229b81612d48565b840191505092915050565b60006122b1826129be565b6122bb81856129eb565b93506122cb818560208601612b34565b80840191505092915050565b600081546122e481612b67565b6122ee81866129eb565b94506001821660008114612309576001811461231a5761234d565b60ff1983168652818601935061234d565b6123238561299e565b60005b8381101561234557815481890152600182019150602081019050612326565b838801955050505b50505092915050565b6000612363600d836129eb565b915061236e82612d59565b600d82019050919050565b60006123866032836129da565b915061239182612d82565b604082019050919050565b60006123a96026836129da565b91506123b482612dd1565b604082019050919050565b60006123cc601c836129da565b91506123d782612e20565b602082019050919050565b60006123ef6024836129da565b91506123fa82612e49565b604082019050919050565b60006124126019836129da565b915061241d82612e98565b602082019050919050565b6000612435602c836129da565b915061244082612ec1565b604082019050919050565b60006124586038836129da565b915061246382612f10565b604082019050919050565b600061247b602a836129da565b915061248682612f5f565b604082019050919050565b600061249e6029836129da565b91506124a982612fae565b604082019050919050565b60006124c16020836129da565b91506124cc82612ffd565b602082019050919050565b60006124e4602c836129da565b91506124ef82613026565b604082019050919050565b60006125076005836129eb565b915061251282613075565b600582019050919050565b600061252a6020836129da565b91506125358261309e565b602082019050919050565b600061254d6029836129da565b9150612558826130c7565b604082019050919050565b6000612570602f836129da565b915061257b82613116565b604082019050919050565b60006125936021836129da565b915061259e82613165565b604082019050919050565b60006125b66031836129da565b91506125c1826131b4565b604082019050919050565b6125d581612b1b565b82525050565b60006125e782856122d7565b91506125f382846122a6565b91506125fe826124fa565b91508190509392505050565b600061261682846122d7565b915061262182612356565b915081905092915050565b60006020820190506126416000830184612216565b92915050565b600060808201905061265c6000830187612216565b6126696020830186612216565b61267660408301856125cc565b81810360608301526126888184612234565b905095945050505050565b60006020820190506126a86000830184612225565b92915050565b600060208201905081810360008301526126c8818461226d565b905092915050565b600060208201905081810360008301526126e981612379565b9050919050565b600060208201905081810360008301526127098161239c565b9050919050565b60006020820190508181036000830152612729816123bf565b9050919050565b60006020820190508181036000830152612749816123e2565b9050919050565b6000602082019050818103600083015261276981612405565b9050919050565b6000602082019050818103600083015261278981612428565b9050919050565b600060208201905081810360008301526127a98161244b565b9050919050565b600060208201905081810360008301526127c98161246e565b9050919050565b600060208201905081810360008301526127e981612491565b9050919050565b60006020820190508181036000830152612809816124b4565b9050919050565b60006020820190508181036000830152612829816124d7565b9050919050565b600060208201905081810360008301526128498161251d565b9050919050565b6000602082019050818103600083015261286981612540565b9050919050565b6000602082019050818103600083015261288981612563565b9050919050565b600060208201905081810360008301526128a981612586565b9050919050565b600060208201905081810360008301526128c9816125a9565b9050919050565b60006020820190506128e560008301846125cc565b92915050565b60006128f5612906565b90506129018282612b99565b919050565b6000604051905090565b600067ffffffffffffffff82111561292b5761292a612d00565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561295757612956612d00565b5b61296082612d48565b9050602081019050919050565b600067ffffffffffffffff82111561298857612987612d00565b5b61299182612d48565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a0182612b1b565b9150612a0c83612b1b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a4157612a40612c44565b5b828201905092915050565b6000612a5782612b1b565b9150612a6283612b1b565b925082612a7257612a71612c73565b5b828204905092915050565b6000612a8882612b1b565b9150612a9383612b1b565b925082821015612aa657612aa5612c44565b5b828203905092915050565b6000612abc82612afb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b52578082015181840152602081019050612b37565b83811115612b61576000848401525b50505050565b60006002820490506001821680612b7f57607f821691505b60208210811415612b9357612b92612ca2565b5b50919050565b612ba282612d48565b810181811067ffffffffffffffff82111715612bc157612bc0612d00565b5b80604052505050565b6000612bd582612b1b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c0857612c07612c44565b5b600182019050919050565b6000612c1e82612b1b565b9150612c2983612b1b565b925082612c3957612c38612c73565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f636f6e74726163742e6a736f6e00000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61320c81612ab1565b811461321757600080fd5b50565b61322381612ac3565b811461322e57600080fd5b50565b61323a81612acf565b811461324557600080fd5b50565b61325181612b1b565b811461325c57600080fd5b5056fea264697066735822122040c61de3a5c1a626ececedeafa8539797f1fc2d7087480eaa734f693ee65ea3164736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80636c0360eb116100b8578063a22cb4651161007c578063a22cb46514610326578063b88d4fde14610342578063c87b56dd1461035e578063e8a3d4851461038e578063e985e9c5146103ac578063f2fde38b146103dc57610137565b80636c0360eb1461029257806370a08231146102b0578063715018a6146102e05780638da5cb5b146102ea57806395d89b411461030857610137565b806323b872dd116100ff57806323b872dd146101f257806332b6509e1461020e57806342842e0e1461022a57806355f804b3146102465780636352211e1461026257610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba57806314788b94146101d6575b600080fd5b61015660048036038101906101519190612146565b6103f8565b6040516101639190612693565b60405180910390f35b6101746104da565b60405161018191906126ae565b60405180910390f35b6101a4600480360381019061019f91906121e9565b61056c565b6040516101b1919061262c565b60405180910390f35b6101d460048036038101906101cf9190612106565b6105f1565b005b6101f060048036038101906101eb9190612106565b610709565b005b61020c60048036038101906102079190611f94565b610793565b005b6102286004803603810190610223919061206a565b6107f3565b005b610244600480360381019061023f9190611f94565b61087d565b005b610260600480360381019061025b91906121a0565b61089d565b005b61027c600480360381019061027791906121e9565b610933565b604051610289919061262c565b60405180910390f35b61029a6109e5565b6040516102a791906126ae565b60405180910390f35b6102ca60048036038101906102c59190611f27565b610a73565b6040516102d791906128d0565b60405180910390f35b6102e8610b2b565b005b6102f2610bb3565b6040516102ff919061262c565b60405180910390f35b610310610bdd565b60405161031d91906126ae565b60405180910390f35b610340600480360381019061033b91906120c6565b610c6f565b005b61035c60048036038101906103579190611fe7565b610df0565b005b610378600480360381019061037391906121e9565b610e52565b60405161038591906126ae565b60405180910390f35b610396610ece565b6040516103a391906126ae565b60405180910390f35b6103c660048036038101906103c19190611f54565b610ef6565b6040516103d39190612693565b60405180910390f35b6103f660048036038101906103f19190611f27565b610f8a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104c357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d357506104d282611082565b5b9050919050565b6060600080546104e990612b67565b80601f016020809104026020016040519081016040528092919081815260200182805461051590612b67565b80156105625780601f1061053757610100808354040283529160200191610562565b820191906000526020600020905b81548152906001019060200180831161054557829003601f168201915b5050505050905090565b6000610577826110ec565b6105b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ad90612810565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105fc82610933565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561066d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066490612890565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661068c611158565b73ffffffffffffffffffffffffffffffffffffffff1614806106bb57506106ba816106b5611158565b610ef6565b5b6106fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f190612790565b60405180910390fd5b6107048383611160565b505050565b610711611158565b73ffffffffffffffffffffffffffffffffffffffff1661072f610bb3565b73ffffffffffffffffffffffffffffffffffffffff1614610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077c90612830565b60405180910390fd5b61078f8282611219565b5050565b6107a461079e611158565b826113e7565b6107e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107da906128b0565b60405180910390fd5b6107ee8383836114c5565b505050565b6107fb611158565b73ffffffffffffffffffffffffffffffffffffffff16610819610bb3565b73ffffffffffffffffffffffffffffffffffffffff161461086f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086690612830565b60405180910390fd5b6108798282611721565b5050565b61089883838360405180602001604052806000815250610df0565b505050565b6108a5611158565b73ffffffffffffffffffffffffffffffffffffffff166108c3610bb3565b73ffffffffffffffffffffffffffffffffffffffff1614610919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091090612830565b60405180910390fd5b806007908051906020019061092f929190611c9d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d3906127d0565b60405180910390fd5b80915050919050565b600780546109f290612b67565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1e90612b67565b8015610a6b5780601f10610a4057610100808354040283529160200191610a6b565b820191906000526020600020905b815481529060010190602001808311610a4e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb906127b0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b33611158565b73ffffffffffffffffffffffffffffffffffffffff16610b51610bb3565b73ffffffffffffffffffffffffffffffffffffffff1614610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90612830565b60405180910390fd5b610bb1600061186b565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610bec90612b67565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1890612b67565b8015610c655780601f10610c3a57610100808354040283529160200191610c65565b820191906000526020600020905b815481529060010190602001808311610c4857829003601f168201915b5050505050905090565b610c77611158565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90612750565b60405180910390fd5b8060056000610cf2611158565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d9f611158565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610de49190612693565b60405180910390a35050565b610e01610dfb611158565b836113e7565b610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e37906128b0565b60405180910390fd5b610e4c84848484611931565b50505050565b6060610e5d826110ec565b610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390612870565b60405180910390fd5b6007610ea78361198d565b604051602001610eb89291906125db565b6040516020818303038152906040529050919050565b60606007604051602001610ee2919061260a565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f92611158565b73ffffffffffffffffffffffffffffffffffffffff16610fb0610bb3565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90612830565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d906126f0565b60405180910390fd5b61107f8161186b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111d383610933565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611280906127f0565b60405180910390fd5b611292816110ec565b156112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990612710565b60405180910390fd5b6112de60008383611aee565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461132e91906129f6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006113f2826110ec565b611431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142890612770565b60405180910390fd5b600061143c83610933565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114ab57508373ffffffffffffffffffffffffffffffffffffffff166114938461056c565b73ffffffffffffffffffffffffffffffffffffffff16145b806114bc57506114bb8185610ef6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166114e582610933565b73ffffffffffffffffffffffffffffffffffffffff161461153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290612850565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290612730565b60405180910390fd5b6115b6838383611aee565b6115c1600082611160565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116119190612a7d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461166891906129f6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60005b815181101561180f5761175082828151811061174357611742612cd1565b5b60200260200101516110ec565b15611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790612710565b60405180910390fd5b82600260008484815181106117a8576117a7612cd1565b5b6020026020010151815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808061180790612bca565b915050611724565b508051600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461186091906129f6565b925050819055505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61193c8484846114c5565b61194884848484611af3565b611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e906126d0565b60405180910390fd5b50505050565b606060008214156119d5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ae9565b600082905060005b60008214611a075780806119f090612bca565b915050600a82611a009190612a4c565b91506119dd565b60008167ffffffffffffffff811115611a2357611a22612d00565b5b6040519080825280601f01601f191660200182016040528015611a555781602001600182028036833780820191505090505b5090505b60008514611ae257600182611a6e9190612a7d565b9150600a85611a7d9190612c13565b6030611a8991906129f6565b60f81b818381518110611a9f57611a9e612cd1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611adb9190612a4c565b9450611a59565b8093505050505b919050565b505050565b6000611b148473ffffffffffffffffffffffffffffffffffffffff16611c8a565b15611c7d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b3d611158565b8786866040518563ffffffff1660e01b8152600401611b5f9493929190612647565b602060405180830381600087803b158015611b7957600080fd5b505af1925050508015611baa57506040513d601f19601f82011682018060405250810190611ba79190612173565b60015b611c2d573d8060008114611bda576040519150601f19603f3d011682016040523d82523d6000602084013e611bdf565b606091505b50600081511415611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c906126d0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c82565b600190505b949350505050565b600080823b905060008111915050919050565b828054611ca990612b67565b90600052602060002090601f016020900481019282611ccb5760008555611d12565b82601f10611ce457805160ff1916838001178555611d12565b82800160010185558215611d12579182015b82811115611d11578251825591602001919060010190611cf6565b5b509050611d1f9190611d23565b5090565b5b80821115611d3c576000816000905550600101611d24565b5090565b6000611d53611d4e84612910565b6128eb565b90508083825260208201905082856020860282011115611d7657611d75612d34565b5b60005b85811015611da65781611d8c8882611f12565b845260208401935060208301925050600181019050611d79565b5050509392505050565b6000611dc3611dbe8461293c565b6128eb565b905082815260208101848484011115611ddf57611dde612d39565b5b611dea848285612b25565b509392505050565b6000611e05611e008461296d565b6128eb565b905082815260208101848484011115611e2157611e20612d39565b5b611e2c848285612b25565b509392505050565b600081359050611e4381613203565b92915050565b600082601f830112611e5e57611e5d612d2f565b5b8135611e6e848260208601611d40565b91505092915050565b600081359050611e868161321a565b92915050565b600081359050611e9b81613231565b92915050565b600081519050611eb081613231565b92915050565b600082601f830112611ecb57611eca612d2f565b5b8135611edb848260208601611db0565b91505092915050565b600082601f830112611ef957611ef8612d2f565b5b8135611f09848260208601611df2565b91505092915050565b600081359050611f2181613248565b92915050565b600060208284031215611f3d57611f3c612d43565b5b6000611f4b84828501611e34565b91505092915050565b60008060408385031215611f6b57611f6a612d43565b5b6000611f7985828601611e34565b9250506020611f8a85828601611e34565b9150509250929050565b600080600060608486031215611fad57611fac612d43565b5b6000611fbb86828701611e34565b9350506020611fcc86828701611e34565b9250506040611fdd86828701611f12565b9150509250925092565b6000806000806080858703121561200157612000612d43565b5b600061200f87828801611e34565b945050602061202087828801611e34565b935050604061203187828801611f12565b925050606085013567ffffffffffffffff81111561205257612051612d3e565b5b61205e87828801611eb6565b91505092959194509250565b6000806040838503121561208157612080612d43565b5b600061208f85828601611e34565b925050602083013567ffffffffffffffff8111156120b0576120af612d3e565b5b6120bc85828601611e49565b9150509250929050565b600080604083850312156120dd576120dc612d43565b5b60006120eb85828601611e34565b92505060206120fc85828601611e77565b9150509250929050565b6000806040838503121561211d5761211c612d43565b5b600061212b85828601611e34565b925050602061213c85828601611f12565b9150509250929050565b60006020828403121561215c5761215b612d43565b5b600061216a84828501611e8c565b91505092915050565b60006020828403121561218957612188612d43565b5b600061219784828501611ea1565b91505092915050565b6000602082840312156121b6576121b5612d43565b5b600082013567ffffffffffffffff8111156121d4576121d3612d3e565b5b6121e084828501611ee4565b91505092915050565b6000602082840312156121ff576121fe612d43565b5b600061220d84828501611f12565b91505092915050565b61221f81612ab1565b82525050565b61222e81612ac3565b82525050565b600061223f826129b3565b61224981856129c9565b9350612259818560208601612b34565b61226281612d48565b840191505092915050565b6000612278826129be565b61228281856129da565b9350612292818560208601612b34565b61229b81612d48565b840191505092915050565b60006122b1826129be565b6122bb81856129eb565b93506122cb818560208601612b34565b80840191505092915050565b600081546122e481612b67565b6122ee81866129eb565b94506001821660008114612309576001811461231a5761234d565b60ff1983168652818601935061234d565b6123238561299e565b60005b8381101561234557815481890152600182019150602081019050612326565b838801955050505b50505092915050565b6000612363600d836129eb565b915061236e82612d59565b600d82019050919050565b60006123866032836129da565b915061239182612d82565b604082019050919050565b60006123a96026836129da565b91506123b482612dd1565b604082019050919050565b60006123cc601c836129da565b91506123d782612e20565b602082019050919050565b60006123ef6024836129da565b91506123fa82612e49565b604082019050919050565b60006124126019836129da565b915061241d82612e98565b602082019050919050565b6000612435602c836129da565b915061244082612ec1565b604082019050919050565b60006124586038836129da565b915061246382612f10565b604082019050919050565b600061247b602a836129da565b915061248682612f5f565b604082019050919050565b600061249e6029836129da565b91506124a982612fae565b604082019050919050565b60006124c16020836129da565b91506124cc82612ffd565b602082019050919050565b60006124e4602c836129da565b91506124ef82613026565b604082019050919050565b60006125076005836129eb565b915061251282613075565b600582019050919050565b600061252a6020836129da565b91506125358261309e565b602082019050919050565b600061254d6029836129da565b9150612558826130c7565b604082019050919050565b6000612570602f836129da565b915061257b82613116565b604082019050919050565b60006125936021836129da565b915061259e82613165565b604082019050919050565b60006125b66031836129da565b91506125c1826131b4565b604082019050919050565b6125d581612b1b565b82525050565b60006125e782856122d7565b91506125f382846122a6565b91506125fe826124fa565b91508190509392505050565b600061261682846122d7565b915061262182612356565b915081905092915050565b60006020820190506126416000830184612216565b92915050565b600060808201905061265c6000830187612216565b6126696020830186612216565b61267660408301856125cc565b81810360608301526126888184612234565b905095945050505050565b60006020820190506126a86000830184612225565b92915050565b600060208201905081810360008301526126c8818461226d565b905092915050565b600060208201905081810360008301526126e981612379565b9050919050565b600060208201905081810360008301526127098161239c565b9050919050565b60006020820190508181036000830152612729816123bf565b9050919050565b60006020820190508181036000830152612749816123e2565b9050919050565b6000602082019050818103600083015261276981612405565b9050919050565b6000602082019050818103600083015261278981612428565b9050919050565b600060208201905081810360008301526127a98161244b565b9050919050565b600060208201905081810360008301526127c98161246e565b9050919050565b600060208201905081810360008301526127e981612491565b9050919050565b60006020820190508181036000830152612809816124b4565b9050919050565b60006020820190508181036000830152612829816124d7565b9050919050565b600060208201905081810360008301526128498161251d565b9050919050565b6000602082019050818103600083015261286981612540565b9050919050565b6000602082019050818103600083015261288981612563565b9050919050565b600060208201905081810360008301526128a981612586565b9050919050565b600060208201905081810360008301526128c9816125a9565b9050919050565b60006020820190506128e560008301846125cc565b92915050565b60006128f5612906565b90506129018282612b99565b919050565b6000604051905090565b600067ffffffffffffffff82111561292b5761292a612d00565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561295757612956612d00565b5b61296082612d48565b9050602081019050919050565b600067ffffffffffffffff82111561298857612987612d00565b5b61299182612d48565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a0182612b1b565b9150612a0c83612b1b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a4157612a40612c44565b5b828201905092915050565b6000612a5782612b1b565b9150612a6283612b1b565b925082612a7257612a71612c73565b5b828204905092915050565b6000612a8882612b1b565b9150612a9383612b1b565b925082821015612aa657612aa5612c44565b5b828203905092915050565b6000612abc82612afb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b52578082015181840152602081019050612b37565b83811115612b61576000848401525b50505050565b60006002820490506001821680612b7f57607f821691505b60208210811415612b9357612b92612ca2565b5b50919050565b612ba282612d48565b810181811067ffffffffffffffff82111715612bc157612bc0612d00565b5b80604052505050565b6000612bd582612b1b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c0857612c07612c44565b5b600182019050919050565b6000612c1e82612b1b565b9150612c2983612b1b565b925082612c3957612c38612c73565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f636f6e74726163742e6a736f6e00000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61320c81612ab1565b811461321757600080fd5b50565b61322381612ac3565b811461322e57600080fd5b50565b61323a81612acf565b811461324557600080fd5b50565b61325181612b1b565b811461325c57600080fd5b5056fea264697066735822122040c61de3a5c1a626ececedeafa8539797f1fc2d7087480eaa734f693ee65ea3164736f6c63430008070033

Deployed Bytecode Sourcemap

35568:866:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23082:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24027:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25586:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25109:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35705:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26476:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35796:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26886:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35904:82;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23721:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35677:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23451:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2560:94;;;:::i;:::-;;1909:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24196:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25879:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27142:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36127:304;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35992:129;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26245:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2809:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23082:305;23184:4;23236:25;23221:40;;;:11;:40;;;;:105;;;;23293:33;23278:48;;;:11;:48;;;;23221:105;:158;;;;23343:36;23367:11;23343:23;:36::i;:::-;23221:158;23201:178;;23082:305;;;:::o;24027:100::-;24081:13;24114:5;24107:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24027:100;:::o;25586:221::-;25662:7;25690:16;25698:7;25690;:16::i;:::-;25682:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25775:15;:24;25791:7;25775:24;;;;;;;;;;;;;;;;;;;;;25768:31;;25586:221;;;:::o;25109:411::-;25190:13;25206:23;25221:7;25206:14;:23::i;:::-;25190:39;;25254:5;25248:11;;:2;:11;;;;25240:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25348:5;25332:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25357:37;25374:5;25381:12;:10;:12::i;:::-;25357:16;:37::i;:::-;25332:62;25310:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;25491:21;25500:2;25504:7;25491:8;:21::i;:::-;25179:341;25109:411;;:::o;35705:85::-;2140:12;:10;:12::i;:::-;2129:23;;:7;:5;:7::i;:::-;:23;;;2121:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35771:13:::1;35777:2;35781;35771:5;:13::i;:::-;35705:85:::0;;:::o;26476:339::-;26671:41;26690:12;:10;:12::i;:::-;26704:7;26671:18;:41::i;:::-;26663:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26779:28;26789:4;26795:2;26799:7;26779:9;:28::i;:::-;26476:339;;;:::o;35796:102::-;2140:12;:10;:12::i;:::-;2129:23;;:7;:5;:7::i;:::-;:23;;;2121:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35873:19:::1;35884:2;35888:3;35873:10;:19::i;:::-;35796:102:::0;;:::o;26886:185::-;27024:39;27041:4;27047:2;27051:7;27024:39;;;;;;;;;;;;:16;:39::i;:::-;26886:185;;;:::o;35904:82::-;2140:12;:10;:12::i;:::-;2129:23;;:7;:5;:7::i;:::-;:23;;;2121:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35977:3:::1;35967:7;:13;;;;;;;;;;;;:::i;:::-;;35904:82:::0;:::o;23721:239::-;23793:7;23813:13;23829:7;:16;23837:7;23829:16;;;;;;;;;;;;;;;;;;;;;23813:32;;23881:1;23864:19;;:5;:19;;;;23856:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23947:5;23940:12;;;23721:239;;;:::o;35677:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23451:208::-;23523:7;23568:1;23551:19;;:5;:19;;;;23543:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23635:9;:16;23645:5;23635:16;;;;;;;;;;;;;;;;23628:23;;23451:208;;;:::o;2560:94::-;2140:12;:10;:12::i;:::-;2129:23;;:7;:5;:7::i;:::-;:23;;;2121:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2625:21:::1;2643:1;2625:9;:21::i;:::-;2560:94::o:0;1909:87::-;1955:7;1982:6;;;;;;;;;;;1975:13;;1909:87;:::o;24196:104::-;24252:13;24285:7;24278:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24196:104;:::o;25879:295::-;25994:12;:10;:12::i;:::-;25982:24;;:8;:24;;;;25974:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26094:8;26049:18;:32;26068:12;:10;:12::i;:::-;26049:32;;;;;;;;;;;;;;;:42;26082:8;26049:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26147:8;26118:48;;26133:12;:10;:12::i;:::-;26118:48;;;26157:8;26118:48;;;;;;:::i;:::-;;;;;;;;25879:295;;:::o;27142:328::-;27317:41;27336:12;:10;:12::i;:::-;27350:7;27317:18;:41::i;:::-;27309:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27423:39;27437:4;27443:2;27447:7;27456:5;27423:13;:39::i;:::-;27142:328;;;;:::o;36127:304::-;36225:13;36266:16;36274:7;36266;:16::i;:::-;36250:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;36387:7;36396:18;:7;:16;:18::i;:::-;36370:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36356:69;;36127:304;;;:::o;35992:129::-;36036:13;36089:7;36072:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;36058:57;;35992:129;:::o;26245:164::-;26342:4;26366:18;:25;26385:5;26366:25;;;;;;;;;;;;;;;:35;26392:8;26366:35;;;;;;;;;;;;;;;;;;;;;;;;;26359:42;;26245:164;;;;:::o;2809:192::-;2140:12;:10;:12::i;:::-;2129:23;;:7;:5;:7::i;:::-;:23;;;2121:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2918:1:::1;2898:22;;:8;:22;;;;2890:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2974:19;2984:8;2974:9;:19::i;:::-;2809:192:::0;:::o;21535:157::-;21620:4;21659:25;21644:40;;;:11;:40;;;;21637:47;;21535:157;;;:::o;28980:127::-;29045:4;29097:1;29069:30;;:7;:16;29077:7;29069:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29062:37;;28980:127;;;:::o;693:98::-;746:7;773:10;766:17;;693:98;:::o;33259:174::-;33361:2;33334:15;:24;33350:7;33334:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33417:7;33413:2;33379:46;;33388:23;33403:7;33388:14;:23::i;:::-;33379:46;;;;;;;;;;;;33259:174;;:::o;30958:382::-;31052:1;31038:16;;:2;:16;;;;31030:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31111:16;31119:7;31111;:16::i;:::-;31110:17;31102:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31173:45;31202:1;31206:2;31210:7;31173:20;:45::i;:::-;31248:1;31231:9;:13;31241:2;31231:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31279:2;31260:7;:16;31268:7;31260:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31324:7;31320:2;31299:33;;31316:1;31299:33;;;;;;;;;;;;30958:382;;:::o;29274:348::-;29367:4;29392:16;29400:7;29392;:16::i;:::-;29384:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29468:13;29484:23;29499:7;29484:14;:23::i;:::-;29468:39;;29537:5;29526:16;;:7;:16;;;:51;;;;29570:7;29546:31;;:20;29558:7;29546:11;:20::i;:::-;:31;;;29526:51;:87;;;;29581:32;29598:5;29605:7;29581:16;:32::i;:::-;29526:87;29518:96;;;29274:348;;;;:::o;32563:578::-;32722:4;32695:31;;:23;32710:7;32695:14;:23::i;:::-;:31;;;32687:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32805:1;32791:16;;:2;:16;;;;32783:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32861:39;32882:4;32888:2;32892:7;32861:20;:39::i;:::-;32965:29;32982:1;32986:7;32965:8;:29::i;:::-;33026:1;33007:9;:15;33017:4;33007:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33055:1;33038:9;:13;33048:2;33038:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33086:2;33067:7;:16;33075:7;33067:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33125:7;33121:2;33106:27;;33115:4;33106:27;;;;;;;;;;;;32563:578;;;:::o;31348:289::-;31435:9;31430:160;31454:3;:10;31450:1;:14;31430:160;;;31495:15;31503:3;31507:1;31503:6;;;;;;;;:::i;:::-;;;;;;;;31495:7;:15::i;:::-;31494:16;31486:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;31576:2;31558:7;:15;31566:3;31570:1;31566:6;;;;;;;;:::i;:::-;;;;;;;;31558:15;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;31466:3;;;;;:::i;:::-;;;;31430:160;;;;31619:3;:10;31602:9;:13;31612:2;31602:13;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;31348:289;;:::o;3009:173::-;3065:16;3084:6;;;;;;;;;;;3065:25;;3110:8;3101:6;;:17;;;;;;;;;;;;;;;;;;3165:8;3134:40;;3155:8;3134:40;;;;;;;;;;;;3054:128;3009:173;:::o;28352:315::-;28509:28;28519:4;28525:2;28529:7;28509:9;:28::i;:::-;28556:48;28579:4;28585:2;28589:7;28598:5;28556:22;:48::i;:::-;28548:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28352:315;;;;:::o;3506:723::-;3562:13;3792:1;3783:5;:10;3779:53;;;3810:10;;;;;;;;;;;;;;;;;;;;;3779:53;3842:12;3857:5;3842:20;;3873:14;3898:78;3913:1;3905:4;:9;3898:78;;3931:8;;;;;:::i;:::-;;;;3962:2;3954:10;;;;;:::i;:::-;;;3898:78;;;3986:19;4018:6;4008:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3986:39;;4036:154;4052:1;4043:5;:10;4036:154;;4080:1;4070:11;;;;;:::i;:::-;;;4147:2;4139:5;:10;;;;:::i;:::-;4126:2;:24;;;;:::i;:::-;4113:39;;4096:6;4103;4096:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4176:2;4167:11;;;;;:::i;:::-;;;4036:154;;;4214:6;4200:21;;;;;3506:723;;;;:::o;35369:126::-;;;;:::o;33998:799::-;34153:4;34174:15;:2;:13;;;:15::i;:::-;34170:620;;;34226:2;34210:36;;;34247:12;:10;:12::i;:::-;34261:4;34267:7;34276:5;34210:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34206:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34469:1;34452:6;:13;:18;34448:272;;;34495:60;;;;;;;;;;:::i;:::-;;;;;;;;34448:272;34670:6;34664:13;34655:6;34651:2;34647:15;34640:38;34206:529;34343:41;;;34333:51;;;:6;:51;;;;34326:58;;;;;34170:620;34774:4;34767:11;;33998:799;;;;;;;:::o;13402:387::-;13462:4;13670:12;13737:7;13725:20;13717:28;;13780:1;13773:4;:8;13766:15;;;13402:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:684::-;5897:6;5905;5954:2;5942:9;5933:7;5929:23;5925:32;5922:119;;;5960:79;;:::i;:::-;5922:119;6080:1;6105:53;6150:7;6141:6;6130:9;6126:22;6105:53;:::i;:::-;6095:63;;6051:117;6235:2;6224:9;6220:18;6207:32;6266:18;6258:6;6255:30;6252:117;;;6288:79;;:::i;:::-;6252:117;6393:78;6463:7;6454:6;6443:9;6439:22;6393:78;:::i;:::-;6383:88;;6178:303;5804:684;;;;;:::o;6494:468::-;6559:6;6567;6616:2;6604:9;6595:7;6591:23;6587:32;6584:119;;;6622:79;;:::i;:::-;6584:119;6742:1;6767:53;6812:7;6803:6;6792:9;6788:22;6767:53;:::i;:::-;6757:63;;6713:117;6869:2;6895:50;6937:7;6928:6;6917:9;6913:22;6895:50;:::i;:::-;6885:60;;6840:115;6494:468;;;;;:::o;6968:474::-;7036:6;7044;7093:2;7081:9;7072:7;7068:23;7064:32;7061:119;;;7099:79;;:::i;:::-;7061:119;7219:1;7244:53;7289:7;7280:6;7269:9;7265:22;7244:53;:::i;:::-;7234:63;;7190:117;7346:2;7372:53;7417:7;7408:6;7397:9;7393:22;7372:53;:::i;:::-;7362:63;;7317:118;6968:474;;;;;:::o;7448:327::-;7506:6;7555:2;7543:9;7534:7;7530:23;7526:32;7523:119;;;7561:79;;:::i;:::-;7523:119;7681:1;7706:52;7750:7;7741:6;7730:9;7726:22;7706:52;:::i;:::-;7696:62;;7652:116;7448:327;;;;:::o;7781:349::-;7850:6;7899:2;7887:9;7878:7;7874:23;7870:32;7867:119;;;7905:79;;:::i;:::-;7867:119;8025:1;8050:63;8105:7;8096:6;8085:9;8081:22;8050:63;:::i;:::-;8040:73;;7996:127;7781:349;;;;:::o;8136:509::-;8205:6;8254:2;8242:9;8233:7;8229:23;8225:32;8222:119;;;8260:79;;:::i;:::-;8222:119;8408:1;8397:9;8393:17;8380:31;8438:18;8430:6;8427:30;8424:117;;;8460:79;;:::i;:::-;8424:117;8565:63;8620:7;8611:6;8600:9;8596:22;8565:63;:::i;:::-;8555:73;;8351:287;8136:509;;;;:::o;8651:329::-;8710:6;8759:2;8747:9;8738:7;8734:23;8730:32;8727:119;;;8765:79;;:::i;:::-;8727:119;8885:1;8910:53;8955:7;8946:6;8935:9;8931:22;8910:53;:::i;:::-;8900:63;;8856:117;8651:329;;;;:::o;8986:118::-;9073:24;9091:5;9073:24;:::i;:::-;9068:3;9061:37;8986:118;;:::o;9110:109::-;9191:21;9206:5;9191:21;:::i;:::-;9186:3;9179:34;9110:109;;:::o;9225:360::-;9311:3;9339:38;9371:5;9339:38;:::i;:::-;9393:70;9456:6;9451:3;9393:70;:::i;:::-;9386:77;;9472:52;9517:6;9512:3;9505:4;9498:5;9494:16;9472:52;:::i;:::-;9549:29;9571:6;9549:29;:::i;:::-;9544:3;9540:39;9533:46;;9315:270;9225:360;;;;:::o;9591:364::-;9679:3;9707:39;9740:5;9707:39;:::i;:::-;9762:71;9826:6;9821:3;9762:71;:::i;:::-;9755:78;;9842:52;9887:6;9882:3;9875:4;9868:5;9864:16;9842:52;:::i;:::-;9919:29;9941:6;9919:29;:::i;:::-;9914:3;9910:39;9903:46;;9683:272;9591:364;;;;:::o;9961:377::-;10067:3;10095:39;10128:5;10095:39;:::i;:::-;10150:89;10232:6;10227:3;10150:89;:::i;:::-;10143:96;;10248:52;10293:6;10288:3;10281:4;10274:5;10270:16;10248:52;:::i;:::-;10325:6;10320:3;10316:16;10309:23;;10071:267;9961:377;;;;:::o;10368:845::-;10471:3;10508:5;10502:12;10537:36;10563:9;10537:36;:::i;:::-;10589:89;10671:6;10666:3;10589:89;:::i;:::-;10582:96;;10709:1;10698:9;10694:17;10725:1;10720:137;;;;10871:1;10866:341;;;;10687:520;;10720:137;10804:4;10800:9;10789;10785:25;10780:3;10773:38;10840:6;10835:3;10831:16;10824:23;;10720:137;;10866:341;10933:38;10965:5;10933:38;:::i;:::-;10993:1;11007:154;11021:6;11018:1;11015:13;11007:154;;;11095:7;11089:14;11085:1;11080:3;11076:11;11069:35;11145:1;11136:7;11132:15;11121:26;;11043:4;11040:1;11036:12;11031:17;;11007:154;;;11190:6;11185:3;11181:16;11174:23;;10873:334;;10687:520;;10475:738;;10368:845;;;;:::o;11219:402::-;11379:3;11400:85;11482:2;11477:3;11400:85;:::i;:::-;11393:92;;11494:93;11583:3;11494:93;:::i;:::-;11612:2;11607:3;11603:12;11596:19;;11219:402;;;:::o;11627:366::-;11769:3;11790:67;11854:2;11849:3;11790:67;:::i;:::-;11783:74;;11866:93;11955:3;11866:93;:::i;:::-;11984:2;11979:3;11975:12;11968:19;;11627:366;;;:::o;11999:::-;12141:3;12162:67;12226:2;12221:3;12162:67;:::i;:::-;12155:74;;12238:93;12327:3;12238:93;:::i;:::-;12356:2;12351:3;12347:12;12340:19;;11999:366;;;:::o;12371:::-;12513:3;12534:67;12598:2;12593:3;12534:67;:::i;:::-;12527:74;;12610:93;12699:3;12610:93;:::i;:::-;12728:2;12723:3;12719:12;12712:19;;12371:366;;;:::o;12743:::-;12885:3;12906:67;12970:2;12965:3;12906:67;:::i;:::-;12899:74;;12982:93;13071:3;12982:93;:::i;:::-;13100:2;13095:3;13091:12;13084:19;;12743:366;;;:::o;13115:::-;13257:3;13278:67;13342:2;13337:3;13278:67;:::i;:::-;13271:74;;13354:93;13443:3;13354:93;:::i;:::-;13472:2;13467:3;13463:12;13456:19;;13115:366;;;:::o;13487:::-;13629:3;13650:67;13714:2;13709:3;13650:67;:::i;:::-;13643:74;;13726:93;13815:3;13726:93;:::i;:::-;13844:2;13839:3;13835:12;13828:19;;13487:366;;;:::o;13859:::-;14001:3;14022:67;14086:2;14081:3;14022:67;:::i;:::-;14015:74;;14098:93;14187:3;14098:93;:::i;:::-;14216:2;14211:3;14207:12;14200:19;;13859:366;;;:::o;14231:::-;14373:3;14394:67;14458:2;14453:3;14394:67;:::i;:::-;14387:74;;14470:93;14559:3;14470:93;:::i;:::-;14588:2;14583:3;14579:12;14572:19;;14231:366;;;:::o;14603:::-;14745:3;14766:67;14830:2;14825:3;14766:67;:::i;:::-;14759:74;;14842:93;14931:3;14842:93;:::i;:::-;14960:2;14955:3;14951:12;14944:19;;14603:366;;;:::o;14975:::-;15117:3;15138:67;15202:2;15197:3;15138:67;:::i;:::-;15131:74;;15214:93;15303:3;15214:93;:::i;:::-;15332:2;15327:3;15323:12;15316:19;;14975:366;;;:::o;15347:::-;15489:3;15510:67;15574:2;15569:3;15510:67;:::i;:::-;15503:74;;15586:93;15675:3;15586:93;:::i;:::-;15704:2;15699:3;15695:12;15688:19;;15347:366;;;:::o;15719:400::-;15879:3;15900:84;15982:1;15977:3;15900:84;:::i;:::-;15893:91;;15993:93;16082:3;15993:93;:::i;:::-;16111:1;16106:3;16102:11;16095:18;;15719:400;;;:::o;16125:366::-;16267:3;16288:67;16352:2;16347:3;16288:67;:::i;:::-;16281:74;;16364:93;16453:3;16364:93;:::i;:::-;16482:2;16477:3;16473:12;16466:19;;16125:366;;;:::o;16497:::-;16639:3;16660:67;16724:2;16719:3;16660:67;:::i;:::-;16653:74;;16736:93;16825:3;16736:93;:::i;:::-;16854:2;16849:3;16845:12;16838:19;;16497:366;;;:::o;16869:::-;17011:3;17032:67;17096:2;17091:3;17032:67;:::i;:::-;17025:74;;17108:93;17197:3;17108:93;:::i;:::-;17226:2;17221:3;17217:12;17210:19;;16869:366;;;:::o;17241:::-;17383:3;17404:67;17468:2;17463:3;17404:67;:::i;:::-;17397:74;;17480:93;17569:3;17480:93;:::i;:::-;17598:2;17593:3;17589:12;17582:19;;17241:366;;;:::o;17613:::-;17755:3;17776:67;17840:2;17835:3;17776:67;:::i;:::-;17769:74;;17852:93;17941:3;17852:93;:::i;:::-;17970:2;17965:3;17961:12;17954:19;;17613:366;;;:::o;17985:118::-;18072:24;18090:5;18072:24;:::i;:::-;18067:3;18060:37;17985:118;;:::o;18109:695::-;18387:3;18409:92;18497:3;18488:6;18409:92;:::i;:::-;18402:99;;18518:95;18609:3;18600:6;18518:95;:::i;:::-;18511:102;;18630:148;18774:3;18630:148;:::i;:::-;18623:155;;18795:3;18788:10;;18109:695;;;;;:::o;18810:535::-;19040:3;19062:92;19150:3;19141:6;19062:92;:::i;:::-;19055:99;;19171:148;19315:3;19171:148;:::i;:::-;19164:155;;19336:3;19329:10;;18810:535;;;;:::o;19351:222::-;19444:4;19482:2;19471:9;19467:18;19459:26;;19495:71;19563:1;19552:9;19548:17;19539:6;19495:71;:::i;:::-;19351:222;;;;:::o;19579:640::-;19774:4;19812:3;19801:9;19797:19;19789:27;;19826:71;19894:1;19883:9;19879:17;19870:6;19826:71;:::i;:::-;19907:72;19975:2;19964:9;19960:18;19951:6;19907:72;:::i;:::-;19989;20057:2;20046:9;20042:18;20033:6;19989:72;:::i;:::-;20108:9;20102:4;20098:20;20093:2;20082:9;20078:18;20071:48;20136:76;20207:4;20198:6;20136:76;:::i;:::-;20128:84;;19579:640;;;;;;;:::o;20225:210::-;20312:4;20350:2;20339:9;20335:18;20327:26;;20363:65;20425:1;20414:9;20410:17;20401:6;20363:65;:::i;:::-;20225:210;;;;:::o;20441:313::-;20554:4;20592:2;20581:9;20577:18;20569:26;;20641:9;20635:4;20631:20;20627:1;20616:9;20612:17;20605:47;20669:78;20742:4;20733:6;20669:78;:::i;:::-;20661:86;;20441:313;;;;:::o;20760:419::-;20926:4;20964:2;20953:9;20949:18;20941:26;;21013:9;21007:4;21003:20;20999:1;20988:9;20984:17;20977:47;21041:131;21167:4;21041:131;:::i;:::-;21033:139;;20760:419;;;:::o;21185:::-;21351:4;21389:2;21378:9;21374:18;21366:26;;21438:9;21432:4;21428:20;21424:1;21413:9;21409:17;21402:47;21466:131;21592:4;21466:131;:::i;:::-;21458:139;;21185:419;;;:::o;21610:::-;21776:4;21814:2;21803:9;21799:18;21791:26;;21863:9;21857:4;21853:20;21849:1;21838:9;21834:17;21827:47;21891:131;22017:4;21891:131;:::i;:::-;21883:139;;21610:419;;;:::o;22035:::-;22201:4;22239:2;22228:9;22224:18;22216:26;;22288:9;22282:4;22278:20;22274:1;22263:9;22259:17;22252:47;22316:131;22442:4;22316:131;:::i;:::-;22308:139;;22035:419;;;:::o;22460:::-;22626:4;22664:2;22653:9;22649:18;22641:26;;22713:9;22707:4;22703:20;22699:1;22688:9;22684:17;22677:47;22741:131;22867:4;22741:131;:::i;:::-;22733:139;;22460:419;;;:::o;22885:::-;23051:4;23089:2;23078:9;23074:18;23066:26;;23138:9;23132:4;23128:20;23124:1;23113:9;23109:17;23102:47;23166:131;23292:4;23166:131;:::i;:::-;23158:139;;22885:419;;;:::o;23310:::-;23476:4;23514:2;23503:9;23499:18;23491:26;;23563:9;23557:4;23553:20;23549:1;23538:9;23534:17;23527:47;23591:131;23717:4;23591:131;:::i;:::-;23583:139;;23310:419;;;:::o;23735:::-;23901:4;23939:2;23928:9;23924:18;23916:26;;23988:9;23982:4;23978:20;23974:1;23963:9;23959:17;23952:47;24016:131;24142:4;24016:131;:::i;:::-;24008:139;;23735:419;;;:::o;24160:::-;24326:4;24364:2;24353:9;24349:18;24341:26;;24413:9;24407:4;24403:20;24399:1;24388:9;24384:17;24377:47;24441:131;24567:4;24441:131;:::i;:::-;24433:139;;24160:419;;;:::o;24585:::-;24751:4;24789:2;24778:9;24774:18;24766:26;;24838:9;24832:4;24828:20;24824:1;24813:9;24809:17;24802:47;24866:131;24992:4;24866:131;:::i;:::-;24858:139;;24585:419;;;:::o;25010:::-;25176:4;25214:2;25203:9;25199:18;25191:26;;25263:9;25257:4;25253:20;25249:1;25238:9;25234:17;25227:47;25291:131;25417:4;25291:131;:::i;:::-;25283:139;;25010:419;;;:::o;25435:::-;25601:4;25639:2;25628:9;25624:18;25616:26;;25688:9;25682:4;25678:20;25674:1;25663:9;25659:17;25652:47;25716:131;25842:4;25716:131;:::i;:::-;25708:139;;25435:419;;;:::o;25860:::-;26026:4;26064:2;26053:9;26049:18;26041:26;;26113:9;26107:4;26103:20;26099:1;26088:9;26084:17;26077:47;26141:131;26267:4;26141:131;:::i;:::-;26133:139;;25860:419;;;:::o;26285:::-;26451:4;26489:2;26478:9;26474:18;26466:26;;26538:9;26532:4;26528:20;26524:1;26513:9;26509:17;26502:47;26566:131;26692:4;26566:131;:::i;:::-;26558:139;;26285:419;;;:::o;26710:::-;26876:4;26914:2;26903:9;26899:18;26891:26;;26963:9;26957:4;26953:20;26949:1;26938:9;26934:17;26927:47;26991:131;27117:4;26991:131;:::i;:::-;26983:139;;26710:419;;;:::o;27135:::-;27301:4;27339:2;27328:9;27324:18;27316:26;;27388:9;27382:4;27378:20;27374:1;27363:9;27359:17;27352:47;27416:131;27542:4;27416:131;:::i;:::-;27408:139;;27135:419;;;:::o;27560:222::-;27653:4;27691:2;27680:9;27676:18;27668:26;;27704:71;27772:1;27761:9;27757:17;27748:6;27704:71;:::i;:::-;27560:222;;;;:::o;27788:129::-;27822:6;27849:20;;:::i;:::-;27839:30;;27878:33;27906:4;27898:6;27878:33;:::i;:::-;27788:129;;;:::o;27923:75::-;27956:6;27989:2;27983:9;27973:19;;27923:75;:::o;28004:311::-;28081:4;28171:18;28163:6;28160:30;28157:56;;;28193:18;;:::i;:::-;28157:56;28243:4;28235:6;28231:17;28223:25;;28303:4;28297;28293:15;28285:23;;28004:311;;;:::o;28321:307::-;28382:4;28472:18;28464:6;28461:30;28458:56;;;28494:18;;:::i;:::-;28458:56;28532:29;28554:6;28532:29;:::i;:::-;28524:37;;28616:4;28610;28606:15;28598:23;;28321:307;;;:::o;28634:308::-;28696:4;28786:18;28778:6;28775:30;28772:56;;;28808:18;;:::i;:::-;28772:56;28846:29;28868:6;28846:29;:::i;:::-;28838:37;;28930:4;28924;28920:15;28912:23;;28634:308;;;:::o;28948:141::-;28997:4;29020:3;29012:11;;29043:3;29040:1;29033:14;29077:4;29074:1;29064:18;29056:26;;28948:141;;;:::o;29095:98::-;29146:6;29180:5;29174:12;29164:22;;29095:98;;;:::o;29199:99::-;29251:6;29285:5;29279:12;29269:22;;29199:99;;;:::o;29304:168::-;29387:11;29421:6;29416:3;29409:19;29461:4;29456:3;29452:14;29437:29;;29304:168;;;;:::o;29478:169::-;29562:11;29596:6;29591:3;29584:19;29636:4;29631:3;29627:14;29612:29;;29478:169;;;;:::o;29653:148::-;29755:11;29792:3;29777:18;;29653:148;;;;:::o;29807:305::-;29847:3;29866:20;29884:1;29866:20;:::i;:::-;29861:25;;29900:20;29918:1;29900:20;:::i;:::-;29895:25;;30054:1;29986:66;29982:74;29979:1;29976:81;29973:107;;;30060:18;;:::i;:::-;29973:107;30104:1;30101;30097:9;30090:16;;29807:305;;;;:::o;30118:185::-;30158:1;30175:20;30193:1;30175:20;:::i;:::-;30170:25;;30209:20;30227:1;30209:20;:::i;:::-;30204:25;;30248:1;30238:35;;30253:18;;:::i;:::-;30238:35;30295:1;30292;30288:9;30283:14;;30118:185;;;;:::o;30309:191::-;30349:4;30369:20;30387:1;30369:20;:::i;:::-;30364:25;;30403:20;30421:1;30403:20;:::i;:::-;30398:25;;30442:1;30439;30436:8;30433:34;;;30447:18;;:::i;:::-;30433:34;30492:1;30489;30485:9;30477:17;;30309:191;;;;:::o;30506:96::-;30543:7;30572:24;30590:5;30572:24;:::i;:::-;30561:35;;30506:96;;;:::o;30608:90::-;30642:7;30685:5;30678:13;30671:21;30660:32;;30608:90;;;:::o;30704:149::-;30740:7;30780:66;30773:5;30769:78;30758:89;;30704:149;;;:::o;30859:126::-;30896:7;30936:42;30929:5;30925:54;30914:65;;30859:126;;;:::o;30991:77::-;31028:7;31057:5;31046:16;;30991:77;;;:::o;31074:154::-;31158:6;31153:3;31148;31135:30;31220:1;31211:6;31206:3;31202:16;31195:27;31074:154;;;:::o;31234:307::-;31302:1;31312:113;31326:6;31323:1;31320:13;31312:113;;;31411:1;31406:3;31402:11;31396:18;31392:1;31387:3;31383:11;31376:39;31348:2;31345:1;31341:10;31336:15;;31312:113;;;31443:6;31440:1;31437:13;31434:101;;;31523:1;31514:6;31509:3;31505:16;31498:27;31434:101;31283:258;31234:307;;;:::o;31547:320::-;31591:6;31628:1;31622:4;31618:12;31608:22;;31675:1;31669:4;31665:12;31696:18;31686:81;;31752:4;31744:6;31740:17;31730:27;;31686:81;31814:2;31806:6;31803:14;31783:18;31780:38;31777:84;;;31833:18;;:::i;:::-;31777:84;31598:269;31547:320;;;:::o;31873:281::-;31956:27;31978:4;31956:27;:::i;:::-;31948:6;31944:40;32086:6;32074:10;32071:22;32050:18;32038:10;32035:34;32032:62;32029:88;;;32097:18;;:::i;:::-;32029:88;32137:10;32133:2;32126:22;31916:238;31873:281;;:::o;32160:233::-;32199:3;32222:24;32240:5;32222:24;:::i;:::-;32213:33;;32268:66;32261:5;32258:77;32255:103;;;32338:18;;:::i;:::-;32255:103;32385:1;32378:5;32374:13;32367:20;;32160:233;;;:::o;32399:176::-;32431:1;32448:20;32466:1;32448:20;:::i;:::-;32443:25;;32482:20;32500:1;32482:20;:::i;:::-;32477:25;;32521:1;32511:35;;32526:18;;:::i;:::-;32511:35;32567:1;32564;32560:9;32555:14;;32399:176;;;;:::o;32581:180::-;32629:77;32626:1;32619:88;32726:4;32723:1;32716:15;32750:4;32747:1;32740:15;32767:180;32815:77;32812:1;32805:88;32912:4;32909:1;32902:15;32936:4;32933:1;32926:15;32953:180;33001:77;32998:1;32991:88;33098:4;33095:1;33088:15;33122:4;33119:1;33112:15;33139:180;33187:77;33184:1;33177:88;33284:4;33281:1;33274:15;33308:4;33305:1;33298:15;33325:180;33373:77;33370:1;33363:88;33470:4;33467:1;33460:15;33494:4;33491:1;33484:15;33511:117;33620:1;33617;33610:12;33634:117;33743:1;33740;33733:12;33757:117;33866:1;33863;33856:12;33880:117;33989:1;33986;33979:12;34003:117;34112:1;34109;34102:12;34126:102;34167:6;34218:2;34214:7;34209:2;34202:5;34198:14;34194:28;34184:38;;34126:102;;;:::o;34234:163::-;34374:15;34370:1;34362:6;34358:14;34351:39;34234:163;:::o;34403:237::-;34543:34;34539:1;34531:6;34527:14;34520:58;34612:20;34607:2;34599:6;34595:15;34588:45;34403:237;:::o;34646:225::-;34786:34;34782:1;34774:6;34770:14;34763:58;34855:8;34850:2;34842:6;34838:15;34831:33;34646:225;:::o;34877:178::-;35017:30;35013:1;35005:6;35001:14;34994:54;34877:178;:::o;35061:223::-;35201:34;35197:1;35189:6;35185:14;35178:58;35270:6;35265:2;35257:6;35253:15;35246:31;35061:223;:::o;35290:175::-;35430:27;35426:1;35418:6;35414:14;35407:51;35290:175;:::o;35471:231::-;35611:34;35607:1;35599:6;35595:14;35588:58;35680:14;35675:2;35667:6;35663:15;35656:39;35471:231;:::o;35708:243::-;35848:34;35844:1;35836:6;35832:14;35825:58;35917:26;35912:2;35904:6;35900:15;35893:51;35708:243;:::o;35957:229::-;36097:34;36093:1;36085:6;36081:14;36074:58;36166:12;36161:2;36153:6;36149:15;36142:37;35957:229;:::o;36192:228::-;36332:34;36328:1;36320:6;36316:14;36309:58;36401:11;36396:2;36388:6;36384:15;36377:36;36192:228;:::o;36426:182::-;36566:34;36562:1;36554:6;36550:14;36543:58;36426:182;:::o;36614:231::-;36754:34;36750:1;36742:6;36738:14;36731:58;36823:14;36818:2;36810:6;36806:15;36799:39;36614:231;:::o;36851:155::-;36991:7;36987:1;36979:6;36975:14;36968:31;36851:155;:::o;37012:182::-;37152:34;37148:1;37140:6;37136:14;37129:58;37012:182;:::o;37200:228::-;37340:34;37336:1;37328:6;37324:14;37317:58;37409:11;37404:2;37396:6;37392:15;37385:36;37200:228;:::o;37434:234::-;37574:34;37570:1;37562:6;37558:14;37551:58;37643:17;37638:2;37630:6;37626:15;37619:42;37434:234;:::o;37674:220::-;37814:34;37810:1;37802:6;37798:14;37791:58;37883:3;37878:2;37870:6;37866:15;37859:28;37674:220;:::o;37900:236::-;38040:34;38036:1;38028:6;38024:14;38017:58;38109:19;38104:2;38096:6;38092:15;38085:44;37900:236;:::o;38142:122::-;38215:24;38233:5;38215:24;:::i;:::-;38208:5;38205:35;38195:63;;38254:1;38251;38244:12;38195:63;38142:122;:::o;38270:116::-;38340:21;38355:5;38340:21;:::i;:::-;38333:5;38330:32;38320:60;;38376:1;38373;38366:12;38320:60;38270:116;:::o;38392:120::-;38464:23;38481:5;38464:23;:::i;:::-;38457:5;38454:34;38444:62;;38502:1;38499;38492:12;38444:62;38392:120;:::o;38518:122::-;38591:24;38609:5;38591:24;:::i;:::-;38584:5;38581:35;38571:63;;38630:1;38627;38620:12;38571:63;38518:122;:::o

Swarm Source

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