ETH Price: $3,227.20 (-1.55%)

Token

Honey Pass Genesis (HPG)
 

Overview

Max Total Supply

100 HPG

Holders

60

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
danku.eth
Balance
1 HPG
0x5d61f268eef978c27d56fc2722111481e6ae21ef
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:
HoneyPassGenesis

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 2: honeypassgenesis.sol
// SPDX-License-Identifier: NONE

pragma solidity >=0.8.10 <=0.8.10;

import "./OpenzeppelinERC721.sol";

contract HoneyPassGenesis is  ERC721Enumerable {

    address public owner;
    uint256 public nftid = 1;
    string currentURI = "https://arweave.net/TudOWhy7IN0JlxNy8ZQ0D80v-MZDrZfNoHv_S66GJeE";


    function mint33() public {
        require( _msgSender() == owner );
        for(uint i = 1; i <= 33; i++){
        _safeMint( owner , nftid);
        nftid++;
        }
    }

    function setCurrentURI( string memory _uri ) public {
        require( _msgSender() == owner  );
        currentURI = _uri;
    }

    function burn(uint256 _id) public {
        require( _msgSender() == ownerOf(_id));
        _burn(_id);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        tokenId;
        return currentURI;
    }

    constructor() ERC721("Honey Pass Genesis" , "HPG" ) {
        owner = _msgSender();
        _safeMint( owner , nftid);
        nftid++;
    } 
}


File 2 of 2: OpenzeppelinERC721.sol
// SPDX-License-Identifier: MIT

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






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




/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}









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







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





