ETH Price: $3,456.96 (+1.24%)
Gas: 17 Gwei

Token

ERC20 ***
 

Overview

Max Total Supply

420

Holders

166

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x2e4bFdF06Bf231Fd6f069BCe1780aF93B4533354
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:
DailyGm

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-27
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/gm.sol



pragma solidity ^0.8.0;




contract DailyGm is ERC1155Supply, Ownable  {
    bool public saleIsActive = false;
    uint constant TOKEN_ID = 1;
    uint constant NUM_RESERVED_TOKENS = 42;
    uint constant MAX_TOKENS_PER_PURCHASE = 2;
    uint constant MAX_TOKENS = 420;
    uint constant TOKEN_PRICE = 0 ether;

    constructor(string memory _name, string memory _symbol, string memory uri) ERC1155(uri) {
        name = _name;
        symbol = _symbol;
    }

    string public name;
    string public symbol; 

    function reserve() public onlyOwner {
       _mint(msg.sender, TOKEN_ID, NUM_RESERVED_TOKENS, "");
    }
    
    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

    function setURI(string memory newuri) public onlyOwner {
        _setURI(newuri);
    }
    
    function mint(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Tokens");
        require(numberOfTokens <= MAX_TOKENS_PER_PURCHASE, "Exceeded max token purchase");
        require(totalSupply(TOKEN_ID) + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max supply of tokens");
        require(TOKEN_PRICE * numberOfTokens <= msg.value, "Ether value sent is not correct");
        _mint(msg.sender, TOKEN_ID, numberOfTokens, "");
    }


    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","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":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600460146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620040b9380380620040b9833981810160405281019062000052919062000332565b806200006481620000b260201b60201c565b506200008562000079620000c760201b60201c565b620000cf60201b60201c565b826005908162000096919062000636565b508160069081620000a8919062000636565b505050506200071d565b8060029081620000c3919062000636565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620001fe82620001b3565b810181811067ffffffffffffffff8211171562000220576200021f620001c4565b5b80604052505050565b60006200023562000195565b9050620002438282620001f3565b919050565b600067ffffffffffffffff821115620002665762000265620001c4565b5b6200027182620001b3565b9050602081019050919050565b60005b838110156200029e57808201518184015260208101905062000281565b83811115620002ae576000848401525b50505050565b6000620002cb620002c58462000248565b62000229565b905082815260208101848484011115620002ea57620002e9620001ae565b5b620002f78482856200027e565b509392505050565b600082601f830112620003175762000316620001a9565b5b815162000329848260208601620002b4565b91505092915050565b6000806000606084860312156200034e576200034d6200019f565b5b600084015167ffffffffffffffff8111156200036f576200036e620001a4565b5b6200037d86828701620002ff565b935050602084015167ffffffffffffffff811115620003a157620003a0620001a4565b5b620003af86828701620002ff565b925050604084015167ffffffffffffffff811115620003d357620003d2620001a4565b5b620003e186828701620002ff565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200043e57607f821691505b602082108103620004545762000453620003f6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004be7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200047f565b620004ca86836200047f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000517620005116200050b84620004e2565b620004ec565b620004e2565b9050919050565b6000819050919050565b6200053383620004f6565b6200054b62000542826200051e565b8484546200048c565b825550505050565b600090565b6200056262000553565b6200056f81848462000528565b505050565b5b8181101562000597576200058b60008262000558565b60018101905062000575565b5050565b601f821115620005e657620005b0816200045a565b620005bb846200046f565b81016020851015620005cb578190505b620005e3620005da856200046f565b83018262000574565b50505b505050565b600082821c905092915050565b60006200060b60001984600802620005eb565b1980831691505092915050565b6000620006268383620005f8565b9150826002028217905092915050565b6200064182620003eb565b67ffffffffffffffff8111156200065d576200065c620001c4565b5b62000669825462000425565b620006768282856200059b565b600060209050601f831160018114620006ae576000841562000699578287015190505b620006a5858262000618565b86555062000715565b601f198416620006be866200045a565b60005b82811015620006e857848901518255600182019150602085019450602081019050620006c1565b8683101562000708578489015162000704601f891682620005f8565b8355505b6001600288020188555050505b505050505050565b61398c806200072d6000396000f3fe6080604052600436106101295760003560e01c80638da5cb5b116100ab578063c4e370951161006f578063c4e37095146103e2578063cd3293de1461040b578063e985e9c514610422578063eb8d24441461045f578063f242432a1461048a578063f2fde38b146104b357610129565b80638da5cb5b1461030a57806395d89b4114610335578063a0712d6814610360578063a22cb4651461037c578063bd85b039146103a557610129565b80632eb2c2d6116100f25780632eb2c2d6146102395780633ccfd60b146102625780634e1273f4146102795780634f558e79146102b6578063715018a6146102f357610129565b8062fdd58e1461012e57806301ffc9a71461016b57806302fe5305146101a857806306fdde03146101d15780630e89341c146101fc575b600080fd5b34801561013a57600080fd5b5061015560048036038101906101509190611fc5565b6104dc565b6040516101629190612014565b60405180910390f35b34801561017757600080fd5b50610192600480360381019061018d9190612087565b6105a4565b60405161019f91906120cf565b60405180910390f35b3480156101b457600080fd5b506101cf60048036038101906101ca9190612230565b610686565b005b3480156101dd57600080fd5b506101e661069a565b6040516101f39190612301565b60405180910390f35b34801561020857600080fd5b50610223600480360381019061021e9190612323565b610728565b6040516102309190612301565b60405180910390f35b34801561024557600080fd5b50610260600480360381019061025b91906124b9565b6107bc565b005b34801561026e57600080fd5b5061027761085d565b005b34801561028557600080fd5b506102a0600480360381019061029b919061264b565b6108b4565b6040516102ad9190612781565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612323565b6109cd565b6040516102ea91906120cf565b60405180910390f35b3480156102ff57600080fd5b506103086109e1565b005b34801561031657600080fd5b5061031f6109f5565b60405161032c91906127b2565b60405180910390f35b34801561034157600080fd5b5061034a610a1f565b6040516103579190612301565b60405180910390f35b61037a60048036038101906103759190612323565b610aad565b005b34801561038857600080fd5b506103a3600480360381019061039e91906127f9565b610c07565b005b3480156103b157600080fd5b506103cc60048036038101906103c79190612323565b610c1d565b6040516103d99190612014565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190612839565b610c3a565b005b34801561041757600080fd5b50610420610c5f565b005b34801561042e57600080fd5b5061044960048036038101906104449190612866565b610c86565b60405161045691906120cf565b60405180910390f35b34801561046b57600080fd5b50610474610d1a565b60405161048191906120cf565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac91906128a6565b610d2d565b005b3480156104bf57600080fd5b506104da60048036038101906104d5919061293d565b610dce565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361054c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610543906129dc565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066f57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061067f575061067e82610e51565b5b9050919050565b61068e610ebb565b61069781610f39565b50565b600580546106a790612a2b565b80601f01602080910402602001604051908101604052809291908181526020018280546106d390612a2b565b80156107205780601f106106f557610100808354040283529160200191610720565b820191906000526020600020905b81548152906001019060200180831161070357829003601f168201915b505050505081565b60606002805461073790612a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461076390612a2b565b80156107b05780601f10610785576101008083540402835291602001916107b0565b820191906000526020600020905b81548152906001019060200180831161079357829003601f168201915b50505050509050919050565b6107c4610f4c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061080a575061080985610804610f4c565b610c86565b5b610849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084090612ace565b60405180910390fd5b6108568585858585610f54565b5050505050565b610865610ebb565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156108b0573d6000803e3d6000fd5b5050565b606081518351146108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f190612b60565b60405180910390fd5b6000835167ffffffffffffffff81111561091757610916612105565b5b6040519080825280602002602001820160405280156109455781602001602082028036833780820191505090505b50905060005b84518110156109c25761099285828151811061096a57610969612b80565b5b602002602001015185838151811061098557610984612b80565b5b60200260200101516104dc565b8282815181106109a5576109a4612b80565b5b602002602001018181525050806109bb90612bde565b905061094b565b508091505092915050565b6000806109d983610c1d565b119050919050565b6109e9610ebb565b6109f36000611275565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60068054610a2c90612a2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5890612a2b565b8015610aa55780601f10610a7a57610100808354040283529160200191610aa5565b820191906000526020600020905b815481529060010190602001808311610a8857829003601f168201915b505050505081565b600460149054906101000a900460ff16610afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af390612c98565b60405180910390fd5b6002811115610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3790612d04565b60405180910390fd5b6101a481610b4e6001610c1d565b610b589190612d24565b1115610b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9090612dec565b60405180910390fd5b34816000610ba79190612e0c565b1115610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90612eb2565b60405180910390fd5b610c04336001836040518060200160405280600081525061133b565b50565b610c19610c12610f4c565b83836114eb565b5050565b600060036000838152602001908152602001600020549050919050565b610c42610ebb565b80600460146101000a81548160ff02191690831515021790555050565b610c67610ebb565b610c84336001602a6040518060200160405280600081525061133b565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600460149054906101000a900460ff1681565b610d35610f4c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610d7b5750610d7a85610d75610f4c565b610c86565b5b610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190612ace565b60405180910390fd5b610dc78585858585611657565b5050505050565b610dd6610ebb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90612f44565b60405180910390fd5b610e4e81611275565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610ec3610f4c565b73ffffffffffffffffffffffffffffffffffffffff16610ee16109f5565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90612fb0565b60405180910390fd5b565b8060029081610f48919061317c565b5050565b600033905090565b8151835114610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906132c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90613352565b60405180910390fd5b6000611011610f4c565b90506110218187878787876118f2565b60005b84518110156111d257600085828151811061104257611041612b80565b5b60200260200101519050600085838151811061106157611060612b80565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906133e4565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111b79190612d24565b92505081905550505050806111cb90612bde565b9050611024565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611249929190613404565b60405180910390a461125f818787878787611ac2565b61126d818787878787611aca565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a1906134ad565b60405180910390fd5b60006113b4610f4c565b905060006113c185611ca1565b905060006113ce85611ca1565b90506113df836000898585896118f2565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461143e9190612d24565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516114bc9291906134cd565b60405180910390a46114d383600089858589611ac2565b6114e283600089898989611d1b565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155090613568565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161164a91906120cf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd90613352565b60405180910390fd5b60006116d0610f4c565b905060006116dd85611ca1565b905060006116ea85611ca1565b90506116fa8389898585896118f2565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611791576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611788906133e4565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118469190612d24565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516118c39291906134cd565b60405180910390a46118d9848a8a86868a611ac2565b6118e7848a8a8a8a8a611d1b565b505050505050505050565b611900868686868686611ef2565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036119b15760005b83518110156119af5782818151811061195357611952612b80565b5b60200260200101516003600086848151811061197257611971612b80565b5b6020026020010151815260200190815260200160002060008282546119979190612d24565b92505081905550806119a890612bde565b9050611937565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611aba5760005b8351811015611ab8576000848281518110611a0657611a05612b80565b5b602002602001015190506000848381518110611a2557611a24612b80565b5b6020026020010151905060006003600084815260200190815260200160002054905081811015611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a81906135fa565b60405180910390fd5b818103600360008581526020019081526020016000208190555050505080611ab190612bde565b90506119e8565b505b505050505050565b505050505050565b611ae98473ffffffffffffffffffffffffffffffffffffffff16611efa565b15611c99578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611b2f95949392919061366f565b6020604051808303816000875af1925050508015611b6b57506040513d601f19601f82011682018060405250810190611b6891906136ec565b60015b611c1057611b77613726565b806308c379a003611bd35750611b8b613748565b80611b965750611bd5565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca9190612301565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c079061384a565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e906138dc565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611cc057611cbf612105565b5b604051908082528060200260200182016040528015611cee5781602001602082028036833780820191505090505b5090508281600081518110611d0657611d05612b80565b5b60200260200101818152505080915050919050565b611d3a8473ffffffffffffffffffffffffffffffffffffffff16611efa565b15611eea578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611d809594939291906138fc565b6020604051808303816000875af1925050508015611dbc57506040513d601f19601f82011682018060405250810190611db991906136ec565b60015b611e6157611dc8613726565b806308c379a003611e245750611ddc613748565b80611de75750611e26565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1b9190612301565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e589061384a565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf906138dc565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f5c82611f31565b9050919050565b611f6c81611f51565b8114611f7757600080fd5b50565b600081359050611f8981611f63565b92915050565b6000819050919050565b611fa281611f8f565b8114611fad57600080fd5b50565b600081359050611fbf81611f99565b92915050565b60008060408385031215611fdc57611fdb611f27565b5b6000611fea85828601611f7a565b9250506020611ffb85828601611fb0565b9150509250929050565b61200e81611f8f565b82525050565b60006020820190506120296000830184612005565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120648161202f565b811461206f57600080fd5b50565b6000813590506120818161205b565b92915050565b60006020828403121561209d5761209c611f27565b5b60006120ab84828501612072565b91505092915050565b60008115159050919050565b6120c9816120b4565b82525050565b60006020820190506120e460008301846120c0565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61213d826120f4565b810181811067ffffffffffffffff8211171561215c5761215b612105565b5b80604052505050565b600061216f611f1d565b905061217b8282612134565b919050565b600067ffffffffffffffff82111561219b5761219a612105565b5b6121a4826120f4565b9050602081019050919050565b82818337600083830152505050565b60006121d36121ce84612180565b612165565b9050828152602081018484840111156121ef576121ee6120ef565b5b6121fa8482856121b1565b509392505050565b600082601f830112612217576122166120ea565b5b81356122278482602086016121c0565b91505092915050565b60006020828403121561224657612245611f27565b5b600082013567ffffffffffffffff81111561226457612263611f2c565b5b61227084828501612202565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122b3578082015181840152602081019050612298565b838111156122c2576000848401525b50505050565b60006122d382612279565b6122dd8185612284565b93506122ed818560208601612295565b6122f6816120f4565b840191505092915050565b6000602082019050818103600083015261231b81846122c8565b905092915050565b60006020828403121561233957612338611f27565b5b600061234784828501611fb0565b91505092915050565b600067ffffffffffffffff82111561236b5761236a612105565b5b602082029050602081019050919050565b600080fd5b600061239461238f84612350565b612165565b905080838252602082019050602084028301858111156123b7576123b661237c565b5b835b818110156123e057806123cc8882611fb0565b8452602084019350506020810190506123b9565b5050509392505050565b600082601f8301126123ff576123fe6120ea565b5b813561240f848260208601612381565b91505092915050565b600067ffffffffffffffff82111561243357612432612105565b5b61243c826120f4565b9050602081019050919050565b600061245c61245784612418565b612165565b905082815260208101848484011115612478576124776120ef565b5b6124838482856121b1565b509392505050565b600082601f8301126124a05761249f6120ea565b5b81356124b0848260208601612449565b91505092915050565b600080600080600060a086880312156124d5576124d4611f27565b5b60006124e388828901611f7a565b95505060206124f488828901611f7a565b945050604086013567ffffffffffffffff81111561251557612514611f2c565b5b612521888289016123ea565b935050606086013567ffffffffffffffff81111561254257612541611f2c565b5b61254e888289016123ea565b925050608086013567ffffffffffffffff81111561256f5761256e611f2c565b5b61257b8882890161248b565b9150509295509295909350565b600067ffffffffffffffff8211156125a3576125a2612105565b5b602082029050602081019050919050565b60006125c76125c284612588565b612165565b905080838252602082019050602084028301858111156125ea576125e961237c565b5b835b8181101561261357806125ff8882611f7a565b8452602084019350506020810190506125ec565b5050509392505050565b600082601f830112612632576126316120ea565b5b81356126428482602086016125b4565b91505092915050565b6000806040838503121561266257612661611f27565b5b600083013567ffffffffffffffff8111156126805761267f611f2c565b5b61268c8582860161261d565b925050602083013567ffffffffffffffff8111156126ad576126ac611f2c565b5b6126b9858286016123ea565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6126f881611f8f565b82525050565b600061270a83836126ef565b60208301905092915050565b6000602082019050919050565b600061272e826126c3565b61273881856126ce565b9350612743836126df565b8060005b8381101561277457815161275b88826126fe565b975061276683612716565b925050600181019050612747565b5085935050505092915050565b6000602082019050818103600083015261279b8184612723565b905092915050565b6127ac81611f51565b82525050565b60006020820190506127c760008301846127a3565b92915050565b6127d6816120b4565b81146127e157600080fd5b50565b6000813590506127f3816127cd565b92915050565b600080604083850312156128105761280f611f27565b5b600061281e85828601611f7a565b925050602061282f858286016127e4565b9150509250929050565b60006020828403121561284f5761284e611f27565b5b600061285d848285016127e4565b91505092915050565b6000806040838503121561287d5761287c611f27565b5b600061288b85828601611f7a565b925050602061289c85828601611f7a565b9150509250929050565b600080600080600060a086880312156128c2576128c1611f27565b5b60006128d088828901611f7a565b95505060206128e188828901611f7a565b94505060406128f288828901611fb0565b935050606061290388828901611fb0565b925050608086013567ffffffffffffffff81111561292457612923611f2c565b5b6129308882890161248b565b9150509295509295909350565b60006020828403121561295357612952611f27565b5b600061296184828501611f7a565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006129c6602a83612284565b91506129d18261296a565b604082019050919050565b600060208201905081810360008301526129f5816129b9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a4357607f821691505b602082108103612a5657612a556129fc565b5b50919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b6000612ab8602f83612284565b9150612ac382612a5c565b604082019050919050565b60006020820190508181036000830152612ae781612aab565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612b4a602983612284565b9150612b5582612aee565b604082019050919050565b60006020820190508181036000830152612b7981612b3d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612be982611f8f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612c1b57612c1a612baf565b5b600182019050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c82602283612284565b9150612c8d82612c26565b604082019050919050565b60006020820190508181036000830152612cb181612c75565b9050919050565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b6000612cee601b83612284565b9150612cf982612cb8565b602082019050919050565b60006020820190508181036000830152612d1d81612ce1565b9050919050565b6000612d2f82611f8f565b9150612d3a83611f8f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d6f57612d6e612baf565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b6000612dd6602a83612284565b9150612de182612d7a565b604082019050919050565b60006020820190508181036000830152612e0581612dc9565b9050919050565b6000612e1782611f8f565b9150612e2283611f8f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e5b57612e5a612baf565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000612e9c601f83612284565b9150612ea782612e66565b602082019050919050565b60006020820190508181036000830152612ecb81612e8f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f2e602683612284565b9150612f3982612ed2565b604082019050919050565b60006020820190508181036000830152612f5d81612f21565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f9a602083612284565b9150612fa582612f64565b602082019050919050565b60006020820190508181036000830152612fc981612f8d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130327fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612ff5565b61303c8683612ff5565b95508019841693508086168417925050509392505050565b6000819050919050565b600061307961307461306f84611f8f565b613054565b611f8f565b9050919050565b6000819050919050565b6130938361305e565b6130a761309f82613080565b848454613002565b825550505050565b600090565b6130bc6130af565b6130c781848461308a565b505050565b5b818110156130eb576130e06000826130b4565b6001810190506130cd565b5050565b601f8211156131305761310181612fd0565b61310a84612fe5565b81016020851015613119578190505b61312d61312585612fe5565b8301826130cc565b50505b505050565b600082821c905092915050565b600061315360001984600802613135565b1980831691505092915050565b600061316c8383613142565b9150826002028217905092915050565b61318582612279565b67ffffffffffffffff81111561319e5761319d612105565b5b6131a88254612a2b565b6131b38282856130ef565b600060209050601f8311600181146131e657600084156131d4578287015190505b6131de8582613160565b865550613246565b601f1984166131f486612fd0565b60005b8281101561321c578489015182556001820191506020850194506020810190506131f7565b868310156132395784890151613235601f891682613142565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006132aa602883612284565b91506132b58261324e565b604082019050919050565b600060208201905081810360008301526132d98161329d565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061333c602583612284565b9150613347826132e0565b604082019050919050565b6000602082019050818103600083015261336b8161332f565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006133ce602a83612284565b91506133d982613372565b604082019050919050565b600060208201905081810360008301526133fd816133c1565b9050919050565b6000604082019050818103600083015261341e8185612723565b905081810360208301526134328184612723565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613497602183612284565b91506134a28261343b565b604082019050919050565b600060208201905081810360008301526134c68161348a565b9050919050565b60006040820190506134e26000830185612005565b6134ef6020830184612005565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000613552602983612284565b915061355d826134f6565b604082019050919050565b6000602082019050818103600083015261358181613545565b9050919050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b60006135e4602883612284565b91506135ef82613588565b604082019050919050565b60006020820190508181036000830152613613816135d7565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136418261361a565b61364b8185613625565b935061365b818560208601612295565b613664816120f4565b840191505092915050565b600060a08201905061368460008301886127a3565b61369160208301876127a3565b81810360408301526136a38186612723565b905081810360608301526136b78185612723565b905081810360808301526136cb8184613636565b90509695505050505050565b6000815190506136e68161205b565b92915050565b60006020828403121561370257613701611f27565b5b6000613710848285016136d7565b91505092915050565b60008160e01c9050919050565b600060033d11156137455760046000803e613742600051613719565b90505b90565b600060443d106137d55761375a611f1d565b60043d036004823e80513d602482011167ffffffffffffffff821117156137825750506137d5565b808201805167ffffffffffffffff8111156137a057505050506137d5565b80602083010160043d0385018111156137bd5750505050506137d5565b6137cc82602001850186612134565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613834603483612284565b915061383f826137d8565b604082019050919050565b6000602082019050818103600083015261386381613827565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006138c6602883612284565b91506138d18261386a565b604082019050919050565b600060208201905081810360008301526138f5816138b9565b9050919050565b600060a08201905061391160008301886127a3565b61391e60208301876127a3565b61392b6040830186612005565b6139386060830185612005565b818103608083015261394a8184613636565b9050969550505050505056fea26469706673582212204cc620092d463bf949bb4003284d9418f6e9ad9f2bf9725088ee217c011d36bc64736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000074441494c59474d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002474d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5267555647545a46645164796b7a6d717933326e45565463504779564731704151574c464b565a4d463456362f00000000000000000000

Deployed Bytecode

0x6080604052600436106101295760003560e01c80638da5cb5b116100ab578063c4e370951161006f578063c4e37095146103e2578063cd3293de1461040b578063e985e9c514610422578063eb8d24441461045f578063f242432a1461048a578063f2fde38b146104b357610129565b80638da5cb5b1461030a57806395d89b4114610335578063a0712d6814610360578063a22cb4651461037c578063bd85b039146103a557610129565b80632eb2c2d6116100f25780632eb2c2d6146102395780633ccfd60b146102625780634e1273f4146102795780634f558e79146102b6578063715018a6146102f357610129565b8062fdd58e1461012e57806301ffc9a71461016b57806302fe5305146101a857806306fdde03146101d15780630e89341c146101fc575b600080fd5b34801561013a57600080fd5b5061015560048036038101906101509190611fc5565b6104dc565b6040516101629190612014565b60405180910390f35b34801561017757600080fd5b50610192600480360381019061018d9190612087565b6105a4565b60405161019f91906120cf565b60405180910390f35b3480156101b457600080fd5b506101cf60048036038101906101ca9190612230565b610686565b005b3480156101dd57600080fd5b506101e661069a565b6040516101f39190612301565b60405180910390f35b34801561020857600080fd5b50610223600480360381019061021e9190612323565b610728565b6040516102309190612301565b60405180910390f35b34801561024557600080fd5b50610260600480360381019061025b91906124b9565b6107bc565b005b34801561026e57600080fd5b5061027761085d565b005b34801561028557600080fd5b506102a0600480360381019061029b919061264b565b6108b4565b6040516102ad9190612781565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612323565b6109cd565b6040516102ea91906120cf565b60405180910390f35b3480156102ff57600080fd5b506103086109e1565b005b34801561031657600080fd5b5061031f6109f5565b60405161032c91906127b2565b60405180910390f35b34801561034157600080fd5b5061034a610a1f565b6040516103579190612301565b60405180910390f35b61037a60048036038101906103759190612323565b610aad565b005b34801561038857600080fd5b506103a3600480360381019061039e91906127f9565b610c07565b005b3480156103b157600080fd5b506103cc60048036038101906103c79190612323565b610c1d565b6040516103d99190612014565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190612839565b610c3a565b005b34801561041757600080fd5b50610420610c5f565b005b34801561042e57600080fd5b5061044960048036038101906104449190612866565b610c86565b60405161045691906120cf565b60405180910390f35b34801561046b57600080fd5b50610474610d1a565b60405161048191906120cf565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac91906128a6565b610d2d565b005b3480156104bf57600080fd5b506104da60048036038101906104d5919061293d565b610dce565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361054c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610543906129dc565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066f57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061067f575061067e82610e51565b5b9050919050565b61068e610ebb565b61069781610f39565b50565b600580546106a790612a2b565b80601f01602080910402602001604051908101604052809291908181526020018280546106d390612a2b565b80156107205780601f106106f557610100808354040283529160200191610720565b820191906000526020600020905b81548152906001019060200180831161070357829003601f168201915b505050505081565b60606002805461073790612a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461076390612a2b565b80156107b05780601f10610785576101008083540402835291602001916107b0565b820191906000526020600020905b81548152906001019060200180831161079357829003601f168201915b50505050509050919050565b6107c4610f4c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061080a575061080985610804610f4c565b610c86565b5b610849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084090612ace565b60405180910390fd5b6108568585858585610f54565b5050505050565b610865610ebb565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156108b0573d6000803e3d6000fd5b5050565b606081518351146108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f190612b60565b60405180910390fd5b6000835167ffffffffffffffff81111561091757610916612105565b5b6040519080825280602002602001820160405280156109455781602001602082028036833780820191505090505b50905060005b84518110156109c25761099285828151811061096a57610969612b80565b5b602002602001015185838151811061098557610984612b80565b5b60200260200101516104dc565b8282815181106109a5576109a4612b80565b5b602002602001018181525050806109bb90612bde565b905061094b565b508091505092915050565b6000806109d983610c1d565b119050919050565b6109e9610ebb565b6109f36000611275565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60068054610a2c90612a2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5890612a2b565b8015610aa55780601f10610a7a57610100808354040283529160200191610aa5565b820191906000526020600020905b815481529060010190602001808311610a8857829003601f168201915b505050505081565b600460149054906101000a900460ff16610afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af390612c98565b60405180910390fd5b6002811115610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3790612d04565b60405180910390fd5b6101a481610b4e6001610c1d565b610b589190612d24565b1115610b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9090612dec565b60405180910390fd5b34816000610ba79190612e0c565b1115610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90612eb2565b60405180910390fd5b610c04336001836040518060200160405280600081525061133b565b50565b610c19610c12610f4c565b83836114eb565b5050565b600060036000838152602001908152602001600020549050919050565b610c42610ebb565b80600460146101000a81548160ff02191690831515021790555050565b610c67610ebb565b610c84336001602a6040518060200160405280600081525061133b565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600460149054906101000a900460ff1681565b610d35610f4c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610d7b5750610d7a85610d75610f4c565b610c86565b5b610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190612ace565b60405180910390fd5b610dc78585858585611657565b5050505050565b610dd6610ebb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90612f44565b60405180910390fd5b610e4e81611275565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610ec3610f4c565b73ffffffffffffffffffffffffffffffffffffffff16610ee16109f5565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90612fb0565b60405180910390fd5b565b8060029081610f48919061317c565b5050565b600033905090565b8151835114610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906132c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90613352565b60405180910390fd5b6000611011610f4c565b90506110218187878787876118f2565b60005b84518110156111d257600085828151811061104257611041612b80565b5b60200260200101519050600085838151811061106157611060612b80565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906133e4565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111b79190612d24565b92505081905550505050806111cb90612bde565b9050611024565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611249929190613404565b60405180910390a461125f818787878787611ac2565b61126d818787878787611aca565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a1906134ad565b60405180910390fd5b60006113b4610f4c565b905060006113c185611ca1565b905060006113ce85611ca1565b90506113df836000898585896118f2565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461143e9190612d24565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516114bc9291906134cd565b60405180910390a46114d383600089858589611ac2565b6114e283600089898989611d1b565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155090613568565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161164a91906120cf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd90613352565b60405180910390fd5b60006116d0610f4c565b905060006116dd85611ca1565b905060006116ea85611ca1565b90506116fa8389898585896118f2565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611791576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611788906133e4565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118469190612d24565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516118c39291906134cd565b60405180910390a46118d9848a8a86868a611ac2565b6118e7848a8a8a8a8a611d1b565b505050505050505050565b611900868686868686611ef2565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036119b15760005b83518110156119af5782818151811061195357611952612b80565b5b60200260200101516003600086848151811061197257611971612b80565b5b6020026020010151815260200190815260200160002060008282546119979190612d24565b92505081905550806119a890612bde565b9050611937565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611aba5760005b8351811015611ab8576000848281518110611a0657611a05612b80565b5b602002602001015190506000848381518110611a2557611a24612b80565b5b6020026020010151905060006003600084815260200190815260200160002054905081811015611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a81906135fa565b60405180910390fd5b818103600360008581526020019081526020016000208190555050505080611ab190612bde565b90506119e8565b505b505050505050565b505050505050565b611ae98473ffffffffffffffffffffffffffffffffffffffff16611efa565b15611c99578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611b2f95949392919061366f565b6020604051808303816000875af1925050508015611b6b57506040513d601f19601f82011682018060405250810190611b6891906136ec565b60015b611c1057611b77613726565b806308c379a003611bd35750611b8b613748565b80611b965750611bd5565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca9190612301565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c079061384a565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e906138dc565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611cc057611cbf612105565b5b604051908082528060200260200182016040528015611cee5781602001602082028036833780820191505090505b5090508281600081518110611d0657611d05612b80565b5b60200260200101818152505080915050919050565b611d3a8473ffffffffffffffffffffffffffffffffffffffff16611efa565b15611eea578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611d809594939291906138fc565b6020604051808303816000875af1925050508015611dbc57506040513d601f19601f82011682018060405250810190611db991906136ec565b60015b611e6157611dc8613726565b806308c379a003611e245750611ddc613748565b80611de75750611e26565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1b9190612301565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e589061384a565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf906138dc565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f5c82611f31565b9050919050565b611f6c81611f51565b8114611f7757600080fd5b50565b600081359050611f8981611f63565b92915050565b6000819050919050565b611fa281611f8f565b8114611fad57600080fd5b50565b600081359050611fbf81611f99565b92915050565b60008060408385031215611fdc57611fdb611f27565b5b6000611fea85828601611f7a565b9250506020611ffb85828601611fb0565b9150509250929050565b61200e81611f8f565b82525050565b60006020820190506120296000830184612005565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120648161202f565b811461206f57600080fd5b50565b6000813590506120818161205b565b92915050565b60006020828403121561209d5761209c611f27565b5b60006120ab84828501612072565b91505092915050565b60008115159050919050565b6120c9816120b4565b82525050565b60006020820190506120e460008301846120c0565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61213d826120f4565b810181811067ffffffffffffffff8211171561215c5761215b612105565b5b80604052505050565b600061216f611f1d565b905061217b8282612134565b919050565b600067ffffffffffffffff82111561219b5761219a612105565b5b6121a4826120f4565b9050602081019050919050565b82818337600083830152505050565b60006121d36121ce84612180565b612165565b9050828152602081018484840111156121ef576121ee6120ef565b5b6121fa8482856121b1565b509392505050565b600082601f830112612217576122166120ea565b5b81356122278482602086016121c0565b91505092915050565b60006020828403121561224657612245611f27565b5b600082013567ffffffffffffffff81111561226457612263611f2c565b5b61227084828501612202565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122b3578082015181840152602081019050612298565b838111156122c2576000848401525b50505050565b60006122d382612279565b6122dd8185612284565b93506122ed818560208601612295565b6122f6816120f4565b840191505092915050565b6000602082019050818103600083015261231b81846122c8565b905092915050565b60006020828403121561233957612338611f27565b5b600061234784828501611fb0565b91505092915050565b600067ffffffffffffffff82111561236b5761236a612105565b5b602082029050602081019050919050565b600080fd5b600061239461238f84612350565b612165565b905080838252602082019050602084028301858111156123b7576123b661237c565b5b835b818110156123e057806123cc8882611fb0565b8452602084019350506020810190506123b9565b5050509392505050565b600082601f8301126123ff576123fe6120ea565b5b813561240f848260208601612381565b91505092915050565b600067ffffffffffffffff82111561243357612432612105565b5b61243c826120f4565b9050602081019050919050565b600061245c61245784612418565b612165565b905082815260208101848484011115612478576124776120ef565b5b6124838482856121b1565b509392505050565b600082601f8301126124a05761249f6120ea565b5b81356124b0848260208601612449565b91505092915050565b600080600080600060a086880312156124d5576124d4611f27565b5b60006124e388828901611f7a565b95505060206124f488828901611f7a565b945050604086013567ffffffffffffffff81111561251557612514611f2c565b5b612521888289016123ea565b935050606086013567ffffffffffffffff81111561254257612541611f2c565b5b61254e888289016123ea565b925050608086013567ffffffffffffffff81111561256f5761256e611f2c565b5b61257b8882890161248b565b9150509295509295909350565b600067ffffffffffffffff8211156125a3576125a2612105565b5b602082029050602081019050919050565b60006125c76125c284612588565b612165565b905080838252602082019050602084028301858111156125ea576125e961237c565b5b835b8181101561261357806125ff8882611f7a565b8452602084019350506020810190506125ec565b5050509392505050565b600082601f830112612632576126316120ea565b5b81356126428482602086016125b4565b91505092915050565b6000806040838503121561266257612661611f27565b5b600083013567ffffffffffffffff8111156126805761267f611f2c565b5b61268c8582860161261d565b925050602083013567ffffffffffffffff8111156126ad576126ac611f2c565b5b6126b9858286016123ea565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6126f881611f8f565b82525050565b600061270a83836126ef565b60208301905092915050565b6000602082019050919050565b600061272e826126c3565b61273881856126ce565b9350612743836126df565b8060005b8381101561277457815161275b88826126fe565b975061276683612716565b925050600181019050612747565b5085935050505092915050565b6000602082019050818103600083015261279b8184612723565b905092915050565b6127ac81611f51565b82525050565b60006020820190506127c760008301846127a3565b92915050565b6127d6816120b4565b81146127e157600080fd5b50565b6000813590506127f3816127cd565b92915050565b600080604083850312156128105761280f611f27565b5b600061281e85828601611f7a565b925050602061282f858286016127e4565b9150509250929050565b60006020828403121561284f5761284e611f27565b5b600061285d848285016127e4565b91505092915050565b6000806040838503121561287d5761287c611f27565b5b600061288b85828601611f7a565b925050602061289c85828601611f7a565b9150509250929050565b600080600080600060a086880312156128c2576128c1611f27565b5b60006128d088828901611f7a565b95505060206128e188828901611f7a565b94505060406128f288828901611fb0565b935050606061290388828901611fb0565b925050608086013567ffffffffffffffff81111561292457612923611f2c565b5b6129308882890161248b565b9150509295509295909350565b60006020828403121561295357612952611f27565b5b600061296184828501611f7a565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006129c6602a83612284565b91506129d18261296a565b604082019050919050565b600060208201905081810360008301526129f5816129b9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a4357607f821691505b602082108103612a5657612a556129fc565b5b50919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b6000612ab8602f83612284565b9150612ac382612a5c565b604082019050919050565b60006020820190508181036000830152612ae781612aab565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612b4a602983612284565b9150612b5582612aee565b604082019050919050565b60006020820190508181036000830152612b7981612b3d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612be982611f8f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612c1b57612c1a612baf565b5b600182019050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c82602283612284565b9150612c8d82612c26565b604082019050919050565b60006020820190508181036000830152612cb181612c75565b9050919050565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b6000612cee601b83612284565b9150612cf982612cb8565b602082019050919050565b60006020820190508181036000830152612d1d81612ce1565b9050919050565b6000612d2f82611f8f565b9150612d3a83611f8f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d6f57612d6e612baf565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b6000612dd6602a83612284565b9150612de182612d7a565b604082019050919050565b60006020820190508181036000830152612e0581612dc9565b9050919050565b6000612e1782611f8f565b9150612e2283611f8f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e5b57612e5a612baf565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000612e9c601f83612284565b9150612ea782612e66565b602082019050919050565b60006020820190508181036000830152612ecb81612e8f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f2e602683612284565b9150612f3982612ed2565b604082019050919050565b60006020820190508181036000830152612f5d81612f21565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f9a602083612284565b9150612fa582612f64565b602082019050919050565b60006020820190508181036000830152612fc981612f8d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130327fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612ff5565b61303c8683612ff5565b95508019841693508086168417925050509392505050565b6000819050919050565b600061307961307461306f84611f8f565b613054565b611f8f565b9050919050565b6000819050919050565b6130938361305e565b6130a761309f82613080565b848454613002565b825550505050565b600090565b6130bc6130af565b6130c781848461308a565b505050565b5b818110156130eb576130e06000826130b4565b6001810190506130cd565b5050565b601f8211156131305761310181612fd0565b61310a84612fe5565b81016020851015613119578190505b61312d61312585612fe5565b8301826130cc565b50505b505050565b600082821c905092915050565b600061315360001984600802613135565b1980831691505092915050565b600061316c8383613142565b9150826002028217905092915050565b61318582612279565b67ffffffffffffffff81111561319e5761319d612105565b5b6131a88254612a2b565b6131b38282856130ef565b600060209050601f8311600181146131e657600084156131d4578287015190505b6131de8582613160565b865550613246565b601f1984166131f486612fd0565b60005b8281101561321c578489015182556001820191506020850194506020810190506131f7565b868310156132395784890151613235601f891682613142565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006132aa602883612284565b91506132b58261324e565b604082019050919050565b600060208201905081810360008301526132d98161329d565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061333c602583612284565b9150613347826132e0565b604082019050919050565b6000602082019050818103600083015261336b8161332f565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006133ce602a83612284565b91506133d982613372565b604082019050919050565b600060208201905081810360008301526133fd816133c1565b9050919050565b6000604082019050818103600083015261341e8185612723565b905081810360208301526134328184612723565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613497602183612284565b91506134a28261343b565b604082019050919050565b600060208201905081810360008301526134c68161348a565b9050919050565b60006040820190506134e26000830185612005565b6134ef6020830184612005565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000613552602983612284565b915061355d826134f6565b604082019050919050565b6000602082019050818103600083015261358181613545565b9050919050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b60006135e4602883612284565b91506135ef82613588565b604082019050919050565b60006020820190508181036000830152613613816135d7565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136418261361a565b61364b8185613625565b935061365b818560208601612295565b613664816120f4565b840191505092915050565b600060a08201905061368460008301886127a3565b61369160208301876127a3565b81810360408301526136a38186612723565b905081810360608301526136b78185612723565b905081810360808301526136cb8184613636565b90509695505050505050565b6000815190506136e68161205b565b92915050565b60006020828403121561370257613701611f27565b5b6000613710848285016136d7565b91505092915050565b60008160e01c9050919050565b600060033d11156137455760046000803e613742600051613719565b90505b90565b600060443d106137d55761375a611f1d565b60043d036004823e80513d602482011167ffffffffffffffff821117156137825750506137d5565b808201805167ffffffffffffffff8111156137a057505050506137d5565b80602083010160043d0385018111156137bd5750505050506137d5565b6137cc82602001850186612134565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613834603483612284565b915061383f826137d8565b604082019050919050565b6000602082019050818103600083015261386381613827565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006138c6602883612284565b91506138d18261386a565b604082019050919050565b600060208201905081810360008301526138f5816138b9565b9050919050565b600060a08201905061391160008301886127a3565b61391e60208301876127a3565b61392b6040830186612005565b6139386060830185612005565b818103608083015261394a8184613636565b9050969550505050505056fea26469706673582212204cc620092d463bf949bb4003284d9418f6e9ad9f2bf9725088ee217c011d36bc64736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000074441494c59474d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002474d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5267555647545a46645164796b7a6d717933326e45565463504779564731704151574c464b565a4d463456362f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): DAILYGM
Arg [1] : _symbol (string): GM
Arg [2] : uri (string): ipfs://QmRgUVGTZFdQdykzmqy32nEVTcPGyVG1pAQWLFKVZMF4V6/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 4441494c59474d00000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 474d000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5267555647545a46645164796b7a6d717933326e455654
Arg [9] : 63504779564731704151574c464b565a4d463456362f00000000000000000000


Deployed Bytecode Sourcemap

41338:1474:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20959:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19982:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42066:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41789:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20703:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22903:439;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42669:140;;;;;;;;;;;;;:::i;:::-;;21355:524;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37437:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40455:103;;;;;;;;;;;;;:::i;:::-;;39807:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41814:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42167:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21952:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37226:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41962:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41844:106;;;;;;;;;;;;;:::i;:::-;;22179:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41389:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22419:407;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40713:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20959:230;21045:7;21092:1;21073:21;;:7;:21;;;21065:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21159:9;:13;21169:2;21159:13;;;;;;;;;;;:22;21173:7;21159:22;;;;;;;;;;;;;;;;21152:29;;20959:230;;;;:::o;19982:310::-;20084:4;20136:26;20121:41;;;:11;:41;;;;:110;;;;20194:37;20179:52;;;:11;:52;;;;20121:110;:163;;;;20248:36;20272:11;20248:23;:36::i;:::-;20121:163;20101:183;;19982:310;;;:::o;42066:89::-;39693:13;:11;:13::i;:::-;42132:15:::1;42140:6;42132:7;:15::i;:::-;42066:89:::0;:::o;41789:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20703:105::-;20763:13;20796:4;20789:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20703:105;;;:::o;22903:439::-;23144:12;:10;:12::i;:::-;23136:20;;:4;:20;;;:60;;;;23160:36;23177:4;23183:12;:10;:12::i;:::-;23160:16;:36::i;:::-;23136:60;23114:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;23282:52;23305:4;23311:2;23315:3;23320:7;23329:4;23282:22;:52::i;:::-;22903:439;;;;;:::o;42669:140::-;39693:13;:11;:13::i;:::-;42717:12:::1;42732:21;42717:36;;42772:10;42764:28;;:37;42793:7;42764:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;42706:103;42669:140::o:0;21355:524::-;21511:16;21572:3;:10;21553:8;:15;:29;21545:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;21641:30;21688:8;:15;21674:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21641:63;;21722:9;21717:122;21741:8;:15;21737:1;:19;21717:122;;;21797:30;21807:8;21816:1;21807:11;;;;;;;;:::i;:::-;;;;;;;;21820:3;21824:1;21820:6;;;;;;;;:::i;:::-;;;;;;;;21797:9;:30::i;:::-;21778:13;21792:1;21778:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;21758:3;;;;:::i;:::-;;;21717:122;;;;21858:13;21851:20;;;21355:524;;;;:::o;37437:122::-;37494:4;37550:1;37518:29;37544:2;37518:25;:29::i;:::-;:33;37511:40;;37437:122;;;:::o;40455:103::-;39693:13;:11;:13::i;:::-;40520:30:::1;40547:1;40520:18;:30::i;:::-;40455:103::o:0;39807:87::-;39853:7;39880:6;;;;;;;;;;;39873:13;;39807:87;:::o;41814:20::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42167:492::-;42236:12;;;;;;;;;;;42228:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;41546:1;42306:14;:41;;42298:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;41581:3;42422:14;42398:21;41453:1;42398:11;:21::i;:::-;:38;;;;:::i;:::-;:52;;42390:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;42548:9;42530:14;41619:7;42516:28;;;;:::i;:::-;:41;;42508:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;42604:47;42610:10;41453:1;42632:14;42604:47;;;;;;;;;;;;:5;:47::i;:::-;42167:492;:::o;21952:155::-;22047:52;22066:12;:10;:12::i;:::-;22080:8;22090;22047:18;:52::i;:::-;21952:155;;:::o;37226:113::-;37288:7;37315:12;:16;37328:2;37315:16;;;;;;;;;;;;37308:23;;37226:113;;;:::o;41962:96::-;39693:13;:11;:13::i;:::-;42042:8:::1;42027:12;;:23;;;;;;;;;;;;;;;;;;41962:96:::0;:::o;41844:106::-;39693:13;:11;:13::i;:::-;41890:52:::1;41896:10;41453:1;41497:2;41890:52;;;;;;;;;;;::::0;:5:::1;:52::i;:::-;41844:106::o:0;22179:168::-;22278:4;22302:18;:27;22321:7;22302:27;;;;;;;;;;;;;;;:37;22330:8;22302:37;;;;;;;;;;;;;;;;;;;;;;;;;22295:44;;22179:168;;;;:::o;41389:32::-;;;;;;;;;;;;;:::o;22419:407::-;22635:12;:10;:12::i;:::-;22627:20;;:4;:20;;;:60;;;;22651:36;22668:4;22674:12;:10;:12::i;:::-;22651:16;:36::i;:::-;22627:60;22605:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;22773:45;22791:4;22797:2;22801;22805:6;22813:4;22773:17;:45::i;:::-;22419:407;;;;;:::o;40713:201::-;39693:13;:11;:13::i;:::-;40822:1:::1;40802:22;;:8;:22;;::::0;40794:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40878:28;40897:8;40878:18;:28::i;:::-;40713:201:::0;:::o;10370:157::-;10455:4;10494:25;10479:40;;;:11;:40;;;;10472:47;;10370:157;;;:::o;39972:132::-;40047:12;:10;:12::i;:::-;40036:23;;:7;:5;:7::i;:::-;:23;;;40028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39972:132::o;27128:88::-;27202:6;27195:4;:13;;;;;;:::i;:::-;;27128:88;:::o;18676:98::-;18729:7;18756:10;18749:17;;18676:98;:::o;25138:1146::-;25365:7;:14;25351:3;:10;:28;25343:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;25457:1;25443:16;;:2;:16;;;25435:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;25514:16;25533:12;:10;:12::i;:::-;25514:31;;25558:60;25579:8;25589:4;25595:2;25599:3;25604:7;25613:4;25558:20;:60::i;:::-;25636:9;25631:421;25655:3;:10;25651:1;:14;25631:421;;;25687:10;25700:3;25704:1;25700:6;;;;;;;;:::i;:::-;;;;;;;;25687:19;;25721:14;25738:7;25746:1;25738:10;;;;;;;;:::i;:::-;;;;;;;;25721:27;;25765:19;25787:9;:13;25797:2;25787:13;;;;;;;;;;;:19;25801:4;25787:19;;;;;;;;;;;;;;;;25765:41;;25844:6;25829:11;:21;;25821:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25977:6;25963:11;:20;25941:9;:13;25951:2;25941:13;;;;;;;;;;;:19;25955:4;25941:19;;;;;;;;;;;;;;;:42;;;;26034:6;26013:9;:13;26023:2;26013:13;;;;;;;;;;;:17;26027:2;26013:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;25672:380;;;25667:3;;;;:::i;:::-;;;25631:421;;;;26099:2;26069:47;;26093:4;26069:47;;26083:8;26069:47;;;26103:3;26108:7;26069:47;;;;;;;:::i;:::-;;;;;;;;26129:59;26149:8;26159:4;26165:2;26169:3;26174:7;26183:4;26129:19;:59::i;:::-;26201:75;26237:8;26247:4;26253:2;26257:3;26262:7;26271:4;26201:35;:75::i;:::-;25332:952;25138:1146;;;;;:::o;41074:191::-;41148:16;41167:6;;;;;;;;;;;41148:25;;41193:8;41184:6;;:17;;;;;;;;;;;;;;;;;;41248:8;41217:40;;41238:8;41217:40;;;;;;;;;;;;41137:128;41074:191;:::o;27602:729::-;27769:1;27755:16;;:2;:16;;;27747:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;27822:16;27841:12;:10;:12::i;:::-;27822:31;;27864:20;27887:21;27905:2;27887:17;:21::i;:::-;27864:44;;27919:24;27946:25;27964:6;27946:17;:25::i;:::-;27919:52;;27984:66;28005:8;28023:1;28027:2;28031:3;28036:7;28045:4;27984:20;:66::i;:::-;28084:6;28063:9;:13;28073:2;28063:13;;;;;;;;;;;:17;28077:2;28063:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;28143:2;28106:52;;28139:1;28106:52;;28121:8;28106:52;;;28147:2;28151:6;28106:52;;;;;;;:::i;:::-;;;;;;;;28171:65;28191:8;28209:1;28213:2;28217:3;28222:7;28231:4;28171:19;:65::i;:::-;28249:74;28280:8;28298:1;28302:2;28306;28310:6;28318:4;28249:30;:74::i;:::-;27736:595;;;27602:729;;;;:::o;32015:331::-;32170:8;32161:17;;:5;:17;;;32153:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;32273:8;32235:18;:25;32254:5;32235:25;;;;;;;;;;;;;;;:35;32261:8;32235:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32319:8;32297:41;;32312:5;32297:41;;;32329:8;32297:41;;;;;;:::i;:::-;;;;;;;;32015:331;;;:::o;23806:974::-;24008:1;23994:16;;:2;:16;;;23986:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;24065:16;24084:12;:10;:12::i;:::-;24065:31;;24107:20;24130:21;24148:2;24130:17;:21::i;:::-;24107:44;;24162:24;24189:25;24207:6;24189:17;:25::i;:::-;24162:52;;24227:60;24248:8;24258:4;24264:2;24268:3;24273:7;24282:4;24227:20;:60::i;:::-;24300:19;24322:9;:13;24332:2;24322:13;;;;;;;;;;;:19;24336:4;24322:19;;;;;;;;;;;;;;;;24300:41;;24375:6;24360:11;:21;;24352:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24500:6;24486:11;:20;24464:9;:13;24474:2;24464:13;;;;;;;;;;;:19;24478:4;24464:19;;;;;;;;;;;;;;;:42;;;;24549:6;24528:9;:13;24538:2;24528:13;;;;;;;;;;;:17;24542:2;24528:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;24604:2;24573:46;;24598:4;24573:46;;24588:8;24573:46;;;24608:2;24612:6;24573:46;;;;;;;:::i;:::-;;;;;;;;24632:59;24652:8;24662:4;24668:2;24672:3;24677:7;24686:4;24632:19;:59::i;:::-;24704:68;24735:8;24745:4;24751:2;24755;24759:6;24767:4;24704:30;:68::i;:::-;23975:805;;;;23806:974;;;;;:::o;37634:931::-;37873:66;37900:8;37910:4;37916:2;37920:3;37925:7;37934:4;37873:26;:66::i;:::-;37972:1;37956:18;;:4;:18;;;37952:160;;37996:9;37991:110;38015:3;:10;38011:1;:14;37991:110;;;38075:7;38083:1;38075:10;;;;;;;;:::i;:::-;;;;;;;;38051:12;:20;38064:3;38068:1;38064:6;;;;;;;;:::i;:::-;;;;;;;;38051:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;38027:3;;;;:::i;:::-;;;37991:110;;;;37952:160;38142:1;38128:16;;:2;:16;;;38124:434;;38166:9;38161:386;38185:3;:10;38181:1;:14;38161:386;;;38221:10;38234:3;38238:1;38234:6;;;;;;;;:::i;:::-;;;;;;;;38221:19;;38259:14;38276:7;38284:1;38276:10;;;;;;;;:::i;:::-;;;;;;;;38259:27;;38305:14;38322:12;:16;38335:2;38322:16;;;;;;;;;;;;38305:33;;38375:6;38365;:16;;38357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;38506:6;38497;:15;38478:12;:16;38491:2;38478:16;;;;;;;;;;;:34;;;;38202:345;;;38197:3;;;;:::i;:::-;;;38161:386;;;;38124:434;37634:931;;;;;;:::o;34480:220::-;;;;;;;:::o;35460:813::-;35700:15;:2;:13;;;:15::i;:::-;35696:570;;;35753:2;35736:43;;;35780:8;35790:4;35796:3;35801:7;35810:4;35736:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35732:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;36128:6;36121:14;;;;;;;;;;;:::i;:::-;;;;;;;;35732:523;;;36177:62;;;;;;;;;;:::i;:::-;;;;;;;;35732:523;35909:48;;;35897:60;;;:8;:60;;;;35893:159;;35982:50;;;;;;;;;;:::i;:::-;;;;;;;;35893:159;35816:251;35696:570;35460:813;;;;;;:::o;36281:198::-;36347:16;36376:22;36415:1;36401:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36376:41;;36439:7;36428:5;36434:1;36428:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;36466:5;36459:12;;;36281:198;;;:::o;34708:744::-;34923:15;:2;:13;;;:15::i;:::-;34919:526;;;34976:2;34959:38;;;34998:8;35008:4;35014:2;35018:6;35026:4;34959:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34955:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;35307:6;35300:14;;;;;;;;;;;:::i;:::-;;;;;;;;34955:479;;;35356:62;;;;;;;;;;:::i;:::-;;;;;;;;34955:479;35093:43;;;35081:55;;;:8;:55;;;;35077:154;;35161:50;;;;;;;;;;:::i;:::-;;;;;;;;35077:154;35032:214;34919:526;34708:744;;;;;;:::o;33304:221::-;;;;;;;:::o;1268:326::-;1328:4;1585:1;1563:7;:19;;;:23;1556:30;;1268:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:77::-;878:7;907:5;896:16;;841:77;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:118::-;1764:24;1782:5;1764:24;:::i;:::-;1759:3;1752:37;1677:118;;:::o;1801:222::-;1894:4;1932:2;1921:9;1917:18;1909:26;;1945:71;2013:1;2002:9;1998:17;1989:6;1945:71;:::i;:::-;1801:222;;;;:::o;2029:149::-;2065:7;2105:66;2098:5;2094:78;2083:89;;2029:149;;;:::o;2184:120::-;2256:23;2273:5;2256:23;:::i;:::-;2249:5;2246:34;2236:62;;2294:1;2291;2284:12;2236:62;2184:120;:::o;2310:137::-;2355:5;2393:6;2380:20;2371:29;;2409:32;2435:5;2409:32;:::i;:::-;2310:137;;;;:::o;2453:327::-;2511:6;2560:2;2548:9;2539:7;2535:23;2531:32;2528:119;;;2566:79;;:::i;:::-;2528:119;2686:1;2711:52;2755:7;2746:6;2735:9;2731:22;2711:52;:::i;:::-;2701:62;;2657:116;2453:327;;;;:::o;2786:90::-;2820:7;2863:5;2856:13;2849:21;2838:32;;2786:90;;;:::o;2882:109::-;2963:21;2978:5;2963:21;:::i;:::-;2958:3;2951:34;2882:109;;:::o;2997:210::-;3084:4;3122:2;3111:9;3107:18;3099:26;;3135:65;3197:1;3186:9;3182:17;3173:6;3135:65;:::i;:::-;2997:210;;;;:::o;3213:117::-;3322:1;3319;3312:12;3336:117;3445:1;3442;3435:12;3459:102;3500:6;3551:2;3547:7;3542:2;3535:5;3531:14;3527:28;3517:38;;3459:102;;;:::o;3567:180::-;3615:77;3612:1;3605:88;3712:4;3709:1;3702:15;3736:4;3733:1;3726:15;3753:281;3836:27;3858:4;3836:27;:::i;:::-;3828:6;3824:40;3966:6;3954:10;3951:22;3930:18;3918:10;3915:34;3912:62;3909:88;;;3977:18;;:::i;:::-;3909:88;4017:10;4013:2;4006:22;3796:238;3753:281;;:::o;4040:129::-;4074:6;4101:20;;:::i;:::-;4091:30;;4130:33;4158:4;4150:6;4130:33;:::i;:::-;4040:129;;;:::o;4175:308::-;4237:4;4327:18;4319:6;4316:30;4313:56;;;4349:18;;:::i;:::-;4313:56;4387:29;4409:6;4387:29;:::i;:::-;4379:37;;4471:4;4465;4461:15;4453:23;;4175:308;;;:::o;4489:154::-;4573:6;4568:3;4563;4550:30;4635:1;4626:6;4621:3;4617:16;4610:27;4489:154;;;:::o;4649:412::-;4727:5;4752:66;4768:49;4810:6;4768:49;:::i;:::-;4752:66;:::i;:::-;4743:75;;4841:6;4834:5;4827:21;4879:4;4872:5;4868:16;4917:3;4908:6;4903:3;4899:16;4896:25;4893:112;;;4924:79;;:::i;:::-;4893:112;5014:41;5048:6;5043:3;5038;5014:41;:::i;:::-;4733:328;4649:412;;;;;:::o;5081:340::-;5137:5;5186:3;5179:4;5171:6;5167:17;5163:27;5153:122;;5194:79;;:::i;:::-;5153:122;5311:6;5298:20;5336:79;5411:3;5403:6;5396:4;5388:6;5384:17;5336:79;:::i;:::-;5327:88;;5143:278;5081:340;;;;:::o;5427:509::-;5496:6;5545:2;5533:9;5524:7;5520:23;5516:32;5513:119;;;5551:79;;:::i;:::-;5513:119;5699:1;5688:9;5684:17;5671:31;5729:18;5721:6;5718:30;5715:117;;;5751:79;;:::i;:::-;5715:117;5856:63;5911:7;5902:6;5891:9;5887:22;5856:63;:::i;:::-;5846:73;;5642:287;5427:509;;;;:::o;5942:99::-;5994:6;6028:5;6022:12;6012:22;;5942:99;;;:::o;6047:169::-;6131:11;6165:6;6160:3;6153:19;6205:4;6200:3;6196:14;6181:29;;6047:169;;;;:::o;6222:307::-;6290:1;6300:113;6314:6;6311:1;6308:13;6300:113;;;6399:1;6394:3;6390:11;6384:18;6380:1;6375:3;6371:11;6364:39;6336:2;6333:1;6329:10;6324:15;;6300:113;;;6431:6;6428:1;6425:13;6422:101;;;6511:1;6502:6;6497:3;6493:16;6486:27;6422:101;6271:258;6222:307;;;:::o;6535:364::-;6623:3;6651:39;6684:5;6651:39;:::i;:::-;6706:71;6770:6;6765:3;6706:71;:::i;:::-;6699:78;;6786:52;6831:6;6826:3;6819:4;6812:5;6808:16;6786:52;:::i;:::-;6863:29;6885:6;6863:29;:::i;:::-;6858:3;6854:39;6847:46;;6627:272;6535:364;;;;:::o;6905:313::-;7018:4;7056:2;7045:9;7041:18;7033:26;;7105:9;7099:4;7095:20;7091:1;7080:9;7076:17;7069:47;7133:78;7206:4;7197:6;7133:78;:::i;:::-;7125:86;;6905:313;;;;:::o;7224:329::-;7283:6;7332:2;7320:9;7311:7;7307:23;7303:32;7300:119;;;7338:79;;:::i;:::-;7300:119;7458:1;7483:53;7528:7;7519:6;7508:9;7504:22;7483:53;:::i;:::-;7473:63;;7429:117;7224:329;;;;:::o;7559:311::-;7636:4;7726:18;7718:6;7715:30;7712:56;;;7748:18;;:::i;:::-;7712:56;7798:4;7790:6;7786:17;7778:25;;7858:4;7852;7848:15;7840:23;;7559:311;;;:::o;7876:117::-;7985:1;7982;7975:12;8016:710;8112:5;8137:81;8153:64;8210:6;8153:64;:::i;:::-;8137:81;:::i;:::-;8128:90;;8238:5;8267:6;8260:5;8253:21;8301:4;8294:5;8290:16;8283:23;;8354:4;8346:6;8342:17;8334:6;8330:30;8383:3;8375:6;8372:15;8369:122;;;8402:79;;:::i;:::-;8369:122;8517:6;8500:220;8534:6;8529:3;8526:15;8500:220;;;8609:3;8638:37;8671:3;8659:10;8638:37;:::i;:::-;8633:3;8626:50;8705:4;8700:3;8696:14;8689:21;;8576:144;8560:4;8555:3;8551:14;8544:21;;8500:220;;;8504:21;8118:608;;8016:710;;;;;:::o;8749:370::-;8820:5;8869:3;8862:4;8854:6;8850:17;8846:27;8836:122;;8877:79;;:::i;:::-;8836:122;8994:6;8981:20;9019:94;9109:3;9101:6;9094:4;9086:6;9082:17;9019:94;:::i;:::-;9010:103;;8826:293;8749:370;;;;:::o;9125:307::-;9186:4;9276:18;9268:6;9265:30;9262:56;;;9298:18;;:::i;:::-;9262:56;9336:29;9358:6;9336:29;:::i;:::-;9328:37;;9420:4;9414;9410:15;9402:23;;9125:307;;;:::o;9438:410::-;9515:5;9540:65;9556:48;9597:6;9556:48;:::i;:::-;9540:65;:::i;:::-;9531:74;;9628:6;9621:5;9614:21;9666:4;9659:5;9655:16;9704:3;9695:6;9690:3;9686:16;9683:25;9680:112;;;9711:79;;:::i;:::-;9680:112;9801:41;9835:6;9830:3;9825;9801:41;:::i;:::-;9521:327;9438:410;;;;;:::o;9867:338::-;9922:5;9971:3;9964:4;9956:6;9952:17;9948:27;9938:122;;9979:79;;:::i;:::-;9938:122;10096:6;10083:20;10121:78;10195:3;10187:6;10180:4;10172:6;10168:17;10121:78;:::i;:::-;10112:87;;9928:277;9867:338;;;;:::o;10211:1509::-;10365:6;10373;10381;10389;10397;10446:3;10434:9;10425:7;10421:23;10417:33;10414:120;;;10453:79;;:::i;:::-;10414:120;10573:1;10598:53;10643:7;10634:6;10623:9;10619:22;10598:53;:::i;:::-;10588:63;;10544:117;10700:2;10726:53;10771:7;10762:6;10751:9;10747:22;10726:53;:::i;:::-;10716:63;;10671:118;10856:2;10845:9;10841:18;10828:32;10887:18;10879:6;10876:30;10873:117;;;10909:79;;:::i;:::-;10873:117;11014:78;11084:7;11075:6;11064:9;11060:22;11014:78;:::i;:::-;11004:88;;10799:303;11169:2;11158:9;11154:18;11141:32;11200:18;11192:6;11189:30;11186:117;;;11222:79;;:::i;:::-;11186:117;11327:78;11397:7;11388:6;11377:9;11373:22;11327:78;:::i;:::-;11317:88;;11112:303;11482:3;11471:9;11467:19;11454:33;11514:18;11506:6;11503:30;11500:117;;;11536:79;;:::i;:::-;11500:117;11641:62;11695:7;11686:6;11675:9;11671:22;11641:62;:::i;:::-;11631:72;;11425:288;10211:1509;;;;;;;;:::o;11726:311::-;11803:4;11893:18;11885:6;11882:30;11879:56;;;11915:18;;:::i;:::-;11879:56;11965:4;11957:6;11953:17;11945:25;;12025:4;12019;12015:15;12007:23;;11726:311;;;:::o;12060:710::-;12156:5;12181:81;12197:64;12254:6;12197:64;:::i;:::-;12181:81;:::i;:::-;12172:90;;12282:5;12311:6;12304:5;12297:21;12345:4;12338:5;12334:16;12327:23;;12398:4;12390:6;12386:17;12378:6;12374:30;12427:3;12419:6;12416:15;12413:122;;;12446:79;;:::i;:::-;12413:122;12561:6;12544:220;12578:6;12573:3;12570:15;12544:220;;;12653:3;12682:37;12715:3;12703:10;12682:37;:::i;:::-;12677:3;12670:50;12749:4;12744:3;12740:14;12733:21;;12620:144;12604:4;12599:3;12595:14;12588:21;;12544:220;;;12548:21;12162:608;;12060:710;;;;;:::o;12793:370::-;12864:5;12913:3;12906:4;12898:6;12894:17;12890:27;12880:122;;12921:79;;:::i;:::-;12880:122;13038:6;13025:20;13063:94;13153:3;13145:6;13138:4;13130:6;13126:17;13063:94;:::i;:::-;13054:103;;12870:293;12793:370;;;;:::o;13169:894::-;13287:6;13295;13344:2;13332:9;13323:7;13319:23;13315:32;13312:119;;;13350:79;;:::i;:::-;13312:119;13498:1;13487:9;13483:17;13470:31;13528:18;13520:6;13517:30;13514:117;;;13550:79;;:::i;:::-;13514:117;13655:78;13725:7;13716:6;13705:9;13701:22;13655:78;:::i;:::-;13645:88;;13441:302;13810:2;13799:9;13795:18;13782:32;13841:18;13833:6;13830:30;13827:117;;;13863:79;;:::i;:::-;13827:117;13968:78;14038:7;14029:6;14018:9;14014:22;13968:78;:::i;:::-;13958:88;;13753:303;13169:894;;;;;:::o;14069:114::-;14136:6;14170:5;14164:12;14154:22;;14069:114;;;:::o;14189:184::-;14288:11;14322:6;14317:3;14310:19;14362:4;14357:3;14353:14;14338:29;;14189:184;;;;:::o;14379:132::-;14446:4;14469:3;14461:11;;14499:4;14494:3;14490:14;14482:22;;14379:132;;;:::o;14517:108::-;14594:24;14612:5;14594:24;:::i;:::-;14589:3;14582:37;14517:108;;:::o;14631:179::-;14700:10;14721:46;14763:3;14755:6;14721:46;:::i;:::-;14799:4;14794:3;14790:14;14776:28;;14631:179;;;;:::o;14816:113::-;14886:4;14918;14913:3;14909:14;14901:22;;14816:113;;;:::o;14965:732::-;15084:3;15113:54;15161:5;15113:54;:::i;:::-;15183:86;15262:6;15257:3;15183:86;:::i;:::-;15176:93;;15293:56;15343:5;15293:56;:::i;:::-;15372:7;15403:1;15388:284;15413:6;15410:1;15407:13;15388:284;;;15489:6;15483:13;15516:63;15575:3;15560:13;15516:63;:::i;:::-;15509:70;;15602:60;15655:6;15602:60;:::i;:::-;15592:70;;15448:224;15435:1;15432;15428:9;15423:14;;15388:284;;;15392:14;15688:3;15681:10;;15089:608;;;14965:732;;;;:::o;15703:373::-;15846:4;15884:2;15873:9;15869:18;15861:26;;15933:9;15927:4;15923:20;15919:1;15908:9;15904:17;15897:47;15961:108;16064:4;16055:6;15961:108;:::i;:::-;15953:116;;15703:373;;;;:::o;16082:118::-;16169:24;16187:5;16169:24;:::i;:::-;16164:3;16157:37;16082:118;;:::o;16206:222::-;16299:4;16337:2;16326:9;16322:18;16314:26;;16350:71;16418:1;16407:9;16403:17;16394:6;16350:71;:::i;:::-;16206:222;;;;:::o;16434:116::-;16504:21;16519:5;16504:21;:::i;:::-;16497:5;16494:32;16484:60;;16540:1;16537;16530:12;16484:60;16434:116;:::o;16556:133::-;16599:5;16637:6;16624:20;16615:29;;16653:30;16677:5;16653:30;:::i;:::-;16556:133;;;;:::o;16695:468::-;16760:6;16768;16817:2;16805:9;16796:7;16792:23;16788:32;16785:119;;;16823:79;;:::i;:::-;16785:119;16943:1;16968:53;17013:7;17004:6;16993:9;16989:22;16968:53;:::i;:::-;16958:63;;16914:117;17070:2;17096:50;17138:7;17129:6;17118:9;17114:22;17096:50;:::i;:::-;17086:60;;17041:115;16695:468;;;;;:::o;17169:323::-;17225:6;17274:2;17262:9;17253:7;17249:23;17245:32;17242:119;;;17280:79;;:::i;:::-;17242:119;17400:1;17425:50;17467:7;17458:6;17447:9;17443:22;17425:50;:::i;:::-;17415:60;;17371:114;17169:323;;;;:::o;17498:474::-;17566:6;17574;17623:2;17611:9;17602:7;17598:23;17594:32;17591:119;;;17629:79;;:::i;:::-;17591:119;17749:1;17774:53;17819:7;17810:6;17799:9;17795:22;17774:53;:::i;:::-;17764:63;;17720:117;17876:2;17902:53;17947:7;17938:6;17927:9;17923:22;17902:53;:::i;:::-;17892:63;;17847:118;17498:474;;;;;:::o;17978:1089::-;18082:6;18090;18098;18106;18114;18163:3;18151:9;18142:7;18138:23;18134:33;18131:120;;;18170:79;;:::i;:::-;18131:120;18290:1;18315:53;18360:7;18351:6;18340:9;18336:22;18315:53;:::i;:::-;18305:63;;18261:117;18417:2;18443:53;18488:7;18479:6;18468:9;18464:22;18443:53;:::i;:::-;18433:63;;18388:118;18545:2;18571:53;18616:7;18607:6;18596:9;18592:22;18571:53;:::i;:::-;18561:63;;18516:118;18673:2;18699:53;18744:7;18735:6;18724:9;18720:22;18699:53;:::i;:::-;18689:63;;18644:118;18829:3;18818:9;18814:19;18801:33;18861:18;18853:6;18850:30;18847:117;;;18883:79;;:::i;:::-;18847:117;18988:62;19042:7;19033:6;19022:9;19018:22;18988:62;:::i;:::-;18978:72;;18772:288;17978:1089;;;;;;;;:::o;19073:329::-;19132:6;19181:2;19169:9;19160:7;19156:23;19152:32;19149:119;;;19187:79;;:::i;:::-;19149:119;19307:1;19332:53;19377:7;19368:6;19357:9;19353:22;19332:53;:::i;:::-;19322:63;;19278:117;19073:329;;;;:::o;19408:229::-;19548:34;19544:1;19536:6;19532:14;19525:58;19617:12;19612:2;19604:6;19600:15;19593:37;19408:229;:::o;19643:366::-;19785:3;19806:67;19870:2;19865:3;19806:67;:::i;:::-;19799:74;;19882:93;19971:3;19882:93;:::i;:::-;20000:2;19995:3;19991:12;19984:19;;19643:366;;;:::o;20015:419::-;20181:4;20219:2;20208:9;20204:18;20196:26;;20268:9;20262:4;20258:20;20254:1;20243:9;20239:17;20232:47;20296:131;20422:4;20296:131;:::i;:::-;20288:139;;20015:419;;;:::o;20440:180::-;20488:77;20485:1;20478:88;20585:4;20582:1;20575:15;20609:4;20606:1;20599:15;20626:320;20670:6;20707:1;20701:4;20697:12;20687:22;;20754:1;20748:4;20744:12;20775:18;20765:81;;20831:4;20823:6;20819:17;20809:27;;20765:81;20893:2;20885:6;20882:14;20862:18;20859:38;20856:84;;20912:18;;:::i;:::-;20856:84;20677:269;20626:320;;;:::o;20952:234::-;21092:34;21088:1;21080:6;21076:14;21069:58;21161:17;21156:2;21148:6;21144:15;21137:42;20952:234;:::o;21192:366::-;21334:3;21355:67;21419:2;21414:3;21355:67;:::i;:::-;21348:74;;21431:93;21520:3;21431:93;:::i;:::-;21549:2;21544:3;21540:12;21533:19;;21192:366;;;:::o;21564:419::-;21730:4;21768:2;21757:9;21753:18;21745:26;;21817:9;21811:4;21807:20;21803:1;21792:9;21788:17;21781:47;21845:131;21971:4;21845:131;:::i;:::-;21837:139;;21564:419;;;:::o;21989:228::-;22129:34;22125:1;22117:6;22113:14;22106:58;22198:11;22193:2;22185:6;22181:15;22174:36;21989:228;:::o;22223:366::-;22365:3;22386:67;22450:2;22445:3;22386:67;:::i;:::-;22379:74;;22462:93;22551:3;22462:93;:::i;:::-;22580:2;22575:3;22571:12;22564:19;;22223:366;;;:::o;22595:419::-;22761:4;22799:2;22788:9;22784:18;22776:26;;22848:9;22842:4;22838:20;22834:1;22823:9;22819:17;22812:47;22876:131;23002:4;22876:131;:::i;:::-;22868:139;;22595:419;;;:::o;23020:180::-;23068:77;23065:1;23058:88;23165:4;23162:1;23155:15;23189:4;23186:1;23179:15;23206:180;23254:77;23251:1;23244:88;23351:4;23348:1;23341:15;23375:4;23372:1;23365:15;23392:233;23431:3;23454:24;23472:5;23454:24;:::i;:::-;23445:33;;23500:66;23493:5;23490:77;23487:103;;23570:18;;:::i;:::-;23487:103;23617:1;23610:5;23606:13;23599:20;;23392:233;;;:::o;23631:221::-;23771:34;23767:1;23759:6;23755:14;23748:58;23840:4;23835:2;23827:6;23823:15;23816:29;23631:221;:::o;23858:366::-;24000:3;24021:67;24085:2;24080:3;24021:67;:::i;:::-;24014:74;;24097:93;24186:3;24097:93;:::i;:::-;24215:2;24210:3;24206:12;24199:19;;23858:366;;;:::o;24230:419::-;24396:4;24434:2;24423:9;24419:18;24411:26;;24483:9;24477:4;24473:20;24469:1;24458:9;24454:17;24447:47;24511:131;24637:4;24511:131;:::i;:::-;24503:139;;24230:419;;;:::o;24655:177::-;24795:29;24791:1;24783:6;24779:14;24772:53;24655:177;:::o;24838:366::-;24980:3;25001:67;25065:2;25060:3;25001:67;:::i;:::-;24994:74;;25077:93;25166:3;25077:93;:::i;:::-;25195:2;25190:3;25186:12;25179:19;;24838:366;;;:::o;25210:419::-;25376:4;25414:2;25403:9;25399:18;25391:26;;25463:9;25457:4;25453:20;25449:1;25438:9;25434:17;25427:47;25491:131;25617:4;25491:131;:::i;:::-;25483:139;;25210:419;;;:::o;25635:305::-;25675:3;25694:20;25712:1;25694:20;:::i;:::-;25689:25;;25728:20;25746:1;25728:20;:::i;:::-;25723:25;;25882:1;25814:66;25810:74;25807:1;25804:81;25801:107;;;25888:18;;:::i;:::-;25801:107;25932:1;25929;25925:9;25918:16;;25635:305;;;;:::o;25946:229::-;26086:34;26082:1;26074:6;26070:14;26063:58;26155:12;26150:2;26142:6;26138:15;26131:37;25946:229;:::o;26181:366::-;26323:3;26344:67;26408:2;26403:3;26344:67;:::i;:::-;26337:74;;26420:93;26509:3;26420:93;:::i;:::-;26538:2;26533:3;26529:12;26522:19;;26181:366;;;:::o;26553:419::-;26719:4;26757:2;26746:9;26742:18;26734:26;;26806:9;26800:4;26796:20;26792:1;26781:9;26777:17;26770:47;26834:131;26960:4;26834:131;:::i;:::-;26826:139;;26553:419;;;:::o;26978:348::-;27018:7;27041:20;27059:1;27041:20;:::i;:::-;27036:25;;27075:20;27093:1;27075:20;:::i;:::-;27070:25;;27263:1;27195:66;27191:74;27188:1;27185:81;27180:1;27173:9;27166:17;27162:105;27159:131;;;27270:18;;:::i;:::-;27159:131;27318:1;27315;27311:9;27300:20;;26978:348;;;;:::o;27332:181::-;27472:33;27468:1;27460:6;27456:14;27449:57;27332:181;:::o;27519:366::-;27661:3;27682:67;27746:2;27741:3;27682:67;:::i;:::-;27675:74;;27758:93;27847:3;27758:93;:::i;:::-;27876:2;27871:3;27867:12;27860:19;;27519:366;;;:::o;27891:419::-;28057:4;28095:2;28084:9;28080:18;28072:26;;28144:9;28138:4;28134:20;28130:1;28119:9;28115:17;28108:47;28172:131;28298:4;28172:131;:::i;:::-;28164:139;;27891:419;;;:::o;28316:225::-;28456:34;28452:1;28444:6;28440:14;28433:58;28525:8;28520:2;28512:6;28508:15;28501:33;28316:225;:::o;28547:366::-;28689:3;28710:67;28774:2;28769:3;28710:67;:::i;:::-;28703:74;;28786:93;28875:3;28786:93;:::i;:::-;28904:2;28899:3;28895:12;28888:19;;28547:366;;;:::o;28919:419::-;29085:4;29123:2;29112:9;29108:18;29100:26;;29172:9;29166:4;29162:20;29158:1;29147:9;29143:17;29136:47;29200:131;29326:4;29200:131;:::i;:::-;29192:139;;28919:419;;;:::o;29344:182::-;29484:34;29480:1;29472:6;29468:14;29461:58;29344:182;:::o;29532:366::-;29674:3;29695:67;29759:2;29754:3;29695:67;:::i;:::-;29688:74;;29771:93;29860:3;29771:93;:::i;:::-;29889:2;29884:3;29880:12;29873:19;;29532:366;;;:::o;29904:419::-;30070:4;30108:2;30097:9;30093:18;30085:26;;30157:9;30151:4;30147:20;30143:1;30132:9;30128:17;30121:47;30185:131;30311:4;30185:131;:::i;:::-;30177:139;;29904:419;;;:::o;30329:141::-;30378:4;30401:3;30393:11;;30424:3;30421:1;30414:14;30458:4;30455:1;30445:18;30437:26;;30329:141;;;:::o;30476:93::-;30513:6;30560:2;30555;30548:5;30544:14;30540:23;30530:33;;30476:93;;;:::o;30575:107::-;30619:8;30669:5;30663:4;30659:16;30638:37;;30575:107;;;;:::o;30688:393::-;30757:6;30807:1;30795:10;30791:18;30830:97;30860:66;30849:9;30830:97;:::i;:::-;30948:39;30978:8;30967:9;30948:39;:::i;:::-;30936:51;;31020:4;31016:9;31009:5;31005:21;30996:30;;31069:4;31059:8;31055:19;31048:5;31045:30;31035:40;;30764:317;;30688:393;;;;;:::o;31087:60::-;31115:3;31136:5;31129:12;;31087:60;;;:::o;31153:142::-;31203:9;31236:53;31254:34;31263:24;31281:5;31263:24;:::i;:::-;31254:34;:::i;:::-;31236:53;:::i;:::-;31223:66;;31153:142;;;:::o;31301:75::-;31344:3;31365:5;31358:12;;31301:75;;;:::o;31382:269::-;31492:39;31523:7;31492:39;:::i;:::-;31553:91;31602:41;31626:16;31602:41;:::i;:::-;31594:6;31587:4;31581:11;31553:91;:::i;:::-;31547:4;31540:105;31458:193;31382:269;;;:::o;31657:73::-;31702:3;31657:73;:::o;31736:189::-;31813:32;;:::i;:::-;31854:65;31912:6;31904;31898:4;31854:65;:::i;:::-;31789:136;31736:189;;:::o;31931:186::-;31991:120;32008:3;32001:5;31998:14;31991:120;;;32062:39;32099:1;32092:5;32062:39;:::i;:::-;32035:1;32028:5;32024:13;32015:22;;31991:120;;;31931:186;;:::o;32123:543::-;32224:2;32219:3;32216:11;32213:446;;;32258:38;32290:5;32258:38;:::i;:::-;32342:29;32360:10;32342:29;:::i;:::-;32332:8;32328:44;32525:2;32513:10;32510:18;32507:49;;;32546:8;32531:23;;32507:49;32569:80;32625:22;32643:3;32625:22;:::i;:::-;32615:8;32611:37;32598:11;32569:80;:::i;:::-;32228:431;;32213:446;32123:543;;;:::o;32672:117::-;32726:8;32776:5;32770:4;32766:16;32745:37;;32672:117;;;;:::o;32795:169::-;32839:6;32872:51;32920:1;32916:6;32908:5;32905:1;32901:13;32872:51;:::i;:::-;32868:56;32953:4;32947;32943:15;32933:25;;32846:118;32795:169;;;;:::o;32969:295::-;33045:4;33191:29;33216:3;33210:4;33191:29;:::i;:::-;33183:37;;33253:3;33250:1;33246:11;33240:4;33237:21;33229:29;;32969:295;;;;:::o;33269:1395::-;33386:37;33419:3;33386:37;:::i;:::-;33488:18;33480:6;33477:30;33474:56;;;33510:18;;:::i;:::-;33474:56;33554:38;33586:4;33580:11;33554:38;:::i;:::-;33639:67;33699:6;33691;33685:4;33639:67;:::i;:::-;33733:1;33757:4;33744:17;;33789:2;33781:6;33778:14;33806:1;33801:618;;;;34463:1;34480:6;34477:77;;;34529:9;34524:3;34520:19;34514:26;34505:35;;34477:77;34580:67;34640:6;34633:5;34580:67;:::i;:::-;34574:4;34567:81;34436:222;33771:887;;33801:618;33853:4;33849:9;33841:6;33837:22;33887:37;33919:4;33887:37;:::i;:::-;33946:1;33960:208;33974:7;33971:1;33968:14;33960:208;;;34053:9;34048:3;34044:19;34038:26;34030:6;34023:42;34104:1;34096:6;34092:14;34082:24;;34151:2;34140:9;34136:18;34123:31;;33997:4;33994:1;33990:12;33985:17;;33960:208;;;34196:6;34187:7;34184:19;34181:179;;;34254:9;34249:3;34245:19;34239:26;34297:48;34339:4;34331:6;34327:17;34316:9;34297:48;:::i;:::-;34289:6;34282:64;34204:156;34181:179;34406:1;34402;34394:6;34390:14;34386:22;34380:4;34373:36;33808:611;;;33771:887;;33361:1303;;;33269:1395;;:::o;34670:227::-;34810:34;34806:1;34798:6;34794:14;34787:58;34879:10;34874:2;34866:6;34862:15;34855:35;34670:227;:::o;34903:366::-;35045:3;35066:67;35130:2;35125:3;35066:67;:::i;:::-;35059:74;;35142:93;35231:3;35142:93;:::i;:::-;35260:2;35255:3;35251:12;35244:19;;34903:366;;;:::o;35275:419::-;35441:4;35479:2;35468:9;35464:18;35456:26;;35528:9;35522:4;35518:20;35514:1;35503:9;35499:17;35492:47;35556:131;35682:4;35556:131;:::i;:::-;35548:139;;35275:419;;;:::o;35700:224::-;35840:34;35836:1;35828:6;35824:14;35817:58;35909:7;35904:2;35896:6;35892:15;35885:32;35700:224;:::o;35930:366::-;36072:3;36093:67;36157:2;36152:3;36093:67;:::i;:::-;36086:74;;36169:93;36258:3;36169:93;:::i;:::-;36287:2;36282:3;36278:12;36271:19;;35930:366;;;:::o;36302:419::-;36468:4;36506:2;36495:9;36491:18;36483:26;;36555:9;36549:4;36545:20;36541:1;36530:9;36526:17;36519:47;36583:131;36709:4;36583:131;:::i;:::-;36575:139;;36302:419;;;:::o;36727:229::-;36867:34;36863:1;36855:6;36851:14;36844:58;36936:12;36931:2;36923:6;36919:15;36912:37;36727:229;:::o;36962:366::-;37104:3;37125:67;37189:2;37184:3;37125:67;:::i;:::-;37118:74;;37201:93;37290:3;37201:93;:::i;:::-;37319:2;37314:3;37310:12;37303:19;;36962:366;;;:::o;37334:419::-;37500:4;37538:2;37527:9;37523:18;37515:26;;37587:9;37581:4;37577:20;37573:1;37562:9;37558:17;37551:47;37615:131;37741:4;37615:131;:::i;:::-;37607:139;;37334:419;;;:::o;37759:634::-;37980:4;38018:2;38007:9;38003:18;37995:26;;38067:9;38061:4;38057:20;38053:1;38042:9;38038:17;38031:47;38095:108;38198:4;38189:6;38095:108;:::i;:::-;38087:116;;38250:9;38244:4;38240:20;38235:2;38224:9;38220:18;38213:48;38278:108;38381:4;38372:6;38278:108;:::i;:::-;38270:116;;37759:634;;;;;:::o;38399:220::-;38539:34;38535:1;38527:6;38523:14;38516:58;38608:3;38603:2;38595:6;38591:15;38584:28;38399:220;:::o;38625:366::-;38767:3;38788:67;38852:2;38847:3;38788:67;:::i;:::-;38781:74;;38864:93;38953:3;38864:93;:::i;:::-;38982:2;38977:3;38973:12;38966:19;;38625:366;;;:::o;38997:419::-;39163:4;39201:2;39190:9;39186:18;39178:26;;39250:9;39244:4;39240:20;39236:1;39225:9;39221:17;39214:47;39278:131;39404:4;39278:131;:::i;:::-;39270:139;;38997:419;;;:::o;39422:332::-;39543:4;39581:2;39570:9;39566:18;39558:26;;39594:71;39662:1;39651:9;39647:17;39638:6;39594:71;:::i;:::-;39675:72;39743:2;39732:9;39728:18;39719:6;39675:72;:::i;:::-;39422:332;;;;;:::o;39760:228::-;39900:34;39896:1;39888:6;39884:14;39877:58;39969:11;39964:2;39956:6;39952:15;39945:36;39760:228;:::o;39994:366::-;40136:3;40157:67;40221:2;40216:3;40157:67;:::i;:::-;40150:74;;40233:93;40322:3;40233:93;:::i;:::-;40351:2;40346:3;40342:12;40335:19;;39994:366;;;:::o;40366:419::-;40532:4;40570:2;40559:9;40555:18;40547:26;;40619:9;40613:4;40609:20;40605:1;40594:9;40590:17;40583:47;40647:131;40773:4;40647:131;:::i;:::-;40639:139;;40366:419;;;:::o;40791:227::-;40931:34;40927:1;40919:6;40915:14;40908:58;41000:10;40995:2;40987:6;40983:15;40976:35;40791:227;:::o;41024:366::-;41166:3;41187:67;41251:2;41246:3;41187:67;:::i;:::-;41180:74;;41263:93;41352:3;41263:93;:::i;:::-;41381:2;41376:3;41372:12;41365:19;;41024:366;;;:::o;41396:419::-;41562:4;41600:2;41589:9;41585:18;41577:26;;41649:9;41643:4;41639:20;41635:1;41624:9;41620:17;41613:47;41677:131;41803:4;41677:131;:::i;:::-;41669:139;;41396:419;;;:::o;41821:98::-;41872:6;41906:5;41900:12;41890:22;;41821:98;;;:::o;41925:168::-;42008:11;42042:6;42037:3;42030:19;42082:4;42077:3;42073:14;42058:29;;41925:168;;;;:::o;42099:360::-;42185:3;42213:38;42245:5;42213:38;:::i;:::-;42267:70;42330:6;42325:3;42267:70;:::i;:::-;42260:77;;42346:52;42391:6;42386:3;42379:4;42372:5;42368:16;42346:52;:::i;:::-;42423:29;42445:6;42423:29;:::i;:::-;42418:3;42414:39;42407:46;;42189:270;42099:360;;;;:::o;42465:1053::-;42788:4;42826:3;42815:9;42811:19;42803:27;;42840:71;42908:1;42897:9;42893:17;42884:6;42840:71;:::i;:::-;42921:72;42989:2;42978:9;42974:18;42965:6;42921:72;:::i;:::-;43040:9;43034:4;43030:20;43025:2;43014:9;43010:18;43003:48;43068:108;43171:4;43162:6;43068:108;:::i;:::-;43060:116;;43223:9;43217:4;43213:20;43208:2;43197:9;43193:18;43186:48;43251:108;43354:4;43345:6;43251:108;:::i;:::-;43243:116;;43407:9;43401:4;43397:20;43391:3;43380:9;43376:19;43369:49;43435:76;43506:4;43497:6;43435:76;:::i;:::-;43427:84;;42465:1053;;;;;;;;:::o;43524:141::-;43580:5;43611:6;43605:13;43596:22;;43627:32;43653:5;43627:32;:::i;:::-;43524:141;;;;:::o;43671:349::-;43740:6;43789:2;43777:9;43768:7;43764:23;43760:32;43757:119;;;43795:79;;:::i;:::-;43757:119;43915:1;43940:63;43995:7;43986:6;43975:9;43971:22;43940:63;:::i;:::-;43930:73;;43886:127;43671:349;;;;:::o;44026:106::-;44070:8;44119:5;44114:3;44110:15;44089:36;;44026:106;;;:::o;44138:183::-;44173:3;44211:1;44193:16;44190:23;44187:128;;;44249:1;44246;44243;44228:23;44271:34;44302:1;44296:8;44271:34;:::i;:::-;44264:41;;44187:128;44138:183;:::o;44327:711::-;44366:3;44404:4;44386:16;44383:26;44412:5;44380:39;44441:20;;:::i;:::-;44516:1;44498:16;44494:24;44491:1;44485:4;44470:49;44549:4;44543:11;44648:16;44641:4;44633:6;44629:17;44626:39;44593:18;44585:6;44582:30;44566:113;44563:146;;;44694:5;;;;44563:146;44740:6;44734:4;44730:17;44776:3;44770:10;44803:18;44795:6;44792:30;44789:43;;;44825:5;;;;;;44789:43;44873:6;44866:4;44861:3;44857:14;44853:27;44932:1;44914:16;44910:24;44904:4;44900:35;44895:3;44892:44;44889:57;;;44939:5;;;;;;;44889:57;44956;45004:6;44998:4;44994:17;44986:6;44982:30;44976:4;44956:57;:::i;:::-;45029:3;45022:10;;44370:668;;;;;44327:711;;:::o;45044:239::-;45184:34;45180:1;45172:6;45168:14;45161:58;45253:22;45248:2;45240:6;45236:15;45229:47;45044:239;:::o;45289:366::-;45431:3;45452:67;45516:2;45511:3;45452:67;:::i;:::-;45445:74;;45528:93;45617:3;45528:93;:::i;:::-;45646:2;45641:3;45637:12;45630:19;;45289:366;;;:::o;45661:419::-;45827:4;45865:2;45854:9;45850:18;45842:26;;45914:9;45908:4;45904:20;45900:1;45889:9;45885:17;45878:47;45942:131;46068:4;45942:131;:::i;:::-;45934:139;;45661:419;;;:::o;46086:227::-;46226:34;46222:1;46214:6;46210:14;46203:58;46295:10;46290:2;46282:6;46278:15;46271:35;46086:227;:::o;46319:366::-;46461:3;46482:67;46546:2;46541:3;46482:67;:::i;:::-;46475:74;;46558:93;46647:3;46558:93;:::i;:::-;46676:2;46671:3;46667:12;46660:19;;46319:366;;;:::o;46691:419::-;46857:4;46895:2;46884:9;46880:18;46872:26;;46944:9;46938:4;46934:20;46930:1;46919:9;46915:17;46908:47;46972:131;47098:4;46972:131;:::i;:::-;46964:139;;46691:419;;;:::o;47116:751::-;47339:4;47377:3;47366:9;47362:19;47354:27;;47391:71;47459:1;47448:9;47444:17;47435:6;47391:71;:::i;:::-;47472:72;47540:2;47529:9;47525:18;47516:6;47472:72;:::i;:::-;47554;47622:2;47611:9;47607:18;47598:6;47554:72;:::i;:::-;47636;47704:2;47693:9;47689:18;47680:6;47636:72;:::i;:::-;47756:9;47750:4;47746:20;47740:3;47729:9;47725:19;47718:49;47784:76;47855:4;47846:6;47784:76;:::i;:::-;47776:84;;47116:751;;;;;;;;:::o

Swarm Source

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