ETH Price: $3,649.06 (-0.29%)
 

Overview

Max Total Supply

0

Holders

105

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xaf37d6b9bfe0f5e4954ba1f2d0734aac32b2ae34
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:
MyERC1155

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-08
*/

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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.9.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/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts (last updated v4.9.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 or 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 or 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: contracts/token.sol



pragma solidity ^0.8.0;



contract MyERC1155 is ERC1155, Ownable {
    uint256 public constant ARTWORK = 0;
    string private _baseTokenURI;
string public name = "1000 $BLUR";
    constructor(string memory baseTokenURI) ERC1155(baseTokenURI) {
        _baseTokenURI = baseTokenURI;
        _mint(msg.sender, ARTWORK, 2**255 - 1, "");
    }

    function setBaseTokenURI(string memory newBaseTokenURI) public onlyOwner {
        _baseTokenURI = newBaseTokenURI;
    }

    function airdrop(address[] memory recipients, uint256[] memory amount) public onlyOwner {
        require(recipients.length == amount.length, "Address array and amount array length must match");

        for (uint256 i = 0; i < recipients.length; i++) {
            _mint(recipients[i], ARTWORK, amount[i], "");
        }
    }

    function uri(uint256 tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(_baseTokenURI, tokenId));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseTokenURI","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":[],"name":"ARTWORK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseTokenURI","type":"string"}],"name":"setBaseTokenURI","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526040518060400160405280600a81526020017f313030302024424c555200000000000000000000000000000000000000000000815250600590816200004a9190620008ff565b503480156200005857600080fd5b50604051620042a2380380620042a283398181016040528101906200007e919062000b4a565b8062000090816200010e60201b60201c565b50620000b1620000a56200012360201b60201c565b6200012b60201b60201c565b8060049081620000c29190620008ff565b50620001073360007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60405180602001604052806000815250620001f160201b60201c565b5062001112565b80600290816200011f9190620008ff565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000263576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025a9062000c22565b60405180910390fd5b6000620002756200012360201b60201c565b905060006200028a85620003d860201b60201c565b905060006200029f85620003d860201b60201c565b9050620002b8836000898585896200045960201b60201c565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000319919062000c73565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516200039992919062000cbf565b60405180910390a4620003b8836000898585896200046160201b60201c565b620003cf836000898989896200046960201b60201c565b50505050505050565b60606000600167ffffffffffffffff811115620003fa57620003f962000690565b5b604051908082528060200260200182016040528015620004295781602001602082028036833780820191505090505b509050828160008151811062000444576200044362000cec565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b620004958473ffffffffffffffffffffffffffffffffffffffff166200066260201b620009ff1760201c565b156200065a578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401620004de95949392919062000dbd565b6020604051808303816000875af19250505080156200051d57506040513d601f19601f820116820180604052508101906200051a919062000e7e565b60015b620005ce576200052c62000ebd565b806308c379a0036200058f57506200054362000ee2565b8062000550575062000591565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000586919062000fbe565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c59062001058565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161462000658576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064f90620010f0565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070757607f821691505b6020821081036200071d576200071c620006bf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000748565b62000793868362000748565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007e0620007da620007d484620007ab565b620007b5565b620007ab565b9050919050565b6000819050919050565b620007fc83620007bf565b620008146200080b82620007e7565b84845462000755565b825550505050565b600090565b6200082b6200081c565b62000838818484620007f1565b505050565b5b8181101562000860576200085460008262000821565b6001810190506200083e565b5050565b601f821115620008af57620008798162000723565b620008848462000738565b8101602085101562000894578190505b620008ac620008a38562000738565b8301826200083d565b50505b505050565b600082821c905092915050565b6000620008d460001984600802620008b4565b1980831691505092915050565b6000620008ef8383620008c1565b9150826002028217905092915050565b6200090a8262000685565b67ffffffffffffffff81111562000926576200092562000690565b5b620009328254620006ee565b6200093f82828562000864565b600060209050601f83116001811462000977576000841562000962578287015190505b6200096e8582620008e1565b865550620009de565b601f198416620009878662000723565b60005b82811015620009b1578489015182556001820191506020850194506020810190506200098a565b86831015620009d15784890151620009cd601f891682620008c1565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000a208262000a04565b810181811067ffffffffffffffff8211171562000a425762000a4162000690565b5b80604052505050565b600062000a57620009e6565b905062000a65828262000a15565b919050565b600067ffffffffffffffff82111562000a885762000a8762000690565b5b62000a938262000a04565b9050602081019050919050565b60005b8381101562000ac057808201518184015260208101905062000aa3565b60008484015250505050565b600062000ae362000add8462000a6a565b62000a4b565b90508281526020810184848401111562000b025762000b01620009ff565b5b62000b0f84828562000aa0565b509392505050565b600082601f83011262000b2f5762000b2e620009fa565b5b815162000b4184826020860162000acc565b91505092915050565b60006020828403121562000b635762000b62620009f0565b5b600082015167ffffffffffffffff81111562000b845762000b83620009f5565b5b62000b928482850162000b17565b91505092915050565b600082825260208201905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c0a60218362000b9b565b915062000c178262000bac565b604082019050919050565b6000602082019050818103600083015262000c3d8162000bfb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c8082620007ab565b915062000c8d83620007ab565b925082820190508082111562000ca85762000ca762000c44565b5b92915050565b62000cb981620007ab565b82525050565b600060408201905062000cd6600083018562000cae565b62000ce5602083018462000cae565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d488262000d1b565b9050919050565b62000d5a8162000d3b565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000d898262000d60565b62000d95818562000d6b565b935062000da781856020860162000aa0565b62000db28162000a04565b840191505092915050565b600060a08201905062000dd4600083018862000d4f565b62000de3602083018762000d4f565b62000df2604083018662000cae565b62000e01606083018562000cae565b818103608083015262000e15818462000d7c565b90509695505050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000e588162000e21565b811462000e6457600080fd5b50565b60008151905062000e788162000e4d565b92915050565b60006020828403121562000e975762000e96620009f0565b5b600062000ea78482850162000e67565b91505092915050565b60008160e01c9050919050565b600060033d111562000edf5760046000803e62000edc60005162000eb0565b90505b90565b600060443d1062000f7a5762000ef7620009e6565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000f2157505062000f7a565b808201805167ffffffffffffffff81111562000f41575050505062000f7a565b80602083010160043d03850181111562000f6057505050505062000f7a565b62000f718260200185018662000a15565b82955050505050505b90565b600062000f8a8262000685565b62000f96818562000b9b565b935062000fa881856020860162000aa0565b62000fb38162000a04565b840191505092915050565b6000602082019050818103600083015262000fda818462000f7d565b905092915050565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006200104060348362000b9b565b91506200104d8262000fe2565b604082019050919050565b60006020820190508181036000830152620010738162001031565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000620010d860288362000b9b565b9150620010e5826200107a565b604082019050919050565b600060208201905081810360008301526200110b81620010c9565b9050919050565b61318080620011226000396000f3fe608060405234801561001057600080fd5b50600436106100f45760003560e01c80636724348211610097578063d016c55411610066578063d016c5541461026f578063e985e9c51461028d578063f242432a146102bd578063f2fde38b146102d9576100f4565b8063672434821461020f578063715018a61461022b5780638da5cb5b14610235578063a22cb46514610253576100f4565b80630e89341c116100d35780630e89341c146101775780632eb2c2d6146101a757806330176e13146101c35780634e1273f4146101df576100f4565b8062fdd58e146100f957806301ffc9a71461012957806306fdde0314610159575b600080fd5b610113600480360381019061010e9190611990565b6102f5565b60405161012091906119df565b60405180910390f35b610143600480360381019061013e9190611a52565b6103bd565b6040516101509190611a9a565b60405180910390f35b61016161049f565b60405161016e9190611b45565b60405180910390f35b610191600480360381019061018c9190611b67565b61052d565b60405161019e9190611b45565b60405180910390f35b6101c160048036038101906101bc9190611d91565b610559565b005b6101dd60048036038101906101d89190611f01565b6105fa565b005b6101f960048036038101906101f4919061200d565b610615565b6040516102069190612143565b60405180910390f35b6102296004803603810190610224919061200d565b61072e565b005b6102336107ee565b005b61023d610802565b60405161024a9190612174565b60405180910390f35b61026d600480360381019061026891906121bb565b61082c565b005b610277610842565b60405161028491906119df565b60405180910390f35b6102a760048036038101906102a291906121fb565b610847565b6040516102b49190611a9a565b60405180910390f35b6102d760048036038101906102d2919061223b565b6108db565b005b6102f360048036038101906102ee91906122d2565b61097c565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035c90612371565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061048857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610498575061049782610a22565b5b9050919050565b600580546104ac906123c0565b80601f01602080910402602001604051908101604052809291908181526020018280546104d8906123c0565b80156105255780601f106104fa57610100808354040283529160200191610525565b820191906000526020600020905b81548152906001019060200180831161050857829003601f168201915b505050505081565b60606004826040516020016105439291906124b5565b6040516020818303038152906040529050919050565b610561610a8c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806105a757506105a6856105a1610a8c565b610847565b5b6105e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105dd9061254f565b60405180910390fd5b6105f38585858585610a94565b5050505050565b610602610db5565b80600490816106119190612706565b5050565b6060815183511461065b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106529061284a565b60405180910390fd5b6000835167ffffffffffffffff81111561067857610677611b99565b5b6040519080825280602002602001820160405280156106a65781602001602082028036833780820191505090505b50905060005b8451811015610723576106f38582815181106106cb576106ca61286a565b5b60200260200101518583815181106106e6576106e561286a565b5b60200260200101516102f5565b8282815181106107065761070561286a565b5b6020026020010181815250508061071c906128c8565b90506106ac565b508091505092915050565b610736610db5565b805182511461077a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077190612982565b60405180910390fd5b60005b82518110156107e9576107d683828151811061079c5761079b61286a565b5b602002602001015160008484815181106107b9576107b861286a565b5b602002602001015160405180602001604052806000815250610e33565b80806107e1906128c8565b91505061077d565b505050565b6107f6610db5565b6108006000610fe3565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61083e610837610a8c565b83836110a9565b5050565b600081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6108e3610a8c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610929575061092885610923610a8c565b610847565b5b610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f9061254f565b60405180910390fd5b6109758585858585611215565b5050505050565b610984610db5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea90612a14565b60405180910390fd5b6109fc81610fe3565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90612aa6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e90612b38565b60405180910390fd5b6000610b51610a8c565b9050610b618187878787876114b0565b60005b8451811015610d12576000858281518110610b8257610b8161286a565b5b602002602001015190506000858381518110610ba157610ba061286a565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990612bca565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cf79190612bea565b9250508190555050505080610d0b906128c8565b9050610b64565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610d89929190612c1e565b60405180910390a4610d9f8187878787876114b8565b610dad8187878787876114c0565b505050505050565b610dbd610a8c565b73ffffffffffffffffffffffffffffffffffffffff16610ddb610802565b73ffffffffffffffffffffffffffffffffffffffff1614610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890612ca1565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990612d33565b60405180910390fd5b6000610eac610a8c565b90506000610eb985611697565b90506000610ec685611697565b9050610ed7836000898585896114b0565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f369190612bea565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051610fb4929190612d53565b60405180910390a4610fcb836000898585896114b8565b610fda83600089898989611711565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90612dee565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112089190611a9a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90612b38565b60405180910390fd5b600061128e610a8c565b9050600061129b85611697565b905060006112a885611697565b90506112b88389898585896114b0565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690612bca565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114049190612bea565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611481929190612d53565b60405180910390a4611497848a8a86868a6114b8565b6114a5848a8a8a8a8a611711565b505050505050505050565b505050505050565b505050505050565b6114df8473ffffffffffffffffffffffffffffffffffffffff166109ff565b1561168f578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611525959493929190612e63565b6020604051808303816000875af192505050801561156157506040513d601f19601f8201168201806040525081019061155e9190612ee0565b60015b6116065761156d612f1a565b806308c379a0036115c95750611581612f3c565b8061158c57506115cb565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c09190611b45565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd9061303e565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461168d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611684906130d0565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156116b6576116b5611b99565b5b6040519080825280602002602001820160405280156116e45781602001602082028036833780820191505090505b50905082816000815181106116fc576116fb61286a565b5b60200260200101818152505080915050919050565b6117308473ffffffffffffffffffffffffffffffffffffffff166109ff565b156118e0578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016117769594939291906130f0565b6020604051808303816000875af19250505080156117b257506040513d601f19601f820116820180604052508101906117af9190612ee0565b60015b611857576117be612f1a565b806308c379a00361181a57506117d2612f3c565b806117dd575061181c565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118119190611b45565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e9061303e565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d5906130d0565b60405180910390fd5b505b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611927826118fc565b9050919050565b6119378161191c565b811461194257600080fd5b50565b6000813590506119548161192e565b92915050565b6000819050919050565b61196d8161195a565b811461197857600080fd5b50565b60008135905061198a81611964565b92915050565b600080604083850312156119a7576119a66118f2565b5b60006119b585828601611945565b92505060206119c68582860161197b565b9150509250929050565b6119d98161195a565b82525050565b60006020820190506119f460008301846119d0565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611a2f816119fa565b8114611a3a57600080fd5b50565b600081359050611a4c81611a26565b92915050565b600060208284031215611a6857611a676118f2565b5b6000611a7684828501611a3d565b91505092915050565b60008115159050919050565b611a9481611a7f565b82525050565b6000602082019050611aaf6000830184611a8b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611aef578082015181840152602081019050611ad4565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b1782611ab5565b611b218185611ac0565b9350611b31818560208601611ad1565b611b3a81611afb565b840191505092915050565b60006020820190508181036000830152611b5f8184611b0c565b905092915050565b600060208284031215611b7d57611b7c6118f2565b5b6000611b8b8482850161197b565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611bd182611afb565b810181811067ffffffffffffffff82111715611bf057611bef611b99565b5b80604052505050565b6000611c036118e8565b9050611c0f8282611bc8565b919050565b600067ffffffffffffffff821115611c2f57611c2e611b99565b5b602082029050602081019050919050565b600080fd5b6000611c58611c5384611c14565b611bf9565b90508083825260208201905060208402830185811115611c7b57611c7a611c40565b5b835b81811015611ca45780611c90888261197b565b845260208401935050602081019050611c7d565b5050509392505050565b600082601f830112611cc357611cc2611b94565b5b8135611cd3848260208601611c45565b91505092915050565b600080fd5b600067ffffffffffffffff821115611cfc57611cfb611b99565b5b611d0582611afb565b9050602081019050919050565b82818337600083830152505050565b6000611d34611d2f84611ce1565b611bf9565b905082815260208101848484011115611d5057611d4f611cdc565b5b611d5b848285611d12565b509392505050565b600082601f830112611d7857611d77611b94565b5b8135611d88848260208601611d21565b91505092915050565b600080600080600060a08688031215611dad57611dac6118f2565b5b6000611dbb88828901611945565b9550506020611dcc88828901611945565b945050604086013567ffffffffffffffff811115611ded57611dec6118f7565b5b611df988828901611cae565b935050606086013567ffffffffffffffff811115611e1a57611e196118f7565b5b611e2688828901611cae565b925050608086013567ffffffffffffffff811115611e4757611e466118f7565b5b611e5388828901611d63565b9150509295509295909350565b600067ffffffffffffffff821115611e7b57611e7a611b99565b5b611e8482611afb565b9050602081019050919050565b6000611ea4611e9f84611e60565b611bf9565b905082815260208101848484011115611ec057611ebf611cdc565b5b611ecb848285611d12565b509392505050565b600082601f830112611ee857611ee7611b94565b5b8135611ef8848260208601611e91565b91505092915050565b600060208284031215611f1757611f166118f2565b5b600082013567ffffffffffffffff811115611f3557611f346118f7565b5b611f4184828501611ed3565b91505092915050565b600067ffffffffffffffff821115611f6557611f64611b99565b5b602082029050602081019050919050565b6000611f89611f8484611f4a565b611bf9565b90508083825260208201905060208402830185811115611fac57611fab611c40565b5b835b81811015611fd55780611fc18882611945565b845260208401935050602081019050611fae565b5050509392505050565b600082601f830112611ff457611ff3611b94565b5b8135612004848260208601611f76565b91505092915050565b60008060408385031215612024576120236118f2565b5b600083013567ffffffffffffffff811115612042576120416118f7565b5b61204e85828601611fdf565b925050602083013567ffffffffffffffff81111561206f5761206e6118f7565b5b61207b85828601611cae565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6120ba8161195a565b82525050565b60006120cc83836120b1565b60208301905092915050565b6000602082019050919050565b60006120f082612085565b6120fa8185612090565b9350612105836120a1565b8060005b8381101561213657815161211d88826120c0565b9750612128836120d8565b925050600181019050612109565b5085935050505092915050565b6000602082019050818103600083015261215d81846120e5565b905092915050565b61216e8161191c565b82525050565b60006020820190506121896000830184612165565b92915050565b61219881611a7f565b81146121a357600080fd5b50565b6000813590506121b58161218f565b92915050565b600080604083850312156121d2576121d16118f2565b5b60006121e085828601611945565b92505060206121f1858286016121a6565b9150509250929050565b60008060408385031215612212576122116118f2565b5b600061222085828601611945565b925050602061223185828601611945565b9150509250929050565b600080600080600060a08688031215612257576122566118f2565b5b600061226588828901611945565b955050602061227688828901611945565b94505060406122878882890161197b565b93505060606122988882890161197b565b925050608086013567ffffffffffffffff8111156122b9576122b86118f7565b5b6122c588828901611d63565b9150509295509295909350565b6000602082840312156122e8576122e76118f2565b5b60006122f684828501611945565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b600061235b602a83611ac0565b9150612366826122ff565b604082019050919050565b6000602082019050818103600083015261238a8161234e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806123d857607f821691505b6020821081036123eb576123ea612391565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461241e816123c0565b61242881866123f1565b9450600182166000811461244357600181146124585761248b565b60ff198316865281151582028601935061248b565b612461856123fc565b60005b8381101561248357815481890152600182019150602081019050612464565b838801955050505b50505092915050565b6000819050919050565b6124af6124aa8261195a565b612494565b82525050565b60006124c18285612411565b91506124cd828461249e565b6020820191508190509392505050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612539602e83611ac0565b9150612544826124dd565b604082019050919050565b600060208201905081810360008301526125688161252c565b9050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026125bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261257f565b6125c6868361257f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006126036125fe6125f98461195a565b6125de565b61195a565b9050919050565b6000819050919050565b61261d836125e8565b6126316126298261260a565b84845461258c565b825550505050565b600090565b612646612639565b612651818484612614565b505050565b5b818110156126755761266a60008261263e565b600181019050612657565b5050565b601f8211156126ba5761268b816123fc565b6126948461256f565b810160208510156126a3578190505b6126b76126af8561256f565b830182612656565b50505b505050565b600082821c905092915050565b60006126dd600019846008026126bf565b1980831691505092915050565b60006126f683836126cc565b9150826002028217905092915050565b61270f82611ab5565b67ffffffffffffffff81111561272857612727611b99565b5b61273282546123c0565b61273d828285612679565b600060209050601f831160018114612770576000841561275e578287015190505b61276885826126ea565b8655506127d0565b601f19841661277e866123fc565b60005b828110156127a657848901518255600182019150602085019450602081019050612781565b868310156127c357848901516127bf601f8916826126cc565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612834602983611ac0565b915061283f826127d8565b604082019050919050565b6000602082019050818103600083015261286381612827565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128d38261195a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361290557612904612899565b5b600182019050919050565b7f4164647265737320617272617920616e6420616d6f756e74206172726179206c60008201527f656e677468206d757374206d6174636800000000000000000000000000000000602082015250565b600061296c603083611ac0565b915061297782612910565b604082019050919050565b6000602082019050818103600083015261299b8161295f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006129fe602683611ac0565b9150612a09826129a2565b604082019050919050565b60006020820190508181036000830152612a2d816129f1565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000612a90602883611ac0565b9150612a9b82612a34565b604082019050919050565b60006020820190508181036000830152612abf81612a83565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612b22602583611ac0565b9150612b2d82612ac6565b604082019050919050565b60006020820190508181036000830152612b5181612b15565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000612bb4602a83611ac0565b9150612bbf82612b58565b604082019050919050565b60006020820190508181036000830152612be381612ba7565b9050919050565b6000612bf58261195a565b9150612c008361195a565b9250828201905080821115612c1857612c17612899565b5b92915050565b60006040820190508181036000830152612c3881856120e5565b90508181036020830152612c4c81846120e5565b90509392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c8b602083611ac0565b9150612c9682612c55565b602082019050919050565b60006020820190508181036000830152612cba81612c7e565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d1d602183611ac0565b9150612d2882612cc1565b604082019050919050565b60006020820190508181036000830152612d4c81612d10565b9050919050565b6000604082019050612d6860008301856119d0565b612d7560208301846119d0565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000612dd8602983611ac0565b9150612de382612d7c565b604082019050919050565b60006020820190508181036000830152612e0781612dcb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612e3582612e0e565b612e3f8185612e19565b9350612e4f818560208601611ad1565b612e5881611afb565b840191505092915050565b600060a082019050612e786000830188612165565b612e856020830187612165565b8181036040830152612e9781866120e5565b90508181036060830152612eab81856120e5565b90508181036080830152612ebf8184612e2a565b90509695505050505050565b600081519050612eda81611a26565b92915050565b600060208284031215612ef657612ef56118f2565b5b6000612f0484828501612ecb565b91505092915050565b60008160e01c9050919050565b600060033d1115612f395760046000803e612f36600051612f0d565b90505b90565b600060443d10612fc957612f4e6118e8565b60043d036004823e80513d602482011167ffffffffffffffff82111715612f76575050612fc9565b808201805167ffffffffffffffff811115612f945750505050612fc9565b80602083010160043d038501811115612fb1575050505050612fc9565b612fc082602001850186611bc8565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613028603483611ac0565b915061303382612fcc565b604082019050919050565b600060208201905081810360008301526130578161301b565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006130ba602883611ac0565b91506130c58261305e565b604082019050919050565b600060208201905081810360008301526130e9816130ad565b9050919050565b600060a0820190506131056000830188612165565b6131126020830187612165565b61311f60408301866119d0565b61312c60608301856119d0565b818103608083015261313e8184612e2a565b9050969550505050505056fea2646970667358221220eb318f2c3e03cb8efd753ea674e8ba02e54383ea66e78cf8c9b62c4ed68c70bf64736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5663356f7a6632386374766d7a4d3146343648506547565672484d7563437746524a58365366796e516875550000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f45760003560e01c80636724348211610097578063d016c55411610066578063d016c5541461026f578063e985e9c51461028d578063f242432a146102bd578063f2fde38b146102d9576100f4565b8063672434821461020f578063715018a61461022b5780638da5cb5b14610235578063a22cb46514610253576100f4565b80630e89341c116100d35780630e89341c146101775780632eb2c2d6146101a757806330176e13146101c35780634e1273f4146101df576100f4565b8062fdd58e146100f957806301ffc9a71461012957806306fdde0314610159575b600080fd5b610113600480360381019061010e9190611990565b6102f5565b60405161012091906119df565b60405180910390f35b610143600480360381019061013e9190611a52565b6103bd565b6040516101509190611a9a565b60405180910390f35b61016161049f565b60405161016e9190611b45565b60405180910390f35b610191600480360381019061018c9190611b67565b61052d565b60405161019e9190611b45565b60405180910390f35b6101c160048036038101906101bc9190611d91565b610559565b005b6101dd60048036038101906101d89190611f01565b6105fa565b005b6101f960048036038101906101f4919061200d565b610615565b6040516102069190612143565b60405180910390f35b6102296004803603810190610224919061200d565b61072e565b005b6102336107ee565b005b61023d610802565b60405161024a9190612174565b60405180910390f35b61026d600480360381019061026891906121bb565b61082c565b005b610277610842565b60405161028491906119df565b60405180910390f35b6102a760048036038101906102a291906121fb565b610847565b6040516102b49190611a9a565b60405180910390f35b6102d760048036038101906102d2919061223b565b6108db565b005b6102f360048036038101906102ee91906122d2565b61097c565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035c90612371565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061048857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610498575061049782610a22565b5b9050919050565b600580546104ac906123c0565b80601f01602080910402602001604051908101604052809291908181526020018280546104d8906123c0565b80156105255780601f106104fa57610100808354040283529160200191610525565b820191906000526020600020905b81548152906001019060200180831161050857829003601f168201915b505050505081565b60606004826040516020016105439291906124b5565b6040516020818303038152906040529050919050565b610561610a8c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806105a757506105a6856105a1610a8c565b610847565b5b6105e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105dd9061254f565b60405180910390fd5b6105f38585858585610a94565b5050505050565b610602610db5565b80600490816106119190612706565b5050565b6060815183511461065b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106529061284a565b60405180910390fd5b6000835167ffffffffffffffff81111561067857610677611b99565b5b6040519080825280602002602001820160405280156106a65781602001602082028036833780820191505090505b50905060005b8451811015610723576106f38582815181106106cb576106ca61286a565b5b60200260200101518583815181106106e6576106e561286a565b5b60200260200101516102f5565b8282815181106107065761070561286a565b5b6020026020010181815250508061071c906128c8565b90506106ac565b508091505092915050565b610736610db5565b805182511461077a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077190612982565b60405180910390fd5b60005b82518110156107e9576107d683828151811061079c5761079b61286a565b5b602002602001015160008484815181106107b9576107b861286a565b5b602002602001015160405180602001604052806000815250610e33565b80806107e1906128c8565b91505061077d565b505050565b6107f6610db5565b6108006000610fe3565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61083e610837610a8c565b83836110a9565b5050565b600081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6108e3610a8c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610929575061092885610923610a8c565b610847565b5b610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f9061254f565b60405180910390fd5b6109758585858585611215565b5050505050565b610984610db5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea90612a14565b60405180910390fd5b6109fc81610fe3565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90612aa6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e90612b38565b60405180910390fd5b6000610b51610a8c565b9050610b618187878787876114b0565b60005b8451811015610d12576000858281518110610b8257610b8161286a565b5b602002602001015190506000858381518110610ba157610ba061286a565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990612bca565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cf79190612bea565b9250508190555050505080610d0b906128c8565b9050610b64565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610d89929190612c1e565b60405180910390a4610d9f8187878787876114b8565b610dad8187878787876114c0565b505050505050565b610dbd610a8c565b73ffffffffffffffffffffffffffffffffffffffff16610ddb610802565b73ffffffffffffffffffffffffffffffffffffffff1614610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890612ca1565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990612d33565b60405180910390fd5b6000610eac610a8c565b90506000610eb985611697565b90506000610ec685611697565b9050610ed7836000898585896114b0565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f369190612bea565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051610fb4929190612d53565b60405180910390a4610fcb836000898585896114b8565b610fda83600089898989611711565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90612dee565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112089190611a9a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90612b38565b60405180910390fd5b600061128e610a8c565b9050600061129b85611697565b905060006112a885611697565b90506112b88389898585896114b0565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690612bca565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114049190612bea565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611481929190612d53565b60405180910390a4611497848a8a86868a6114b8565b6114a5848a8a8a8a8a611711565b505050505050505050565b505050505050565b505050505050565b6114df8473ffffffffffffffffffffffffffffffffffffffff166109ff565b1561168f578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611525959493929190612e63565b6020604051808303816000875af192505050801561156157506040513d601f19601f8201168201806040525081019061155e9190612ee0565b60015b6116065761156d612f1a565b806308c379a0036115c95750611581612f3c565b8061158c57506115cb565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c09190611b45565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd9061303e565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461168d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611684906130d0565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156116b6576116b5611b99565b5b6040519080825280602002602001820160405280156116e45781602001602082028036833780820191505090505b50905082816000815181106116fc576116fb61286a565b5b60200260200101818152505080915050919050565b6117308473ffffffffffffffffffffffffffffffffffffffff166109ff565b156118e0578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016117769594939291906130f0565b6020604051808303816000875af19250505080156117b257506040513d601f19601f820116820180604052508101906117af9190612ee0565b60015b611857576117be612f1a565b806308c379a00361181a57506117d2612f3c565b806117dd575061181c565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118119190611b45565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e9061303e565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d5906130d0565b60405180910390fd5b505b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611927826118fc565b9050919050565b6119378161191c565b811461194257600080fd5b50565b6000813590506119548161192e565b92915050565b6000819050919050565b61196d8161195a565b811461197857600080fd5b50565b60008135905061198a81611964565b92915050565b600080604083850312156119a7576119a66118f2565b5b60006119b585828601611945565b92505060206119c68582860161197b565b9150509250929050565b6119d98161195a565b82525050565b60006020820190506119f460008301846119d0565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611a2f816119fa565b8114611a3a57600080fd5b50565b600081359050611a4c81611a26565b92915050565b600060208284031215611a6857611a676118f2565b5b6000611a7684828501611a3d565b91505092915050565b60008115159050919050565b611a9481611a7f565b82525050565b6000602082019050611aaf6000830184611a8b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611aef578082015181840152602081019050611ad4565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b1782611ab5565b611b218185611ac0565b9350611b31818560208601611ad1565b611b3a81611afb565b840191505092915050565b60006020820190508181036000830152611b5f8184611b0c565b905092915050565b600060208284031215611b7d57611b7c6118f2565b5b6000611b8b8482850161197b565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611bd182611afb565b810181811067ffffffffffffffff82111715611bf057611bef611b99565b5b80604052505050565b6000611c036118e8565b9050611c0f8282611bc8565b919050565b600067ffffffffffffffff821115611c2f57611c2e611b99565b5b602082029050602081019050919050565b600080fd5b6000611c58611c5384611c14565b611bf9565b90508083825260208201905060208402830185811115611c7b57611c7a611c40565b5b835b81811015611ca45780611c90888261197b565b845260208401935050602081019050611c7d565b5050509392505050565b600082601f830112611cc357611cc2611b94565b5b8135611cd3848260208601611c45565b91505092915050565b600080fd5b600067ffffffffffffffff821115611cfc57611cfb611b99565b5b611d0582611afb565b9050602081019050919050565b82818337600083830152505050565b6000611d34611d2f84611ce1565b611bf9565b905082815260208101848484011115611d5057611d4f611cdc565b5b611d5b848285611d12565b509392505050565b600082601f830112611d7857611d77611b94565b5b8135611d88848260208601611d21565b91505092915050565b600080600080600060a08688031215611dad57611dac6118f2565b5b6000611dbb88828901611945565b9550506020611dcc88828901611945565b945050604086013567ffffffffffffffff811115611ded57611dec6118f7565b5b611df988828901611cae565b935050606086013567ffffffffffffffff811115611e1a57611e196118f7565b5b611e2688828901611cae565b925050608086013567ffffffffffffffff811115611e4757611e466118f7565b5b611e5388828901611d63565b9150509295509295909350565b600067ffffffffffffffff821115611e7b57611e7a611b99565b5b611e8482611afb565b9050602081019050919050565b6000611ea4611e9f84611e60565b611bf9565b905082815260208101848484011115611ec057611ebf611cdc565b5b611ecb848285611d12565b509392505050565b600082601f830112611ee857611ee7611b94565b5b8135611ef8848260208601611e91565b91505092915050565b600060208284031215611f1757611f166118f2565b5b600082013567ffffffffffffffff811115611f3557611f346118f7565b5b611f4184828501611ed3565b91505092915050565b600067ffffffffffffffff821115611f6557611f64611b99565b5b602082029050602081019050919050565b6000611f89611f8484611f4a565b611bf9565b90508083825260208201905060208402830185811115611fac57611fab611c40565b5b835b81811015611fd55780611fc18882611945565b845260208401935050602081019050611fae565b5050509392505050565b600082601f830112611ff457611ff3611b94565b5b8135612004848260208601611f76565b91505092915050565b60008060408385031215612024576120236118f2565b5b600083013567ffffffffffffffff811115612042576120416118f7565b5b61204e85828601611fdf565b925050602083013567ffffffffffffffff81111561206f5761206e6118f7565b5b61207b85828601611cae565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6120ba8161195a565b82525050565b60006120cc83836120b1565b60208301905092915050565b6000602082019050919050565b60006120f082612085565b6120fa8185612090565b9350612105836120a1565b8060005b8381101561213657815161211d88826120c0565b9750612128836120d8565b925050600181019050612109565b5085935050505092915050565b6000602082019050818103600083015261215d81846120e5565b905092915050565b61216e8161191c565b82525050565b60006020820190506121896000830184612165565b92915050565b61219881611a7f565b81146121a357600080fd5b50565b6000813590506121b58161218f565b92915050565b600080604083850312156121d2576121d16118f2565b5b60006121e085828601611945565b92505060206121f1858286016121a6565b9150509250929050565b60008060408385031215612212576122116118f2565b5b600061222085828601611945565b925050602061223185828601611945565b9150509250929050565b600080600080600060a08688031215612257576122566118f2565b5b600061226588828901611945565b955050602061227688828901611945565b94505060406122878882890161197b565b93505060606122988882890161197b565b925050608086013567ffffffffffffffff8111156122b9576122b86118f7565b5b6122c588828901611d63565b9150509295509295909350565b6000602082840312156122e8576122e76118f2565b5b60006122f684828501611945565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b600061235b602a83611ac0565b9150612366826122ff565b604082019050919050565b6000602082019050818103600083015261238a8161234e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806123d857607f821691505b6020821081036123eb576123ea612391565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461241e816123c0565b61242881866123f1565b9450600182166000811461244357600181146124585761248b565b60ff198316865281151582028601935061248b565b612461856123fc565b60005b8381101561248357815481890152600182019150602081019050612464565b838801955050505b50505092915050565b6000819050919050565b6124af6124aa8261195a565b612494565b82525050565b60006124c18285612411565b91506124cd828461249e565b6020820191508190509392505050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612539602e83611ac0565b9150612544826124dd565b604082019050919050565b600060208201905081810360008301526125688161252c565b9050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026125bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261257f565b6125c6868361257f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006126036125fe6125f98461195a565b6125de565b61195a565b9050919050565b6000819050919050565b61261d836125e8565b6126316126298261260a565b84845461258c565b825550505050565b600090565b612646612639565b612651818484612614565b505050565b5b818110156126755761266a60008261263e565b600181019050612657565b5050565b601f8211156126ba5761268b816123fc565b6126948461256f565b810160208510156126a3578190505b6126b76126af8561256f565b830182612656565b50505b505050565b600082821c905092915050565b60006126dd600019846008026126bf565b1980831691505092915050565b60006126f683836126cc565b9150826002028217905092915050565b61270f82611ab5565b67ffffffffffffffff81111561272857612727611b99565b5b61273282546123c0565b61273d828285612679565b600060209050601f831160018114612770576000841561275e578287015190505b61276885826126ea565b8655506127d0565b601f19841661277e866123fc565b60005b828110156127a657848901518255600182019150602085019450602081019050612781565b868310156127c357848901516127bf601f8916826126cc565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612834602983611ac0565b915061283f826127d8565b604082019050919050565b6000602082019050818103600083015261286381612827565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128d38261195a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361290557612904612899565b5b600182019050919050565b7f4164647265737320617272617920616e6420616d6f756e74206172726179206c60008201527f656e677468206d757374206d6174636800000000000000000000000000000000602082015250565b600061296c603083611ac0565b915061297782612910565b604082019050919050565b6000602082019050818103600083015261299b8161295f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006129fe602683611ac0565b9150612a09826129a2565b604082019050919050565b60006020820190508181036000830152612a2d816129f1565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000612a90602883611ac0565b9150612a9b82612a34565b604082019050919050565b60006020820190508181036000830152612abf81612a83565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612b22602583611ac0565b9150612b2d82612ac6565b604082019050919050565b60006020820190508181036000830152612b5181612b15565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000612bb4602a83611ac0565b9150612bbf82612b58565b604082019050919050565b60006020820190508181036000830152612be381612ba7565b9050919050565b6000612bf58261195a565b9150612c008361195a565b9250828201905080821115612c1857612c17612899565b5b92915050565b60006040820190508181036000830152612c3881856120e5565b90508181036020830152612c4c81846120e5565b90509392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c8b602083611ac0565b9150612c9682612c55565b602082019050919050565b60006020820190508181036000830152612cba81612c7e565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d1d602183611ac0565b9150612d2882612cc1565b604082019050919050565b60006020820190508181036000830152612d4c81612d10565b9050919050565b6000604082019050612d6860008301856119d0565b612d7560208301846119d0565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000612dd8602983611ac0565b9150612de382612d7c565b604082019050919050565b60006020820190508181036000830152612e0781612dcb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612e3582612e0e565b612e3f8185612e19565b9350612e4f818560208601611ad1565b612e5881611afb565b840191505092915050565b600060a082019050612e786000830188612165565b612e856020830187612165565b8181036040830152612e9781866120e5565b90508181036060830152612eab81856120e5565b90508181036080830152612ebf8184612e2a565b90509695505050505050565b600081519050612eda81611a26565b92915050565b600060208284031215612ef657612ef56118f2565b5b6000612f0484828501612ecb565b91505092915050565b60008160e01c9050919050565b600060033d1115612f395760046000803e612f36600051612f0d565b90505b90565b600060443d10612fc957612f4e6118e8565b60043d036004823e80513d602482011167ffffffffffffffff82111715612f76575050612fc9565b808201805167ffffffffffffffff811115612f945750505050612fc9565b80602083010160043d038501811115612fb1575050505050612fc9565b612fc082602001850186611bc8565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613028603483611ac0565b915061303382612fcc565b604082019050919050565b600060208201905081810360008301526130578161301b565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006130ba602883611ac0565b91506130c58261305e565b604082019050919050565b600060208201905081810360008301526130e9816130ad565b9050919050565b600060a0820190506131056000830188612165565b6131126020830187612165565b61311f60408301866119d0565b61312c60608301856119d0565b818103608083015261313e8184612e2a565b9050969550505050505056fea2646970667358221220eb318f2c3e03cb8efd753ea674e8ba02e54383ea66e78cf8c9b62c4ed68c70bf64736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5663356f7a6632386374766d7a4d3146343648506547565672484d7563437746524a58365366796e516875550000000000000000000000

-----Decoded View---------------
Arg [0] : baseTokenURI (string): ipfs://QmVc5ozf28ctvmzM1F46HPeGVVrHMucCwFRJX6SfynQhuU

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d5663356f7a6632386374766d7a4d314634364850654756
Arg [3] : 5672484d7563437746524a58365366796e516875550000000000000000000000


Deployed Bytecode Sourcemap

40065:953:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24643:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23666:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40184:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40866:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26561:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40394:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25039:499;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40525:333;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2769:103;;;:::i;:::-;;2128:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25611:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40111:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25838:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26078:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3027:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24643:230;24729:7;24776:1;24757:21;;:7;:21;;;24749:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24843:9;:13;24853:2;24843:13;;;;;;;;;;;:22;24857:7;24843:22;;;;;;;;;;;;;;;;24836:29;;24643:230;;;;:::o;23666:310::-;23768:4;23820:26;23805:41;;;:11;:41;;;;:110;;;;23878:37;23863:52;;;:11;:52;;;;23805:110;:163;;;;23932:36;23956:11;23932:23;:36::i;:::-;23805:163;23785:183;;23666:310;;;:::o;40184:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40866:149::-;40926:13;40983;40998:7;40966:40;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40952:55;;40866:149;;;:::o;26561:438::-;26802:12;:10;:12::i;:::-;26794:20;;:4;:20;;;:60;;;;26818:36;26835:4;26841:12;:10;:12::i;:::-;26818:16;:36::i;:::-;26794:60;26772:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;26939:52;26962:4;26968:2;26972:3;26977:7;26986:4;26939:22;:52::i;:::-;26561:438;;;;;:::o;40394:123::-;2014:13;:11;:13::i;:::-;40494:15:::1;40478:13;:31;;;;;;:::i;:::-;;40394:123:::0;:::o;25039:499::-;25175:16;25231:3;:10;25212:8;:15;:29;25204:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;25300:30;25347:8;:15;25333:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25300:63;;25381:9;25376:122;25400:8;:15;25396:1;:19;25376:122;;;25456:30;25466:8;25475:1;25466:11;;;;;;;;:::i;:::-;;;;;;;;25479:3;25483:1;25479:6;;;;;;;;:::i;:::-;;;;;;;;25456:9;:30::i;:::-;25437:13;25451:1;25437:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;25417:3;;;;:::i;:::-;;;25376:122;;;;25517:13;25510:20;;;25039:499;;;;:::o;40525:333::-;2014:13;:11;:13::i;:::-;40653:6:::1;:13;40632:10;:17;:34;40624:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40737:9;40732:119;40756:10;:17;40752:1;:21;40732:119;;;40795:44;40801:10;40812:1;40801:13;;;;;;;;:::i;:::-;;;;;;;;40145:1;40825:6;40832:1;40825:9;;;;;;;;:::i;:::-;;;;;;;;40795:44;;;;;;;;;;;::::0;:5:::1;:44::i;:::-;40775:3;;;;;:::i;:::-;;;;40732:119;;;;40525:333:::0;;:::o;2769:103::-;2014:13;:11;:13::i;:::-;2834:30:::1;2861:1;2834:18;:30::i;:::-;2769:103::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;25611:155::-;25706:52;25725:12;:10;:12::i;:::-;25739:8;25749;25706:18;:52::i;:::-;25611:155;;:::o;40111:35::-;40145:1;40111:35;:::o;25838:168::-;25937:4;25961:18;:27;25980:7;25961:27;;;;;;;;;;;;;;;:37;25989:8;25961:37;;;;;;;;;;;;;;;;;;;;;;;;;25954:44;;25838:168;;;;:::o;26078:406::-;26294:12;:10;:12::i;:::-;26286:20;;:4;:20;;;:60;;;;26310:36;26327:4;26333:12;:10;:12::i;:::-;26310:16;:36::i;:::-;26286:60;26264:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;26431:45;26449:4;26455:2;26459;26463:6;26471:4;26431:17;:45::i;:::-;26078:406;;;;;:::o;3027:201::-;2014:13;:11;:13::i;:::-;3136:1:::1;3116:22;;:8;:22;;::::0;3108:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3192:28;3211:8;3192:18;:28::i;:::-;3027:201:::0;:::o;5060:326::-;5120:4;5377:1;5355:7;:19;;;:23;5348:30;;5060:326;;;:::o;15001:157::-;15086:4;15125:25;15110:40;;;:11;:40;;;;15103:47;;15001:157;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;28795:1146::-;29022:7;:14;29008:3;:10;:28;29000:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;29114:1;29100:16;;:2;:16;;;29092:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;29171:16;29190:12;:10;:12::i;:::-;29171:31;;29215:60;29236:8;29246:4;29252:2;29256:3;29261:7;29270:4;29215:20;:60::i;:::-;29293:9;29288:421;29312:3;:10;29308:1;:14;29288:421;;;29344:10;29357:3;29361:1;29357:6;;;;;;;;:::i;:::-;;;;;;;;29344:19;;29378:14;29395:7;29403:1;29395:10;;;;;;;;:::i;:::-;;;;;;;;29378:27;;29422:19;29444:9;:13;29454:2;29444:13;;;;;;;;;;;:19;29458:4;29444:19;;;;;;;;;;;;;;;;29422:41;;29501:6;29486:11;:21;;29478:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;29634:6;29620:11;:20;29598:9;:13;29608:2;29598:13;;;;;;;;;;;:19;29612:4;29598:19;;;;;;;;;;;;;;;:42;;;;29691:6;29670:9;:13;29680:2;29670:13;;;;;;;;;;;:17;29684:2;29670:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;29329:380;;;29324:3;;;;:::i;:::-;;;29288:421;;;;29756:2;29726:47;;29750:4;29726:47;;29740:8;29726:47;;;29760:3;29765:7;29726:47;;;;;;;:::i;:::-;;;;;;;;29786:59;29806:8;29816:4;29822:2;29826:3;29831:7;29840:4;29786:19;:59::i;:::-;29858:75;29894:8;29904:4;29910:2;29914:3;29919:7;29928:4;29858:35;:75::i;:::-;28989:952;28795:1146;;;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;31259:686::-;31383:1;31369:16;;:2;:16;;;31361:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31436:16;31455:12;:10;:12::i;:::-;31436:31;;31478:20;31501:21;31519:2;31501:17;:21::i;:::-;31478:44;;31533:24;31560:25;31578:6;31560:17;:25::i;:::-;31533:52;;31598:66;31619:8;31637:1;31641:2;31645:3;31650:7;31659:4;31598:20;:66::i;:::-;31698:6;31677:9;:13;31687:2;31677:13;;;;;;;;;;;:17;31691:2;31677:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;31757:2;31720:52;;31753:1;31720:52;;31735:8;31720:52;;;31761:2;31765:6;31720:52;;;;;;;:::i;:::-;;;;;;;;31785:65;31805:8;31823:1;31827:2;31831:3;31836:7;31845:4;31785:19;:65::i;:::-;31863:74;31894:8;31912:1;31916:2;31920;31924:6;31932:4;31863:30;:74::i;:::-;31350:595;;;31259:686;;;;:::o;3388:191::-;3462:16;3481:6;;;;;;;;;;;3462:25;;3507:8;3498:6;;:17;;;;;;;;;;;;;;;;;;3562:8;3531:40;;3552:8;3531:40;;;;;;;;;;;;3451:128;3388:191;:::o;35561:297::-;35682:8;35673:17;;:5;:17;;;35665:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;35785:8;35747:18;:25;35766:5;35747:25;;;;;;;;;;;;;;;:35;35773:8;35747:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35831:8;35809:41;;35824:5;35809:41;;;35841:8;35809:41;;;;;;:::i;:::-;;;;;;;;35561:297;;;:::o;27463:974::-;27665:1;27651:16;;:2;:16;;;27643:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;27722:16;27741:12;:10;:12::i;:::-;27722:31;;27764:20;27787:21;27805:2;27787:17;:21::i;:::-;27764:44;;27819:24;27846:25;27864:6;27846:17;:25::i;:::-;27819:52;;27884:60;27905:8;27915:4;27921:2;27925:3;27930:7;27939:4;27884:20;:60::i;:::-;27957:19;27979:9;:13;27989:2;27979:13;;;;;;;;;;;:19;27993:4;27979:19;;;;;;;;;;;;;;;;27957:41;;28032:6;28017:11;:21;;28009:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28157:6;28143:11;:20;28121:9;:13;28131:2;28121:13;;;;;;;;;;;:19;28135:4;28121:19;;;;;;;;;;;;;;;:42;;;;28206:6;28185:9;:13;28195:2;28185:13;;;;;;;;;;;:17;28199:2;28185:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;28261:2;28230:46;;28255:4;28230:46;;28245:8;28230:46;;;28265:2;28269:6;28230:46;;;;;;;:::i;:::-;;;;;;;;28289:59;28309:8;28319:4;28325:2;28329:3;28334:7;28343:4;28289:19;:59::i;:::-;28361:68;28392:8;28402:4;28408:2;28412;28416:6;28424:4;28361:30;:68::i;:::-;27632:805;;;;27463:974;;;;;:::o;36816:221::-;;;;;;;:::o;37992:220::-;;;;;;;:::o;38972:813::-;39212:15;:2;:13;;;:15::i;:::-;39208:570;;;39265:2;39248:43;;;39292:8;39302:4;39308:3;39313:7;39322:4;39248:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39244:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;39640:6;39633:14;;;;;;;;;;;:::i;:::-;;;;;;;;39244:523;;;39689:62;;;;;;;;;;:::i;:::-;;;;;;;;39244:523;39421:48;;;39409:60;;;:8;:60;;;;39405:159;;39494:50;;;;;;;;;;:::i;:::-;;;;;;;;39405:159;39328:251;39208:570;38972:813;;;;;;:::o;39793:198::-;39859:16;39888:22;39927:1;39913:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39888:41;;39951:7;39940:5;39946:1;39940:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;39978:5;39971:12;;;39793:198;;;:::o;38220:744::-;38435:15;:2;:13;;;:15::i;:::-;38431:526;;;38488:2;38471:38;;;38510:8;38520:4;38526:2;38530:6;38538:4;38471:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38467:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;38819:6;38812:14;;;;;;;;;;;:::i;:::-;;;;;;;;38467:479;;;38868:62;;;;;;;;;;:::i;:::-;;;;;;;;38467:479;38605:43;;;38593:55;;;:8;:55;;;;38589:154;;38673:50;;;;;;;;;;:::i;:::-;;;;;;;;38589:154;38544:214;38431:526;38220:744;;;;;;:::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:99::-;3265:6;3299:5;3293:12;3283:22;;3213:99;;;:::o;3318:169::-;3402:11;3436:6;3431:3;3424:19;3476:4;3471:3;3467:14;3452:29;;3318:169;;;;:::o;3493:246::-;3574:1;3584:113;3598:6;3595:1;3592:13;3584:113;;;3683:1;3678:3;3674:11;3668:18;3664:1;3659:3;3655:11;3648:39;3620:2;3617:1;3613:10;3608:15;;3584:113;;;3731:1;3722:6;3717:3;3713:16;3706:27;3555:184;3493:246;;;:::o;3745:102::-;3786:6;3837:2;3833:7;3828:2;3821:5;3817:14;3813:28;3803:38;;3745:102;;;:::o;3853:377::-;3941:3;3969:39;4002:5;3969:39;:::i;:::-;4024:71;4088:6;4083:3;4024:71;:::i;:::-;4017:78;;4104:65;4162:6;4157:3;4150:4;4143:5;4139:16;4104:65;:::i;:::-;4194:29;4216:6;4194:29;:::i;:::-;4189:3;4185:39;4178:46;;3945:285;3853:377;;;;:::o;4236:313::-;4349:4;4387:2;4376:9;4372:18;4364:26;;4436:9;4430:4;4426:20;4422:1;4411:9;4407:17;4400:47;4464:78;4537:4;4528:6;4464:78;:::i;:::-;4456:86;;4236:313;;;;:::o;4555:329::-;4614:6;4663:2;4651:9;4642:7;4638:23;4634:32;4631:119;;;4669:79;;:::i;:::-;4631:119;4789:1;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4760:117;4555:329;;;;:::o;4890:117::-;4999:1;4996;4989:12;5013:180;5061:77;5058:1;5051:88;5158:4;5155:1;5148:15;5182:4;5179:1;5172:15;5199:281;5282:27;5304:4;5282:27;:::i;:::-;5274:6;5270:40;5412:6;5400:10;5397:22;5376:18;5364:10;5361:34;5358:62;5355:88;;;5423:18;;:::i;:::-;5355:88;5463:10;5459:2;5452:22;5242:238;5199:281;;:::o;5486:129::-;5520:6;5547:20;;:::i;:::-;5537:30;;5576:33;5604:4;5596:6;5576:33;:::i;:::-;5486:129;;;:::o;5621:311::-;5698:4;5788:18;5780:6;5777:30;5774:56;;;5810:18;;:::i;:::-;5774:56;5860:4;5852:6;5848:17;5840:25;;5920:4;5914;5910:15;5902:23;;5621:311;;;:::o;5938:117::-;6047:1;6044;6037:12;6078:710;6174:5;6199:81;6215:64;6272:6;6215:64;:::i;:::-;6199:81;:::i;:::-;6190:90;;6300:5;6329:6;6322:5;6315:21;6363:4;6356:5;6352:16;6345:23;;6416:4;6408:6;6404:17;6396:6;6392:30;6445:3;6437:6;6434:15;6431:122;;;6464:79;;:::i;:::-;6431:122;6579:6;6562:220;6596:6;6591:3;6588:15;6562:220;;;6671:3;6700:37;6733:3;6721:10;6700:37;:::i;:::-;6695:3;6688:50;6767:4;6762:3;6758:14;6751:21;;6638:144;6622:4;6617:3;6613:14;6606:21;;6562:220;;;6566:21;6180:608;;6078:710;;;;;:::o;6811:370::-;6882:5;6931:3;6924:4;6916:6;6912:17;6908:27;6898:122;;6939:79;;:::i;:::-;6898:122;7056:6;7043:20;7081:94;7171:3;7163:6;7156:4;7148:6;7144:17;7081:94;:::i;:::-;7072:103;;6888:293;6811:370;;;;:::o;7187:117::-;7296:1;7293;7286:12;7310:307;7371:4;7461:18;7453:6;7450:30;7447:56;;;7483:18;;:::i;:::-;7447:56;7521:29;7543:6;7521:29;:::i;:::-;7513:37;;7605:4;7599;7595:15;7587:23;;7310:307;;;:::o;7623:146::-;7720:6;7715:3;7710;7697:30;7761:1;7752:6;7747:3;7743:16;7736:27;7623:146;;;:::o;7775:423::-;7852:5;7877:65;7893:48;7934:6;7893:48;:::i;:::-;7877:65;:::i;:::-;7868:74;;7965:6;7958:5;7951:21;8003:4;7996:5;7992:16;8041:3;8032:6;8027:3;8023:16;8020:25;8017:112;;;8048:79;;:::i;:::-;8017:112;8138:54;8185:6;8180:3;8175;8138:54;:::i;:::-;7858:340;7775:423;;;;;:::o;8217:338::-;8272:5;8321:3;8314:4;8306:6;8302:17;8298:27;8288:122;;8329:79;;:::i;:::-;8288:122;8446:6;8433:20;8471:78;8545:3;8537:6;8530:4;8522:6;8518:17;8471:78;:::i;:::-;8462:87;;8278:277;8217:338;;;;:::o;8561:1509::-;8715:6;8723;8731;8739;8747;8796:3;8784:9;8775:7;8771:23;8767:33;8764:120;;;8803:79;;:::i;:::-;8764:120;8923:1;8948:53;8993:7;8984:6;8973:9;8969:22;8948:53;:::i;:::-;8938:63;;8894:117;9050:2;9076:53;9121:7;9112:6;9101:9;9097:22;9076:53;:::i;:::-;9066:63;;9021:118;9206:2;9195:9;9191:18;9178:32;9237:18;9229:6;9226:30;9223:117;;;9259:79;;:::i;:::-;9223:117;9364:78;9434:7;9425:6;9414:9;9410:22;9364:78;:::i;:::-;9354:88;;9149:303;9519:2;9508:9;9504:18;9491:32;9550:18;9542:6;9539:30;9536:117;;;9572:79;;:::i;:::-;9536:117;9677:78;9747:7;9738:6;9727:9;9723:22;9677:78;:::i;:::-;9667:88;;9462:303;9832:3;9821:9;9817:19;9804:33;9864:18;9856:6;9853:30;9850:117;;;9886:79;;:::i;:::-;9850:117;9991:62;10045:7;10036:6;10025:9;10021:22;9991:62;:::i;:::-;9981:72;;9775:288;8561:1509;;;;;;;;:::o;10076:308::-;10138:4;10228:18;10220:6;10217:30;10214:56;;;10250:18;;:::i;:::-;10214:56;10288:29;10310:6;10288:29;:::i;:::-;10280:37;;10372:4;10366;10362:15;10354:23;;10076:308;;;:::o;10390:425::-;10468:5;10493:66;10509:49;10551:6;10509:49;:::i;:::-;10493:66;:::i;:::-;10484:75;;10582:6;10575:5;10568:21;10620:4;10613:5;10609:16;10658:3;10649:6;10644:3;10640:16;10637:25;10634:112;;;10665:79;;:::i;:::-;10634:112;10755:54;10802:6;10797:3;10792;10755:54;:::i;:::-;10474:341;10390:425;;;;;:::o;10835:340::-;10891:5;10940:3;10933:4;10925:6;10921:17;10917:27;10907:122;;10948:79;;:::i;:::-;10907:122;11065:6;11052:20;11090:79;11165:3;11157:6;11150:4;11142:6;11138:17;11090:79;:::i;:::-;11081:88;;10897:278;10835:340;;;;:::o;11181:509::-;11250:6;11299:2;11287:9;11278:7;11274:23;11270:32;11267:119;;;11305:79;;:::i;:::-;11267:119;11453:1;11442:9;11438:17;11425:31;11483:18;11475:6;11472:30;11469:117;;;11505:79;;:::i;:::-;11469:117;11610:63;11665:7;11656:6;11645:9;11641:22;11610:63;:::i;:::-;11600:73;;11396:287;11181:509;;;;:::o;11696:311::-;11773:4;11863:18;11855:6;11852:30;11849:56;;;11885:18;;:::i;:::-;11849:56;11935:4;11927:6;11923:17;11915:25;;11995:4;11989;11985:15;11977:23;;11696:311;;;:::o;12030:710::-;12126:5;12151:81;12167:64;12224:6;12167:64;:::i;:::-;12151:81;:::i;:::-;12142:90;;12252:5;12281:6;12274:5;12267:21;12315:4;12308:5;12304:16;12297:23;;12368:4;12360:6;12356:17;12348:6;12344:30;12397:3;12389:6;12386:15;12383:122;;;12416:79;;:::i;:::-;12383:122;12531:6;12514:220;12548:6;12543:3;12540:15;12514:220;;;12623:3;12652:37;12685:3;12673:10;12652:37;:::i;:::-;12647:3;12640:50;12719:4;12714:3;12710:14;12703:21;;12590:144;12574:4;12569:3;12565:14;12558:21;;12514:220;;;12518:21;12132:608;;12030:710;;;;;:::o;12763:370::-;12834:5;12883:3;12876:4;12868:6;12864:17;12860:27;12850:122;;12891:79;;:::i;:::-;12850:122;13008:6;12995:20;13033:94;13123:3;13115:6;13108:4;13100:6;13096:17;13033:94;:::i;:::-;13024:103;;12840:293;12763:370;;;;:::o;13139:894::-;13257:6;13265;13314:2;13302:9;13293:7;13289:23;13285:32;13282:119;;;13320:79;;:::i;:::-;13282:119;13468:1;13457:9;13453:17;13440:31;13498:18;13490:6;13487:30;13484:117;;;13520:79;;:::i;:::-;13484:117;13625:78;13695:7;13686:6;13675:9;13671:22;13625:78;:::i;:::-;13615:88;;13411:302;13780:2;13769:9;13765:18;13752:32;13811:18;13803:6;13800:30;13797:117;;;13833:79;;:::i;:::-;13797:117;13938:78;14008:7;13999:6;13988:9;13984:22;13938:78;:::i;:::-;13928:88;;13723:303;13139:894;;;;;:::o;14039:114::-;14106:6;14140:5;14134:12;14124:22;;14039:114;;;:::o;14159:184::-;14258:11;14292:6;14287:3;14280:19;14332:4;14327:3;14323:14;14308:29;;14159:184;;;;:::o;14349:132::-;14416:4;14439:3;14431:11;;14469:4;14464:3;14460:14;14452:22;;14349:132;;;:::o;14487:108::-;14564:24;14582:5;14564:24;:::i;:::-;14559:3;14552:37;14487:108;;:::o;14601:179::-;14670:10;14691:46;14733:3;14725:6;14691:46;:::i;:::-;14769:4;14764:3;14760:14;14746:28;;14601:179;;;;:::o;14786:113::-;14856:4;14888;14883:3;14879:14;14871:22;;14786:113;;;:::o;14935:732::-;15054:3;15083:54;15131:5;15083:54;:::i;:::-;15153:86;15232:6;15227:3;15153:86;:::i;:::-;15146:93;;15263:56;15313:5;15263:56;:::i;:::-;15342:7;15373:1;15358:284;15383:6;15380:1;15377:13;15358:284;;;15459:6;15453:13;15486:63;15545:3;15530:13;15486:63;:::i;:::-;15479:70;;15572:60;15625:6;15572:60;:::i;:::-;15562:70;;15418:224;15405:1;15402;15398:9;15393:14;;15358:284;;;15362:14;15658:3;15651:10;;15059:608;;;14935:732;;;;:::o;15673:373::-;15816:4;15854:2;15843:9;15839:18;15831:26;;15903:9;15897:4;15893:20;15889:1;15878:9;15874:17;15867:47;15931:108;16034:4;16025:6;15931:108;:::i;:::-;15923:116;;15673:373;;;;:::o;16052:118::-;16139:24;16157:5;16139:24;:::i;:::-;16134:3;16127:37;16052:118;;:::o;16176:222::-;16269:4;16307:2;16296:9;16292:18;16284:26;;16320:71;16388:1;16377:9;16373:17;16364:6;16320:71;:::i;:::-;16176:222;;;;:::o;16404:116::-;16474:21;16489:5;16474:21;:::i;:::-;16467:5;16464:32;16454:60;;16510:1;16507;16500:12;16454:60;16404:116;:::o;16526:133::-;16569:5;16607:6;16594:20;16585:29;;16623:30;16647:5;16623:30;:::i;:::-;16526:133;;;;:::o;16665:468::-;16730:6;16738;16787:2;16775:9;16766:7;16762:23;16758:32;16755:119;;;16793:79;;:::i;:::-;16755:119;16913:1;16938:53;16983:7;16974:6;16963:9;16959:22;16938:53;:::i;:::-;16928:63;;16884:117;17040:2;17066:50;17108:7;17099:6;17088:9;17084:22;17066:50;:::i;:::-;17056:60;;17011:115;16665:468;;;;;:::o;17139:474::-;17207:6;17215;17264:2;17252:9;17243:7;17239:23;17235:32;17232:119;;;17270:79;;:::i;:::-;17232:119;17390:1;17415:53;17460:7;17451:6;17440:9;17436:22;17415:53;:::i;:::-;17405:63;;17361:117;17517:2;17543:53;17588:7;17579:6;17568:9;17564:22;17543:53;:::i;:::-;17533:63;;17488:118;17139:474;;;;;:::o;17619:1089::-;17723:6;17731;17739;17747;17755;17804:3;17792:9;17783:7;17779:23;17775:33;17772:120;;;17811:79;;:::i;:::-;17772:120;17931:1;17956:53;18001:7;17992:6;17981:9;17977:22;17956:53;:::i;:::-;17946:63;;17902:117;18058:2;18084:53;18129:7;18120:6;18109:9;18105:22;18084:53;:::i;:::-;18074:63;;18029:118;18186:2;18212:53;18257:7;18248:6;18237:9;18233:22;18212:53;:::i;:::-;18202:63;;18157:118;18314:2;18340:53;18385:7;18376:6;18365:9;18361:22;18340:53;:::i;:::-;18330:63;;18285:118;18470:3;18459:9;18455:19;18442:33;18502:18;18494:6;18491:30;18488:117;;;18524:79;;:::i;:::-;18488:117;18629:62;18683:7;18674:6;18663:9;18659:22;18629:62;:::i;:::-;18619:72;;18413:288;17619:1089;;;;;;;;:::o;18714:329::-;18773:6;18822:2;18810:9;18801:7;18797:23;18793:32;18790:119;;;18828:79;;:::i;:::-;18790:119;18948:1;18973:53;19018:7;19009:6;18998:9;18994:22;18973:53;:::i;:::-;18963:63;;18919:117;18714:329;;;;:::o;19049:229::-;19189:34;19185:1;19177:6;19173:14;19166:58;19258:12;19253:2;19245:6;19241:15;19234:37;19049:229;:::o;19284:366::-;19426:3;19447:67;19511:2;19506:3;19447:67;:::i;:::-;19440:74;;19523:93;19612:3;19523:93;:::i;:::-;19641:2;19636:3;19632:12;19625:19;;19284:366;;;:::o;19656:419::-;19822:4;19860:2;19849:9;19845:18;19837:26;;19909:9;19903:4;19899:20;19895:1;19884:9;19880:17;19873:47;19937:131;20063:4;19937:131;:::i;:::-;19929:139;;19656:419;;;:::o;20081:180::-;20129:77;20126:1;20119:88;20226:4;20223:1;20216:15;20250:4;20247:1;20240:15;20267:320;20311:6;20348:1;20342:4;20338:12;20328:22;;20395:1;20389:4;20385:12;20416:18;20406:81;;20472:4;20464:6;20460:17;20450:27;;20406:81;20534:2;20526:6;20523:14;20503:18;20500:38;20497:84;;20553:18;;:::i;:::-;20497:84;20318:269;20267:320;;;:::o;20593:148::-;20695:11;20732:3;20717:18;;20593:148;;;;:::o;20747:141::-;20796:4;20819:3;20811:11;;20842:3;20839:1;20832:14;20876:4;20873:1;20863:18;20855:26;;20747:141;;;:::o;20918:874::-;21021:3;21058:5;21052:12;21087:36;21113:9;21087:36;:::i;:::-;21139:89;21221:6;21216:3;21139:89;:::i;:::-;21132:96;;21259:1;21248:9;21244:17;21275:1;21270:166;;;;21450:1;21445:341;;;;21237:549;;21270:166;21354:4;21350:9;21339;21335:25;21330:3;21323:38;21416:6;21409:14;21402:22;21394:6;21390:35;21385:3;21381:45;21374:52;;21270:166;;21445:341;21512:38;21544:5;21512:38;:::i;:::-;21572:1;21586:154;21600:6;21597:1;21594:13;21586:154;;;21674:7;21668:14;21664:1;21659:3;21655:11;21648:35;21724:1;21715:7;21711:15;21700:26;;21622:4;21619:1;21615:12;21610:17;;21586:154;;;21769:6;21764:3;21760:16;21753:23;;21452:334;;21237:549;;21025:767;;20918:874;;;;:::o;21798:79::-;21837:7;21866:5;21855:16;;21798:79;;;:::o;21883:157::-;21988:45;22008:24;22026:5;22008:24;:::i;:::-;21988:45;:::i;:::-;21983:3;21976:58;21883:157;;:::o;22046:410::-;22203:3;22225:92;22313:3;22304:6;22225:92;:::i;:::-;22218:99;;22327:75;22398:3;22389:6;22327:75;:::i;:::-;22427:2;22422:3;22418:12;22411:19;;22447:3;22440:10;;22046:410;;;;;:::o;22462:233::-;22602:34;22598:1;22590:6;22586:14;22579:58;22671:16;22666:2;22658:6;22654:15;22647:41;22462:233;:::o;22701:366::-;22843:3;22864:67;22928:2;22923:3;22864:67;:::i;:::-;22857:74;;22940:93;23029:3;22940:93;:::i;:::-;23058:2;23053:3;23049:12;23042:19;;22701:366;;;:::o;23073:419::-;23239:4;23277:2;23266:9;23262:18;23254:26;;23326:9;23320:4;23316:20;23312:1;23301:9;23297:17;23290:47;23354:131;23480:4;23354:131;:::i;:::-;23346:139;;23073:419;;;:::o;23498:93::-;23535:6;23582:2;23577;23570:5;23566:14;23562:23;23552:33;;23498:93;;;:::o;23597:107::-;23641:8;23691:5;23685:4;23681:16;23660:37;;23597:107;;;;:::o;23710:393::-;23779:6;23829:1;23817:10;23813:18;23852:97;23882:66;23871:9;23852:97;:::i;:::-;23970:39;24000:8;23989:9;23970:39;:::i;:::-;23958:51;;24042:4;24038:9;24031:5;24027:21;24018:30;;24091:4;24081:8;24077:19;24070:5;24067:30;24057:40;;23786:317;;23710:393;;;;;:::o;24109:60::-;24137:3;24158:5;24151:12;;24109:60;;;:::o;24175:142::-;24225:9;24258:53;24276:34;24285:24;24303:5;24285:24;:::i;:::-;24276:34;:::i;:::-;24258:53;:::i;:::-;24245:66;;24175:142;;;:::o;24323:75::-;24366:3;24387:5;24380:12;;24323:75;;;:::o;24404:269::-;24514:39;24545:7;24514:39;:::i;:::-;24575:91;24624:41;24648:16;24624:41;:::i;:::-;24616:6;24609:4;24603:11;24575:91;:::i;:::-;24569:4;24562:105;24480:193;24404:269;;;:::o;24679:73::-;24724:3;24679:73;:::o;24758:189::-;24835:32;;:::i;:::-;24876:65;24934:6;24926;24920:4;24876:65;:::i;:::-;24811:136;24758:189;;:::o;24953:186::-;25013:120;25030:3;25023:5;25020:14;25013:120;;;25084:39;25121:1;25114:5;25084:39;:::i;:::-;25057:1;25050:5;25046:13;25037:22;;25013:120;;;24953:186;;:::o;25145:543::-;25246:2;25241:3;25238:11;25235:446;;;25280:38;25312:5;25280:38;:::i;:::-;25364:29;25382:10;25364:29;:::i;:::-;25354:8;25350:44;25547:2;25535:10;25532:18;25529:49;;;25568:8;25553:23;;25529:49;25591:80;25647:22;25665:3;25647:22;:::i;:::-;25637:8;25633:37;25620:11;25591:80;:::i;:::-;25250:431;;25235:446;25145:543;;;:::o;25694:117::-;25748:8;25798:5;25792:4;25788:16;25767:37;;25694:117;;;;:::o;25817:169::-;25861:6;25894:51;25942:1;25938:6;25930:5;25927:1;25923:13;25894:51;:::i;:::-;25890:56;25975:4;25969;25965:15;25955:25;;25868:118;25817:169;;;;:::o;25991:295::-;26067:4;26213:29;26238:3;26232:4;26213:29;:::i;:::-;26205:37;;26275:3;26272:1;26268:11;26262:4;26259:21;26251:29;;25991:295;;;;:::o;26291:1395::-;26408:37;26441:3;26408:37;:::i;:::-;26510:18;26502:6;26499:30;26496:56;;;26532:18;;:::i;:::-;26496:56;26576:38;26608:4;26602:11;26576:38;:::i;:::-;26661:67;26721:6;26713;26707:4;26661:67;:::i;:::-;26755:1;26779:4;26766:17;;26811:2;26803:6;26800:14;26828:1;26823:618;;;;27485:1;27502:6;27499:77;;;27551:9;27546:3;27542:19;27536:26;27527:35;;27499:77;27602:67;27662:6;27655:5;27602:67;:::i;:::-;27596:4;27589:81;27458:222;26793:887;;26823:618;26875:4;26871:9;26863:6;26859:22;26909:37;26941:4;26909:37;:::i;:::-;26968:1;26982:208;26996:7;26993:1;26990:14;26982:208;;;27075:9;27070:3;27066:19;27060:26;27052:6;27045:42;27126:1;27118:6;27114:14;27104:24;;27173:2;27162:9;27158:18;27145:31;;27019:4;27016:1;27012:12;27007:17;;26982:208;;;27218:6;27209:7;27206:19;27203:179;;;27276:9;27271:3;27267:19;27261:26;27319:48;27361:4;27353:6;27349:17;27338:9;27319:48;:::i;:::-;27311:6;27304:64;27226:156;27203:179;27428:1;27424;27416:6;27412:14;27408:22;27402:4;27395:36;26830:611;;;26793:887;;26383:1303;;;26291:1395;;:::o;27692:228::-;27832:34;27828:1;27820:6;27816:14;27809:58;27901:11;27896:2;27888:6;27884:15;27877:36;27692:228;:::o;27926:366::-;28068:3;28089:67;28153:2;28148:3;28089:67;:::i;:::-;28082:74;;28165:93;28254:3;28165:93;:::i;:::-;28283:2;28278:3;28274:12;28267:19;;27926:366;;;:::o;28298:419::-;28464:4;28502:2;28491:9;28487:18;28479:26;;28551:9;28545:4;28541:20;28537:1;28526:9;28522:17;28515:47;28579:131;28705:4;28579:131;:::i;:::-;28571:139;;28298:419;;;:::o;28723:180::-;28771:77;28768:1;28761:88;28868:4;28865:1;28858:15;28892:4;28889:1;28882:15;28909:180;28957:77;28954:1;28947:88;29054:4;29051:1;29044:15;29078:4;29075:1;29068:15;29095:233;29134:3;29157:24;29175:5;29157:24;:::i;:::-;29148:33;;29203:66;29196:5;29193:77;29190:103;;29273:18;;:::i;:::-;29190:103;29320:1;29313:5;29309:13;29302:20;;29095:233;;;:::o;29334:235::-;29474:34;29470:1;29462:6;29458:14;29451:58;29543:18;29538:2;29530:6;29526:15;29519:43;29334:235;:::o;29575:366::-;29717:3;29738:67;29802:2;29797:3;29738:67;:::i;:::-;29731:74;;29814:93;29903:3;29814:93;:::i;:::-;29932:2;29927:3;29923:12;29916:19;;29575:366;;;:::o;29947:419::-;30113:4;30151:2;30140:9;30136:18;30128:26;;30200:9;30194:4;30190:20;30186:1;30175:9;30171:17;30164:47;30228:131;30354:4;30228:131;:::i;:::-;30220:139;;29947:419;;;:::o;30372:225::-;30512:34;30508:1;30500:6;30496:14;30489:58;30581:8;30576:2;30568:6;30564:15;30557:33;30372:225;:::o;30603:366::-;30745:3;30766:67;30830:2;30825:3;30766:67;:::i;:::-;30759:74;;30842:93;30931:3;30842:93;:::i;:::-;30960:2;30955:3;30951:12;30944:19;;30603:366;;;:::o;30975:419::-;31141:4;31179:2;31168:9;31164:18;31156:26;;31228:9;31222:4;31218:20;31214:1;31203:9;31199:17;31192:47;31256:131;31382:4;31256:131;:::i;:::-;31248:139;;30975:419;;;:::o;31400:227::-;31540:34;31536:1;31528:6;31524:14;31517:58;31609:10;31604:2;31596:6;31592:15;31585:35;31400:227;:::o;31633:366::-;31775:3;31796:67;31860:2;31855:3;31796:67;:::i;:::-;31789:74;;31872:93;31961:3;31872:93;:::i;:::-;31990:2;31985:3;31981:12;31974:19;;31633:366;;;:::o;32005:419::-;32171:4;32209:2;32198:9;32194:18;32186:26;;32258:9;32252:4;32248:20;32244:1;32233:9;32229:17;32222:47;32286:131;32412:4;32286:131;:::i;:::-;32278:139;;32005:419;;;:::o;32430:224::-;32570:34;32566:1;32558:6;32554:14;32547:58;32639:7;32634:2;32626:6;32622:15;32615:32;32430:224;:::o;32660:366::-;32802:3;32823:67;32887:2;32882:3;32823:67;:::i;:::-;32816:74;;32899:93;32988:3;32899:93;:::i;:::-;33017:2;33012:3;33008:12;33001:19;;32660:366;;;:::o;33032:419::-;33198:4;33236:2;33225:9;33221:18;33213:26;;33285:9;33279:4;33275:20;33271:1;33260:9;33256:17;33249:47;33313:131;33439:4;33313:131;:::i;:::-;33305:139;;33032:419;;;:::o;33457:229::-;33597:34;33593:1;33585:6;33581:14;33574:58;33666:12;33661:2;33653:6;33649:15;33642:37;33457:229;:::o;33692:366::-;33834:3;33855:67;33919:2;33914:3;33855:67;:::i;:::-;33848:74;;33931:93;34020:3;33931:93;:::i;:::-;34049:2;34044:3;34040:12;34033:19;;33692:366;;;:::o;34064:419::-;34230:4;34268:2;34257:9;34253:18;34245:26;;34317:9;34311:4;34307:20;34303:1;34292:9;34288:17;34281:47;34345:131;34471:4;34345:131;:::i;:::-;34337:139;;34064:419;;;:::o;34489:191::-;34529:3;34548:20;34566:1;34548:20;:::i;:::-;34543:25;;34582:20;34600:1;34582:20;:::i;:::-;34577:25;;34625:1;34622;34618:9;34611:16;;34646:3;34643:1;34640:10;34637:36;;;34653:18;;:::i;:::-;34637:36;34489:191;;;;:::o;34686:634::-;34907:4;34945:2;34934:9;34930:18;34922:26;;34994:9;34988:4;34984:20;34980:1;34969:9;34965:17;34958:47;35022:108;35125:4;35116:6;35022:108;:::i;:::-;35014:116;;35177:9;35171:4;35167:20;35162:2;35151:9;35147:18;35140:48;35205:108;35308:4;35299:6;35205:108;:::i;:::-;35197:116;;34686:634;;;;;:::o;35326:182::-;35466:34;35462:1;35454:6;35450:14;35443:58;35326:182;:::o;35514:366::-;35656:3;35677:67;35741:2;35736:3;35677:67;:::i;:::-;35670:74;;35753:93;35842:3;35753:93;:::i;:::-;35871:2;35866:3;35862:12;35855:19;;35514:366;;;:::o;35886:419::-;36052:4;36090:2;36079:9;36075:18;36067:26;;36139:9;36133:4;36129:20;36125:1;36114:9;36110:17;36103:47;36167:131;36293:4;36167:131;:::i;:::-;36159:139;;35886:419;;;:::o;36311:220::-;36451:34;36447:1;36439:6;36435:14;36428:58;36520:3;36515:2;36507:6;36503:15;36496:28;36311:220;:::o;36537:366::-;36679:3;36700:67;36764:2;36759:3;36700:67;:::i;:::-;36693:74;;36776:93;36865:3;36776:93;:::i;:::-;36894:2;36889:3;36885:12;36878:19;;36537:366;;;:::o;36909:419::-;37075:4;37113:2;37102:9;37098:18;37090:26;;37162:9;37156:4;37152:20;37148:1;37137:9;37133:17;37126:47;37190:131;37316:4;37190:131;:::i;:::-;37182:139;;36909:419;;;:::o;37334:332::-;37455:4;37493:2;37482:9;37478:18;37470:26;;37506:71;37574:1;37563:9;37559:17;37550:6;37506:71;:::i;:::-;37587:72;37655:2;37644:9;37640:18;37631:6;37587:72;:::i;:::-;37334:332;;;;;:::o;37672:228::-;37812:34;37808:1;37800:6;37796:14;37789:58;37881:11;37876:2;37868:6;37864:15;37857:36;37672:228;:::o;37906:366::-;38048:3;38069:67;38133:2;38128:3;38069:67;:::i;:::-;38062:74;;38145:93;38234:3;38145:93;:::i;:::-;38263:2;38258:3;38254:12;38247:19;;37906:366;;;:::o;38278:419::-;38444:4;38482:2;38471:9;38467:18;38459:26;;38531:9;38525:4;38521:20;38517:1;38506:9;38502:17;38495:47;38559:131;38685:4;38559:131;:::i;:::-;38551:139;;38278:419;;;:::o;38703:98::-;38754:6;38788:5;38782:12;38772:22;;38703:98;;;:::o;38807:168::-;38890:11;38924:6;38919:3;38912:19;38964:4;38959:3;38955:14;38940:29;;38807:168;;;;:::o;38981:373::-;39067:3;39095:38;39127:5;39095:38;:::i;:::-;39149:70;39212:6;39207:3;39149:70;:::i;:::-;39142:77;;39228:65;39286:6;39281:3;39274:4;39267:5;39263:16;39228:65;:::i;:::-;39318:29;39340:6;39318:29;:::i;:::-;39313:3;39309:39;39302:46;;39071:283;38981:373;;;;:::o;39360:1053::-;39683:4;39721:3;39710:9;39706:19;39698:27;;39735:71;39803:1;39792:9;39788:17;39779:6;39735:71;:::i;:::-;39816:72;39884:2;39873:9;39869:18;39860:6;39816:72;:::i;:::-;39935:9;39929:4;39925:20;39920:2;39909:9;39905:18;39898:48;39963:108;40066:4;40057:6;39963:108;:::i;:::-;39955:116;;40118:9;40112:4;40108:20;40103:2;40092:9;40088:18;40081:48;40146:108;40249:4;40240:6;40146:108;:::i;:::-;40138:116;;40302:9;40296:4;40292:20;40286:3;40275:9;40271:19;40264:49;40330:76;40401:4;40392:6;40330:76;:::i;:::-;40322:84;;39360:1053;;;;;;;;:::o;40419:141::-;40475:5;40506:6;40500:13;40491:22;;40522:32;40548:5;40522:32;:::i;:::-;40419:141;;;;:::o;40566:349::-;40635:6;40684:2;40672:9;40663:7;40659:23;40655:32;40652:119;;;40690:79;;:::i;:::-;40652:119;40810:1;40835:63;40890:7;40881:6;40870:9;40866:22;40835:63;:::i;:::-;40825:73;;40781:127;40566:349;;;;:::o;40921:106::-;40965:8;41014:5;41009:3;41005:15;40984:36;;40921:106;;;:::o;41033:183::-;41068:3;41106:1;41088:16;41085:23;41082:128;;;41144:1;41141;41138;41123:23;41166:34;41197:1;41191:8;41166:34;:::i;:::-;41159:41;;41082:128;41033:183;:::o;41222:711::-;41261:3;41299:4;41281:16;41278:26;41307:5;41275:39;41336:20;;:::i;:::-;41411:1;41393:16;41389:24;41386:1;41380:4;41365:49;41444:4;41438:11;41543:16;41536:4;41528:6;41524:17;41521:39;41488:18;41480:6;41477:30;41461:113;41458:146;;;41589:5;;;;41458:146;41635:6;41629:4;41625:17;41671:3;41665:10;41698:18;41690:6;41687:30;41684:43;;;41720:5;;;;;;41684:43;41768:6;41761:4;41756:3;41752:14;41748:27;41827:1;41809:16;41805:24;41799:4;41795:35;41790:3;41787:44;41784:57;;;41834:5;;;;;;;41784:57;41851;41899:6;41893:4;41889:17;41881:6;41877:30;41871:4;41851:57;:::i;:::-;41924:3;41917:10;;41265:668;;;;;41222:711;;:::o;41939:239::-;42079:34;42075:1;42067:6;42063:14;42056:58;42148:22;42143:2;42135:6;42131:15;42124:47;41939:239;:::o;42184:366::-;42326:3;42347:67;42411:2;42406:3;42347:67;:::i;:::-;42340:74;;42423:93;42512:3;42423:93;:::i;:::-;42541:2;42536:3;42532:12;42525:19;;42184:366;;;:::o;42556:419::-;42722:4;42760:2;42749:9;42745:18;42737:26;;42809:9;42803:4;42799:20;42795:1;42784:9;42780:17;42773:47;42837:131;42963:4;42837:131;:::i;:::-;42829:139;;42556:419;;;:::o;42981:227::-;43121:34;43117:1;43109:6;43105:14;43098:58;43190:10;43185:2;43177:6;43173:15;43166:35;42981:227;:::o;43214:366::-;43356:3;43377:67;43441:2;43436:3;43377:67;:::i;:::-;43370:74;;43453:93;43542:3;43453:93;:::i;:::-;43571:2;43566:3;43562:12;43555:19;;43214:366;;;:::o;43586:419::-;43752:4;43790:2;43779:9;43775:18;43767:26;;43839:9;43833:4;43829:20;43825:1;43814:9;43810:17;43803:47;43867:131;43993:4;43867:131;:::i;:::-;43859:139;;43586:419;;;:::o;44011:751::-;44234:4;44272:3;44261:9;44257:19;44249:27;;44286:71;44354:1;44343:9;44339:17;44330:6;44286:71;:::i;:::-;44367:72;44435:2;44424:9;44420:18;44411:6;44367:72;:::i;:::-;44449;44517:2;44506:9;44502:18;44493:6;44449:72;:::i;:::-;44531;44599:2;44588:9;44584:18;44575:6;44531:72;:::i;:::-;44651:9;44645:4;44641:20;44635:3;44624:9;44620:19;44613:49;44679:76;44750:4;44741:6;44679:76;:::i;:::-;44671:84;;44011:751;;;;;;;;:::o

Swarm Source

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