/**
 * @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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}





/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}








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


/**
 * @dev 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}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 { }
}















/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}







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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

    /**
     * @dev 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 override {
        super._burn(tokenId);

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


Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint33","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"setCurrentURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600b556040518060600160405280603f8152602001620042b8603f9139600c90805190602001906200003a92919062000b6f565b503480156200004857600080fd5b506040518060400160405280601281526020017f486f6e657920506173732047656e6573697300000000000000000000000000008152506040518060400160405280600381526020017f48504700000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000cd92919062000b6f565b508060019080519060200190620000e692919062000b6f565b505050620000f96200018f60201b60201c565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200016f600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b546200019760201b60201c565b600b6000815480929190620001849062000c58565b919050555062001208565b600033905090565b620001b9828260405180602001604052806000815250620001bd60201b60201c565b5050565b620001cf83836200022b60201b60201c565b620001e460008484846200041160201b60201c565b62000226576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021d9062000d2d565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200029e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002959062000d9f565b60405180910390fd5b620002af81620005bb60201b60201c565b15620002f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e99062000e11565b60405180910390fd5b62000306600083836200062760201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000358919062000e33565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006200043f8473ffffffffffffffffffffffffffffffffffffffff166200076e60201b62000f391760201c565b15620005ae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620004716200018f60201b60201c565b8786866040518563ffffffff1660e01b815260040162000495949392919062000f8a565b6020604051808303816000875af1925050508015620004d457506040513d601f19601f82011682018060405250810190620004d1919062001040565b60015b6200055d573d806000811462000507576040519150601f19603f3d011682016040523d82523d6000602084013e6200050c565b606091505b5060008151141562000555576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054c9062000d2d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620005b3565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200063f8383836200078160201b62000f4c1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200068c5762000686816200078660201b60201c565b620006d4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620006d357620006d28382620007cf60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000721576200071b816200094c60201b60201c565b62000769565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620007685762000767828262000a2860201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620007e98462000ab460201b620009771760201c565b620007f5919062001072565b9050600060076000848152602001908152602001600020549050818114620008db576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000962919062001072565b9050600060096000848152602001908152602001600020549050600060088381548110620009955762000994620010ad565b5b906000526020600020015490508060088381548110620009ba57620009b9620010ad565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000a0c5762000a0b620010dc565b5b6001900381819060005260206000200160009055905550505050565b600062000a408362000ab460201b620009771760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000b28576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b1f9062001181565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000b7d90620011d2565b90600052602060002090601f01602090048101928262000ba1576000855562000bed565b82601f1062000bbc57805160ff191683800117855562000bed565b8280016001018555821562000bed579182015b8281111562000bec57825182559160200191906001019062000bcf565b5b50905062000bfc919062000c00565b5090565b5b8082111562000c1b57600081600090555060010162000c01565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b600062000c658262000c4e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000c9b5762000c9a62000c1f565b5b600182019050919050565b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600062000d1560328362000ca6565b915062000d228262000cb7565b604082019050919050565b6000602082019050818103600083015262000d488162000d06565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000d8760208362000ca6565b915062000d948262000d4f565b602082019050919050565b6000602082019050818103600083015262000dba8162000d78565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000df9601c8362000ca6565b915062000e068262000dc1565b602082019050919050565b6000602082019050818103600083015262000e2c8162000dea565b9050919050565b600062000e408262000c4e565b915062000e4d8362000c4e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e855762000e8462000c1f565b5b828201905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ebd8262000e90565b9050919050565b62000ecf8162000eb0565b82525050565b62000ee08162000c4e565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000f2257808201518184015260208101905062000f05565b8381111562000f32576000848401525b50505050565b6000601f19601f8301169050919050565b600062000f568262000ee6565b62000f62818562000ef1565b935062000f7481856020860162000f02565b62000f7f8162000f38565b840191505092915050565b600060808201905062000fa1600083018762000ec4565b62000fb0602083018662000ec4565b62000fbf604083018562000ed5565b818103606083015262000fd3818462000f49565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200101a8162000fe3565b81146200102657600080fd5b50565b6000815190506200103a816200100f565b92915050565b60006020828403121562001059576200105862000fde565b5b6000620010698482850162001029565b91505092915050565b60006200107f8262000c4e565b91506200108c8362000c4e565b925082821015620010a257620010a162000c1f565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600062001169602a8362000ca6565b915062001176826200110b565b604082019050919050565b600060208201905081810360008301526200119c816200115a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011eb57607f821691505b60208210811415620012025762001201620011a3565b5b50919050565b6130a080620012186000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80636352211e116100b8578063a22cb4651161007c578063a22cb46514610362578063b01baf971461037e578063b473171614610388578063b88d4fde146103a4578063c87b56dd146103c0578063e985e9c5146103f057610137565b80636352211e146102a85780636fd976bc146102d857806370a08231146102f65780638da5cb5b1461032657806395d89b411461034457610137565b806323b872dd116100ff57806323b872dd146101f45780632f745c591461021057806342842e0e1461024057806342966c681461025c5780634f6ccce71461027857610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba57806318160ddd146101d6575b600080fd5b61015660048036038101906101519190611f69565b610420565b6040516101639190611fb1565b60405180910390f35b61017461049a565b6040516101819190612065565b60405180910390f35b6101a4600480360381019061019f91906120bd565b61052c565b6040516101b1919061212b565b60405180910390f35b6101d460048036038101906101cf9190612172565b6105b1565b005b6101de6106c9565b6040516101eb91906121c1565b60405180910390f35b61020e600480360381019061020991906121dc565b6106d6565b005b61022a60048036038101906102259190612172565b610736565b60405161023791906121c1565b60405180910390f35b61025a600480360381019061025591906121dc565b6107db565b005b610276600480360381019061027191906120bd565b6107fb565b005b610292600480360381019061028d91906120bd565b61084e565b60405161029f91906121c1565b60405180910390f35b6102c260048036038101906102bd91906120bd565b6108bf565b6040516102cf919061212b565b60405180910390f35b6102e0610971565b6040516102ed91906121c1565b60405180910390f35b610310600480360381019061030b919061222f565b610977565b60405161031d91906121c1565b60405180910390f35b61032e610a2f565b60405161033b919061212b565b60405180910390f35b61034c610a55565b6040516103599190612065565b60405180910390f35b61037c60048036038101906103779190612288565b610ae7565b005b610386610c68565b005b6103a2600480360381019061039d91906123fd565b610d34565b005b6103be60048036038101906103b991906124e7565b610daf565b005b6103da60048036038101906103d591906120bd565b610e11565b6040516103e79190612065565b60405180910390f35b61040a6004803603810190610405919061256a565b610ea5565b6040516104179190611fb1565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610493575061049282610f51565b5b9050919050565b6060600080546104a9906125d9565b80601f01602080910402602001604051908101604052809291908181526020018280546104d5906125d9565b80156105225780601f106104f757610100808354040283529160200191610522565b820191906000526020600020905b81548152906001019060200180831161050557829003601f168201915b5050505050905090565b600061053782611033565b610576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056d9061267d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105bc826108bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561062d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106249061270f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661064c61109f565b73ffffffffffffffffffffffffffffffffffffffff16148061067b575061067a8161067561109f565b610ea5565b5b6106ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b1906127a1565b60405180910390fd5b6106c483836110a7565b505050565b6000600880549050905090565b6106e76106e161109f565b82611160565b610726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071d90612833565b60405180910390fd5b61073183838361123e565b505050565b600061074183610977565b8210610782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610779906128c5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6107f683838360405180602001604052806000815250610daf565b505050565b610804816108bf565b73ffffffffffffffffffffffffffffffffffffffff1661082261109f565b73ffffffffffffffffffffffffffffffffffffffff161461084257600080fd5b61084b8161149a565b50565b60006108586106c9565b8210610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090612957565b60405180910390fd5b600882815481106108ad576108ac612977565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f90612a18565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90612aaa565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054610a64906125d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a90906125d9565b8015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b5050505050905090565b610aef61109f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5490612b16565b60405180910390fd5b8060056000610b6a61109f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610c1761109f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c5c9190611fb1565b60405180910390a35050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ca961109f565b73ffffffffffffffffffffffffffffffffffffffff1614610cc957600080fd5b6000600190505b60218111610d3157610d06600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b546115ab565b600b6000815480929190610d1990612b65565b91905055508080610d2990612b65565b915050610cd0565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d7561109f565b73ffffffffffffffffffffffffffffffffffffffff1614610d9557600080fd5b80600c9080519060200190610dab929190611e5a565b5050565b610dc0610dba61109f565b83611160565b610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690612833565b60405180910390fd5b610e0b848484846115c9565b50505050565b6060600c8054610e20906125d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4c906125d9565b8015610e995780601f10610e6e57610100808354040283529160200191610e99565b820191906000526020600020905b815481529060010190602001808311610e7c57829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061101c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061102c575061102b82611625565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661111a836108bf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061116b82611033565b6111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190612c20565b60405180910390fd5b60006111b5836108bf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061122457508373ffffffffffffffffffffffffffffffffffffffff1661120c8461052c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061123557506112348185610ea5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661125e826108bf565b73ffffffffffffffffffffffffffffffffffffffff16146112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90612cb2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90612d44565b60405180910390fd5b61132f83838361168f565b61133a6000826110a7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461138a9190612d64565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113e19190612d98565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006114a5826108bf565b90506114b38160008461168f565b6114be6000836110a7565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150e9190612d64565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6115c58282604051806020016040528060008152506117a3565b5050565b6115d484848461123e565b6115e0848484846117fe565b61161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690612e60565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61169a838383610f4c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116dd576116d881611986565b61171c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461171b5761171a83826119cf565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561175f5761175a81611b3c565b61179e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461179d5761179c8282611c0d565b5b5b505050565b6117ad8383611c8c565b6117ba60008484846117fe565b6117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090612e60565b60405180910390fd5b505050565b600061181f8473ffffffffffffffffffffffffffffffffffffffff16610f39565b15611979578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261184861109f565b8786866040518563ffffffff1660e01b815260040161186a9493929190612ed5565b6020604051808303816000875af19250505080156118a657506040513d601f19601f820116820180604052508101906118a39190612f36565b60015b611929573d80600081146118d6576040519150601f19603f3d011682016040523d82523d6000602084013e6118db565b606091505b50600081511415611921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191890612e60565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061197e565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016119dc84610977565b6119e69190612d64565b9050600060076000848152602001908152602001600020549050818114611acb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611b509190612d64565b9050600060096000848152602001908152602001600020549050600060088381548110611b8057611b7f612977565b5b906000526020600020015490508060088381548110611ba257611ba1612977565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480611bf157611bf0612f63565b5b6001900381819060005260206000200160009055905550505050565b6000611c1883610977565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf390612fde565b60405180910390fd5b611d0581611033565b15611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c9061304a565b60405180910390fd5b611d516000838361168f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611da19190612d98565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054611e66906125d9565b90600052602060002090601f016020900481019282611e885760008555611ecf565b82601f10611ea157805160ff1916838001178555611ecf565b82800160010185558215611ecf579182015b82811115611ece578251825591602001919060010190611eb3565b5b509050611edc9190611ee0565b5090565b5b80821115611ef9576000816000905550600101611ee1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f4681611f11565b8114611f5157600080fd5b50565b600081359050611f6381611f3d565b92915050565b600060208284031215611f7f57611f7e611f07565b5b6000611f8d84828501611f54565b91505092915050565b60008115159050919050565b611fab81611f96565b82525050565b6000602082019050611fc66000830184611fa2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612006578082015181840152602081019050611feb565b83811115612015576000848401525b50505050565b6000601f19601f8301169050919050565b600061203782611fcc565b6120418185611fd7565b9350612051818560208601611fe8565b61205a8161201b565b840191505092915050565b6000602082019050818103600083015261207f818461202c565b905092915050565b6000819050919050565b61209a81612087565b81146120a557600080fd5b50565b6000813590506120b781612091565b92915050565b6000602082840312156120d3576120d2611f07565b5b60006120e1848285016120a8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612115826120ea565b9050919050565b6121258161210a565b82525050565b6000602082019050612140600083018461211c565b92915050565b61214f8161210a565b811461215a57600080fd5b50565b60008135905061216c81612146565b92915050565b6000806040838503121561218957612188611f07565b5b60006121978582860161215d565b92505060206121a8858286016120a8565b9150509250929050565b6121bb81612087565b82525050565b60006020820190506121d660008301846121b2565b92915050565b6000806000606084860312156121f5576121f4611f07565b5b60006122038682870161215d565b93505060206122148682870161215d565b9250506040612225868287016120a8565b9150509250925092565b60006020828403121561224557612244611f07565b5b60006122538482850161215d565b91505092915050565b61226581611f96565b811461227057600080fd5b50565b6000813590506122828161225c565b92915050565b6000806040838503121561229f5761229e611f07565b5b60006122ad8582860161215d565b92505060206122be85828601612273565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61230a8261201b565b810181811067ffffffffffffffff82111715612329576123286122d2565b5b80604052505050565b600061233c611efd565b90506123488282612301565b919050565b600067ffffffffffffffff821115612368576123676122d2565b5b6123718261201b565b9050602081019050919050565b82818337600083830152505050565b60006123a061239b8461234d565b612332565b9050828152602081018484840111156123bc576123bb6122cd565b5b6123c784828561237e565b509392505050565b600082601f8301126123e4576123e36122c8565b5b81356123f484826020860161238d565b91505092915050565b60006020828403121561241357612412611f07565b5b600082013567ffffffffffffffff81111561243157612430611f0c565b5b61243d848285016123cf565b91505092915050565b600067ffffffffffffffff821115612461576124606122d2565b5b61246a8261201b565b9050602081019050919050565b600061248a61248584612446565b612332565b9050828152602081018484840111156124a6576124a56122cd565b5b6124b184828561237e565b509392505050565b600082601f8301126124ce576124cd6122c8565b5b81356124de848260208601612477565b91505092915050565b6000806000806080858703121561250157612500611f07565b5b600061250f8782880161215d565b94505060206125208782880161215d565b9350506040612531878288016120a8565b925050606085013567ffffffffffffffff81111561255257612551611f0c565b5b61255e878288016124b9565b91505092959194509250565b6000806040838503121561258157612580611f07565b5b600061258f8582860161215d565b92505060206125a08582860161215d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125f157607f821691505b60208210811415612605576126046125aa565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612667602c83611fd7565b91506126728261260b565b604082019050919050565b600060208201905081810360008301526126968161265a565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006126f9602183611fd7565b91506127048261269d565b604082019050919050565b60006020820190508181036000830152612728816126ec565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061278b603883611fd7565b91506127968261272f565b604082019050919050565b600060208201905081810360008301526127ba8161277e565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061281d603183611fd7565b9150612828826127c1565b604082019050919050565b6000602082019050818103600083015261284c81612810565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006128af602b83611fd7565b91506128ba82612853565b604082019050919050565b600060208201905081810360008301526128de816128a2565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612941602c83611fd7565b915061294c826128e5565b604082019050919050565b6000602082019050818103600083015261297081612934565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612a02602983611fd7565b9150612a0d826129a6565b604082019050919050565b60006020820190508181036000830152612a31816129f5565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612a94602a83611fd7565b9150612a9f82612a38565b604082019050919050565b60006020820190508181036000830152612ac381612a87565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612b00601983611fd7565b9150612b0b82612aca565b602082019050919050565b60006020820190508181036000830152612b2f81612af3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b7082612087565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ba357612ba2612b36565b5b600182019050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612c0a602c83611fd7565b9150612c1582612bae565b604082019050919050565b60006020820190508181036000830152612c3981612bfd565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000612c9c602983611fd7565b9150612ca782612c40565b604082019050919050565b60006020820190508181036000830152612ccb81612c8f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d2e602483611fd7565b9150612d3982612cd2565b604082019050919050565b60006020820190508181036000830152612d5d81612d21565b9050919050565b6000612d6f82612087565b9150612d7a83612087565b925082821015612d8d57612d8c612b36565b5b828203905092915050565b6000612da382612087565b9150612dae83612087565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612de357612de2612b36565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612e4a603283611fd7565b9150612e5582612dee565b604082019050919050565b60006020820190508181036000830152612e7981612e3d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ea782612e80565b612eb18185612e8b565b9350612ec1818560208601611fe8565b612eca8161201b565b840191505092915050565b6000608082019050612eea600083018761211c565b612ef7602083018661211c565b612f0460408301856121b2565b8181036060830152612f168184612e9c565b905095945050505050565b600081519050612f3081611f3d565b92915050565b600060208284031215612f4c57612f4b611f07565b5b6000612f5a84828501612f21565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612fc8602083611fd7565b9150612fd382612f92565b602082019050919050565b60006020820190508181036000830152612ff781612fbb565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613034601c83611fd7565b915061303f82612ffe565b602082019050919050565b6000602082019050818103600083015261306381613027565b905091905056fea26469706673582212203b16d2825cb1f0245712c8a982ca86f9dbaa32fe2641e0dd6dfb2b767381274364736f6c634300080a003368747470733a2f2f617277656176652e6e65742f5475644f57687937494e304a6c784e79385a5130443830762d4d5a44725a664e6f48765f533636474a6545

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80636352211e116100b8578063a22cb4651161007c578063a22cb46514610362578063b01baf971461037e578063b473171614610388578063b88d4fde146103a4578063c87b56dd146103c0578063e985e9c5146103f057610137565b80636352211e146102a85780636fd976bc146102d857806370a08231146102f65780638da5cb5b1461032657806395d89b411461034457610137565b806323b872dd116100ff57806323b872dd146101f45780632f745c591461021057806342842e0e1461024057806342966c681461025c5780634f6ccce71461027857610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba57806318160ddd146101d6575b600080fd5b61015660048036038101906101519190611f69565b610420565b6040516101639190611fb1565b60405180910390f35b61017461049a565b6040516101819190612065565b60405180910390f35b6101a4600480360381019061019f91906120bd565b61052c565b6040516101b1919061212b565b60405180910390f35b6101d460048036038101906101cf9190612172565b6105b1565b005b6101de6106c9565b6040516101eb91906121c1565b60405180910390f35b61020e600480360381019061020991906121dc565b6106d6565b005b61022a60048036038101906102259190612172565b610736565b60405161023791906121c1565b60405180910390f35b61025a600480360381019061025591906121dc565b6107db565b005b610276600480360381019061027191906120bd565b6107fb565b005b610292600480360381019061028d91906120bd565b61084e565b60405161029f91906121c1565b60405180910390f35b6102c260048036038101906102bd91906120bd565b6108bf565b6040516102cf919061212b565b60405180910390f35b6102e0610971565b6040516102ed91906121c1565b60405180910390f35b610310600480360381019061030b919061222f565b610977565b60405161031d91906121c1565b60405180910390f35b61032e610a2f565b60405161033b919061212b565b60405180910390f35b61034c610a55565b6040516103599190612065565b60405180910390f35b61037c60048036038101906103779190612288565b610ae7565b005b610386610c68565b005b6103a2600480360381019061039d91906123fd565b610d34565b005b6103be60048036038101906103b991906124e7565b610daf565b005b6103da60048036038101906103d591906120bd565b610e11565b6040516103e79190612065565b60405180910390f35b61040a6004803603810190610405919061256a565b610ea5565b6040516104179190611fb1565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610493575061049282610f51565b5b9050919050565b6060600080546104a9906125d9565b80601f01602080910402602001604051908101604052809291908181526020018280546104d5906125d9565b80156105225780601f106104f757610100808354040283529160200191610522565b820191906000526020600020905b81548152906001019060200180831161050557829003601f168201915b5050505050905090565b600061053782611033565b610576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056d9061267d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105bc826108bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561062d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106249061270f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661064c61109f565b73ffffffffffffffffffffffffffffffffffffffff16148061067b575061067a8161067561109f565b610ea5565b5b6106ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b1906127a1565b60405180910390fd5b6106c483836110a7565b505050565b6000600880549050905090565b6106e76106e161109f565b82611160565b610726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071d90612833565b60405180910390fd5b61073183838361123e565b505050565b600061074183610977565b8210610782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610779906128c5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6107f683838360405180602001604052806000815250610daf565b505050565b610804816108bf565b73ffffffffffffffffffffffffffffffffffffffff1661082261109f565b73ffffffffffffffffffffffffffffffffffffffff161461084257600080fd5b61084b8161149a565b50565b60006108586106c9565b8210610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090612957565b60405180910390fd5b600882815481106108ad576108ac612977565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f90612a18565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90612aaa565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054610a64906125d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a90906125d9565b8015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b5050505050905090565b610aef61109f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5490612b16565b60405180910390fd5b8060056000610b6a61109f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610c1761109f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c5c9190611fb1565b60405180910390a35050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ca961109f565b73ffffffffffffffffffffffffffffffffffffffff1614610cc957600080fd5b6000600190505b60218111610d3157610d06600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b546115ab565b600b6000815480929190610d1990612b65565b91905055508080610d2990612b65565b915050610cd0565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d7561109f565b73ffffffffffffffffffffffffffffffffffffffff1614610d9557600080fd5b80600c9080519060200190610dab929190611e5a565b5050565b610dc0610dba61109f565b83611160565b610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690612833565b60405180910390fd5b610e0b848484846115c9565b50505050565b6060600c8054610e20906125d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4c906125d9565b8015610e995780601f10610e6e57610100808354040283529160200191610e99565b820191906000526020600020905b815481529060010190602001808311610e7c57829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061101c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061102c575061102b82611625565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661111a836108bf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061116b82611033565b6111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190612c20565b60405180910390fd5b60006111b5836108bf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061122457508373ffffffffffffffffffffffffffffffffffffffff1661120c8461052c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061123557506112348185610ea5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661125e826108bf565b73ffffffffffffffffffffffffffffffffffffffff16146112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90612cb2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90612d44565b60405180910390fd5b61132f83838361168f565b61133a6000826110a7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461138a9190612d64565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113e19190612d98565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006114a5826108bf565b90506114b38160008461168f565b6114be6000836110a7565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150e9190612d64565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6115c58282604051806020016040528060008152506117a3565b5050565b6115d484848461123e565b6115e0848484846117fe565b61161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690612e60565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61169a838383610f4c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116dd576116d881611986565b61171c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461171b5761171a83826119cf565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561175f5761175a81611b3c565b61179e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461179d5761179c8282611c0d565b5b5b505050565b6117ad8383611c8c565b6117ba60008484846117fe565b6117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090612e60565b60405180910390fd5b505050565b600061181f8473ffffffffffffffffffffffffffffffffffffffff16610f39565b15611979578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261184861109f565b8786866040518563ffffffff1660e01b815260040161186a9493929190612ed5565b6020604051808303816000875af19250505080156118a657506040513d601f19601f820116820180604052508101906118a39190612f36565b60015b611929573d80600081146118d6576040519150601f19603f3d011682016040523d82523d6000602084013e6118db565b606091505b50600081511415611921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191890612e60565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061197e565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016119dc84610977565b6119e69190612d64565b9050600060076000848152602001908152602001600020549050818114611acb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611b509190612d64565b9050600060096000848152602001908152602001600020549050600060088381548110611b8057611b7f612977565b5b906000526020600020015490508060088381548110611ba257611ba1612977565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480611bf157611bf0612f63565b5b6001900381819060005260206000200160009055905550505050565b6000611c1883610977565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf390612fde565b60405180910390fd5b611d0581611033565b15611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c9061304a565b60405180910390fd5b611d516000838361168f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611da19190612d98565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054611e66906125d9565b90600052602060002090601f016020900481019282611e885760008555611ecf565b82601f10611ea157805160ff1916838001178555611ecf565b82800160010185558215611ecf579182015b82811115611ece578251825591602001919060010190611eb3565b5b509050611edc9190611ee0565b5090565b5b80821115611ef9576000816000905550600101611ee1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f4681611f11565b8114611f5157600080fd5b50565b600081359050611f6381611f3d565b92915050565b600060208284031215611f7f57611f7e611f07565b5b6000611f8d84828501611f54565b91505092915050565b60008115159050919050565b611fab81611f96565b82525050565b6000602082019050611fc66000830184611fa2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612006578082015181840152602081019050611feb565b83811115612015576000848401525b50505050565b6000601f19601f8301169050919050565b600061203782611fcc565b6120418185611fd7565b9350612051818560208601611fe8565b61205a8161201b565b840191505092915050565b6000602082019050818103600083015261207f818461202c565b905092915050565b6000819050919050565b61209a81612087565b81146120a557600080fd5b50565b6000813590506120b781612091565b92915050565b6000602082840312156120d3576120d2611f07565b5b60006120e1848285016120a8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612115826120ea565b9050919050565b6121258161210a565b82525050565b6000602082019050612140600083018461211c565b92915050565b61214f8161210a565b811461215a57600080fd5b50565b60008135905061216c81612146565b92915050565b6000806040838503121561218957612188611f07565b5b60006121978582860161215d565b92505060206121a8858286016120a8565b9150509250929050565b6121bb81612087565b82525050565b60006020820190506121d660008301846121b2565b92915050565b6000806000606084860312156121f5576121f4611f07565b5b60006122038682870161215d565b93505060206122148682870161215d565b9250506040612225868287016120a8565b9150509250925092565b60006020828403121561224557612244611f07565b5b60006122538482850161215d565b91505092915050565b61226581611f96565b811461227057600080fd5b50565b6000813590506122828161225c565b92915050565b6000806040838503121561229f5761229e611f07565b5b60006122ad8582860161215d565b92505060206122be85828601612273565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61230a8261201b565b810181811067ffffffffffffffff82111715612329576123286122d2565b5b80604052505050565b600061233c611efd565b90506123488282612301565b919050565b600067ffffffffffffffff821115612368576123676122d2565b5b6123718261201b565b9050602081019050919050565b82818337600083830152505050565b60006123a061239b8461234d565b612332565b9050828152602081018484840111156123bc576123bb6122cd565b5b6123c784828561237e565b509392505050565b600082601f8301126123e4576123e36122c8565b5b81356123f484826020860161238d565b91505092915050565b60006020828403121561241357612412611f07565b5b600082013567ffffffffffffffff81111561243157612430611f0c565b5b61243d848285016123cf565b91505092915050565b600067ffffffffffffffff821115612461576124606122d2565b5b61246a8261201b565b9050602081019050919050565b600061248a61248584612446565b612332565b9050828152602081018484840111156124a6576124a56122cd565b5b6124b184828561237e565b509392505050565b600082601f8301126124ce576124cd6122c8565b5b81356124de848260208601612477565b91505092915050565b6000806000806080858703121561250157612500611f07565b5b600061250f8782880161215d565b94505060206125208782880161215d565b9350506040612531878288016120a8565b925050606085013567ffffffffffffffff81111561255257612551611f0c565b5b61255e878288016124b9565b91505092959194509250565b6000806040838503121561258157612580611f07565b5b600061258f8582860161215d565b92505060206125a08582860161215d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125f157607f821691505b60208210811415612605576126046125aa565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612667602c83611fd7565b91506126728261260b565b604082019050919050565b600060208201905081810360008301526126968161265a565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006126f9602183611fd7565b91506127048261269d565b604082019050919050565b60006020820190508181036000830152612728816126ec565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061278b603883611fd7565b91506127968261272f565b604082019050919050565b600060208201905081810360008301526127ba8161277e565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061281d603183611fd7565b9150612828826127c1565b604082019050919050565b6000602082019050818103600083015261284c81612810565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006128af602b83611fd7565b91506128ba82612853565b604082019050919050565b600060208201905081810360008301526128de816128a2565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612941602c83611fd7565b915061294c826128e5565b604082019050919050565b6000602082019050818103600083015261297081612934565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612a02602983611fd7565b9150612a0d826129a6565b604082019050919050565b60006020820190508181036000830152612a31816129f5565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612a94602a83611fd7565b9150612a9f82612a38565b604082019050919050565b60006020820190508181036000830152612ac381612a87565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612b00601983611fd7565b9150612b0b82612aca565b602082019050919050565b60006020820190508181036000830152612b2f81612af3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b7082612087565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ba357612ba2612b36565b5b600182019050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612c0a602c83611fd7565b9150612c1582612bae565b604082019050919050565b60006020820190508181036000830152612c3981612bfd565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000612c9c602983611fd7565b9150612ca782612c40565b604082019050919050565b60006020820190508181036000830152612ccb81612c8f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d2e602483611fd7565b9150612d3982612cd2565b604082019050919050565b60006020820190508181036000830152612d5d81612d21565b9050919050565b6000612d6f82612087565b9150612d7a83612087565b925082821015612d8d57612d8c612b36565b5b828203905092915050565b6000612da382612087565b9150612dae83612087565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612de357612de2612b36565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612e4a603283611fd7565b9150612e5582612dee565b604082019050919050565b60006020820190508181036000830152612e7981612e3d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ea782612e80565b612eb18185612e8b565b9350612ec1818560208601611fe8565b612eca8161201b565b840191505092915050565b6000608082019050612eea600083018761211c565b612ef7602083018661211c565b612f0460408301856121b2565b8181036060830152612f168184612e9c565b905095945050505050565b600081519050612f3081611f3d565b92915050565b600060208284031215612f4c57612f4b611f07565b5b6000612f5a84828501612f21565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612fc8602083611fd7565b9150612fd382612f92565b602082019050919050565b60006020820190508181036000830152612ff781612fbb565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613034601c83611fd7565b915061303f82612ffe565b602082019050919050565b6000602082019050818103600083015261306381613027565b905091905056fea26469706673582212203b16d2825cb1f0245712c8a982ca86f9dbaa32fe2641e0dd6dfb2b767381274364736f6c634300080a0033

Deployed Bytecode Sourcemap

112:991:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33364:237:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20770:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22230:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21767:397;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34017:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23120:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33685:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23496:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;651:112:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34207:233:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20464:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;195:24:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20194:208:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;168:20:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20939:104:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22523:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;322:181:1;;;:::i;:::-;;511:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23718:285:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;771:175:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22889:164:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33364:237;33466:4;33505:35;33490:50;;;:11;:50;;;;:103;;;;33557:36;33581:11;33557:23;:36::i;:::-;33490:103;33483:110;;33364:237;;;:::o;20770:100::-;20824:13;20857:5;20850:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20770:100;:::o;22230:221::-;22306:7;22334:16;22342:7;22334;:16::i;:::-;22326:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22419:15;:24;22435:7;22419:24;;;;;;;;;;;;;;;;;;;;;22412:31;;22230:221;;;:::o;21767:397::-;21848:13;21864:23;21879:7;21864:14;:23::i;:::-;21848:39;;21912:5;21906:11;;:2;:11;;;;21898:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21992:5;21976:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22001:37;22018:5;22025:12;:10;:12::i;:::-;22001:16;:37::i;:::-;21976:62;21968:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22135:21;22144:2;22148:7;22135:8;:21::i;:::-;21837:327;21767:397;;:::o;34017:113::-;34078:7;34105:10;:17;;;;34098:24;;34017:113;:::o;23120:305::-;23281:41;23300:12;:10;:12::i;:::-;23314:7;23281:18;:41::i;:::-;23273:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23389:28;23399:4;23405:2;23409:7;23389:9;:28::i;:::-;23120:305;;;:::o;33685:256::-;33782:7;33818:23;33835:5;33818:16;:23::i;:::-;33810:5;:31;33802:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;33907:12;:19;33920:5;33907:19;;;;;;;;;;;;;;;:26;33927:5;33907:26;;;;;;;;;;;;33900:33;;33685:256;;;;:::o;23496:151::-;23600:39;23617:4;23623:2;23627:7;23600:39;;;;;;;;;;;;:16;:39::i;:::-;23496:151;;;:::o;651:112:1:-;721:12;729:3;721:7;:12::i;:::-;705:28;;:12;:10;:12::i;:::-;:28;;;696:38;;;;;;745:10;751:3;745:5;:10::i;:::-;651:112;:::o;34207:233:0:-;34282:7;34318:30;:28;:30::i;:::-;34310:5;:38;34302:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;34415:10;34426:5;34415:17;;;;;;;;:::i;:::-;;;;;;;;;;34408:24;;34207:233;;;:::o;20464:239::-;20536:7;20556:13;20572:7;:16;20580:7;20572:16;;;;;;;;;;;;;;;;;;;;;20556:32;;20624:1;20607:19;;:5;:19;;;;20599:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20690:5;20683:12;;;20464:239;;;:::o;195:24:1:-;;;;:::o;20194:208:0:-;20266:7;20311:1;20294:19;;:5;:19;;;;20286:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20378:9;:16;20388:5;20378:16;;;;;;;;;;;;;;;;20371:23;;20194:208;;;:::o;168:20:1:-;;;;;;;;;;;;;:::o;20939:104:0:-;20995:13;21028:7;21021:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20939:104;:::o;22523:295::-;22638:12;:10;:12::i;:::-;22626:24;;:8;:24;;;;22618:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22738:8;22693:18;:32;22712:12;:10;:12::i;:::-;22693:32;;;;;;;;;;;;;;;:42;22726:8;22693:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22791:8;22762:48;;22777:12;:10;:12::i;:::-;22762:48;;;22801:8;22762:48;;;;;;:::i;:::-;;;;;;;;22523:295;;:::o;322:181:1:-;383:5;;;;;;;;;;;367:21;;:12;:10;:12::i;:::-;:21;;;358:32;;;;;;405:6;414:1;405:10;;401:95;422:2;417:1;:7;401:95;;441:25;452:5;;;;;;;;;;;460;;441:9;:25::i;:::-;477:5;;:7;;;;;;;;;:::i;:::-;;;;;;426:3;;;;;:::i;:::-;;;;401:95;;;;322:181::o;511:132::-;599:5;;;;;;;;;;;583:21;;:12;:10;:12::i;:::-;:21;;;574:33;;;;;;631:4;618:10;:17;;;;;;;;;;;;:::i;:::-;;511:132;:::o;23718:285:0:-;23850:41;23869:12;:10;:12::i;:::-;23883:7;23850:18;:41::i;:::-;23842:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23956:39;23970:4;23976:2;23980:7;23989:5;23956:13;:39::i;:::-;23718:285;;;;:::o;771:175:1:-;872:13;928:10;921:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;771:175;;;:::o;22889:164:0:-;22986:4;23010:18;:25;23029:5;23010:25;;;;;;;;;;;;;;;:35;23036:8;23010:35;;;;;;;;;;;;;;;;;;;;;;;;;23003:42;;22889:164;;;;:::o;9573:422::-;9633:4;9841:12;9952:7;9940:20;9932:28;;9986:1;9979:4;:8;9972:15;;;9573:422;;;:::o;31542:93::-;;;;:::o;19838:292::-;19940:4;19979:25;19964:40;;;:11;:40;;;;:105;;;;20036:33;20021:48;;;:11;:48;;;;19964:105;:158;;;;20086:36;20110:11;20086:23;:36::i;:::-;19964:158;19957:165;;19838:292;;;:::o;25470:127::-;25535:4;25587:1;25559:30;;:7;:16;25567:7;25559:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25552:37;;25470:127;;;:::o;17379:98::-;17432:7;17459:10;17452:17;;17379:98;:::o;29347:174::-;29449:2;29422:15;:24;29438:7;29422:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29505:7;29501:2;29467:46;;29476:23;29491:7;29476:14;:23::i;:::-;29467:46;;;;;;;;;;;;29347:174;;:::o;25764:348::-;25857:4;25882:16;25890:7;25882;:16::i;:::-;25874:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25958:13;25974:23;25989:7;25974:14;:23::i;:::-;25958:39;;26027:5;26016:16;;:7;:16;;;:51;;;;26060:7;26036:31;;:20;26048:7;26036:11;:20::i;:::-;:31;;;26016:51;:87;;;;26071:32;26088:5;26095:7;26071:16;:32::i;:::-;26016:87;26008:96;;;25764:348;;;;:::o;28685:544::-;28810:4;28783:31;;:23;28798:7;28783:14;:23::i;:::-;:31;;;28775:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;28893:1;28879:16;;:2;:16;;;;28871:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;28949:39;28970:4;28976:2;28980:7;28949:20;:39::i;:::-;29053:29;29070:1;29074:7;29053:8;:29::i;:::-;29114:1;29095:9;:15;29105:4;29095:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29143:1;29126:9;:13;29136:2;29126:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29174:2;29155:7;:16;29163:7;29155:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29213:7;29209:2;29194:27;;29203:4;29194:27;;;;;;;;;;;;28685:544;;;:::o;27988:360::-;28048:13;28064:23;28079:7;28064:14;:23::i;:::-;28048:39;;28100:48;28121:5;28136:1;28140:7;28100:20;:48::i;:::-;28189:29;28206:1;28210:7;28189:8;:29::i;:::-;28251:1;28231:9;:16;28241:5;28231:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;28270:7;:16;28278:7;28270:16;;;;;;;;;;;;28263:23;;;;;;;;;;;28332:7;28328:1;28304:36;;28313:5;28304:36;;;;;;;;;;;;28037:311;27988:360;:::o;26454:110::-;26530:26;26540:2;26544:7;26530:26;;;;;;;;;;;;:9;:26::i;:::-;26454:110;;:::o;24885:272::-;24999:28;25009:4;25015:2;25019:7;24999:9;:28::i;:::-;25046:48;25069:4;25075:2;25079:7;25088:5;25046:22;:48::i;:::-;25038:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24885:272;;;;:::o;18439:157::-;18524:4;18563:25;18548:40;;;:11;:40;;;;18541:47;;18439:157;;;:::o;35053:555::-;35163:45;35190:4;35196:2;35200:7;35163:26;:45::i;:::-;35241:1;35225:18;;:4;:18;;;35221:187;;;35260:40;35292:7;35260:31;:40::i;:::-;35221:187;;;35330:2;35322:10;;:4;:10;;;35318:90;;35349:47;35382:4;35388:7;35349:32;:47::i;:::-;35318:90;35221:187;35436:1;35422:16;;:2;:16;;;35418:183;;;35455:45;35492:7;35455:36;:45::i;:::-;35418:183;;;35528:4;35522:10;;:2;:10;;;35518:83;;35549:40;35577:2;35581:7;35549:27;:40::i;:::-;35518:83;35418:183;35053:555;;;:::o;26791:250::-;26887:18;26893:2;26897:7;26887:5;:18::i;:::-;26924:54;26955:1;26959:2;26963:7;26972:5;26924:22;:54::i;:::-;26916:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26791:250;;;:::o;30086:843::-;30207:4;30233:15;:2;:13;;;:15::i;:::-;30229:693;;;30285:2;30269:36;;;30306:12;:10;:12::i;:::-;30320:4;30326:7;30335:5;30269:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30265:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30532:1;30515:6;:13;:18;30511:341;;;30558:60;;;;;;;;;;:::i;:::-;;;;;;;;30511:341;30802:6;30796:13;30787:6;30783:2;30779:15;30772:38;30265:602;30402:45;;;30392:55;;;:6;:55;;;;30385:62;;;;;30229:693;30906:4;30899:11;;30086:843;;;;;;;:::o;36331:164::-;36435:10;:17;;;;36408:15;:24;36424:7;36408:24;;;;;;;;;;;:44;;;;36463:10;36479:7;36463:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36331:164;:::o;37122:988::-;37388:22;37438:1;37413:22;37430:4;37413:16;:22::i;:::-;:26;;;;:::i;:::-;37388:51;;37450:18;37471:17;:26;37489:7;37471:26;;;;;;;;;;;;37450:47;;37618:14;37604:10;:28;37600:328;;37649:19;37671:12;:18;37684:4;37671:18;;;;;;;;;;;;;;;:34;37690:14;37671:34;;;;;;;;;;;;37649:56;;37755:11;37722:12;:18;37735:4;37722:18;;;;;;;;;;;;;;;:30;37741:10;37722:30;;;;;;;;;;;:44;;;;37872:10;37839:17;:30;37857:11;37839:30;;;;;;;;;;;:43;;;;37634:294;37600:328;38024:17;:26;38042:7;38024:26;;;;;;;;;;;38017:33;;;38068:12;:18;38081:4;38068:18;;;;;;;;;;;;;;;:34;38087:14;38068:34;;;;;;;;;;;38061:41;;;37203:907;;37122:988;;:::o;38405:1079::-;38658:22;38703:1;38683:10;:17;;;;:21;;;;:::i;:::-;38658:46;;38715:18;38736:15;:24;38752:7;38736:24;;;;;;;;;;;;38715:45;;39087:19;39109:10;39120:14;39109:26;;;;;;;;:::i;:::-;;;;;;;;;;39087:48;;39173:11;39148:10;39159;39148:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;39284:10;39253:15;:28;39269:11;39253:28;;;;;;;;;;;:41;;;;39425:15;:24;39441:7;39425:24;;;;;;;;;;;39418:31;;;39460:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38476:1008;;;38405:1079;:::o;35909:221::-;35994:14;36011:20;36028:2;36011:16;:20::i;:::-;35994:37;;36069:7;36042:12;:16;36055:2;36042:16;;;;;;;;;;;;;;;:24;36059:6;36042:24;;;;;;;;;;;:34;;;;36116:6;36087:17;:26;36105:7;36087:26;;;;;;;;;;;:35;;;;35983:147;35909:221;;:::o;27377:382::-;27471:1;27457:16;;:2;:16;;;;27449:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27530:16;27538:7;27530;:16::i;:::-;27529:17;27521:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27592:45;27621:1;27625:2;27629:7;27592:20;:45::i;:::-;27667:1;27650:9;:13;27660:2;27650:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27698:2;27679:7;:16;27687:7;27679:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27743:7;27739:2;27718:33;;27735:1;27718:33;;;;;;;;;;;;27377:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:2:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:308::-;7901:4;7991:18;7983:6;7980:30;7977:56;;;8013:18;;:::i;:::-;7977:56;8051:29;8073:6;8051:29;:::i;:::-;8043:37;;8135:4;8129;8125:15;8117:23;;7839:308;;;:::o;8153:154::-;8237:6;8232:3;8227;8214:30;8299:1;8290:6;8285:3;8281:16;8274:27;8153:154;;;:::o;8313:412::-;8391:5;8416:66;8432:49;8474:6;8432:49;:::i;:::-;8416:66;:::i;:::-;8407:75;;8505:6;8498:5;8491:21;8543:4;8536:5;8532:16;8581:3;8572:6;8567:3;8563:16;8560:25;8557:112;;;8588:79;;:::i;:::-;8557:112;8678:41;8712:6;8707:3;8702;8678:41;:::i;:::-;8397:328;8313:412;;;;;:::o;8745:340::-;8801:5;8850:3;8843:4;8835:6;8831:17;8827:27;8817:122;;8858:79;;:::i;:::-;8817:122;8975:6;8962:20;9000:79;9075:3;9067:6;9060:4;9052:6;9048:17;9000:79;:::i;:::-;8991:88;;8807:278;8745:340;;;;:::o;9091:509::-;9160:6;9209:2;9197:9;9188:7;9184:23;9180:32;9177:119;;;9215:79;;:::i;:::-;9177:119;9363:1;9352:9;9348:17;9335:31;9393:18;9385:6;9382:30;9379:117;;;9415:79;;:::i;:::-;9379:117;9520:63;9575:7;9566:6;9555:9;9551:22;9520:63;:::i;:::-;9510:73;;9306:287;9091:509;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:231::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:14;12837:2;12829:6;12825:15;12818:39;12633:231;:::o;12870:366::-;13012:3;13033:67;13097:2;13092:3;13033:67;:::i;:::-;13026:74;;13109:93;13198:3;13109:93;:::i;:::-;13227:2;13222:3;13218:12;13211:19;;12870:366;;;:::o;13242:419::-;13408:4;13446:2;13435:9;13431:18;13423:26;;13495:9;13489:4;13485:20;13481:1;13470:9;13466:17;13459:47;13523:131;13649:4;13523:131;:::i;:::-;13515:139;;13242:419;;;:::o;13667:220::-;13807:34;13803:1;13795:6;13791:14;13784:58;13876:3;13871:2;13863:6;13859:15;13852:28;13667:220;:::o;13893:366::-;14035:3;14056:67;14120:2;14115:3;14056:67;:::i;:::-;14049:74;;14132:93;14221:3;14132:93;:::i;:::-;14250:2;14245:3;14241:12;14234:19;;13893:366;;;:::o;14265:419::-;14431:4;14469:2;14458:9;14454:18;14446:26;;14518:9;14512:4;14508:20;14504:1;14493:9;14489:17;14482:47;14546:131;14672:4;14546:131;:::i;:::-;14538:139;;14265:419;;;:::o;14690:243::-;14830:34;14826:1;14818:6;14814:14;14807:58;14899:26;14894:2;14886:6;14882:15;14875:51;14690:243;:::o;14939:366::-;15081:3;15102:67;15166:2;15161:3;15102:67;:::i;:::-;15095:74;;15178:93;15267:3;15178:93;:::i;:::-;15296:2;15291:3;15287:12;15280:19;;14939:366;;;:::o;15311:419::-;15477:4;15515:2;15504:9;15500:18;15492:26;;15564:9;15558:4;15554:20;15550:1;15539:9;15535:17;15528:47;15592:131;15718:4;15592:131;:::i;:::-;15584:139;;15311:419;;;:::o;15736:236::-;15876:34;15872:1;15864:6;15860:14;15853:58;15945:19;15940:2;15932:6;15928:15;15921:44;15736:236;:::o;15978:366::-;16120:3;16141:67;16205:2;16200:3;16141:67;:::i;:::-;16134:74;;16217:93;16306:3;16217:93;:::i;:::-;16335:2;16330:3;16326:12;16319:19;;15978:366;;;:::o;16350:419::-;16516:4;16554:2;16543:9;16539:18;16531:26;;16603:9;16597:4;16593:20;16589:1;16578:9;16574:17;16567:47;16631:131;16757:4;16631:131;:::i;:::-;16623:139;;16350:419;;;:::o;16775:230::-;16915:34;16911:1;16903:6;16899:14;16892:58;16984:13;16979:2;16971:6;16967:15;16960:38;16775:230;:::o;17011:366::-;17153:3;17174:67;17238:2;17233:3;17174:67;:::i;:::-;17167:74;;17250:93;17339:3;17250:93;:::i;:::-;17368:2;17363:3;17359:12;17352:19;;17011:366;;;:::o;17383:419::-;17549:4;17587:2;17576:9;17572:18;17564:26;;17636:9;17630:4;17626:20;17622:1;17611:9;17607:17;17600:47;17664:131;17790:4;17664:131;:::i;:::-;17656:139;;17383:419;;;:::o;17808:231::-;17948:34;17944:1;17936:6;17932:14;17925:58;18017:14;18012:2;18004:6;18000:15;17993:39;17808:231;:::o;18045:366::-;18187:3;18208:67;18272:2;18267:3;18208:67;:::i;:::-;18201:74;;18284:93;18373:3;18284:93;:::i;:::-;18402:2;18397:3;18393:12;18386:19;;18045:366;;;:::o;18417:419::-;18583:4;18621:2;18610:9;18606:18;18598:26;;18670:9;18664:4;18660:20;18656:1;18645:9;18641:17;18634:47;18698:131;18824:4;18698:131;:::i;:::-;18690:139;;18417:419;;;:::o;18842:180::-;18890:77;18887:1;18880:88;18987:4;18984:1;18977:15;19011:4;19008:1;19001:15;19028:228;19168:34;19164:1;19156:6;19152:14;19145:58;19237:11;19232:2;19224:6;19220:15;19213:36;19028:228;:::o;19262:366::-;19404:3;19425:67;19489:2;19484:3;19425:67;:::i;:::-;19418:74;;19501:93;19590:3;19501:93;:::i;:::-;19619:2;19614:3;19610:12;19603:19;;19262:366;;;:::o;19634:419::-;19800:4;19838:2;19827:9;19823:18;19815:26;;19887:9;19881:4;19877:20;19873:1;19862:9;19858:17;19851:47;19915:131;20041:4;19915:131;:::i;:::-;19907:139;;19634:419;;;:::o;20059:229::-;20199:34;20195:1;20187:6;20183:14;20176:58;20268:12;20263:2;20255:6;20251:15;20244:37;20059:229;:::o;20294:366::-;20436:3;20457:67;20521:2;20516:3;20457:67;:::i;:::-;20450:74;;20533:93;20622:3;20533:93;:::i;:::-;20651:2;20646:3;20642:12;20635:19;;20294:366;;;:::o;20666:419::-;20832:4;20870:2;20859:9;20855:18;20847:26;;20919:9;20913:4;20909:20;20905:1;20894:9;20890:17;20883:47;20947:131;21073:4;20947:131;:::i;:::-;20939:139;;20666:419;;;:::o;21091:175::-;21231:27;21227:1;21219:6;21215:14;21208:51;21091:175;:::o;21272:366::-;21414:3;21435:67;21499:2;21494:3;21435:67;:::i;:::-;21428:74;;21511:93;21600:3;21511:93;:::i;:::-;21629:2;21624:3;21620:12;21613:19;;21272:366;;;:::o;21644:419::-;21810:4;21848:2;21837:9;21833:18;21825:26;;21897:9;21891:4;21887:20;21883:1;21872:9;21868:17;21861:47;21925:131;22051:4;21925:131;:::i;:::-;21917:139;;21644:419;;;:::o;22069:180::-;22117:77;22114:1;22107:88;22214:4;22211:1;22204:15;22238:4;22235:1;22228:15;22255:233;22294:3;22317:24;22335:5;22317:24;:::i;:::-;22308:33;;22363:66;22356:5;22353:77;22350:103;;;22433:18;;:::i;:::-;22350:103;22480:1;22473:5;22469:13;22462:20;;22255:233;;;:::o;22494:231::-;22634:34;22630:1;22622:6;22618:14;22611:58;22703:14;22698:2;22690:6;22686:15;22679:39;22494:231;:::o;22731:366::-;22873:3;22894:67;22958:2;22953:3;22894:67;:::i;:::-;22887:74;;22970:93;23059:3;22970:93;:::i;:::-;23088:2;23083:3;23079:12;23072:19;;22731:366;;;:::o;23103:419::-;23269:4;23307:2;23296:9;23292:18;23284:26;;23356:9;23350:4;23346:20;23342:1;23331:9;23327:17;23320:47;23384:131;23510:4;23384:131;:::i;:::-;23376:139;;23103:419;;;:::o;23528:228::-;23668:34;23664:1;23656:6;23652:14;23645:58;23737:11;23732:2;23724:6;23720:15;23713:36;23528:228;:::o;23762:366::-;23904:3;23925:67;23989:2;23984:3;23925:67;:::i;:::-;23918:74;;24001:93;24090:3;24001:93;:::i;:::-;24119:2;24114:3;24110:12;24103:19;;23762:366;;;:::o;24134:419::-;24300:4;24338:2;24327:9;24323:18;24315:26;;24387:9;24381:4;24377:20;24373:1;24362:9;24358:17;24351:47;24415:131;24541:4;24415:131;:::i;:::-;24407:139;;24134:419;;;:::o;24559:223::-;24699:34;24695:1;24687:6;24683:14;24676:58;24768:6;24763:2;24755:6;24751:15;24744:31;24559:223;:::o;24788:366::-;24930:3;24951:67;25015:2;25010:3;24951:67;:::i;:::-;24944:74;;25027:93;25116:3;25027:93;:::i;:::-;25145:2;25140:3;25136:12;25129:19;;24788:366;;;:::o;25160:419::-;25326:4;25364:2;25353:9;25349:18;25341:26;;25413:9;25407:4;25403:20;25399:1;25388:9;25384:17;25377:47;25441:131;25567:4;25441:131;:::i;:::-;25433:139;;25160:419;;;:::o;25585:191::-;25625:4;25645:20;25663:1;25645:20;:::i;:::-;25640:25;;25679:20;25697:1;25679:20;:::i;:::-;25674:25;;25718:1;25715;25712:8;25709:34;;;25723:18;;:::i;:::-;25709:34;25768:1;25765;25761:9;25753:17;;25585:191;;;;:::o;25782:305::-;25822:3;25841:20;25859:1;25841:20;:::i;:::-;25836:25;;25875:20;25893:1;25875:20;:::i;:::-;25870:25;;26029:1;25961:66;25957:74;25954:1;25951:81;25948:107;;;26035:18;;:::i;:::-;25948:107;26079:1;26076;26072:9;26065:16;;25782:305;;;;:::o;26093:237::-;26233:34;26229:1;26221:6;26217:14;26210:58;26302:20;26297:2;26289:6;26285:15;26278:45;26093:237;:::o;26336:366::-;26478:3;26499:67;26563:2;26558:3;26499:67;:::i;:::-;26492:74;;26575:93;26664:3;26575:93;:::i;:::-;26693:2;26688:3;26684:12;26677:19;;26336:366;;;:::o;26708:419::-;26874:4;26912:2;26901:9;26897:18;26889:26;;26961:9;26955:4;26951:20;26947:1;26936:9;26932:17;26925:47;26989:131;27115:4;26989:131;:::i;:::-;26981:139;;26708:419;;;:::o;27133:98::-;27184:6;27218:5;27212:12;27202:22;;27133:98;;;:::o;27237:168::-;27320:11;27354:6;27349:3;27342:19;27394:4;27389:3;27385:14;27370:29;;27237:168;;;;:::o;27411:360::-;27497:3;27525:38;27557:5;27525:38;:::i;:::-;27579:70;27642:6;27637:3;27579:70;:::i;:::-;27572:77;;27658:52;27703:6;27698:3;27691:4;27684:5;27680:16;27658:52;:::i;:::-;27735:29;27757:6;27735:29;:::i;:::-;27730:3;27726:39;27719:46;;27501:270;27411:360;;;;:::o;27777:640::-;27972:4;28010:3;27999:9;27995:19;27987:27;;28024:71;28092:1;28081:9;28077:17;28068:6;28024:71;:::i;:::-;28105:72;28173:2;28162:9;28158:18;28149:6;28105:72;:::i;:::-;28187;28255:2;28244:9;28240:18;28231:6;28187:72;:::i;:::-;28306:9;28300:4;28296:20;28291:2;28280:9;28276:18;28269:48;28334:76;28405:4;28396:6;28334:76;:::i;:::-;28326:84;;27777:640;;;;;;;:::o;28423:141::-;28479:5;28510:6;28504:13;28495:22;;28526:32;28552:5;28526:32;:::i;:::-;28423:141;;;;:::o;28570:349::-;28639:6;28688:2;28676:9;28667:7;28663:23;28659:32;28656:119;;;28694:79;;:::i;:::-;28656:119;28814:1;28839:63;28894:7;28885:6;28874:9;28870:22;28839:63;:::i;:::-;28829:73;;28785:127;28570:349;;;;:::o;28925:180::-;28973:77;28970:1;28963:88;29070:4;29067:1;29060:15;29094:4;29091:1;29084:15;29111:182;29251:34;29247:1;29239:6;29235:14;29228:58;29111:182;:::o;29299:366::-;29441:3;29462:67;29526:2;29521:3;29462:67;:::i;:::-;29455:74;;29538:93;29627:3;29538:93;:::i;:::-;29656:2;29651:3;29647:12;29640:19;;29299:366;;;:::o;29671:419::-;29837:4;29875:2;29864:9;29860:18;29852:26;;29924:9;29918:4;29914:20;29910:1;29899:9;29895:17;29888:47;29952:131;30078:4;29952:131;:::i;:::-;29944:139;;29671:419;;;:::o;30096:178::-;30236:30;30232:1;30224:6;30220:14;30213:54;30096:178;:::o;30280:366::-;30422:3;30443:67;30507:2;30502:3;30443:67;:::i;:::-;30436:74;;30519:93;30608:3;30519:93;:::i;:::-;30637:2;30632:3;30628:12;30621:19;;30280:366;;;:::o;30652:419::-;30818:4;30856:2;30845:9;30841:18;30833:26;;30905:9;30899:4;30895:20;30891:1;30880:9;30876:17;30869:47;30933:131;31059:4;30933:131;:::i;:::-;30925:139;;30652:419;;;:::o

Swarm Source

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