ETH Price: $2,679.26 (-2.12%)

Token

 

Overview

Max Total Supply

49,000

Holders

240

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lilpompa.eth
0x3bFb5E6d0b9E39d4B3B2a79725A047E6874f822d
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:
$BLUR

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-07
*/

// File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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: contract-dde08347ef.sol


pragma solidity ^0.8.9;



contract $BLUR is ERC1155, Ownable {
    constructor()
        ERC1155("ipfs://bafybeiadf5hz2lfxez6aa4yp3flpgbdy5dzodj7hgxzf3ar7c5ybyw7z2i/col.json")
    {}

    function setURI(string memory newuri) public onlyOwner {
        _setURI(newuri);
    }

    function mint(address account, uint256 id, uint256 amount, bytes memory data)
        public
        onlyOwner
    {
        _mint(account, id, amount, data);
    }

    function mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data)
        public
        onlyOwner
    {
        _mintBatch(to, ids, amounts, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"mintBatch","outputs":[],"stateMutability":"nonpayable","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":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060800160405280604b815260200162003763604b91396200003d816200006460201b60201c565b506200005e620000526200007960201b60201c565b6200008160201b60201c565b620004a8565b8060029081620000759190620003c1565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620001c957607f821691505b602082108103620001df57620001de62000181565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200020a565b6200025586836200020a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002a26200029c62000296846200026d565b62000277565b6200026d565b9050919050565b6000819050919050565b620002be8362000281565b620002d6620002cd82620002a9565b84845462000217565b825550505050565b600090565b620002ed620002de565b620002fa818484620002b3565b505050565b5b81811015620003225762000316600082620002e3565b60018101905062000300565b5050565b601f82111562000371576200033b81620001e5565b6200034684620001fa565b8101602085101562000356578190505b6200036e6200036585620001fa565b830182620002ff565b50505b505050565b600082821c905092915050565b6000620003966000198460080262000376565b1980831691505092915050565b6000620003b1838362000383565b9150826002028217905092915050565b620003cc8262000147565b67ffffffffffffffff811115620003e857620003e762000152565b5b620003f48254620001b0565b6200040182828562000326565b600060209050601f83116001811462000439576000841562000424578287015190505b620004308582620003a3565b865550620004a0565b601f1984166200044986620001e5565b60005b8281101562000473578489015182556001820191506020850194506020810190506200044c565b868310156200049357848901516200048f601f89168262000383565b8355505b6001600288020188555050505b505050505050565b6132ab80620004b86000396000f3fe608060405234801561001057600080fd5b50600436106100e95760003560e01c8063715018a61161008c578063a22cb46511610066578063a22cb46514610246578063e985e9c514610262578063f242432a14610292578063f2fde38b146102ae576100e9565b8063715018a614610202578063731133e91461020c5780638da5cb5b14610228576100e9565b80630e89341c116100c85780630e89341c1461016a5780631f7fdffa1461019a5780632eb2c2d6146101b65780634e1273f4146101d2576100e9565b8062fdd58e146100ee57806301ffc9a71461011e57806302fe53051461014e575b600080fd5b61010860048036038101906101039190611ae6565b6102ca565b6040516101159190611b35565b60405180910390f35b61013860048036038101906101339190611ba8565b610392565b6040516101459190611bf0565b60405180910390f35b61016860048036038101906101639190611d51565b610474565b005b610184600480360381019061017f9190611d9a565b610488565b6040516101919190611e46565b60405180910390f35b6101b460048036038101906101af9190611fd1565b61051c565b005b6101d060048036038101906101cb919061208c565b610536565b005b6101ec60048036038101906101e7919061221e565b6105d7565b6040516101f99190612354565b60405180910390f35b61020a6106f0565b005b61022660048036038101906102219190612376565b610704565b005b61023061071e565b60405161023d9190612408565b60405180910390f35b610260600480360381019061025b919061244f565b610748565b005b61027c6004803603810190610277919061248f565b61075e565b6040516102899190611bf0565b60405180910390f35b6102ac60048036038101906102a791906124cf565b6107f2565b005b6102c860048036038101906102c39190612566565b610893565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361033a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161033190612605565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061045d57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061046d575061046c82610916565b5b9050919050565b61047c610980565b610485816109fe565b50565b60606002805461049790612654565b80601f01602080910402602001604051908101604052809291908181526020018280546104c390612654565b80156105105780601f106104e557610100808354040283529160200191610510565b820191906000526020600020905b8154815290600101906020018083116104f357829003601f168201915b50505050509050919050565b610524610980565b61053084848484610a11565b50505050565b61053e610c3d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061058457506105838561057e610c3d565b61075e565b5b6105c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ba906126f7565b60405180910390fd5b6105d08585858585610c45565b5050505050565b6060815183511461061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490612789565b60405180910390fd5b6000835167ffffffffffffffff81111561063a57610639611c26565b5b6040519080825280602002602001820160405280156106685781602001602082028036833780820191505090505b50905060005b84518110156106e5576106b585828151811061068d5761068c6127a9565b5b60200260200101518583815181106106a8576106a76127a9565b5b60200260200101516102ca565b8282815181106106c8576106c76127a9565b5b602002602001018181525050806106de90612807565b905061066e565b508091505092915050565b6106f8610980565b6107026000610f66565b565b61070c610980565b6107188484848461102c565b50505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61075a610753610c3d565b83836111dc565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6107fa610c3d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610840575061083f8561083a610c3d565b61075e565b5b61087f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610876906126f7565b60405180910390fd5b61088c8585858585611348565b5050505050565b61089b610980565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361090a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610901906128c1565b60405180910390fd5b61091381610f66565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610988610c3d565b73ffffffffffffffffffffffffffffffffffffffff166109a661071e565b73ffffffffffffffffffffffffffffffffffffffff16146109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f39061292d565b60405180910390fd5b565b8060029081610a0d9190612af9565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7790612c3d565b60405180910390fd5b8151835114610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90612ccf565b60405180910390fd5b6000610ace610c3d565b9050610adf816000878787876115e3565b60005b8451811015610b9857838181518110610afe57610afd6127a9565b5b6020026020010151600080878481518110610b1c57610b1b6127a9565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b7e9190612cef565b925050819055508080610b9090612807565b915050610ae2565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610c10929190612d23565b60405180910390a4610c27816000878787876115eb565b610c36816000878787876115f3565b5050505050565b600033905090565b8151835114610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090612ccf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef90612dcc565b60405180910390fd5b6000610d02610c3d565b9050610d128187878787876115e3565b60005b8451811015610ec3576000858281518110610d3357610d326127a9565b5b602002602001015190506000858381518110610d5257610d516127a9565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90612e5e565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ea89190612cef565b9250508190555050505080610ebc90612807565b9050610d15565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610f3a929190612d23565b60405180910390a4610f508187878787876115eb565b610f5e8187878787876115f3565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290612c3d565b60405180910390fd5b60006110a5610c3d565b905060006110b2856117ca565b905060006110bf856117ca565b90506110d0836000898585896115e3565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461112f9190612cef565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516111ad929190612e7e565b60405180910390a46111c4836000898585896115eb565b6111d383600089898989611844565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124190612f19565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161133b9190611bf0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90612dcc565b60405180910390fd5b60006113c1610c3d565b905060006113ce856117ca565b905060006113db856117ca565b90506113eb8389898585896115e3565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147990612e5e565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115379190612cef565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516115b4929190612e7e565b60405180910390a46115ca848a8a86868a6115eb565b6115d8848a8a8a8a8a611844565b505050505050505050565b505050505050565b505050505050565b6116128473ffffffffffffffffffffffffffffffffffffffff16611a1b565b156117c2578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611658959493929190612f8e565b6020604051808303816000875af192505050801561169457506040513d601f19601f82011682018060405250810190611691919061300b565b60015b611739576116a0613045565b806308c379a0036116fc57506116b4613067565b806116bf57506116fe565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f39190611e46565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173090613169565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b7906131fb565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156117e9576117e8611c26565b5b6040519080825280602002602001820160405280156118175781602001602082028036833780820191505090505b509050828160008151811061182f5761182e6127a9565b5b60200260200101818152505080915050919050565b6118638473ffffffffffffffffffffffffffffffffffffffff16611a1b565b15611a13578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016118a995949392919061321b565b6020604051808303816000875af19250505080156118e557506040513d601f19601f820116820180604052508101906118e2919061300b565b60015b61198a576118f1613045565b806308c379a00361194d5750611905613067565b80611910575061194f565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119449190611e46565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190613169565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a08906131fb565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a7d82611a52565b9050919050565b611a8d81611a72565b8114611a9857600080fd5b50565b600081359050611aaa81611a84565b92915050565b6000819050919050565b611ac381611ab0565b8114611ace57600080fd5b50565b600081359050611ae081611aba565b92915050565b60008060408385031215611afd57611afc611a48565b5b6000611b0b85828601611a9b565b9250506020611b1c85828601611ad1565b9150509250929050565b611b2f81611ab0565b82525050565b6000602082019050611b4a6000830184611b26565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b8581611b50565b8114611b9057600080fd5b50565b600081359050611ba281611b7c565b92915050565b600060208284031215611bbe57611bbd611a48565b5b6000611bcc84828501611b93565b91505092915050565b60008115159050919050565b611bea81611bd5565b82525050565b6000602082019050611c056000830184611be1565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c5e82611c15565b810181811067ffffffffffffffff82111715611c7d57611c7c611c26565b5b80604052505050565b6000611c90611a3e565b9050611c9c8282611c55565b919050565b600067ffffffffffffffff821115611cbc57611cbb611c26565b5b611cc582611c15565b9050602081019050919050565b82818337600083830152505050565b6000611cf4611cef84611ca1565b611c86565b905082815260208101848484011115611d1057611d0f611c10565b5b611d1b848285611cd2565b509392505050565b600082601f830112611d3857611d37611c0b565b5b8135611d48848260208601611ce1565b91505092915050565b600060208284031215611d6757611d66611a48565b5b600082013567ffffffffffffffff811115611d8557611d84611a4d565b5b611d9184828501611d23565b91505092915050565b600060208284031215611db057611daf611a48565b5b6000611dbe84828501611ad1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e01578082015181840152602081019050611de6565b60008484015250505050565b6000611e1882611dc7565b611e228185611dd2565b9350611e32818560208601611de3565b611e3b81611c15565b840191505092915050565b60006020820190508181036000830152611e608184611e0d565b905092915050565b600067ffffffffffffffff821115611e8357611e82611c26565b5b602082029050602081019050919050565b600080fd5b6000611eac611ea784611e68565b611c86565b90508083825260208201905060208402830185811115611ecf57611ece611e94565b5b835b81811015611ef85780611ee48882611ad1565b845260208401935050602081019050611ed1565b5050509392505050565b600082601f830112611f1757611f16611c0b565b5b8135611f27848260208601611e99565b91505092915050565b600067ffffffffffffffff821115611f4b57611f4a611c26565b5b611f5482611c15565b9050602081019050919050565b6000611f74611f6f84611f30565b611c86565b905082815260208101848484011115611f9057611f8f611c10565b5b611f9b848285611cd2565b509392505050565b600082601f830112611fb857611fb7611c0b565b5b8135611fc8848260208601611f61565b91505092915050565b60008060008060808587031215611feb57611fea611a48565b5b6000611ff987828801611a9b565b945050602085013567ffffffffffffffff81111561201a57612019611a4d565b5b61202687828801611f02565b935050604085013567ffffffffffffffff81111561204757612046611a4d565b5b61205387828801611f02565b925050606085013567ffffffffffffffff81111561207457612073611a4d565b5b61208087828801611fa3565b91505092959194509250565b600080600080600060a086880312156120a8576120a7611a48565b5b60006120b688828901611a9b565b95505060206120c788828901611a9b565b945050604086013567ffffffffffffffff8111156120e8576120e7611a4d565b5b6120f488828901611f02565b935050606086013567ffffffffffffffff81111561211557612114611a4d565b5b61212188828901611f02565b925050608086013567ffffffffffffffff81111561214257612141611a4d565b5b61214e88828901611fa3565b9150509295509295909350565b600067ffffffffffffffff82111561217657612175611c26565b5b602082029050602081019050919050565b600061219a6121958461215b565b611c86565b905080838252602082019050602084028301858111156121bd576121bc611e94565b5b835b818110156121e657806121d28882611a9b565b8452602084019350506020810190506121bf565b5050509392505050565b600082601f83011261220557612204611c0b565b5b8135612215848260208601612187565b91505092915050565b6000806040838503121561223557612234611a48565b5b600083013567ffffffffffffffff81111561225357612252611a4d565b5b61225f858286016121f0565b925050602083013567ffffffffffffffff8111156122805761227f611a4d565b5b61228c85828601611f02565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6122cb81611ab0565b82525050565b60006122dd83836122c2565b60208301905092915050565b6000602082019050919050565b600061230182612296565b61230b81856122a1565b9350612316836122b2565b8060005b8381101561234757815161232e88826122d1565b9750612339836122e9565b92505060018101905061231a565b5085935050505092915050565b6000602082019050818103600083015261236e81846122f6565b905092915050565b600080600080608085870312156123905761238f611a48565b5b600061239e87828801611a9b565b94505060206123af87828801611ad1565b93505060406123c087828801611ad1565b925050606085013567ffffffffffffffff8111156123e1576123e0611a4d565b5b6123ed87828801611fa3565b91505092959194509250565b61240281611a72565b82525050565b600060208201905061241d60008301846123f9565b92915050565b61242c81611bd5565b811461243757600080fd5b50565b60008135905061244981612423565b92915050565b6000806040838503121561246657612465611a48565b5b600061247485828601611a9b565b92505060206124858582860161243a565b9150509250929050565b600080604083850312156124a6576124a5611a48565b5b60006124b485828601611a9b565b92505060206124c585828601611a9b565b9150509250929050565b600080600080600060a086880312156124eb576124ea611a48565b5b60006124f988828901611a9b565b955050602061250a88828901611a9b565b945050604061251b88828901611ad1565b935050606061252c88828901611ad1565b925050608086013567ffffffffffffffff81111561254d5761254c611a4d565b5b61255988828901611fa3565b9150509295509295909350565b60006020828403121561257c5761257b611a48565b5b600061258a84828501611a9b565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006125ef602a83611dd2565b91506125fa82612593565b604082019050919050565b6000602082019050818103600083015261261e816125e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061266c57607f821691505b60208210810361267f5761267e612625565b5b50919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b60006126e1602e83611dd2565b91506126ec82612685565b604082019050919050565b60006020820190508181036000830152612710816126d4565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612773602983611dd2565b915061277e82612717565b604082019050919050565b600060208201905081810360008301526127a281612766565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061281282611ab0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612844576128436127d8565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006128ab602683611dd2565b91506128b68261284f565b604082019050919050565b600060208201905081810360008301526128da8161289e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612917602083611dd2565b9150612922826128e1565b602082019050919050565b600060208201905081810360008301526129468161290a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129af7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612972565b6129b98683612972565b95508019841693508086168417925050509392505050565b6000819050919050565b60006129f66129f16129ec84611ab0565b6129d1565b611ab0565b9050919050565b6000819050919050565b612a10836129db565b612a24612a1c826129fd565b84845461297f565b825550505050565b600090565b612a39612a2c565b612a44818484612a07565b505050565b5b81811015612a6857612a5d600082612a31565b600181019050612a4a565b5050565b601f821115612aad57612a7e8161294d565b612a8784612962565b81016020851015612a96578190505b612aaa612aa285612962565b830182612a49565b50505b505050565b600082821c905092915050565b6000612ad060001984600802612ab2565b1980831691505092915050565b6000612ae98383612abf565b9150826002028217905092915050565b612b0282611dc7565b67ffffffffffffffff811115612b1b57612b1a611c26565b5b612b258254612654565b612b30828285612a6c565b600060209050601f831160018114612b635760008415612b51578287015190505b612b5b8582612add565b865550612bc3565b601f198416612b718661294d565b60005b82811015612b9957848901518255600182019150602085019450602081019050612b74565b86831015612bb65784890151612bb2601f891682612abf565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c27602183611dd2565b9150612c3282612bcb565b604082019050919050565b60006020820190508181036000830152612c5681612c1a565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000612cb9602883611dd2565b9150612cc482612c5d565b604082019050919050565b60006020820190508181036000830152612ce881612cac565b9050919050565b6000612cfa82611ab0565b9150612d0583611ab0565b9250828201905080821115612d1d57612d1c6127d8565b5b92915050565b60006040820190508181036000830152612d3d81856122f6565b90508181036020830152612d5181846122f6565b90509392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612db6602583611dd2565b9150612dc182612d5a565b604082019050919050565b60006020820190508181036000830152612de581612da9565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000612e48602a83611dd2565b9150612e5382612dec565b604082019050919050565b60006020820190508181036000830152612e7781612e3b565b9050919050565b6000604082019050612e936000830185611b26565b612ea06020830184611b26565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000612f03602983611dd2565b9150612f0e82612ea7565b604082019050919050565b60006020820190508181036000830152612f3281612ef6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f6082612f39565b612f6a8185612f44565b9350612f7a818560208601611de3565b612f8381611c15565b840191505092915050565b600060a082019050612fa360008301886123f9565b612fb060208301876123f9565b8181036040830152612fc281866122f6565b90508181036060830152612fd681856122f6565b90508181036080830152612fea8184612f55565b90509695505050505050565b60008151905061300581611b7c565b92915050565b60006020828403121561302157613020611a48565b5b600061302f84828501612ff6565b91505092915050565b60008160e01c9050919050565b600060033d11156130645760046000803e613061600051613038565b90505b90565b600060443d106130f457613079611a3e565b60043d036004823e80513d602482011167ffffffffffffffff821117156130a15750506130f4565b808201805167ffffffffffffffff8111156130bf57505050506130f4565b80602083010160043d0385018111156130dc5750505050506130f4565b6130eb82602001850186611c55565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613153603483611dd2565b915061315e826130f7565b604082019050919050565b6000602082019050818103600083015261318281613146565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006131e5602883611dd2565b91506131f082613189565b604082019050919050565b60006020820190508181036000830152613214816131d8565b9050919050565b600060a08201905061323060008301886123f9565b61323d60208301876123f9565b61324a6040830186611b26565b6132576060830185611b26565b81810360808301526132698184612f55565b9050969550505050505056fea26469706673582212209c32a4e8c216dc4835e8418d107c24366d16c5978e2d9cc0c8f8e7ea197f403064736f6c63430008120033697066733a2f2f6261667962656961646635687a326c6678657a36616134797033666c706762647935647a6f646a376867787a6633617237633579627977377a32692f636f6c2e6a736f6e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100e95760003560e01c8063715018a61161008c578063a22cb46511610066578063a22cb46514610246578063e985e9c514610262578063f242432a14610292578063f2fde38b146102ae576100e9565b8063715018a614610202578063731133e91461020c5780638da5cb5b14610228576100e9565b80630e89341c116100c85780630e89341c1461016a5780631f7fdffa1461019a5780632eb2c2d6146101b65780634e1273f4146101d2576100e9565b8062fdd58e146100ee57806301ffc9a71461011e57806302fe53051461014e575b600080fd5b61010860048036038101906101039190611ae6565b6102ca565b6040516101159190611b35565b60405180910390f35b61013860048036038101906101339190611ba8565b610392565b6040516101459190611bf0565b60405180910390f35b61016860048036038101906101639190611d51565b610474565b005b610184600480360381019061017f9190611d9a565b610488565b6040516101919190611e46565b60405180910390f35b6101b460048036038101906101af9190611fd1565b61051c565b005b6101d060048036038101906101cb919061208c565b610536565b005b6101ec60048036038101906101e7919061221e565b6105d7565b6040516101f99190612354565b60405180910390f35b61020a6106f0565b005b61022660048036038101906102219190612376565b610704565b005b61023061071e565b60405161023d9190612408565b60405180910390f35b610260600480360381019061025b919061244f565b610748565b005b61027c6004803603810190610277919061248f565b61075e565b6040516102899190611bf0565b60405180910390f35b6102ac60048036038101906102a791906124cf565b6107f2565b005b6102c860048036038101906102c39190612566565b610893565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361033a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161033190612605565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061045d57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061046d575061046c82610916565b5b9050919050565b61047c610980565b610485816109fe565b50565b60606002805461049790612654565b80601f01602080910402602001604051908101604052809291908181526020018280546104c390612654565b80156105105780601f106104e557610100808354040283529160200191610510565b820191906000526020600020905b8154815290600101906020018083116104f357829003601f168201915b50505050509050919050565b610524610980565b61053084848484610a11565b50505050565b61053e610c3d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061058457506105838561057e610c3d565b61075e565b5b6105c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ba906126f7565b60405180910390fd5b6105d08585858585610c45565b5050505050565b6060815183511461061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490612789565b60405180910390fd5b6000835167ffffffffffffffff81111561063a57610639611c26565b5b6040519080825280602002602001820160405280156106685781602001602082028036833780820191505090505b50905060005b84518110156106e5576106b585828151811061068d5761068c6127a9565b5b60200260200101518583815181106106a8576106a76127a9565b5b60200260200101516102ca565b8282815181106106c8576106c76127a9565b5b602002602001018181525050806106de90612807565b905061066e565b508091505092915050565b6106f8610980565b6107026000610f66565b565b61070c610980565b6107188484848461102c565b50505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61075a610753610c3d565b83836111dc565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6107fa610c3d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610840575061083f8561083a610c3d565b61075e565b5b61087f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610876906126f7565b60405180910390fd5b61088c8585858585611348565b5050505050565b61089b610980565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361090a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610901906128c1565b60405180910390fd5b61091381610f66565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610988610c3d565b73ffffffffffffffffffffffffffffffffffffffff166109a661071e565b73ffffffffffffffffffffffffffffffffffffffff16146109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f39061292d565b60405180910390fd5b565b8060029081610a0d9190612af9565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7790612c3d565b60405180910390fd5b8151835114610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90612ccf565b60405180910390fd5b6000610ace610c3d565b9050610adf816000878787876115e3565b60005b8451811015610b9857838181518110610afe57610afd6127a9565b5b6020026020010151600080878481518110610b1c57610b1b6127a9565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b7e9190612cef565b925050819055508080610b9090612807565b915050610ae2565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610c10929190612d23565b60405180910390a4610c27816000878787876115eb565b610c36816000878787876115f3565b5050505050565b600033905090565b8151835114610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090612ccf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef90612dcc565b60405180910390fd5b6000610d02610c3d565b9050610d128187878787876115e3565b60005b8451811015610ec3576000858281518110610d3357610d326127a9565b5b602002602001015190506000858381518110610d5257610d516127a9565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90612e5e565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ea89190612cef565b9250508190555050505080610ebc90612807565b9050610d15565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610f3a929190612d23565b60405180910390a4610f508187878787876115eb565b610f5e8187878787876115f3565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290612c3d565b60405180910390fd5b60006110a5610c3d565b905060006110b2856117ca565b905060006110bf856117ca565b90506110d0836000898585896115e3565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461112f9190612cef565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516111ad929190612e7e565b60405180910390a46111c4836000898585896115eb565b6111d383600089898989611844565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124190612f19565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161133b9190611bf0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90612dcc565b60405180910390fd5b60006113c1610c3d565b905060006113ce856117ca565b905060006113db856117ca565b90506113eb8389898585896115e3565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147990612e5e565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115379190612cef565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516115b4929190612e7e565b60405180910390a46115ca848a8a86868a6115eb565b6115d8848a8a8a8a8a611844565b505050505050505050565b505050505050565b505050505050565b6116128473ffffffffffffffffffffffffffffffffffffffff16611a1b565b156117c2578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611658959493929190612f8e565b6020604051808303816000875af192505050801561169457506040513d601f19601f82011682018060405250810190611691919061300b565b60015b611739576116a0613045565b806308c379a0036116fc57506116b4613067565b806116bf57506116fe565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f39190611e46565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173090613169565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b7906131fb565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156117e9576117e8611c26565b5b6040519080825280602002602001820160405280156118175781602001602082028036833780820191505090505b509050828160008151811061182f5761182e6127a9565b5b60200260200101818152505080915050919050565b6118638473ffffffffffffffffffffffffffffffffffffffff16611a1b565b15611a13578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016118a995949392919061321b565b6020604051808303816000875af19250505080156118e557506040513d601f19601f820116820180604052508101906118e2919061300b565b60015b61198a576118f1613045565b806308c379a00361194d5750611905613067565b80611910575061194f565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119449190611e46565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190613169565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a08906131fb565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a7d82611a52565b9050919050565b611a8d81611a72565b8114611a9857600080fd5b50565b600081359050611aaa81611a84565b92915050565b6000819050919050565b611ac381611ab0565b8114611ace57600080fd5b50565b600081359050611ae081611aba565b92915050565b60008060408385031215611afd57611afc611a48565b5b6000611b0b85828601611a9b565b9250506020611b1c85828601611ad1565b9150509250929050565b611b2f81611ab0565b82525050565b6000602082019050611b4a6000830184611b26565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b8581611b50565b8114611b9057600080fd5b50565b600081359050611ba281611b7c565b92915050565b600060208284031215611bbe57611bbd611a48565b5b6000611bcc84828501611b93565b91505092915050565b60008115159050919050565b611bea81611bd5565b82525050565b6000602082019050611c056000830184611be1565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c5e82611c15565b810181811067ffffffffffffffff82111715611c7d57611c7c611c26565b5b80604052505050565b6000611c90611a3e565b9050611c9c8282611c55565b919050565b600067ffffffffffffffff821115611cbc57611cbb611c26565b5b611cc582611c15565b9050602081019050919050565b82818337600083830152505050565b6000611cf4611cef84611ca1565b611c86565b905082815260208101848484011115611d1057611d0f611c10565b5b611d1b848285611cd2565b509392505050565b600082601f830112611d3857611d37611c0b565b5b8135611d48848260208601611ce1565b91505092915050565b600060208284031215611d6757611d66611a48565b5b600082013567ffffffffffffffff811115611d8557611d84611a4d565b5b611d9184828501611d23565b91505092915050565b600060208284031215611db057611daf611a48565b5b6000611dbe84828501611ad1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e01578082015181840152602081019050611de6565b60008484015250505050565b6000611e1882611dc7565b611e228185611dd2565b9350611e32818560208601611de3565b611e3b81611c15565b840191505092915050565b60006020820190508181036000830152611e608184611e0d565b905092915050565b600067ffffffffffffffff821115611e8357611e82611c26565b5b602082029050602081019050919050565b600080fd5b6000611eac611ea784611e68565b611c86565b90508083825260208201905060208402830185811115611ecf57611ece611e94565b5b835b81811015611ef85780611ee48882611ad1565b845260208401935050602081019050611ed1565b5050509392505050565b600082601f830112611f1757611f16611c0b565b5b8135611f27848260208601611e99565b91505092915050565b600067ffffffffffffffff821115611f4b57611f4a611c26565b5b611f5482611c15565b9050602081019050919050565b6000611f74611f6f84611f30565b611c86565b905082815260208101848484011115611f9057611f8f611c10565b5b611f9b848285611cd2565b509392505050565b600082601f830112611fb857611fb7611c0b565b5b8135611fc8848260208601611f61565b91505092915050565b60008060008060808587031215611feb57611fea611a48565b5b6000611ff987828801611a9b565b945050602085013567ffffffffffffffff81111561201a57612019611a4d565b5b61202687828801611f02565b935050604085013567ffffffffffffffff81111561204757612046611a4d565b5b61205387828801611f02565b925050606085013567ffffffffffffffff81111561207457612073611a4d565b5b61208087828801611fa3565b91505092959194509250565b600080600080600060a086880312156120a8576120a7611a48565b5b60006120b688828901611a9b565b95505060206120c788828901611a9b565b945050604086013567ffffffffffffffff8111156120e8576120e7611a4d565b5b6120f488828901611f02565b935050606086013567ffffffffffffffff81111561211557612114611a4d565b5b61212188828901611f02565b925050608086013567ffffffffffffffff81111561214257612141611a4d565b5b61214e88828901611fa3565b9150509295509295909350565b600067ffffffffffffffff82111561217657612175611c26565b5b602082029050602081019050919050565b600061219a6121958461215b565b611c86565b905080838252602082019050602084028301858111156121bd576121bc611e94565b5b835b818110156121e657806121d28882611a9b565b8452602084019350506020810190506121bf565b5050509392505050565b600082601f83011261220557612204611c0b565b5b8135612215848260208601612187565b91505092915050565b6000806040838503121561223557612234611a48565b5b600083013567ffffffffffffffff81111561225357612252611a4d565b5b61225f858286016121f0565b925050602083013567ffffffffffffffff8111156122805761227f611a4d565b5b61228c85828601611f02565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6122cb81611ab0565b82525050565b60006122dd83836122c2565b60208301905092915050565b6000602082019050919050565b600061230182612296565b61230b81856122a1565b9350612316836122b2565b8060005b8381101561234757815161232e88826122d1565b9750612339836122e9565b92505060018101905061231a565b5085935050505092915050565b6000602082019050818103600083015261236e81846122f6565b905092915050565b600080600080608085870312156123905761238f611a48565b5b600061239e87828801611a9b565b94505060206123af87828801611ad1565b93505060406123c087828801611ad1565b925050606085013567ffffffffffffffff8111156123e1576123e0611a4d565b5b6123ed87828801611fa3565b91505092959194509250565b61240281611a72565b82525050565b600060208201905061241d60008301846123f9565b92915050565b61242c81611bd5565b811461243757600080fd5b50565b60008135905061244981612423565b92915050565b6000806040838503121561246657612465611a48565b5b600061247485828601611a9b565b92505060206124858582860161243a565b9150509250929050565b600080604083850312156124a6576124a5611a48565b5b60006124b485828601611a9b565b92505060206124c585828601611a9b565b9150509250929050565b600080600080600060a086880312156124eb576124ea611a48565b5b60006124f988828901611a9b565b955050602061250a88828901611a9b565b945050604061251b88828901611ad1565b935050606061252c88828901611ad1565b925050608086013567ffffffffffffffff81111561254d5761254c611a4d565b5b61255988828901611fa3565b9150509295509295909350565b60006020828403121561257c5761257b611a48565b5b600061258a84828501611a9b565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006125ef602a83611dd2565b91506125fa82612593565b604082019050919050565b6000602082019050818103600083015261261e816125e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061266c57607f821691505b60208210810361267f5761267e612625565b5b50919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b60006126e1602e83611dd2565b91506126ec82612685565b604082019050919050565b60006020820190508181036000830152612710816126d4565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612773602983611dd2565b915061277e82612717565b604082019050919050565b600060208201905081810360008301526127a281612766565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061281282611ab0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612844576128436127d8565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006128ab602683611dd2565b91506128b68261284f565b604082019050919050565b600060208201905081810360008301526128da8161289e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612917602083611dd2565b9150612922826128e1565b602082019050919050565b600060208201905081810360008301526129468161290a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129af7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612972565b6129b98683612972565b95508019841693508086168417925050509392505050565b6000819050919050565b60006129f66129f16129ec84611ab0565b6129d1565b611ab0565b9050919050565b6000819050919050565b612a10836129db565b612a24612a1c826129fd565b84845461297f565b825550505050565b600090565b612a39612a2c565b612a44818484612a07565b505050565b5b81811015612a6857612a5d600082612a31565b600181019050612a4a565b5050565b601f821115612aad57612a7e8161294d565b612a8784612962565b81016020851015612a96578190505b612aaa612aa285612962565b830182612a49565b50505b505050565b600082821c905092915050565b6000612ad060001984600802612ab2565b1980831691505092915050565b6000612ae98383612abf565b9150826002028217905092915050565b612b0282611dc7565b67ffffffffffffffff811115612b1b57612b1a611c26565b5b612b258254612654565b612b30828285612a6c565b600060209050601f831160018114612b635760008415612b51578287015190505b612b5b8582612add565b865550612bc3565b601f198416612b718661294d565b60005b82811015612b9957848901518255600182019150602085019450602081019050612b74565b86831015612bb65784890151612bb2601f891682612abf565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c27602183611dd2565b9150612c3282612bcb565b604082019050919050565b60006020820190508181036000830152612c5681612c1a565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000612cb9602883611dd2565b9150612cc482612c5d565b604082019050919050565b60006020820190508181036000830152612ce881612cac565b9050919050565b6000612cfa82611ab0565b9150612d0583611ab0565b9250828201905080821115612d1d57612d1c6127d8565b5b92915050565b60006040820190508181036000830152612d3d81856122f6565b90508181036020830152612d5181846122f6565b90509392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612db6602583611dd2565b9150612dc182612d5a565b604082019050919050565b60006020820190508181036000830152612de581612da9565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000612e48602a83611dd2565b9150612e5382612dec565b604082019050919050565b60006020820190508181036000830152612e7781612e3b565b9050919050565b6000604082019050612e936000830185611b26565b612ea06020830184611b26565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000612f03602983611dd2565b9150612f0e82612ea7565b604082019050919050565b60006020820190508181036000830152612f3281612ef6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f6082612f39565b612f6a8185612f44565b9350612f7a818560208601611de3565b612f8381611c15565b840191505092915050565b600060a082019050612fa360008301886123f9565b612fb060208301876123f9565b8181036040830152612fc281866122f6565b90508181036060830152612fd681856122f6565b90508181036080830152612fea8184612f55565b90509695505050505050565b60008151905061300581611b7c565b92915050565b60006020828403121561302157613020611a48565b5b600061302f84828501612ff6565b91505092915050565b60008160e01c9050919050565b600060033d11156130645760046000803e613061600051613038565b90505b90565b600060443d106130f457613079611a3e565b60043d036004823e80513d602482011167ffffffffffffffff821117156130a15750506130f4565b808201805167ffffffffffffffff8111156130bf57505050506130f4565b80602083010160043d0385018111156130dc5750505050506130f4565b6130eb82602001850186611c55565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613153603483611dd2565b915061315e826130f7565b604082019050919050565b6000602082019050818103600083015261318281613146565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006131e5602883611dd2565b91506131f082613189565b604082019050919050565b60006020820190508181036000830152613214816131d8565b9050919050565b600060a08201905061323060008301886123f9565b61323d60208301876123f9565b61324a6040830186611b26565b6132576060830185611b26565b81810360808301526132698184612f55565b9050969550505050505056fea26469706673582212209c32a4e8c216dc4835e8418d107c24366d16c5978e2d9cc0c8f8e7ea197f403064736f6c63430008120033

Deployed Bytecode Sourcemap

40121:635:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24697:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23720:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40288:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24441:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40562:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26615:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25093:499;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2781:103;;;:::i;:::-;;40385:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2140:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25665:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25892:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26132:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3039:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24697:230;24783:7;24830:1;24811:21;;:7;:21;;;24803:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24897:9;:13;24907:2;24897:13;;;;;;;;;;;:22;24911:7;24897:22;;;;;;;;;;;;;;;;24890:29;;24697:230;;;;:::o;23720:310::-;23822:4;23874:26;23859:41;;;:11;:41;;;;:110;;;;23932:37;23917:52;;;:11;:52;;;;23859:110;:163;;;;23986:36;24010:11;23986:23;:36::i;:::-;23859:163;23839:183;;23720:310;;;:::o;40288:89::-;2026:13;:11;:13::i;:::-;40354:15:::1;40362:6;40354:7;:15::i;:::-;40288:89:::0;:::o;24441:105::-;24501:13;24534:4;24527:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24441:105;;;:::o;40562:191::-;2026:13;:11;:13::i;:::-;40711:34:::1;40722:2;40726:3;40731:7;40740:4;40711:10;:34::i;:::-;40562:191:::0;;;;:::o;26615:438::-;26856:12;:10;:12::i;:::-;26848:20;;:4;:20;;;:60;;;;26872:36;26889:4;26895:12;:10;:12::i;:::-;26872:16;:36::i;:::-;26848:60;26826:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;26993:52;27016:4;27022:2;27026:3;27031:7;27040:4;26993:22;:52::i;:::-;26615:438;;;;;:::o;25093:499::-;25229:16;25285:3;:10;25266:8;:15;:29;25258:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;25354:30;25401:8;:15;25387:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25354:63;;25435:9;25430:122;25454:8;:15;25450:1;:19;25430:122;;;25510:30;25520:8;25529:1;25520:11;;;;;;;;:::i;:::-;;;;;;;;25533:3;25537:1;25533:6;;;;;;;;:::i;:::-;;;;;;;;25510:9;:30::i;:::-;25491:13;25505:1;25491:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;25471:3;;;;:::i;:::-;;;25430:122;;;;25571:13;25564:20;;;25093:499;;;;:::o;2781:103::-;2026:13;:11;:13::i;:::-;2846:30:::1;2873:1;2846:18;:30::i;:::-;2781:103::o:0;40385:169::-;2026:13;:11;:13::i;:::-;40514:32:::1;40520:7;40529:2;40533:6;40541:4;40514:5;:32::i;:::-;40385:169:::0;;;;:::o;2140:87::-;2186:7;2213:6;;;;;;;;;;;2206:13;;2140:87;:::o;25665:155::-;25760:52;25779:12;:10;:12::i;:::-;25793:8;25803;25760:18;:52::i;:::-;25665:155;;:::o;25892:168::-;25991:4;26015:18;:27;26034:7;26015:27;;;;;;;;;;;;;;;:37;26043:8;26015:37;;;;;;;;;;;;;;;;;;;;;;;;;26008:44;;25892:168;;;;:::o;26132:406::-;26348:12;:10;:12::i;:::-;26340:20;;:4;:20;;;:60;;;;26364:36;26381:4;26387:12;:10;:12::i;:::-;26364:16;:36::i;:::-;26340:60;26318:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;26485:45;26503:4;26509:2;26513;26517:6;26525:4;26485:17;:45::i;:::-;26132:406;;;;;:::o;3039:201::-;2026:13;:11;:13::i;:::-;3148:1:::1;3128:22;;:8;:22;;::::0;3120:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3204:28;3223:8;3204:18;:28::i;:::-;3039:201:::0;:::o;15031:157::-;15116:4;15155:25;15140:40;;;:11;:40;;;;15133:47;;15031:157;;;:::o;2305:132::-;2380:12;:10;:12::i;:::-;2369:23;;:7;:5;:7::i;:::-;:23;;;2361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2305:132::o;30839:88::-;30913:6;30906:4;:13;;;;;;:::i;:::-;;30839:88;:::o;32402:813::-;32594:1;32580:16;;:2;:16;;;32572:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32667:7;:14;32653:3;:10;:28;32645:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;32739:16;32758:12;:10;:12::i;:::-;32739:31;;32783:66;32804:8;32822:1;32826:2;32830:3;32835:7;32844:4;32783:20;:66::i;:::-;32867:9;32862:103;32886:3;:10;32882:1;:14;32862:103;;;32943:7;32951:1;32943:10;;;;;;;;:::i;:::-;;;;;;;;32918:9;:17;32928:3;32932:1;32928:6;;;;;;;;:::i;:::-;;;;;;;;32918:17;;;;;;;;;;;:21;32936:2;32918:21;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;32898:3;;;;;:::i;:::-;;;;32862:103;;;;33018:2;32982:53;;33014:1;32982:53;;32996:8;32982:53;;;33022:3;33027:7;32982:53;;;;;;;:::i;:::-;;;;;;;;33048:65;33068:8;33086:1;33090:2;33094:3;33099:7;33108:4;33048:19;:65::i;:::-;33126:81;33162:8;33180:1;33184:2;33188:3;33193:7;33202:4;33126:35;:81::i;:::-;32561:654;32402:813;;;;:::o;685:98::-;738:7;765:10;758:17;;685:98;:::o;28849:1146::-;29076:7;:14;29062:3;:10;:28;29054:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;29168:1;29154:16;;:2;:16;;;29146:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;29225:16;29244:12;:10;:12::i;:::-;29225:31;;29269:60;29290:8;29300:4;29306:2;29310:3;29315:7;29324:4;29269:20;:60::i;:::-;29347:9;29342:421;29366:3;:10;29362:1;:14;29342:421;;;29398:10;29411:3;29415:1;29411:6;;;;;;;;:::i;:::-;;;;;;;;29398:19;;29432:14;29449:7;29457:1;29449:10;;;;;;;;:::i;:::-;;;;;;;;29432:27;;29476:19;29498:9;:13;29508:2;29498:13;;;;;;;;;;;:19;29512:4;29498:19;;;;;;;;;;;;;;;;29476:41;;29555:6;29540:11;:21;;29532:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;29688:6;29674:11;:20;29652:9;:13;29662:2;29652:13;;;;;;;;;;;:19;29666:4;29652:19;;;;;;;;;;;;;;;:42;;;;29745:6;29724:9;:13;29734:2;29724:13;;;;;;;;;;;:17;29738:2;29724:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;29383:380;;;29378:3;;;;:::i;:::-;;;29342:421;;;;29810:2;29780:47;;29804:4;29780:47;;29794:8;29780:47;;;29814:3;29819:7;29780:47;;;;;;;:::i;:::-;;;;;;;;29840:59;29860:8;29870:4;29876:2;29880:3;29885:7;29894:4;29840:19;:59::i;:::-;29912:75;29948:8;29958:4;29964:2;29968:3;29973:7;29982:4;29912:35;:75::i;:::-;29043:952;28849:1146;;;;;:::o;3400:191::-;3474:16;3493:6;;;;;;;;;;;3474:25;;3519:8;3510:6;;:17;;;;;;;;;;;;;;;;;;3574:8;3543:40;;3564:8;3543:40;;;;;;;;;;;;3463:128;3400:191;:::o;31313:686::-;31437:1;31423:16;;:2;:16;;;31415:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31490:16;31509:12;:10;:12::i;:::-;31490:31;;31532:20;31555:21;31573:2;31555:17;:21::i;:::-;31532:44;;31587:24;31614:25;31632:6;31614:17;:25::i;:::-;31587:52;;31652:66;31673:8;31691:1;31695:2;31699:3;31704:7;31713:4;31652:20;:66::i;:::-;31752:6;31731:9;:13;31741:2;31731:13;;;;;;;;;;;:17;31745:2;31731:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;31811:2;31774:52;;31807:1;31774:52;;31789:8;31774:52;;;31815:2;31819:6;31774:52;;;;;;;:::i;:::-;;;;;;;;31839:65;31859:8;31877:1;31881:2;31885:3;31890:7;31899:4;31839:19;:65::i;:::-;31917:74;31948:8;31966:1;31970:2;31974;31978:6;31986:4;31917:30;:74::i;:::-;31404:595;;;31313:686;;;;:::o;35615:297::-;35736:8;35727:17;;:5;:17;;;35719:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;35839:8;35801:18;:25;35820:5;35801:25;;;;;;;;;;;;;;;:35;35827:8;35801:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35885:8;35863:41;;35878:5;35863:41;;;35895:8;35863:41;;;;;;:::i;:::-;;;;;;;;35615:297;;;:::o;27517:974::-;27719:1;27705:16;;:2;:16;;;27697:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;27776:16;27795:12;:10;:12::i;:::-;27776:31;;27818:20;27841:21;27859:2;27841:17;:21::i;:::-;27818:44;;27873:24;27900:25;27918:6;27900:17;:25::i;:::-;27873:52;;27938:60;27959:8;27969:4;27975:2;27979:3;27984:7;27993:4;27938:20;:60::i;:::-;28011:19;28033:9;:13;28043:2;28033:13;;;;;;;;;;;:19;28047:4;28033:19;;;;;;;;;;;;;;;;28011:41;;28086:6;28071:11;:21;;28063:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28211:6;28197:11;:20;28175:9;:13;28185:2;28175:13;;;;;;;;;;;:19;28189:4;28175:19;;;;;;;;;;;;;;;:42;;;;28260:6;28239:9;:13;28249:2;28239:13;;;;;;;;;;;:17;28253:2;28239:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;28315:2;28284:46;;28309:4;28284:46;;28299:8;28284:46;;;28319:2;28323:6;28284:46;;;;;;;:::i;:::-;;;;;;;;28343:59;28363:8;28373:4;28379:2;28383:3;28388:7;28397:4;28343:19;:59::i;:::-;28415:68;28446:8;28456:4;28462:2;28466;28470:6;28478:4;28415:30;:68::i;:::-;27686:805;;;;27517:974;;;;;:::o;36870:221::-;;;;;;;:::o;38046:220::-;;;;;;;:::o;39026:813::-;39266:15;:2;:13;;;:15::i;:::-;39262:570;;;39319:2;39302:43;;;39346:8;39356:4;39362:3;39367:7;39376:4;39302:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39298:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;39694:6;39687:14;;;;;;;;;;;:::i;:::-;;;;;;;;39298:523;;;39743:62;;;;;;;;;;:::i;:::-;;;;;;;;39298:523;39475:48;;;39463:60;;;:8;:60;;;;39459:159;;39548:50;;;;;;;;;;:::i;:::-;;;;;;;;39459:159;39382:251;39262:570;39026:813;;;;;;:::o;39847:198::-;39913:16;39942:22;39981:1;39967:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39942:41;;40005:7;39994:5;40000:1;39994:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;40032:5;40025:12;;;39847:198;;;:::o;38274:744::-;38489:15;:2;:13;;;:15::i;:::-;38485:526;;;38542:2;38525:38;;;38564:8;38574:4;38580:2;38584:6;38592:4;38525:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38521:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;38873:6;38866:14;;;;;;;;;;;:::i;:::-;;;;;;;;38521:479;;;38922:62;;;;;;;;;;:::i;:::-;;;;;;;;38521:479;38659:43;;;38647:55;;;:8;:55;;;;38643:154;;38727:50;;;;;;;;;;:::i;:::-;;;;;;;;38643:154;38598:214;38485:526;38274:744;;;;;;:::o;5078:326::-;5138:4;5395:1;5373:7;:19;;;:23;5366:30;;5078:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:77::-;878:7;907:5;896:16;;841:77;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:118::-;1764:24;1782:5;1764:24;:::i;:::-;1759:3;1752:37;1677:118;;:::o;1801:222::-;1894:4;1932:2;1921:9;1917:18;1909:26;;1945:71;2013:1;2002:9;1998:17;1989:6;1945:71;:::i;:::-;1801:222;;;;:::o;2029:149::-;2065:7;2105:66;2098:5;2094:78;2083:89;;2029:149;;;:::o;2184:120::-;2256:23;2273:5;2256:23;:::i;:::-;2249:5;2246:34;2236:62;;2294:1;2291;2284:12;2236:62;2184:120;:::o;2310:137::-;2355:5;2393:6;2380:20;2371:29;;2409:32;2435:5;2409:32;:::i;:::-;2310:137;;;;:::o;2453:327::-;2511:6;2560:2;2548:9;2539:7;2535:23;2531:32;2528:119;;;2566:79;;:::i;:::-;2528:119;2686:1;2711:52;2755:7;2746:6;2735:9;2731:22;2711:52;:::i;:::-;2701:62;;2657:116;2453:327;;;;:::o;2786:90::-;2820:7;2863:5;2856:13;2849:21;2838:32;;2786:90;;;:::o;2882:109::-;2963:21;2978:5;2963:21;:::i;:::-;2958:3;2951:34;2882:109;;:::o;2997:210::-;3084:4;3122:2;3111:9;3107:18;3099:26;;3135:65;3197:1;3186:9;3182:17;3173:6;3135:65;:::i;:::-;2997:210;;;;:::o;3213:117::-;3322:1;3319;3312:12;3336:117;3445:1;3442;3435:12;3459:102;3500:6;3551:2;3547:7;3542:2;3535:5;3531:14;3527:28;3517:38;;3459:102;;;:::o;3567:180::-;3615:77;3612:1;3605:88;3712:4;3709:1;3702:15;3736:4;3733:1;3726:15;3753:281;3836:27;3858:4;3836:27;:::i;:::-;3828:6;3824:40;3966:6;3954:10;3951:22;3930:18;3918:10;3915:34;3912:62;3909:88;;;3977:18;;:::i;:::-;3909:88;4017:10;4013:2;4006:22;3796:238;3753:281;;:::o;4040:129::-;4074:6;4101:20;;:::i;:::-;4091:30;;4130:33;4158:4;4150:6;4130:33;:::i;:::-;4040:129;;;:::o;4175:308::-;4237:4;4327:18;4319:6;4316:30;4313:56;;;4349:18;;:::i;:::-;4313:56;4387:29;4409:6;4387:29;:::i;:::-;4379:37;;4471:4;4465;4461:15;4453:23;;4175:308;;;:::o;4489:146::-;4586:6;4581:3;4576;4563:30;4627:1;4618:6;4613:3;4609:16;4602:27;4489:146;;;:::o;4641:425::-;4719:5;4744:66;4760:49;4802:6;4760:49;:::i;:::-;4744:66;:::i;:::-;4735:75;;4833:6;4826:5;4819:21;4871:4;4864:5;4860:16;4909:3;4900:6;4895:3;4891:16;4888:25;4885:112;;;4916:79;;:::i;:::-;4885:112;5006:54;5053:6;5048:3;5043;5006:54;:::i;:::-;4725:341;4641:425;;;;;:::o;5086:340::-;5142:5;5191:3;5184:4;5176:6;5172:17;5168:27;5158:122;;5199:79;;:::i;:::-;5158:122;5316:6;5303:20;5341:79;5416:3;5408:6;5401:4;5393:6;5389:17;5341:79;:::i;:::-;5332:88;;5148:278;5086:340;;;;:::o;5432:509::-;5501:6;5550:2;5538:9;5529:7;5525:23;5521:32;5518:119;;;5556:79;;:::i;:::-;5518:119;5704:1;5693:9;5689:17;5676:31;5734:18;5726:6;5723:30;5720:117;;;5756:79;;:::i;:::-;5720:117;5861:63;5916:7;5907:6;5896:9;5892:22;5861:63;:::i;:::-;5851:73;;5647:287;5432:509;;;;:::o;5947:329::-;6006:6;6055:2;6043:9;6034:7;6030:23;6026:32;6023:119;;;6061:79;;:::i;:::-;6023:119;6181:1;6206:53;6251:7;6242:6;6231:9;6227:22;6206:53;:::i;:::-;6196:63;;6152:117;5947:329;;;;:::o;6282:99::-;6334:6;6368:5;6362:12;6352:22;;6282:99;;;:::o;6387:169::-;6471:11;6505:6;6500:3;6493:19;6545:4;6540:3;6536:14;6521:29;;6387:169;;;;:::o;6562:246::-;6643:1;6653:113;6667:6;6664:1;6661:13;6653:113;;;6752:1;6747:3;6743:11;6737:18;6733:1;6728:3;6724:11;6717:39;6689:2;6686:1;6682:10;6677:15;;6653:113;;;6800:1;6791:6;6786:3;6782:16;6775:27;6624:184;6562:246;;;:::o;6814:377::-;6902:3;6930:39;6963:5;6930:39;:::i;:::-;6985:71;7049:6;7044:3;6985:71;:::i;:::-;6978:78;;7065:65;7123:6;7118:3;7111:4;7104:5;7100:16;7065:65;:::i;:::-;7155:29;7177:6;7155:29;:::i;:::-;7150:3;7146:39;7139:46;;6906:285;6814:377;;;;:::o;7197:313::-;7310:4;7348:2;7337:9;7333:18;7325:26;;7397:9;7391:4;7387:20;7383:1;7372:9;7368:17;7361:47;7425:78;7498:4;7489:6;7425:78;:::i;:::-;7417:86;;7197:313;;;;:::o;7516:311::-;7593:4;7683:18;7675:6;7672:30;7669:56;;;7705:18;;:::i;:::-;7669:56;7755:4;7747:6;7743:17;7735:25;;7815:4;7809;7805:15;7797:23;;7516:311;;;:::o;7833:117::-;7942:1;7939;7932:12;7973:710;8069:5;8094:81;8110:64;8167:6;8110:64;:::i;:::-;8094:81;:::i;:::-;8085:90;;8195:5;8224:6;8217:5;8210:21;8258:4;8251:5;8247:16;8240:23;;8311:4;8303:6;8299:17;8291:6;8287:30;8340:3;8332:6;8329:15;8326:122;;;8359:79;;:::i;:::-;8326:122;8474:6;8457:220;8491:6;8486:3;8483:15;8457:220;;;8566:3;8595:37;8628:3;8616:10;8595:37;:::i;:::-;8590:3;8583:50;8662:4;8657:3;8653:14;8646:21;;8533:144;8517:4;8512:3;8508:14;8501:21;;8457:220;;;8461:21;8075:608;;7973:710;;;;;:::o;8706:370::-;8777:5;8826:3;8819:4;8811:6;8807:17;8803:27;8793:122;;8834:79;;:::i;:::-;8793:122;8951:6;8938:20;8976:94;9066:3;9058:6;9051:4;9043:6;9039:17;8976:94;:::i;:::-;8967:103;;8783:293;8706:370;;;;:::o;9082:307::-;9143:4;9233:18;9225:6;9222:30;9219:56;;;9255:18;;:::i;:::-;9219:56;9293:29;9315:6;9293:29;:::i;:::-;9285:37;;9377:4;9371;9367:15;9359:23;;9082:307;;;:::o;9395:423::-;9472:5;9497:65;9513:48;9554:6;9513:48;:::i;:::-;9497:65;:::i;:::-;9488:74;;9585:6;9578:5;9571:21;9623:4;9616:5;9612:16;9661:3;9652:6;9647:3;9643:16;9640:25;9637:112;;;9668:79;;:::i;:::-;9637:112;9758:54;9805:6;9800:3;9795;9758:54;:::i;:::-;9478:340;9395:423;;;;;:::o;9837:338::-;9892:5;9941:3;9934:4;9926:6;9922:17;9918:27;9908:122;;9949:79;;:::i;:::-;9908:122;10066:6;10053:20;10091:78;10165:3;10157:6;10150:4;10142:6;10138:17;10091:78;:::i;:::-;10082:87;;9898:277;9837:338;;;;:::o;10181:1363::-;10326:6;10334;10342;10350;10399:3;10387:9;10378:7;10374:23;10370:33;10367:120;;;10406:79;;:::i;:::-;10367:120;10526:1;10551:53;10596:7;10587:6;10576:9;10572:22;10551:53;:::i;:::-;10541:63;;10497:117;10681:2;10670:9;10666:18;10653:32;10712:18;10704:6;10701:30;10698:117;;;10734:79;;:::i;:::-;10698:117;10839:78;10909:7;10900:6;10889:9;10885:22;10839:78;:::i;:::-;10829:88;;10624:303;10994:2;10983:9;10979:18;10966:32;11025:18;11017:6;11014:30;11011:117;;;11047:79;;:::i;:::-;11011:117;11152:78;11222:7;11213:6;11202:9;11198:22;11152:78;:::i;:::-;11142:88;;10937:303;11307:2;11296:9;11292:18;11279:32;11338:18;11330:6;11327:30;11324:117;;;11360:79;;:::i;:::-;11324:117;11465:62;11519:7;11510:6;11499:9;11495:22;11465:62;:::i;:::-;11455:72;;11250:287;10181:1363;;;;;;;:::o;11550:1509::-;11704:6;11712;11720;11728;11736;11785:3;11773:9;11764:7;11760:23;11756:33;11753:120;;;11792:79;;:::i;:::-;11753:120;11912:1;11937:53;11982:7;11973:6;11962:9;11958:22;11937:53;:::i;:::-;11927:63;;11883:117;12039:2;12065:53;12110:7;12101:6;12090:9;12086:22;12065:53;:::i;:::-;12055:63;;12010:118;12195:2;12184:9;12180:18;12167:32;12226:18;12218:6;12215:30;12212:117;;;12248:79;;:::i;:::-;12212:117;12353:78;12423:7;12414:6;12403:9;12399:22;12353:78;:::i;:::-;12343:88;;12138:303;12508:2;12497:9;12493:18;12480:32;12539:18;12531:6;12528:30;12525:117;;;12561:79;;:::i;:::-;12525:117;12666:78;12736:7;12727:6;12716:9;12712:22;12666:78;:::i;:::-;12656:88;;12451:303;12821:3;12810:9;12806:19;12793:33;12853:18;12845:6;12842:30;12839:117;;;12875:79;;:::i;:::-;12839:117;12980:62;13034:7;13025:6;13014:9;13010:22;12980:62;:::i;:::-;12970:72;;12764:288;11550:1509;;;;;;;;:::o;13065:311::-;13142:4;13232:18;13224:6;13221:30;13218:56;;;13254:18;;:::i;:::-;13218:56;13304:4;13296:6;13292:17;13284:25;;13364:4;13358;13354:15;13346:23;;13065:311;;;:::o;13399:710::-;13495:5;13520:81;13536:64;13593:6;13536:64;:::i;:::-;13520:81;:::i;:::-;13511:90;;13621:5;13650:6;13643:5;13636:21;13684:4;13677:5;13673:16;13666:23;;13737:4;13729:6;13725:17;13717:6;13713:30;13766:3;13758:6;13755:15;13752:122;;;13785:79;;:::i;:::-;13752:122;13900:6;13883:220;13917:6;13912:3;13909:15;13883:220;;;13992:3;14021:37;14054:3;14042:10;14021:37;:::i;:::-;14016:3;14009:50;14088:4;14083:3;14079:14;14072:21;;13959:144;13943:4;13938:3;13934:14;13927:21;;13883:220;;;13887:21;13501:608;;13399:710;;;;;:::o;14132:370::-;14203:5;14252:3;14245:4;14237:6;14233:17;14229:27;14219:122;;14260:79;;:::i;:::-;14219:122;14377:6;14364:20;14402:94;14492:3;14484:6;14477:4;14469:6;14465:17;14402:94;:::i;:::-;14393:103;;14209:293;14132:370;;;;:::o;14508:894::-;14626:6;14634;14683:2;14671:9;14662:7;14658:23;14654:32;14651:119;;;14689:79;;:::i;:::-;14651:119;14837:1;14826:9;14822:17;14809:31;14867:18;14859:6;14856:30;14853:117;;;14889:79;;:::i;:::-;14853:117;14994:78;15064:7;15055:6;15044:9;15040:22;14994:78;:::i;:::-;14984:88;;14780:302;15149:2;15138:9;15134:18;15121:32;15180:18;15172:6;15169:30;15166:117;;;15202:79;;:::i;:::-;15166:117;15307:78;15377:7;15368:6;15357:9;15353:22;15307:78;:::i;:::-;15297:88;;15092:303;14508:894;;;;;:::o;15408:114::-;15475:6;15509:5;15503:12;15493:22;;15408:114;;;:::o;15528:184::-;15627:11;15661:6;15656:3;15649:19;15701:4;15696:3;15692:14;15677:29;;15528:184;;;;:::o;15718:132::-;15785:4;15808:3;15800:11;;15838:4;15833:3;15829:14;15821:22;;15718:132;;;:::o;15856:108::-;15933:24;15951:5;15933:24;:::i;:::-;15928:3;15921:37;15856:108;;:::o;15970:179::-;16039:10;16060:46;16102:3;16094:6;16060:46;:::i;:::-;16138:4;16133:3;16129:14;16115:28;;15970:179;;;;:::o;16155:113::-;16225:4;16257;16252:3;16248:14;16240:22;;16155:113;;;:::o;16304:732::-;16423:3;16452:54;16500:5;16452:54;:::i;:::-;16522:86;16601:6;16596:3;16522:86;:::i;:::-;16515:93;;16632:56;16682:5;16632:56;:::i;:::-;16711:7;16742:1;16727:284;16752:6;16749:1;16746:13;16727:284;;;16828:6;16822:13;16855:63;16914:3;16899:13;16855:63;:::i;:::-;16848:70;;16941:60;16994:6;16941:60;:::i;:::-;16931:70;;16787:224;16774:1;16771;16767:9;16762:14;;16727:284;;;16731:14;17027:3;17020:10;;16428:608;;;16304:732;;;;:::o;17042:373::-;17185:4;17223:2;17212:9;17208:18;17200:26;;17272:9;17266:4;17262:20;17258:1;17247:9;17243:17;17236:47;17300:108;17403:4;17394:6;17300:108;:::i;:::-;17292:116;;17042:373;;;;:::o;17421:943::-;17516:6;17524;17532;17540;17589:3;17577:9;17568:7;17564:23;17560:33;17557:120;;;17596:79;;:::i;:::-;17557:120;17716:1;17741:53;17786:7;17777:6;17766:9;17762:22;17741:53;:::i;:::-;17731:63;;17687:117;17843:2;17869:53;17914:7;17905:6;17894:9;17890:22;17869:53;:::i;:::-;17859:63;;17814:118;17971:2;17997:53;18042:7;18033:6;18022:9;18018:22;17997:53;:::i;:::-;17987:63;;17942:118;18127:2;18116:9;18112:18;18099:32;18158:18;18150:6;18147:30;18144:117;;;18180:79;;:::i;:::-;18144:117;18285:62;18339:7;18330:6;18319:9;18315:22;18285:62;:::i;:::-;18275:72;;18070:287;17421:943;;;;;;;:::o;18370:118::-;18457:24;18475:5;18457:24;:::i;:::-;18452:3;18445:37;18370:118;;:::o;18494:222::-;18587:4;18625:2;18614:9;18610:18;18602:26;;18638:71;18706:1;18695:9;18691:17;18682:6;18638:71;:::i;:::-;18494:222;;;;:::o;18722:116::-;18792:21;18807:5;18792:21;:::i;:::-;18785:5;18782:32;18772:60;;18828:1;18825;18818:12;18772:60;18722:116;:::o;18844:133::-;18887:5;18925:6;18912:20;18903:29;;18941:30;18965:5;18941:30;:::i;:::-;18844:133;;;;:::o;18983:468::-;19048:6;19056;19105:2;19093:9;19084:7;19080:23;19076:32;19073:119;;;19111:79;;:::i;:::-;19073:119;19231:1;19256:53;19301:7;19292:6;19281:9;19277:22;19256:53;:::i;:::-;19246:63;;19202:117;19358:2;19384:50;19426:7;19417:6;19406:9;19402:22;19384:50;:::i;:::-;19374:60;;19329:115;18983:468;;;;;:::o;19457:474::-;19525:6;19533;19582:2;19570:9;19561:7;19557:23;19553:32;19550:119;;;19588:79;;:::i;:::-;19550:119;19708:1;19733:53;19778:7;19769:6;19758:9;19754:22;19733:53;:::i;:::-;19723:63;;19679:117;19835:2;19861:53;19906:7;19897:6;19886:9;19882:22;19861:53;:::i;:::-;19851:63;;19806:118;19457:474;;;;;:::o;19937:1089::-;20041:6;20049;20057;20065;20073;20122:3;20110:9;20101:7;20097:23;20093:33;20090:120;;;20129:79;;:::i;:::-;20090:120;20249:1;20274:53;20319:7;20310:6;20299:9;20295:22;20274:53;:::i;:::-;20264:63;;20220:117;20376:2;20402:53;20447:7;20438:6;20427:9;20423:22;20402:53;:::i;:::-;20392:63;;20347:118;20504:2;20530:53;20575:7;20566:6;20555:9;20551:22;20530:53;:::i;:::-;20520:63;;20475:118;20632:2;20658:53;20703:7;20694:6;20683:9;20679:22;20658:53;:::i;:::-;20648:63;;20603:118;20788:3;20777:9;20773:19;20760:33;20820:18;20812:6;20809:30;20806:117;;;20842:79;;:::i;:::-;20806:117;20947:62;21001:7;20992:6;20981:9;20977:22;20947:62;:::i;:::-;20937:72;;20731:288;19937:1089;;;;;;;;:::o;21032:329::-;21091:6;21140:2;21128:9;21119:7;21115:23;21111:32;21108:119;;;21146:79;;:::i;:::-;21108:119;21266:1;21291:53;21336:7;21327:6;21316:9;21312:22;21291:53;:::i;:::-;21281:63;;21237:117;21032:329;;;;:::o;21367:229::-;21507:34;21503:1;21495:6;21491:14;21484:58;21576:12;21571:2;21563:6;21559:15;21552:37;21367:229;:::o;21602:366::-;21744:3;21765:67;21829:2;21824:3;21765:67;:::i;:::-;21758:74;;21841:93;21930:3;21841:93;:::i;:::-;21959:2;21954:3;21950:12;21943:19;;21602:366;;;:::o;21974:419::-;22140:4;22178:2;22167:9;22163:18;22155:26;;22227:9;22221:4;22217:20;22213:1;22202:9;22198:17;22191:47;22255:131;22381:4;22255:131;:::i;:::-;22247:139;;21974:419;;;:::o;22399:180::-;22447:77;22444:1;22437:88;22544:4;22541:1;22534:15;22568:4;22565:1;22558:15;22585:320;22629:6;22666:1;22660:4;22656:12;22646:22;;22713:1;22707:4;22703:12;22734:18;22724:81;;22790:4;22782:6;22778:17;22768:27;;22724:81;22852:2;22844:6;22841:14;22821:18;22818:38;22815:84;;22871:18;;:::i;:::-;22815:84;22636:269;22585:320;;;:::o;22911:233::-;23051:34;23047:1;23039:6;23035:14;23028:58;23120:16;23115:2;23107:6;23103:15;23096:41;22911:233;:::o;23150:366::-;23292:3;23313:67;23377:2;23372:3;23313:67;:::i;:::-;23306:74;;23389:93;23478:3;23389:93;:::i;:::-;23507:2;23502:3;23498:12;23491:19;;23150:366;;;:::o;23522:419::-;23688:4;23726:2;23715:9;23711:18;23703:26;;23775:9;23769:4;23765:20;23761:1;23750:9;23746:17;23739:47;23803:131;23929:4;23803:131;:::i;:::-;23795:139;;23522:419;;;:::o;23947:228::-;24087:34;24083:1;24075:6;24071:14;24064:58;24156:11;24151:2;24143:6;24139:15;24132:36;23947:228;:::o;24181:366::-;24323:3;24344:67;24408:2;24403:3;24344:67;:::i;:::-;24337:74;;24420:93;24509:3;24420:93;:::i;:::-;24538:2;24533:3;24529:12;24522:19;;24181:366;;;:::o;24553:419::-;24719:4;24757:2;24746:9;24742:18;24734:26;;24806:9;24800:4;24796:20;24792:1;24781:9;24777:17;24770:47;24834:131;24960:4;24834:131;:::i;:::-;24826:139;;24553:419;;;:::o;24978:180::-;25026:77;25023:1;25016:88;25123:4;25120:1;25113:15;25147:4;25144:1;25137:15;25164:180;25212:77;25209:1;25202:88;25309:4;25306:1;25299:15;25333:4;25330:1;25323:15;25350:233;25389:3;25412:24;25430:5;25412:24;:::i;:::-;25403:33;;25458:66;25451:5;25448:77;25445:103;;25528:18;;:::i;:::-;25445:103;25575:1;25568:5;25564:13;25557:20;;25350:233;;;:::o;25589:225::-;25729:34;25725:1;25717:6;25713:14;25706:58;25798:8;25793:2;25785:6;25781:15;25774:33;25589:225;:::o;25820:366::-;25962:3;25983:67;26047:2;26042:3;25983:67;:::i;:::-;25976:74;;26059:93;26148:3;26059:93;:::i;:::-;26177:2;26172:3;26168:12;26161:19;;25820:366;;;:::o;26192:419::-;26358:4;26396:2;26385:9;26381:18;26373:26;;26445:9;26439:4;26435:20;26431:1;26420:9;26416:17;26409:47;26473:131;26599:4;26473:131;:::i;:::-;26465:139;;26192:419;;;:::o;26617:182::-;26757:34;26753:1;26745:6;26741:14;26734:58;26617:182;:::o;26805:366::-;26947:3;26968:67;27032:2;27027:3;26968:67;:::i;:::-;26961:74;;27044:93;27133:3;27044:93;:::i;:::-;27162:2;27157:3;27153:12;27146:19;;26805:366;;;:::o;27177:419::-;27343:4;27381:2;27370:9;27366:18;27358:26;;27430:9;27424:4;27420:20;27416:1;27405:9;27401:17;27394:47;27458:131;27584:4;27458:131;:::i;:::-;27450:139;;27177:419;;;:::o;27602:141::-;27651:4;27674:3;27666:11;;27697:3;27694:1;27687:14;27731:4;27728:1;27718:18;27710:26;;27602:141;;;:::o;27749:93::-;27786:6;27833:2;27828;27821:5;27817:14;27813:23;27803:33;;27749:93;;;:::o;27848:107::-;27892:8;27942:5;27936:4;27932:16;27911:37;;27848:107;;;;:::o;27961:393::-;28030:6;28080:1;28068:10;28064:18;28103:97;28133:66;28122:9;28103:97;:::i;:::-;28221:39;28251:8;28240:9;28221:39;:::i;:::-;28209:51;;28293:4;28289:9;28282:5;28278:21;28269:30;;28342:4;28332:8;28328:19;28321:5;28318:30;28308:40;;28037:317;;27961:393;;;;;:::o;28360:60::-;28388:3;28409:5;28402:12;;28360:60;;;:::o;28426:142::-;28476:9;28509:53;28527:34;28536:24;28554:5;28536:24;:::i;:::-;28527:34;:::i;:::-;28509:53;:::i;:::-;28496:66;;28426:142;;;:::o;28574:75::-;28617:3;28638:5;28631:12;;28574:75;;;:::o;28655:269::-;28765:39;28796:7;28765:39;:::i;:::-;28826:91;28875:41;28899:16;28875:41;:::i;:::-;28867:6;28860:4;28854:11;28826:91;:::i;:::-;28820:4;28813:105;28731:193;28655:269;;;:::o;28930:73::-;28975:3;28930:73;:::o;29009:189::-;29086:32;;:::i;:::-;29127:65;29185:6;29177;29171:4;29127:65;:::i;:::-;29062:136;29009:189;;:::o;29204:186::-;29264:120;29281:3;29274:5;29271:14;29264:120;;;29335:39;29372:1;29365:5;29335:39;:::i;:::-;29308:1;29301:5;29297:13;29288:22;;29264:120;;;29204:186;;:::o;29396:543::-;29497:2;29492:3;29489:11;29486:446;;;29531:38;29563:5;29531:38;:::i;:::-;29615:29;29633:10;29615:29;:::i;:::-;29605:8;29601:44;29798:2;29786:10;29783:18;29780:49;;;29819:8;29804:23;;29780:49;29842:80;29898:22;29916:3;29898:22;:::i;:::-;29888:8;29884:37;29871:11;29842:80;:::i;:::-;29501:431;;29486:446;29396:543;;;:::o;29945:117::-;29999:8;30049:5;30043:4;30039:16;30018:37;;29945:117;;;;:::o;30068:169::-;30112:6;30145:51;30193:1;30189:6;30181:5;30178:1;30174:13;30145:51;:::i;:::-;30141:56;30226:4;30220;30216:15;30206:25;;30119:118;30068:169;;;;:::o;30242:295::-;30318:4;30464:29;30489:3;30483:4;30464:29;:::i;:::-;30456:37;;30526:3;30523:1;30519:11;30513:4;30510:21;30502:29;;30242:295;;;;:::o;30542:1395::-;30659:37;30692:3;30659:37;:::i;:::-;30761:18;30753:6;30750:30;30747:56;;;30783:18;;:::i;:::-;30747:56;30827:38;30859:4;30853:11;30827:38;:::i;:::-;30912:67;30972:6;30964;30958:4;30912:67;:::i;:::-;31006:1;31030:4;31017:17;;31062:2;31054:6;31051:14;31079:1;31074:618;;;;31736:1;31753:6;31750:77;;;31802:9;31797:3;31793:19;31787:26;31778:35;;31750:77;31853:67;31913:6;31906:5;31853:67;:::i;:::-;31847:4;31840:81;31709:222;31044:887;;31074:618;31126:4;31122:9;31114:6;31110:22;31160:37;31192:4;31160:37;:::i;:::-;31219:1;31233:208;31247:7;31244:1;31241:14;31233:208;;;31326:9;31321:3;31317:19;31311:26;31303:6;31296:42;31377:1;31369:6;31365:14;31355:24;;31424:2;31413:9;31409:18;31396:31;;31270:4;31267:1;31263:12;31258:17;;31233:208;;;31469:6;31460:7;31457:19;31454:179;;;31527:9;31522:3;31518:19;31512:26;31570:48;31612:4;31604:6;31600:17;31589:9;31570:48;:::i;:::-;31562:6;31555:64;31477:156;31454:179;31679:1;31675;31667:6;31663:14;31659:22;31653:4;31646:36;31081:611;;;31044:887;;30634:1303;;;30542:1395;;:::o;31943:220::-;32083:34;32079:1;32071:6;32067:14;32060:58;32152:3;32147:2;32139:6;32135:15;32128:28;31943:220;:::o;32169:366::-;32311:3;32332:67;32396:2;32391:3;32332:67;:::i;:::-;32325:74;;32408:93;32497:3;32408:93;:::i;:::-;32526:2;32521:3;32517:12;32510:19;;32169:366;;;:::o;32541:419::-;32707:4;32745:2;32734:9;32730:18;32722:26;;32794:9;32788:4;32784:20;32780:1;32769:9;32765:17;32758:47;32822:131;32948:4;32822:131;:::i;:::-;32814:139;;32541:419;;;:::o;32966:227::-;33106:34;33102:1;33094:6;33090:14;33083:58;33175:10;33170:2;33162:6;33158:15;33151:35;32966:227;:::o;33199:366::-;33341:3;33362:67;33426:2;33421:3;33362:67;:::i;:::-;33355:74;;33438:93;33527:3;33438:93;:::i;:::-;33556:2;33551:3;33547:12;33540:19;;33199:366;;;:::o;33571:419::-;33737:4;33775:2;33764:9;33760:18;33752:26;;33824:9;33818:4;33814:20;33810:1;33799:9;33795:17;33788:47;33852:131;33978:4;33852:131;:::i;:::-;33844:139;;33571:419;;;:::o;33996:191::-;34036:3;34055:20;34073:1;34055:20;:::i;:::-;34050:25;;34089:20;34107:1;34089:20;:::i;:::-;34084:25;;34132:1;34129;34125:9;34118:16;;34153:3;34150:1;34147:10;34144:36;;;34160:18;;:::i;:::-;34144:36;33996:191;;;;:::o;34193:634::-;34414:4;34452:2;34441:9;34437:18;34429:26;;34501:9;34495:4;34491:20;34487:1;34476:9;34472:17;34465:47;34529:108;34632:4;34623:6;34529:108;:::i;:::-;34521:116;;34684:9;34678:4;34674:20;34669:2;34658:9;34654:18;34647:48;34712:108;34815:4;34806:6;34712:108;:::i;:::-;34704:116;;34193:634;;;;;:::o;34833:224::-;34973:34;34969:1;34961:6;34957:14;34950:58;35042:7;35037:2;35029:6;35025:15;35018:32;34833:224;:::o;35063:366::-;35205:3;35226:67;35290:2;35285:3;35226:67;:::i;:::-;35219:74;;35302:93;35391:3;35302:93;:::i;:::-;35420:2;35415:3;35411:12;35404:19;;35063:366;;;:::o;35435:419::-;35601:4;35639:2;35628:9;35624:18;35616:26;;35688:9;35682:4;35678:20;35674:1;35663:9;35659:17;35652:47;35716:131;35842:4;35716:131;:::i;:::-;35708:139;;35435:419;;;:::o;35860:229::-;36000:34;35996:1;35988:6;35984:14;35977:58;36069:12;36064:2;36056:6;36052:15;36045:37;35860:229;:::o;36095:366::-;36237:3;36258:67;36322:2;36317:3;36258:67;:::i;:::-;36251:74;;36334:93;36423:3;36334:93;:::i;:::-;36452:2;36447:3;36443:12;36436:19;;36095:366;;;:::o;36467:419::-;36633:4;36671:2;36660:9;36656:18;36648:26;;36720:9;36714:4;36710:20;36706:1;36695:9;36691:17;36684:47;36748:131;36874:4;36748:131;:::i;:::-;36740:139;;36467:419;;;:::o;36892:332::-;37013:4;37051:2;37040:9;37036:18;37028:26;;37064:71;37132:1;37121:9;37117:17;37108:6;37064:71;:::i;:::-;37145:72;37213:2;37202:9;37198:18;37189:6;37145:72;:::i;:::-;36892:332;;;;;:::o;37230:228::-;37370:34;37366:1;37358:6;37354:14;37347:58;37439:11;37434:2;37426:6;37422:15;37415:36;37230:228;:::o;37464:366::-;37606:3;37627:67;37691:2;37686:3;37627:67;:::i;:::-;37620:74;;37703:93;37792:3;37703:93;:::i;:::-;37821:2;37816:3;37812:12;37805:19;;37464:366;;;:::o;37836:419::-;38002:4;38040:2;38029:9;38025:18;38017:26;;38089:9;38083:4;38079:20;38075:1;38064:9;38060:17;38053:47;38117:131;38243:4;38117:131;:::i;:::-;38109:139;;37836:419;;;:::o;38261:98::-;38312:6;38346:5;38340:12;38330:22;;38261:98;;;:::o;38365:168::-;38448:11;38482:6;38477:3;38470:19;38522:4;38517:3;38513:14;38498:29;;38365:168;;;;:::o;38539:373::-;38625:3;38653:38;38685:5;38653:38;:::i;:::-;38707:70;38770:6;38765:3;38707:70;:::i;:::-;38700:77;;38786:65;38844:6;38839:3;38832:4;38825:5;38821:16;38786:65;:::i;:::-;38876:29;38898:6;38876:29;:::i;:::-;38871:3;38867:39;38860:46;;38629:283;38539:373;;;;:::o;38918:1053::-;39241:4;39279:3;39268:9;39264:19;39256:27;;39293:71;39361:1;39350:9;39346:17;39337:6;39293:71;:::i;:::-;39374:72;39442:2;39431:9;39427:18;39418:6;39374:72;:::i;:::-;39493:9;39487:4;39483:20;39478:2;39467:9;39463:18;39456:48;39521:108;39624:4;39615:6;39521:108;:::i;:::-;39513:116;;39676:9;39670:4;39666:20;39661:2;39650:9;39646:18;39639:48;39704:108;39807:4;39798:6;39704:108;:::i;:::-;39696:116;;39860:9;39854:4;39850:20;39844:3;39833:9;39829:19;39822:49;39888:76;39959:4;39950:6;39888:76;:::i;:::-;39880:84;;38918:1053;;;;;;;;:::o;39977:141::-;40033:5;40064:6;40058:13;40049:22;;40080:32;40106:5;40080:32;:::i;:::-;39977:141;;;;:::o;40124:349::-;40193:6;40242:2;40230:9;40221:7;40217:23;40213:32;40210:119;;;40248:79;;:::i;:::-;40210:119;40368:1;40393:63;40448:7;40439:6;40428:9;40424:22;40393:63;:::i;:::-;40383:73;;40339:127;40124:349;;;;:::o;40479:106::-;40523:8;40572:5;40567:3;40563:15;40542:36;;40479:106;;;:::o;40591:183::-;40626:3;40664:1;40646:16;40643:23;40640:128;;;40702:1;40699;40696;40681:23;40724:34;40755:1;40749:8;40724:34;:::i;:::-;40717:41;;40640:128;40591:183;:::o;40780:711::-;40819:3;40857:4;40839:16;40836:26;40865:5;40833:39;40894:20;;:::i;:::-;40969:1;40951:16;40947:24;40944:1;40938:4;40923:49;41002:4;40996:11;41101:16;41094:4;41086:6;41082:17;41079:39;41046:18;41038:6;41035:30;41019:113;41016:146;;;41147:5;;;;41016:146;41193:6;41187:4;41183:17;41229:3;41223:10;41256:18;41248:6;41245:30;41242:43;;;41278:5;;;;;;41242:43;41326:6;41319:4;41314:3;41310:14;41306:27;41385:1;41367:16;41363:24;41357:4;41353:35;41348:3;41345:44;41342:57;;;41392:5;;;;;;;41342:57;41409;41457:6;41451:4;41447:17;41439:6;41435:30;41429:4;41409:57;:::i;:::-;41482:3;41475:10;;40823:668;;;;;40780:711;;:::o;41497:239::-;41637:34;41633:1;41625:6;41621:14;41614:58;41706:22;41701:2;41693:6;41689:15;41682:47;41497:239;:::o;41742:366::-;41884:3;41905:67;41969:2;41964:3;41905:67;:::i;:::-;41898:74;;41981:93;42070:3;41981:93;:::i;:::-;42099:2;42094:3;42090:12;42083:19;;41742:366;;;:::o;42114:419::-;42280:4;42318:2;42307:9;42303:18;42295:26;;42367:9;42361:4;42357:20;42353:1;42342:9;42338:17;42331:47;42395:131;42521:4;42395:131;:::i;:::-;42387:139;;42114:419;;;:::o;42539:227::-;42679:34;42675:1;42667:6;42663:14;42656:58;42748:10;42743:2;42735:6;42731:15;42724:35;42539:227;:::o;42772:366::-;42914:3;42935:67;42999:2;42994:3;42935:67;:::i;:::-;42928:74;;43011:93;43100:3;43011:93;:::i;:::-;43129:2;43124:3;43120:12;43113:19;;42772:366;;;:::o;43144:419::-;43310:4;43348:2;43337:9;43333:18;43325:26;;43397:9;43391:4;43387:20;43383:1;43372:9;43368:17;43361:47;43425:131;43551:4;43425:131;:::i;:::-;43417:139;;43144:419;;;:::o;43569:751::-;43792:4;43830:3;43819:9;43815:19;43807:27;;43844:71;43912:1;43901:9;43897:17;43888:6;43844:71;:::i;:::-;43925:72;43993:2;43982:9;43978:18;43969:6;43925:72;:::i;:::-;44007;44075:2;44064:9;44060:18;44051:6;44007:72;:::i;:::-;44089;44157:2;44146:9;44142:18;44133:6;44089:72;:::i;:::-;44209:9;44203:4;44199:20;44193:3;44182:9;44178:19;44171:49;44237:76;44308:4;44299:6;44237:76;:::i;:::-;44229:84;;43569:751;;;;;;;;:::o

Swarm Source

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