ETH Price: $3,217.36 (+4.11%)

Token

 

Overview

Max Total Supply

199

Holders

198

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
brivers.eth
0xb22fffa5b646cd9014cba5e2fde157817efa4536
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:
MB1155

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-24
*/

// 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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                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 v4.4.1 (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 be 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 v4.4.1 (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: balance query for the zero address");
        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 owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), 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);

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

        _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();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

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

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * 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);

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

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * 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();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * 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);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {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 `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 _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

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

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

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

        return array;
    }
}

// File: @openzeppelin/[email protected]/token/ERC1155/extensions/ERC1155Burnable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

// File: test.sol



pragma solidity ^0.8.0;



contract MB1155 is ERC1155Burnable, Ownable {
    // whether minting by owner is allowed
    bool public manualMintAllowed = true;
    // individual uri per type
    mapping (uint256 => string) public typeToUri;
    // whether main uri is freezed
    bool public isUriFreezed;
    // whether each individual uri is freezed
    mapping (uint256 => bool) public typeIsUriFreezed;
    // total supply tracker per type
    mapping (uint256 => uint256) public totalSupply;
    // supply limit per type Id
    mapping(uint256 => uint256) public typeSupplyLimit;
    // price per type Id
    mapping(uint256 => uint256) public typePrice;
    // limit per tx per type Id
    mapping(uint256 => uint256) public typeLimitPerTx;
    // addresses auto-approved by owner
    mapping (address => bool) public isAutoApproved;

    // triggered when mint settings are set for a specific type
    event SetMintSettings(uint256 indexed typeId);
    // triggered when an address is set for auto-approve
    event SetAutoApproved(address indexed addr);

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory _uri)
        ERC1155(_uri)
    {}
    
    /**
     * @dev Lock further manual minting by owner
     */
    function disableManualMint() public onlyOwner {
        manualMintAllowed = false;
    }

    /**
     * @dev Set auto-approved address
     */
    function setAutoApproved(address addr, bool value) public onlyOwner {
        isAutoApproved[addr] = value;
        emit SetAutoApproved(addr);
    }
            
    /**
     * @dev Airdrop tokens to owners
     */
    function mintOwner(address[] calldata owners, uint256[] calldata types, uint256[] calldata counts) public onlyOwner {
      require(manualMintAllowed, "Not allowed");
      require(owners.length == types.length && types.length == counts.length, "Bad array lengths");
         
      for (uint256 i = 0; i < owners.length; i++) {
        _mint(owners[i], types[i], counts[i], "");
      }
    }

    /**
     * @dev Airdrop single tokens to owners
     */
    function mintOwnerOneToken(address[] calldata owners, uint256 typeId) public onlyOwner {
      require(manualMintAllowed, "Not allowed");
         
      for (uint256 i = 0; i < owners.length; i++) {
        _mint(owners[i], typeId, 1, "");
      }
    }

    /**
     * @dev Set mint settings for type
     */
    function setMintSettings(uint256 typeId, uint256 supplyLimit, uint256 price, uint256 limitPerTx) public onlyOwner {
        typeSupplyLimit[typeId] = supplyLimit;
        typePrice[typeId] = price;
        typeLimitPerTx[typeId] = limitPerTx;

        emit SetMintSettings(typeId);
    }

    /**
     * @dev Set mint settings for multiple types
     */
    function setMintSettingsArray(uint256[] calldata typeIds, uint256[] calldata supplyLimits, uint256[] calldata prices, uint256[] calldata limitsPerTx) public onlyOwner {
        for (uint256 i=0; i<typeIds.length; i++) {
            typeSupplyLimit[typeIds[i]] = supplyLimits[i];
            typePrice[typeIds[i]] = prices[i];
            typeLimitPerTx[typeIds[i]] = limitsPerTx[i];

            emit SetMintSettings(typeIds[i]);
        }
    }

    /**
     * @dev Public mint
     */
    function mintPublic(uint256 typeId, uint256 amount) public payable {
        require(msg.value == amount*typePrice[typeId], "Wrong ETH value");
        require(amount <= typeLimitPerTx[typeId], "Per tx limit exceeded");
        require(amount > 0, "Can't mint 0");
        require(totalSupply[typeId] + amount <= typeSupplyLimit[typeId], "Supply exceeded");

        totalSupply[typeId] += amount;
        _mint(msg.sender, typeId, amount, "");
    }

    /**
     * @dev Type uri
     */
    function uri(uint256 typeId) public view override returns (string memory) {
        string memory typeUri = typeToUri[typeId];
        if (bytes(typeUri).length == 0) {
            return super.uri(typeId);
        } else {
            return typeUri;
        }
    }
   
    /**
     * @dev Updates the metadata URI
     */
    function updateUri(string calldata newUri) public onlyOwner {
        require(!isUriFreezed, "Freezed");
        _setURI(newUri);
    }

    /**
     * @dev Freezes the metadata URI
     */
    function freezeUri() public onlyOwner {
        isUriFreezed = true;
    }

    /**
     * @dev Updates and freezes the metadata URI
     */
    function permanentSetUri(string calldata newUri) public onlyOwner {
        updateUri(newUri);
        freezeUri();
    }

    /**
     * @dev Updates the metadata URI for a specific type
     */
    function updateUriForType(string calldata newUri, uint256 typeId) public onlyOwner {
        require(!typeIsUriFreezed[typeId], "Freezed");
        typeToUri[typeId] = newUri;
    }

    /**
     * @dev Freezes the metadata URI
     */
    function freezeUriForType(uint256 typeId) public onlyOwner {
        typeIsUriFreezed[typeId] = true;
    }

    /**
     * @dev Updates and freezes the metadata URI
     */
    function permanentSetUriForType(string calldata newUri, uint256 typeId) public onlyOwner {
        updateUriForType(newUri, typeId);
        freezeUriForType(typeId);
    }

    /**
     * @dev isApprovedForAll override
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return isAutoApproved[operator] || super.isApprovedForAll(account, operator);
    }

    /**
     * @dev Withdraw ether from this contract (Callable by owner)
     */
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"SetAutoApproved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"SetMintSettings","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":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableManualMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"freezeUriForType","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"isAutoApproved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isUriFreezed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualMintAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint256[]","name":"types","type":"uint256[]"},{"internalType":"uint256[]","name":"counts","type":"uint256[]"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"mintOwnerOneToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"permanentSetUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"},{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"permanentSetUriForType","outputs":[],"stateMutability":"nonpayable","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":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutoApproved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"},{"internalType":"uint256","name":"supplyLimit","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"limitPerTx","type":"uint256"}],"name":"setMintSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"typeIds","type":"uint256[]"},{"internalType":"uint256[]","name":"supplyLimits","type":"uint256[]"},{"internalType":"uint256[]","name":"prices","type":"uint256[]"},{"internalType":"uint256[]","name":"limitsPerTx","type":"uint256[]"}],"name":"setMintSettingsArray","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":"uint256","name":"","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typeIsUriFreezed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typeLimitPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typeSupplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typeToUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"updateUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"},{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"updateUriForType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600360146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162005890380380620058908339818101604052810190620000529190620003c3565b8062000064816200008c60201b60201c565b506200008562000079620000a860201b60201c565b620000b060201b60201c565b5062000478565b8060029080519060200190620000a492919062000176565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001849062000443565b90600052602060002090601f016020900481019282620001a85760008555620001f4565b82601f10620001c357805160ff1916838001178555620001f4565b82800160010185558215620001f4579182015b82811115620001f3578251825591602001919060010190620001d6565b5b50905062000203919062000207565b5090565b5b808211156200022257600081600090555060010162000208565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200028f8262000244565b810181811067ffffffffffffffff82111715620002b157620002b062000255565b5b80604052505050565b6000620002c662000226565b9050620002d4828262000284565b919050565b600067ffffffffffffffff821115620002f757620002f662000255565b5b620003028262000244565b9050602081019050919050565b60005b838110156200032f57808201518184015260208101905062000312565b838111156200033f576000848401525b50505050565b60006200035c6200035684620002d9565b620002ba565b9050828152602081018484840111156200037b576200037a6200023f565b5b620003888482856200030f565b509392505050565b600082601f830112620003a857620003a76200023a565b5b8151620003ba84826020860162000345565b91505092915050565b600060208284031215620003dc57620003db62000230565b5b600082015167ffffffffffffffff811115620003fd57620003fc62000235565b5b6200040b8482850162000390565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045c57607f821691505b60208210810362000472576200047162000414565b5b50919050565b61540880620004886000396000f3fe60806040526004361061020e5760003560e01c80635fffdfaf11610118578063abff7f6e116100a0578063e985e9c51161006f578063e985e9c5146107a4578063ed5ab3f6146107e1578063f242432a146107fd578063f2fde38b14610826578063f5298aca1461084f5761020e565b8063abff7f6e146106ec578063bd85b03914610715578063c30f3bb114610752578063c75e25e11461077b5761020e565b80638da5cb5b116100e75780638da5cb5b1461061b578063943c19aa1461064657806395d34d9e1461066f578063a22cb46514610698578063ab05ff41146106c15761020e565b80635fffdfaf146105615780636b20c4541461059e5780636c3839e9146105c7578063715018a6146106045761020e565b806326bb1cf71161019b5780633199da021161016a5780633199da021461046a5780633ccfd60b146104a75780634e1273f4146104be5780634e5bcfab146104fb578063570b3c6a146105385761020e565b806326bb1cf7146103c45780632768d709146103ed5780632be9279d146104165780632eb2c2d6146104415761020e565b80630e89341c116101e25780630e89341c146102cd5780630f52b76e1461030a57806314106f86146103215780632094aacc1461034a578063267f8640146103875761020e565b8062fdd58e1461021357806301ffc9a714610250578063086cb7851461028d57806308b58c1d146102a4575b600080fd5b34801561021f57600080fd5b5061023a60048036038101906102359190613684565b610878565b60405161024791906136d3565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613746565b610940565b604051610284919061378e565b60405180910390f35b34801561029957600080fd5b506102a2610a22565b005b3480156102b057600080fd5b506102cb60048036038101906102c6919061380e565b610abb565b005b3480156102d957600080fd5b506102f460048036038101906102ef919061386e565b610b50565b6040516103019190613934565b60405180910390f35b34801561031657600080fd5b5061031f610c16565b005b34801561032d57600080fd5b5061034860048036038101906103439190613956565b610caf565b005b34801561035657600080fd5b50610371600480360381019061036c919061386e565b610da6565b60405161037e9190613934565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a9919061386e565b610e46565b6040516103bb919061378e565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906139e9565b610e66565b005b3480156103f957600080fd5b50610414600480360381019061040f9190613ad5565b610f80565b005b34801561042257600080fd5b5061042b611142565b604051610438919061378e565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613d7c565b611155565b005b34801561047657600080fd5b50610491600480360381019061048c9190613e4b565b6111f6565b60405161049e919061378e565b60405180910390f35b3480156104b357600080fd5b506104bc611216565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190613f3b565b6112e1565b6040516104f29190614071565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d919061386e565b6113fa565b60405161052f91906136d3565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a9190614093565b611412565b005b34801561056d57600080fd5b506105886004803603810190610583919061386e565b61152f565b60405161059591906136d3565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c091906140e0565b611547565b005b3480156105d357600080fd5b506105ee60048036038101906105e9919061386e565b6115e4565b6040516105fb91906136d3565b60405180910390f35b34801561061057600080fd5b506106196115fc565b005b34801561062757600080fd5b50610630611684565b60405161063d919061417a565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190614195565b6116ae565b005b34801561067b57600080fd5b506106966004803603810190610691919061380e565b61187a565b005b3480156106a457600080fd5b506106bf60048036038101906106ba91906139e9565b61197f565b005b3480156106cd57600080fd5b506106d6611995565b6040516106e3919061378e565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e9190614093565b6119a8565b005b34801561072157600080fd5b5061073c6004803603810190610737919061386e565b611a3a565b60405161074991906136d3565b60405180910390f35b34801561075e57600080fd5b506107796004803603810190610774919061386e565b611a52565b005b34801561078757600080fd5b506107a2600480360381019061079d919061427e565b611afd565b005b3480156107b057600080fd5b506107cb60048036038101906107c691906142de565b611c32565b6040516107d8919061378e565b60405180910390f35b6107fb60048036038101906107f6919061431e565b611c9a565b005b34801561080957600080fd5b50610824600480360381019061081f919061435e565b611e50565b005b34801561083257600080fd5b5061084d60048036038101906108489190613e4b565b611ef1565b005b34801561085b57600080fd5b50610876600480360381019061087191906143f5565b611fe8565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df906144ba565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0b57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1b5750610a1a82612085565b5b9050919050565b610a2a6120ef565b73ffffffffffffffffffffffffffffffffffffffff16610a48611684565b73ffffffffffffffffffffffffffffffffffffffff1614610a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9590614526565b60405180910390fd5b6001600560006101000a81548160ff021916908315150217905550565b610ac36120ef565b73ffffffffffffffffffffffffffffffffffffffff16610ae1611684565b73ffffffffffffffffffffffffffffffffffffffff1614610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e90614526565b60405180910390fd5b610b4283838361187a565b610b4b81611a52565b505050565b60606000600460008481526020019081526020016000208054610b7290614575565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9e90614575565b8015610beb5780601f10610bc057610100808354040283529160200191610beb565b820191906000526020600020905b815481529060010190602001808311610bce57829003601f168201915b505050505090506000815103610c0c57610c04836120f7565b915050610c11565b809150505b919050565b610c1e6120ef565b73ffffffffffffffffffffffffffffffffffffffff16610c3c611684565b73ffffffffffffffffffffffffffffffffffffffff1614610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990614526565b60405180910390fd5b6000600360146101000a81548160ff021916908315150217905550565b610cb76120ef565b73ffffffffffffffffffffffffffffffffffffffff16610cd5611684565b73ffffffffffffffffffffffffffffffffffffffff1614610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290614526565b60405180910390fd5b82600860008681526020019081526020016000208190555081600960008681526020019081526020016000208190555080600a600086815260200190815260200160002081905550837f2dac1677998d38e33c4e28b59d542dafacf2c4137a2ff3a8d85b46545c7dd66e60405160405180910390a250505050565b60046020528060005260406000206000915090508054610dc590614575565b80601f0160208091040260200160405190810160405280929190818152602001828054610df190614575565b8015610e3e5780601f10610e1357610100808354040283529160200191610e3e565b820191906000526020600020905b815481529060010190602001808311610e2157829003601f168201915b505050505081565b60066020528060005260406000206000915054906101000a900460ff1681565b610e6e6120ef565b73ffffffffffffffffffffffffffffffffffffffff16610e8c611684565b73ffffffffffffffffffffffffffffffffffffffff1614610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990614526565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fe7e87d526025768dfbff568780e9eb516bfc7a7d59de38505d40c54b45a78e1060405160405180910390a25050565b610f886120ef565b73ffffffffffffffffffffffffffffffffffffffff16610fa6611684565b73ffffffffffffffffffffffffffffffffffffffff1614610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390614526565b60405180910390fd5b600360149054906101000a900460ff1661104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906145f2565b60405180910390fd5b838390508686905014801561106557508181905084849050145b6110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b9061465e565b60405180910390fd5b60005b86869050811015611139576111268787838181106110c8576110c761467e565b5b90506020020160208101906110dd9190613e4b565b8686848181106110f0576110ef61467e565b5b9050602002013585858581811061110a5761110961467e565b5b905060200201356040518060200160405280600081525061218b565b8080611131906146dc565b9150506110a7565b50505050505050565b600360149054906101000a900460ff1681565b61115d6120ef565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111a357506111a28561119d6120ef565b611c32565b5b6111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990614796565b60405180910390fd5b6111ef8585858585612320565b5050505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b61121e6120ef565b73ffffffffffffffffffffffffffffffffffffffff1661123c611684565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990614526565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112dd573d6000803e3d6000fd5b5050565b60608151835114611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e90614828565b60405180910390fd5b6000835167ffffffffffffffff81111561134457611343613b89565b5b6040519080825280602002602001820160405280156113725781602001602082028036833780820191505090505b50905060005b84518110156113ef576113bf8582815181106113975761139661467e565b5b60200260200101518583815181106113b2576113b161467e565b5b6020026020010151610878565b8282815181106113d2576113d161467e565b5b602002602001018181525050806113e8906146dc565b9050611378565b508091505092915050565b60096020528060005260406000206000915090505481565b61141a6120ef565b73ffffffffffffffffffffffffffffffffffffffff16611438611684565b73ffffffffffffffffffffffffffffffffffffffff161461148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590614526565b60405180910390fd5b600560009054906101000a900460ff16156114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590614894565b60405180910390fd5b61152b82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612633565b5050565b600a6020528060005260406000206000915090505481565b61154f6120ef565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061159557506115948361158f6120ef565b611c32565b5b6115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90614926565b60405180910390fd5b6115df83838361264d565b505050565b60086020528060005260406000206000915090505481565b6116046120ef565b73ffffffffffffffffffffffffffffffffffffffff16611622611684565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90614526565b60405180910390fd5b61168260006128fd565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116b66120ef565b73ffffffffffffffffffffffffffffffffffffffff166116d4611684565b73ffffffffffffffffffffffffffffffffffffffff161461172a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172190614526565b60405180910390fd5b60005b8888905081101561186f5786868281811061174b5761174a61467e565b5b90506020020135600860008b8b858181106117695761176861467e565b5b905060200201358152602001908152602001600020819055508484828181106117955761179461467e565b5b90506020020135600960008b8b858181106117b3576117b261467e565b5b905060200201358152602001908152602001600020819055508282828181106117df576117de61467e565b5b90506020020135600a60008b8b858181106117fd576117fc61467e565b5b905060200201358152602001908152602001600020819055508888828181106118295761182861467e565b5b905060200201357f2dac1677998d38e33c4e28b59d542dafacf2c4137a2ff3a8d85b46545c7dd66e60405160405180910390a28080611867906146dc565b91505061172d565b505050505050505050565b6118826120ef565b73ffffffffffffffffffffffffffffffffffffffff166118a0611684565b73ffffffffffffffffffffffffffffffffffffffff16146118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed90614526565b60405180910390fd5b6006600082815260200190815260200160002060009054906101000a900460ff1615611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90614894565b60405180910390fd5b82826004600084815260200190815260200160002091906119799291906134b3565b50505050565b61199161198a6120ef565b83836129c3565b5050565b600560009054906101000a900460ff1681565b6119b06120ef565b73ffffffffffffffffffffffffffffffffffffffff166119ce611684565b73ffffffffffffffffffffffffffffffffffffffff1614611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90614526565b60405180910390fd5b611a2e8282611412565b611a36610a22565b5050565b60076020528060005260406000206000915090505481565b611a5a6120ef565b73ffffffffffffffffffffffffffffffffffffffff16611a78611684565b73ffffffffffffffffffffffffffffffffffffffff1614611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590614526565b60405180910390fd5b60016006600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611b056120ef565b73ffffffffffffffffffffffffffffffffffffffff16611b23611684565b73ffffffffffffffffffffffffffffffffffffffff1614611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7090614526565b60405180910390fd5b600360149054906101000a900460ff16611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf906145f2565b60405180910390fd5b60005b83839050811015611c2c57611c19848483818110611bec57611beb61467e565b5b9050602002016020810190611c019190613e4b565b8360016040518060200160405280600081525061218b565b8080611c24906146dc565b915050611bcb565b50505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c925750611c918383612b2f565b5b905092915050565b600960008381526020019081526020016000205481611cb99190614946565b3414611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf1906149ec565b60405180910390fd5b600a600083815260200190815260200160002054811115611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790614a58565b60405180910390fd5b60008111611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a90614ac4565b60405180910390fd5b6008600083815260200190815260200160002054816007600085815260200190815260200160002054611dc69190614ae4565b1115611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe90614b86565b60405180910390fd5b80600760008481526020019081526020016000206000828254611e2a9190614ae4565b92505081905550611e4c3383836040518060200160405280600081525061218b565b5050565b611e586120ef565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611e9e5750611e9d85611e986120ef565b611c32565b5b611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490614926565b60405180910390fd5b611eea8585858585612bc3565b5050505050565b611ef96120ef565b73ffffffffffffffffffffffffffffffffffffffff16611f17611684565b73ffffffffffffffffffffffffffffffffffffffff1614611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6490614526565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd390614c18565b60405180910390fd5b611fe5816128fd565b50565b611ff06120ef565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806120365750612035836120306120ef565b611c32565b5b612075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206c90614926565b60405180910390fd5b612080838383612e44565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60606002805461210690614575565b80601f016020809104026020016040519081016040528092919081815260200182805461213290614575565b801561217f5780601f106121545761010080835404028352916020019161217f565b820191906000526020600020905b81548152906001019060200180831161216257829003601f168201915b50505050509050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190614caa565b60405180910390fd5b60006122046120ef565b90506122258160008761221688613060565b61221f88613060565b876130da565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122849190614ae4565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612302929190614cca565b60405180910390a4612319816000878787876130e2565b5050505050565b8151835114612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90614d65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036123d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca90614df7565b60405180910390fd5b60006123dd6120ef565b90506123ed8187878787876130da565b60005b845181101561259e57600085828151811061240e5761240d61467e565b5b60200260200101519050600085838151811061242d5761242c61467e565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156124ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c590614e89565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125839190614ae4565b9250508190555050505080612597906146dc565b90506123f0565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612615929190614ea9565b60405180910390a461262b8187878787876132b9565b505050505050565b8060029080519060200190612649929190613539565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390614f52565b60405180910390fd5b8051825114612700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f790614d65565b60405180910390fd5b600061270a6120ef565b905061272a818560008686604051806020016040528060008152506130da565b60005b835181101561287757600084828151811061274b5761274a61467e565b5b60200260200101519050600084838151811061276a5761276961467e565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561280b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280290614fe4565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061286f906146dc565b91505061272d565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516128ef929190614ea9565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2890615076565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b22919061378e565b60405180910390a3505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2990614df7565b60405180910390fd5b6000612c3c6120ef565b9050612c5c818787612c4d88613060565b612c5688613060565b876130da565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cea90614e89565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612da89190614ae4565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612e25929190614cca565b60405180910390a4612e3b8288888888886130e2565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eaa90614f52565b60405180910390fd5b6000612ebd6120ef565b9050612eed81856000612ecf87613060565b612ed887613060565b604051806020016040528060008152506130da565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7b90614fe4565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051613051929190614cca565b60405180910390a45050505050565b60606000600167ffffffffffffffff81111561307f5761307e613b89565b5b6040519080825280602002602001820160405280156130ad5781602001602082028036833780820191505090505b50905082816000815181106130c5576130c461467e565b5b60200260200101818152505080915050919050565b505050505050565b6131018473ffffffffffffffffffffffffffffffffffffffff16613490565b156132b1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016131479594939291906150eb565b6020604051808303816000875af192505050801561318357506040513d601f19601f82011682018060405250810190613180919061515a565b60015b6132285761318f615194565b806308c379a0036131eb57506131a36151b6565b806131ae57506131ed565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e29190613934565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321f906152b8565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146132af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a69061534a565b60405180910390fd5b505b505050505050565b6132d88473ffffffffffffffffffffffffffffffffffffffff16613490565b15613488578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161331e95949392919061536a565b6020604051808303816000875af192505050801561335a57506040513d601f19601f82011682018060405250810190613357919061515a565b60015b6133ff57613366615194565b806308c379a0036133c2575061337a6151b6565b8061338557506133c4565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b99190613934565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f6906152b8565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347d9061534a565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546134bf90614575565b90600052602060002090601f0160209004810192826134e15760008555613528565b82601f106134fa57803560ff1916838001178555613528565b82800160010185558215613528579182015b8281111561352757823582559160200191906001019061350c565b5b50905061353591906135bf565b5090565b82805461354590614575565b90600052602060002090601f01602090048101928261356757600085556135ae565b82601f1061358057805160ff19168380011785556135ae565b828001600101855582156135ae579182015b828111156135ad578251825591602001919060010190613592565b5b5090506135bb91906135bf565b5090565b5b808211156135d85760008160009055506001016135c0565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061361b826135f0565b9050919050565b61362b81613610565b811461363657600080fd5b50565b60008135905061364881613622565b92915050565b6000819050919050565b6136618161364e565b811461366c57600080fd5b50565b60008135905061367e81613658565b92915050565b6000806040838503121561369b5761369a6135e6565b5b60006136a985828601613639565b92505060206136ba8582860161366f565b9150509250929050565b6136cd8161364e565b82525050565b60006020820190506136e860008301846136c4565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613723816136ee565b811461372e57600080fd5b50565b6000813590506137408161371a565b92915050565b60006020828403121561375c5761375b6135e6565b5b600061376a84828501613731565b91505092915050565b60008115159050919050565b61378881613773565b82525050565b60006020820190506137a3600083018461377f565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126137ce576137cd6137a9565b5b8235905067ffffffffffffffff8111156137eb576137ea6137ae565b5b602083019150836001820283011115613807576138066137b3565b5b9250929050565b600080600060408486031215613827576138266135e6565b5b600084013567ffffffffffffffff811115613845576138446135eb565b5b613851868287016137b8565b935093505060206138648682870161366f565b9150509250925092565b600060208284031215613884576138836135e6565b5b60006138928482850161366f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138d55780820151818401526020810190506138ba565b838111156138e4576000848401525b50505050565b6000601f19601f8301169050919050565b60006139068261389b565b61391081856138a6565b93506139208185602086016138b7565b613929816138ea565b840191505092915050565b6000602082019050818103600083015261394e81846138fb565b905092915050565b600080600080608085870312156139705761396f6135e6565b5b600061397e8782880161366f565b945050602061398f8782880161366f565b93505060406139a08782880161366f565b92505060606139b18782880161366f565b91505092959194509250565b6139c681613773565b81146139d157600080fd5b50565b6000813590506139e3816139bd565b92915050565b60008060408385031215613a00576139ff6135e6565b5b6000613a0e85828601613639565b9250506020613a1f858286016139d4565b9150509250929050565b60008083601f840112613a3f57613a3e6137a9565b5b8235905067ffffffffffffffff811115613a5c57613a5b6137ae565b5b602083019150836020820283011115613a7857613a776137b3565b5b9250929050565b60008083601f840112613a9557613a946137a9565b5b8235905067ffffffffffffffff811115613ab257613ab16137ae565b5b602083019150836020820283011115613ace57613acd6137b3565b5b9250929050565b60008060008060008060608789031215613af257613af16135e6565b5b600087013567ffffffffffffffff811115613b1057613b0f6135eb565b5b613b1c89828a01613a29565b9650965050602087013567ffffffffffffffff811115613b3f57613b3e6135eb565b5b613b4b89828a01613a7f565b9450945050604087013567ffffffffffffffff811115613b6e57613b6d6135eb565b5b613b7a89828a01613a7f565b92509250509295509295509295565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bc1826138ea565b810181811067ffffffffffffffff82111715613be057613bdf613b89565b5b80604052505050565b6000613bf36135dc565b9050613bff8282613bb8565b919050565b600067ffffffffffffffff821115613c1f57613c1e613b89565b5b602082029050602081019050919050565b6000613c43613c3e84613c04565b613be9565b90508083825260208201905060208402830185811115613c6657613c656137b3565b5b835b81811015613c8f5780613c7b888261366f565b845260208401935050602081019050613c68565b5050509392505050565b600082601f830112613cae57613cad6137a9565b5b8135613cbe848260208601613c30565b91505092915050565b600080fd5b600067ffffffffffffffff821115613ce757613ce6613b89565b5b613cf0826138ea565b9050602081019050919050565b82818337600083830152505050565b6000613d1f613d1a84613ccc565b613be9565b905082815260208101848484011115613d3b57613d3a613cc7565b5b613d46848285613cfd565b509392505050565b600082601f830112613d6357613d626137a9565b5b8135613d73848260208601613d0c565b91505092915050565b600080600080600060a08688031215613d9857613d976135e6565b5b6000613da688828901613639565b9550506020613db788828901613639565b945050604086013567ffffffffffffffff811115613dd857613dd76135eb565b5b613de488828901613c99565b935050606086013567ffffffffffffffff811115613e0557613e046135eb565b5b613e1188828901613c99565b925050608086013567ffffffffffffffff811115613e3257613e316135eb565b5b613e3e88828901613d4e565b9150509295509295909350565b600060208284031215613e6157613e606135e6565b5b6000613e6f84828501613639565b91505092915050565b600067ffffffffffffffff821115613e9357613e92613b89565b5b602082029050602081019050919050565b6000613eb7613eb284613e78565b613be9565b90508083825260208201905060208402830185811115613eda57613ed96137b3565b5b835b81811015613f035780613eef8882613639565b845260208401935050602081019050613edc565b5050509392505050565b600082601f830112613f2257613f216137a9565b5b8135613f32848260208601613ea4565b91505092915050565b60008060408385031215613f5257613f516135e6565b5b600083013567ffffffffffffffff811115613f7057613f6f6135eb565b5b613f7c85828601613f0d565b925050602083013567ffffffffffffffff811115613f9d57613f9c6135eb565b5b613fa985828601613c99565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613fe88161364e565b82525050565b6000613ffa8383613fdf565b60208301905092915050565b6000602082019050919050565b600061401e82613fb3565b6140288185613fbe565b935061403383613fcf565b8060005b8381101561406457815161404b8882613fee565b975061405683614006565b925050600181019050614037565b5085935050505092915050565b6000602082019050818103600083015261408b8184614013565b905092915050565b600080602083850312156140aa576140a96135e6565b5b600083013567ffffffffffffffff8111156140c8576140c76135eb565b5b6140d4858286016137b8565b92509250509250929050565b6000806000606084860312156140f9576140f86135e6565b5b600061410786828701613639565b935050602084013567ffffffffffffffff811115614128576141276135eb565b5b61413486828701613c99565b925050604084013567ffffffffffffffff811115614155576141546135eb565b5b61416186828701613c99565b9150509250925092565b61417481613610565b82525050565b600060208201905061418f600083018461416b565b92915050565b6000806000806000806000806080898b0312156141b5576141b46135e6565b5b600089013567ffffffffffffffff8111156141d3576141d26135eb565b5b6141df8b828c01613a7f565b9850985050602089013567ffffffffffffffff811115614202576142016135eb565b5b61420e8b828c01613a7f565b9650965050604089013567ffffffffffffffff811115614231576142306135eb565b5b61423d8b828c01613a7f565b9450945050606089013567ffffffffffffffff8111156142605761425f6135eb565b5b61426c8b828c01613a7f565b92509250509295985092959890939650565b600080600060408486031215614297576142966135e6565b5b600084013567ffffffffffffffff8111156142b5576142b46135eb565b5b6142c186828701613a29565b935093505060206142d48682870161366f565b9150509250925092565b600080604083850312156142f5576142f46135e6565b5b600061430385828601613639565b925050602061431485828601613639565b9150509250929050565b60008060408385031215614335576143346135e6565b5b60006143438582860161366f565b92505060206143548582860161366f565b9150509250929050565b600080600080600060a0868803121561437a576143796135e6565b5b600061438888828901613639565b955050602061439988828901613639565b94505060406143aa8882890161366f565b93505060606143bb8882890161366f565b925050608086013567ffffffffffffffff8111156143dc576143db6135eb565b5b6143e888828901613d4e565b9150509295509295909350565b60008060006060848603121561440e5761440d6135e6565b5b600061441c86828701613639565b935050602061442d8682870161366f565b925050604061443e8682870161366f565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006144a4602b836138a6565b91506144af82614448565b604082019050919050565b600060208201905081810360008301526144d381614497565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145106020836138a6565b915061451b826144da565b602082019050919050565b6000602082019050818103600083015261453f81614503565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061458d57607f821691505b6020821081036145a05761459f614546565b5b50919050565b7f4e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b60006145dc600b836138a6565b91506145e7826145a6565b602082019050919050565b6000602082019050818103600083015261460b816145cf565b9050919050565b7f426164206172726179206c656e67746873000000000000000000000000000000600082015250565b60006146486011836138a6565b915061465382614612565b602082019050919050565b600060208201905081810360008301526146778161463b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146e78261364e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614719576147186146ad565b5b600182019050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006147806032836138a6565b915061478b82614724565b604082019050919050565b600060208201905081810360008301526147af81614773565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006148126029836138a6565b915061481d826147b6565b604082019050919050565b6000602082019050818103600083015261484181614805565b9050919050565b7f467265657a656400000000000000000000000000000000000000000000000000600082015250565b600061487e6007836138a6565b915061488982614848565b602082019050919050565b600060208201905081810360008301526148ad81614871565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006149106029836138a6565b915061491b826148b4565b604082019050919050565b6000602082019050818103600083015261493f81614903565b9050919050565b60006149518261364e565b915061495c8361364e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614995576149946146ad565b5b828202905092915050565b7f57726f6e67204554482076616c75650000000000000000000000000000000000600082015250565b60006149d6600f836138a6565b91506149e1826149a0565b602082019050919050565b60006020820190508181036000830152614a05816149c9565b9050919050565b7f506572207478206c696d69742065786365656465640000000000000000000000600082015250565b6000614a426015836138a6565b9150614a4d82614a0c565b602082019050919050565b60006020820190508181036000830152614a7181614a35565b9050919050565b7f43616e2774206d696e7420300000000000000000000000000000000000000000600082015250565b6000614aae600c836138a6565b9150614ab982614a78565b602082019050919050565b60006020820190508181036000830152614add81614aa1565b9050919050565b6000614aef8261364e565b9150614afa8361364e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b2f57614b2e6146ad565b5b828201905092915050565b7f537570706c792065786365656465640000000000000000000000000000000000600082015250565b6000614b70600f836138a6565b9150614b7b82614b3a565b602082019050919050565b60006020820190508181036000830152614b9f81614b63565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c026026836138a6565b9150614c0d82614ba6565b604082019050919050565b60006020820190508181036000830152614c3181614bf5565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c946021836138a6565b9150614c9f82614c38565b604082019050919050565b60006020820190508181036000830152614cc381614c87565b9050919050565b6000604082019050614cdf60008301856136c4565b614cec60208301846136c4565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614d4f6028836138a6565b9150614d5a82614cf3565b604082019050919050565b60006020820190508181036000830152614d7e81614d42565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614de16025836138a6565b9150614dec82614d85565b604082019050919050565b60006020820190508181036000830152614e1081614dd4565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614e73602a836138a6565b9150614e7e82614e17565b604082019050919050565b60006020820190508181036000830152614ea281614e66565b9050919050565b60006040820190508181036000830152614ec38185614013565b90508181036020830152614ed78184614013565b90509392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614f3c6023836138a6565b9150614f4782614ee0565b604082019050919050565b60006020820190508181036000830152614f6b81614f2f565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614fce6024836138a6565b9150614fd982614f72565b604082019050919050565b60006020820190508181036000830152614ffd81614fc1565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006150606029836138a6565b915061506b82615004565b604082019050919050565b6000602082019050818103600083015261508f81615053565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006150bd82615096565b6150c781856150a1565b93506150d78185602086016138b7565b6150e0816138ea565b840191505092915050565b600060a082019050615100600083018861416b565b61510d602083018761416b565b61511a60408301866136c4565b61512760608301856136c4565b818103608083015261513981846150b2565b90509695505050505050565b6000815190506151548161371a565b92915050565b6000602082840312156151705761516f6135e6565b5b600061517e84828501615145565b91505092915050565b60008160e01c9050919050565b600060033d11156151b35760046000803e6151b0600051615187565b90505b90565b600060443d10615243576151c86135dc565b60043d036004823e80513d602482011167ffffffffffffffff821117156151f0575050615243565b808201805167ffffffffffffffff81111561520e5750505050615243565b80602083010160043d03850181111561522b575050505050615243565b61523a82602001850186613bb8565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006152a26034836138a6565b91506152ad82615246565b604082019050919050565b600060208201905081810360008301526152d181615295565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006153346028836138a6565b915061533f826152d8565b604082019050919050565b6000602082019050818103600083015261536381615327565b9050919050565b600060a08201905061537f600083018861416b565b61538c602083018761416b565b818103604083015261539e8186614013565b905081810360608301526153b28185614013565b905081810360808301526153c681846150b2565b9050969550505050505056fea264697066735822122070ad8a51248b1d8ea7b7a2ad38402fe2fc0a121eae5c30cc5fa92dff29de0cdb64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020e5760003560e01c80635fffdfaf11610118578063abff7f6e116100a0578063e985e9c51161006f578063e985e9c5146107a4578063ed5ab3f6146107e1578063f242432a146107fd578063f2fde38b14610826578063f5298aca1461084f5761020e565b8063abff7f6e146106ec578063bd85b03914610715578063c30f3bb114610752578063c75e25e11461077b5761020e565b80638da5cb5b116100e75780638da5cb5b1461061b578063943c19aa1461064657806395d34d9e1461066f578063a22cb46514610698578063ab05ff41146106c15761020e565b80635fffdfaf146105615780636b20c4541461059e5780636c3839e9146105c7578063715018a6146106045761020e565b806326bb1cf71161019b5780633199da021161016a5780633199da021461046a5780633ccfd60b146104a75780634e1273f4146104be5780634e5bcfab146104fb578063570b3c6a146105385761020e565b806326bb1cf7146103c45780632768d709146103ed5780632be9279d146104165780632eb2c2d6146104415761020e565b80630e89341c116101e25780630e89341c146102cd5780630f52b76e1461030a57806314106f86146103215780632094aacc1461034a578063267f8640146103875761020e565b8062fdd58e1461021357806301ffc9a714610250578063086cb7851461028d57806308b58c1d146102a4575b600080fd5b34801561021f57600080fd5b5061023a60048036038101906102359190613684565b610878565b60405161024791906136d3565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613746565b610940565b604051610284919061378e565b60405180910390f35b34801561029957600080fd5b506102a2610a22565b005b3480156102b057600080fd5b506102cb60048036038101906102c6919061380e565b610abb565b005b3480156102d957600080fd5b506102f460048036038101906102ef919061386e565b610b50565b6040516103019190613934565b60405180910390f35b34801561031657600080fd5b5061031f610c16565b005b34801561032d57600080fd5b5061034860048036038101906103439190613956565b610caf565b005b34801561035657600080fd5b50610371600480360381019061036c919061386e565b610da6565b60405161037e9190613934565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a9919061386e565b610e46565b6040516103bb919061378e565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906139e9565b610e66565b005b3480156103f957600080fd5b50610414600480360381019061040f9190613ad5565b610f80565b005b34801561042257600080fd5b5061042b611142565b604051610438919061378e565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613d7c565b611155565b005b34801561047657600080fd5b50610491600480360381019061048c9190613e4b565b6111f6565b60405161049e919061378e565b60405180910390f35b3480156104b357600080fd5b506104bc611216565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190613f3b565b6112e1565b6040516104f29190614071565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d919061386e565b6113fa565b60405161052f91906136d3565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a9190614093565b611412565b005b34801561056d57600080fd5b506105886004803603810190610583919061386e565b61152f565b60405161059591906136d3565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c091906140e0565b611547565b005b3480156105d357600080fd5b506105ee60048036038101906105e9919061386e565b6115e4565b6040516105fb91906136d3565b60405180910390f35b34801561061057600080fd5b506106196115fc565b005b34801561062757600080fd5b50610630611684565b60405161063d919061417a565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190614195565b6116ae565b005b34801561067b57600080fd5b506106966004803603810190610691919061380e565b61187a565b005b3480156106a457600080fd5b506106bf60048036038101906106ba91906139e9565b61197f565b005b3480156106cd57600080fd5b506106d6611995565b6040516106e3919061378e565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e9190614093565b6119a8565b005b34801561072157600080fd5b5061073c6004803603810190610737919061386e565b611a3a565b60405161074991906136d3565b60405180910390f35b34801561075e57600080fd5b506107796004803603810190610774919061386e565b611a52565b005b34801561078757600080fd5b506107a2600480360381019061079d919061427e565b611afd565b005b3480156107b057600080fd5b506107cb60048036038101906107c691906142de565b611c32565b6040516107d8919061378e565b60405180910390f35b6107fb60048036038101906107f6919061431e565b611c9a565b005b34801561080957600080fd5b50610824600480360381019061081f919061435e565b611e50565b005b34801561083257600080fd5b5061084d60048036038101906108489190613e4b565b611ef1565b005b34801561085b57600080fd5b50610876600480360381019061087191906143f5565b611fe8565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df906144ba565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0b57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1b5750610a1a82612085565b5b9050919050565b610a2a6120ef565b73ffffffffffffffffffffffffffffffffffffffff16610a48611684565b73ffffffffffffffffffffffffffffffffffffffff1614610a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9590614526565b60405180910390fd5b6001600560006101000a81548160ff021916908315150217905550565b610ac36120ef565b73ffffffffffffffffffffffffffffffffffffffff16610ae1611684565b73ffffffffffffffffffffffffffffffffffffffff1614610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e90614526565b60405180910390fd5b610b4283838361187a565b610b4b81611a52565b505050565b60606000600460008481526020019081526020016000208054610b7290614575565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9e90614575565b8015610beb5780601f10610bc057610100808354040283529160200191610beb565b820191906000526020600020905b815481529060010190602001808311610bce57829003601f168201915b505050505090506000815103610c0c57610c04836120f7565b915050610c11565b809150505b919050565b610c1e6120ef565b73ffffffffffffffffffffffffffffffffffffffff16610c3c611684565b73ffffffffffffffffffffffffffffffffffffffff1614610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990614526565b60405180910390fd5b6000600360146101000a81548160ff021916908315150217905550565b610cb76120ef565b73ffffffffffffffffffffffffffffffffffffffff16610cd5611684565b73ffffffffffffffffffffffffffffffffffffffff1614610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290614526565b60405180910390fd5b82600860008681526020019081526020016000208190555081600960008681526020019081526020016000208190555080600a600086815260200190815260200160002081905550837f2dac1677998d38e33c4e28b59d542dafacf2c4137a2ff3a8d85b46545c7dd66e60405160405180910390a250505050565b60046020528060005260406000206000915090508054610dc590614575565b80601f0160208091040260200160405190810160405280929190818152602001828054610df190614575565b8015610e3e5780601f10610e1357610100808354040283529160200191610e3e565b820191906000526020600020905b815481529060010190602001808311610e2157829003601f168201915b505050505081565b60066020528060005260406000206000915054906101000a900460ff1681565b610e6e6120ef565b73ffffffffffffffffffffffffffffffffffffffff16610e8c611684565b73ffffffffffffffffffffffffffffffffffffffff1614610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990614526565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fe7e87d526025768dfbff568780e9eb516bfc7a7d59de38505d40c54b45a78e1060405160405180910390a25050565b610f886120ef565b73ffffffffffffffffffffffffffffffffffffffff16610fa6611684565b73ffffffffffffffffffffffffffffffffffffffff1614610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390614526565b60405180910390fd5b600360149054906101000a900460ff1661104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906145f2565b60405180910390fd5b838390508686905014801561106557508181905084849050145b6110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b9061465e565b60405180910390fd5b60005b86869050811015611139576111268787838181106110c8576110c761467e565b5b90506020020160208101906110dd9190613e4b565b8686848181106110f0576110ef61467e565b5b9050602002013585858581811061110a5761110961467e565b5b905060200201356040518060200160405280600081525061218b565b8080611131906146dc565b9150506110a7565b50505050505050565b600360149054906101000a900460ff1681565b61115d6120ef565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111a357506111a28561119d6120ef565b611c32565b5b6111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990614796565b60405180910390fd5b6111ef8585858585612320565b5050505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b61121e6120ef565b73ffffffffffffffffffffffffffffffffffffffff1661123c611684565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990614526565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112dd573d6000803e3d6000fd5b5050565b60608151835114611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e90614828565b60405180910390fd5b6000835167ffffffffffffffff81111561134457611343613b89565b5b6040519080825280602002602001820160405280156113725781602001602082028036833780820191505090505b50905060005b84518110156113ef576113bf8582815181106113975761139661467e565b5b60200260200101518583815181106113b2576113b161467e565b5b6020026020010151610878565b8282815181106113d2576113d161467e565b5b602002602001018181525050806113e8906146dc565b9050611378565b508091505092915050565b60096020528060005260406000206000915090505481565b61141a6120ef565b73ffffffffffffffffffffffffffffffffffffffff16611438611684565b73ffffffffffffffffffffffffffffffffffffffff161461148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590614526565b60405180910390fd5b600560009054906101000a900460ff16156114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590614894565b60405180910390fd5b61152b82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612633565b5050565b600a6020528060005260406000206000915090505481565b61154f6120ef565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061159557506115948361158f6120ef565b611c32565b5b6115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90614926565b60405180910390fd5b6115df83838361264d565b505050565b60086020528060005260406000206000915090505481565b6116046120ef565b73ffffffffffffffffffffffffffffffffffffffff16611622611684565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90614526565b60405180910390fd5b61168260006128fd565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116b66120ef565b73ffffffffffffffffffffffffffffffffffffffff166116d4611684565b73ffffffffffffffffffffffffffffffffffffffff161461172a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172190614526565b60405180910390fd5b60005b8888905081101561186f5786868281811061174b5761174a61467e565b5b90506020020135600860008b8b858181106117695761176861467e565b5b905060200201358152602001908152602001600020819055508484828181106117955761179461467e565b5b90506020020135600960008b8b858181106117b3576117b261467e565b5b905060200201358152602001908152602001600020819055508282828181106117df576117de61467e565b5b90506020020135600a60008b8b858181106117fd576117fc61467e565b5b905060200201358152602001908152602001600020819055508888828181106118295761182861467e565b5b905060200201357f2dac1677998d38e33c4e28b59d542dafacf2c4137a2ff3a8d85b46545c7dd66e60405160405180910390a28080611867906146dc565b91505061172d565b505050505050505050565b6118826120ef565b73ffffffffffffffffffffffffffffffffffffffff166118a0611684565b73ffffffffffffffffffffffffffffffffffffffff16146118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed90614526565b60405180910390fd5b6006600082815260200190815260200160002060009054906101000a900460ff1615611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90614894565b60405180910390fd5b82826004600084815260200190815260200160002091906119799291906134b3565b50505050565b61199161198a6120ef565b83836129c3565b5050565b600560009054906101000a900460ff1681565b6119b06120ef565b73ffffffffffffffffffffffffffffffffffffffff166119ce611684565b73ffffffffffffffffffffffffffffffffffffffff1614611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90614526565b60405180910390fd5b611a2e8282611412565b611a36610a22565b5050565b60076020528060005260406000206000915090505481565b611a5a6120ef565b73ffffffffffffffffffffffffffffffffffffffff16611a78611684565b73ffffffffffffffffffffffffffffffffffffffff1614611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590614526565b60405180910390fd5b60016006600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611b056120ef565b73ffffffffffffffffffffffffffffffffffffffff16611b23611684565b73ffffffffffffffffffffffffffffffffffffffff1614611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7090614526565b60405180910390fd5b600360149054906101000a900460ff16611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf906145f2565b60405180910390fd5b60005b83839050811015611c2c57611c19848483818110611bec57611beb61467e565b5b9050602002016020810190611c019190613e4b565b8360016040518060200160405280600081525061218b565b8080611c24906146dc565b915050611bcb565b50505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c925750611c918383612b2f565b5b905092915050565b600960008381526020019081526020016000205481611cb99190614946565b3414611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf1906149ec565b60405180910390fd5b600a600083815260200190815260200160002054811115611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790614a58565b60405180910390fd5b60008111611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a90614ac4565b60405180910390fd5b6008600083815260200190815260200160002054816007600085815260200190815260200160002054611dc69190614ae4565b1115611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe90614b86565b60405180910390fd5b80600760008481526020019081526020016000206000828254611e2a9190614ae4565b92505081905550611e4c3383836040518060200160405280600081525061218b565b5050565b611e586120ef565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611e9e5750611e9d85611e986120ef565b611c32565b5b611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490614926565b60405180910390fd5b611eea8585858585612bc3565b5050505050565b611ef96120ef565b73ffffffffffffffffffffffffffffffffffffffff16611f17611684565b73ffffffffffffffffffffffffffffffffffffffff1614611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6490614526565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd390614c18565b60405180910390fd5b611fe5816128fd565b50565b611ff06120ef565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806120365750612035836120306120ef565b611c32565b5b612075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206c90614926565b60405180910390fd5b612080838383612e44565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60606002805461210690614575565b80601f016020809104026020016040519081016040528092919081815260200182805461213290614575565b801561217f5780601f106121545761010080835404028352916020019161217f565b820191906000526020600020905b81548152906001019060200180831161216257829003601f168201915b50505050509050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190614caa565b60405180910390fd5b60006122046120ef565b90506122258160008761221688613060565b61221f88613060565b876130da565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122849190614ae4565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612302929190614cca565b60405180910390a4612319816000878787876130e2565b5050505050565b8151835114612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90614d65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036123d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca90614df7565b60405180910390fd5b60006123dd6120ef565b90506123ed8187878787876130da565b60005b845181101561259e57600085828151811061240e5761240d61467e565b5b60200260200101519050600085838151811061242d5761242c61467e565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156124ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c590614e89565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125839190614ae4565b9250508190555050505080612597906146dc565b90506123f0565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612615929190614ea9565b60405180910390a461262b8187878787876132b9565b505050505050565b8060029080519060200190612649929190613539565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390614f52565b60405180910390fd5b8051825114612700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f790614d65565b60405180910390fd5b600061270a6120ef565b905061272a818560008686604051806020016040528060008152506130da565b60005b835181101561287757600084828151811061274b5761274a61467e565b5b60200260200101519050600084838151811061276a5761276961467e565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561280b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280290614fe4565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061286f906146dc565b91505061272d565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516128ef929190614ea9565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2890615076565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b22919061378e565b60405180910390a3505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2990614df7565b60405180910390fd5b6000612c3c6120ef565b9050612c5c818787612c4d88613060565b612c5688613060565b876130da565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cea90614e89565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612da89190614ae4565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612e25929190614cca565b60405180910390a4612e3b8288888888886130e2565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eaa90614f52565b60405180910390fd5b6000612ebd6120ef565b9050612eed81856000612ecf87613060565b612ed887613060565b604051806020016040528060008152506130da565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7b90614fe4565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051613051929190614cca565b60405180910390a45050505050565b60606000600167ffffffffffffffff81111561307f5761307e613b89565b5b6040519080825280602002602001820160405280156130ad5781602001602082028036833780820191505090505b50905082816000815181106130c5576130c461467e565b5b60200260200101818152505080915050919050565b505050505050565b6131018473ffffffffffffffffffffffffffffffffffffffff16613490565b156132b1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016131479594939291906150eb565b6020604051808303816000875af192505050801561318357506040513d601f19601f82011682018060405250810190613180919061515a565b60015b6132285761318f615194565b806308c379a0036131eb57506131a36151b6565b806131ae57506131ed565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e29190613934565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321f906152b8565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146132af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a69061534a565b60405180910390fd5b505b505050505050565b6132d88473ffffffffffffffffffffffffffffffffffffffff16613490565b15613488578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161331e95949392919061536a565b6020604051808303816000875af192505050801561335a57506040513d601f19601f82011682018060405250810190613357919061515a565b60015b6133ff57613366615194565b806308c379a0036133c2575061337a6151b6565b8061338557506133c4565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b99190613934565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f6906152b8565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347d9061534a565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546134bf90614575565b90600052602060002090601f0160209004810192826134e15760008555613528565b82601f106134fa57803560ff1916838001178555613528565b82800160010185558215613528579182015b8281111561352757823582559160200191906001019061350c565b5b50905061353591906135bf565b5090565b82805461354590614575565b90600052602060002090601f01602090048101928261356757600085556135ae565b82601f1061358057805160ff19168380011785556135ae565b828001600101855582156135ae579182015b828111156135ad578251825591602001919060010190613592565b5b5090506135bb91906135bf565b5090565b5b808211156135d85760008160009055506001016135c0565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061361b826135f0565b9050919050565b61362b81613610565b811461363657600080fd5b50565b60008135905061364881613622565b92915050565b6000819050919050565b6136618161364e565b811461366c57600080fd5b50565b60008135905061367e81613658565b92915050565b6000806040838503121561369b5761369a6135e6565b5b60006136a985828601613639565b92505060206136ba8582860161366f565b9150509250929050565b6136cd8161364e565b82525050565b60006020820190506136e860008301846136c4565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613723816136ee565b811461372e57600080fd5b50565b6000813590506137408161371a565b92915050565b60006020828403121561375c5761375b6135e6565b5b600061376a84828501613731565b91505092915050565b60008115159050919050565b61378881613773565b82525050565b60006020820190506137a3600083018461377f565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126137ce576137cd6137a9565b5b8235905067ffffffffffffffff8111156137eb576137ea6137ae565b5b602083019150836001820283011115613807576138066137b3565b5b9250929050565b600080600060408486031215613827576138266135e6565b5b600084013567ffffffffffffffff811115613845576138446135eb565b5b613851868287016137b8565b935093505060206138648682870161366f565b9150509250925092565b600060208284031215613884576138836135e6565b5b60006138928482850161366f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138d55780820151818401526020810190506138ba565b838111156138e4576000848401525b50505050565b6000601f19601f8301169050919050565b60006139068261389b565b61391081856138a6565b93506139208185602086016138b7565b613929816138ea565b840191505092915050565b6000602082019050818103600083015261394e81846138fb565b905092915050565b600080600080608085870312156139705761396f6135e6565b5b600061397e8782880161366f565b945050602061398f8782880161366f565b93505060406139a08782880161366f565b92505060606139b18782880161366f565b91505092959194509250565b6139c681613773565b81146139d157600080fd5b50565b6000813590506139e3816139bd565b92915050565b60008060408385031215613a00576139ff6135e6565b5b6000613a0e85828601613639565b9250506020613a1f858286016139d4565b9150509250929050565b60008083601f840112613a3f57613a3e6137a9565b5b8235905067ffffffffffffffff811115613a5c57613a5b6137ae565b5b602083019150836020820283011115613a7857613a776137b3565b5b9250929050565b60008083601f840112613a9557613a946137a9565b5b8235905067ffffffffffffffff811115613ab257613ab16137ae565b5b602083019150836020820283011115613ace57613acd6137b3565b5b9250929050565b60008060008060008060608789031215613af257613af16135e6565b5b600087013567ffffffffffffffff811115613b1057613b0f6135eb565b5b613b1c89828a01613a29565b9650965050602087013567ffffffffffffffff811115613b3f57613b3e6135eb565b5b613b4b89828a01613a7f565b9450945050604087013567ffffffffffffffff811115613b6e57613b6d6135eb565b5b613b7a89828a01613a7f565b92509250509295509295509295565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bc1826138ea565b810181811067ffffffffffffffff82111715613be057613bdf613b89565b5b80604052505050565b6000613bf36135dc565b9050613bff8282613bb8565b919050565b600067ffffffffffffffff821115613c1f57613c1e613b89565b5b602082029050602081019050919050565b6000613c43613c3e84613c04565b613be9565b90508083825260208201905060208402830185811115613c6657613c656137b3565b5b835b81811015613c8f5780613c7b888261366f565b845260208401935050602081019050613c68565b5050509392505050565b600082601f830112613cae57613cad6137a9565b5b8135613cbe848260208601613c30565b91505092915050565b600080fd5b600067ffffffffffffffff821115613ce757613ce6613b89565b5b613cf0826138ea565b9050602081019050919050565b82818337600083830152505050565b6000613d1f613d1a84613ccc565b613be9565b905082815260208101848484011115613d3b57613d3a613cc7565b5b613d46848285613cfd565b509392505050565b600082601f830112613d6357613d626137a9565b5b8135613d73848260208601613d0c565b91505092915050565b600080600080600060a08688031215613d9857613d976135e6565b5b6000613da688828901613639565b9550506020613db788828901613639565b945050604086013567ffffffffffffffff811115613dd857613dd76135eb565b5b613de488828901613c99565b935050606086013567ffffffffffffffff811115613e0557613e046135eb565b5b613e1188828901613c99565b925050608086013567ffffffffffffffff811115613e3257613e316135eb565b5b613e3e88828901613d4e565b9150509295509295909350565b600060208284031215613e6157613e606135e6565b5b6000613e6f84828501613639565b91505092915050565b600067ffffffffffffffff821115613e9357613e92613b89565b5b602082029050602081019050919050565b6000613eb7613eb284613e78565b613be9565b90508083825260208201905060208402830185811115613eda57613ed96137b3565b5b835b81811015613f035780613eef8882613639565b845260208401935050602081019050613edc565b5050509392505050565b600082601f830112613f2257613f216137a9565b5b8135613f32848260208601613ea4565b91505092915050565b60008060408385031215613f5257613f516135e6565b5b600083013567ffffffffffffffff811115613f7057613f6f6135eb565b5b613f7c85828601613f0d565b925050602083013567ffffffffffffffff811115613f9d57613f9c6135eb565b5b613fa985828601613c99565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613fe88161364e565b82525050565b6000613ffa8383613fdf565b60208301905092915050565b6000602082019050919050565b600061401e82613fb3565b6140288185613fbe565b935061403383613fcf565b8060005b8381101561406457815161404b8882613fee565b975061405683614006565b925050600181019050614037565b5085935050505092915050565b6000602082019050818103600083015261408b8184614013565b905092915050565b600080602083850312156140aa576140a96135e6565b5b600083013567ffffffffffffffff8111156140c8576140c76135eb565b5b6140d4858286016137b8565b92509250509250929050565b6000806000606084860312156140f9576140f86135e6565b5b600061410786828701613639565b935050602084013567ffffffffffffffff811115614128576141276135eb565b5b61413486828701613c99565b925050604084013567ffffffffffffffff811115614155576141546135eb565b5b61416186828701613c99565b9150509250925092565b61417481613610565b82525050565b600060208201905061418f600083018461416b565b92915050565b6000806000806000806000806080898b0312156141b5576141b46135e6565b5b600089013567ffffffffffffffff8111156141d3576141d26135eb565b5b6141df8b828c01613a7f565b9850985050602089013567ffffffffffffffff811115614202576142016135eb565b5b61420e8b828c01613a7f565b9650965050604089013567ffffffffffffffff811115614231576142306135eb565b5b61423d8b828c01613a7f565b9450945050606089013567ffffffffffffffff8111156142605761425f6135eb565b5b61426c8b828c01613a7f565b92509250509295985092959890939650565b600080600060408486031215614297576142966135e6565b5b600084013567ffffffffffffffff8111156142b5576142b46135eb565b5b6142c186828701613a29565b935093505060206142d48682870161366f565b9150509250925092565b600080604083850312156142f5576142f46135e6565b5b600061430385828601613639565b925050602061431485828601613639565b9150509250929050565b60008060408385031215614335576143346135e6565b5b60006143438582860161366f565b92505060206143548582860161366f565b9150509250929050565b600080600080600060a0868803121561437a576143796135e6565b5b600061438888828901613639565b955050602061439988828901613639565b94505060406143aa8882890161366f565b93505060606143bb8882890161366f565b925050608086013567ffffffffffffffff8111156143dc576143db6135eb565b5b6143e888828901613d4e565b9150509295509295909350565b60008060006060848603121561440e5761440d6135e6565b5b600061441c86828701613639565b935050602061442d8682870161366f565b925050604061443e8682870161366f565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006144a4602b836138a6565b91506144af82614448565b604082019050919050565b600060208201905081810360008301526144d381614497565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145106020836138a6565b915061451b826144da565b602082019050919050565b6000602082019050818103600083015261453f81614503565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061458d57607f821691505b6020821081036145a05761459f614546565b5b50919050565b7f4e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b60006145dc600b836138a6565b91506145e7826145a6565b602082019050919050565b6000602082019050818103600083015261460b816145cf565b9050919050565b7f426164206172726179206c656e67746873000000000000000000000000000000600082015250565b60006146486011836138a6565b915061465382614612565b602082019050919050565b600060208201905081810360008301526146778161463b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146e78261364e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614719576147186146ad565b5b600182019050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006147806032836138a6565b915061478b82614724565b604082019050919050565b600060208201905081810360008301526147af81614773565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006148126029836138a6565b915061481d826147b6565b604082019050919050565b6000602082019050818103600083015261484181614805565b9050919050565b7f467265657a656400000000000000000000000000000000000000000000000000600082015250565b600061487e6007836138a6565b915061488982614848565b602082019050919050565b600060208201905081810360008301526148ad81614871565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006149106029836138a6565b915061491b826148b4565b604082019050919050565b6000602082019050818103600083015261493f81614903565b9050919050565b60006149518261364e565b915061495c8361364e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614995576149946146ad565b5b828202905092915050565b7f57726f6e67204554482076616c75650000000000000000000000000000000000600082015250565b60006149d6600f836138a6565b91506149e1826149a0565b602082019050919050565b60006020820190508181036000830152614a05816149c9565b9050919050565b7f506572207478206c696d69742065786365656465640000000000000000000000600082015250565b6000614a426015836138a6565b9150614a4d82614a0c565b602082019050919050565b60006020820190508181036000830152614a7181614a35565b9050919050565b7f43616e2774206d696e7420300000000000000000000000000000000000000000600082015250565b6000614aae600c836138a6565b9150614ab982614a78565b602082019050919050565b60006020820190508181036000830152614add81614aa1565b9050919050565b6000614aef8261364e565b9150614afa8361364e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b2f57614b2e6146ad565b5b828201905092915050565b7f537570706c792065786365656465640000000000000000000000000000000000600082015250565b6000614b70600f836138a6565b9150614b7b82614b3a565b602082019050919050565b60006020820190508181036000830152614b9f81614b63565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c026026836138a6565b9150614c0d82614ba6565b604082019050919050565b60006020820190508181036000830152614c3181614bf5565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c946021836138a6565b9150614c9f82614c38565b604082019050919050565b60006020820190508181036000830152614cc381614c87565b9050919050565b6000604082019050614cdf60008301856136c4565b614cec60208301846136c4565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614d4f6028836138a6565b9150614d5a82614cf3565b604082019050919050565b60006020820190508181036000830152614d7e81614d42565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614de16025836138a6565b9150614dec82614d85565b604082019050919050565b60006020820190508181036000830152614e1081614dd4565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614e73602a836138a6565b9150614e7e82614e17565b604082019050919050565b60006020820190508181036000830152614ea281614e66565b9050919050565b60006040820190508181036000830152614ec38185614013565b90508181036020830152614ed78184614013565b90509392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614f3c6023836138a6565b9150614f4782614ee0565b604082019050919050565b60006020820190508181036000830152614f6b81614f2f565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614fce6024836138a6565b9150614fd982614f72565b604082019050919050565b60006020820190508181036000830152614ffd81614fc1565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006150606029836138a6565b915061506b82615004565b604082019050919050565b6000602082019050818103600083015261508f81615053565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006150bd82615096565b6150c781856150a1565b93506150d78185602086016138b7565b6150e0816138ea565b840191505092915050565b600060a082019050615100600083018861416b565b61510d602083018761416b565b61511a60408301866136c4565b61512760608301856136c4565b818103608083015261513981846150b2565b90509695505050505050565b6000815190506151548161371a565b92915050565b6000602082840312156151705761516f6135e6565b5b600061517e84828501615145565b91505092915050565b60008160e01c9050919050565b600060033d11156151b35760046000803e6151b0600051615187565b90505b90565b600060443d10615243576151c86135dc565b60043d036004823e80513d602482011167ffffffffffffffff821117156151f0575050615243565b808201805167ffffffffffffffff81111561520e5750505050615243565b80602083010160043d03850181111561522b575050505050615243565b61523a82602001850186613bb8565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006152a26034836138a6565b91506152ad82615246565b604082019050919050565b600060208201905081810360008301526152d181615295565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006153346028836138a6565b915061533f826152d8565b604082019050919050565b6000602082019050818103600083015261536381615327565b9050919050565b600060a08201905061537f600083018861416b565b61538c602083018761416b565b818103604083015261539e8186614013565b905081810360608301526153b28185614013565b905081810360808301526153c681846150b2565b9050969550505050505056fea264697066735822122070ad8a51248b1d8ea7b7a2ad38402fe2fc0a121eae5c30cc5fa92dff29de0cdb64736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

38116:5897:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23431:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22454:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42539:76;;;;;;;;;;;;;:::i;:::-;;43332:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41996:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39437:90;;;;;;;;;;;;;:::i;:::-;;40617:293;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38286:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38451:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39592:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39820:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38211:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25370:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38896:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43865:145;;;;;;;;;;;;;:::i;:::-;;23828:524;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38715:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42337:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38799:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37700:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38632:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2618:103;;;;;;;;;;;;;:::i;:::-;;1967:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40986:453;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42899:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24425:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38373:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42691:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38545:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43147:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40291:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43572:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41490:458;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24892:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2876:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37371:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23431:231;23517:7;23564:1;23545:21;;:7;:21;;;23537:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;23632:9;:13;23642:2;23632:13;;;;;;;;;;;:22;23646:7;23632:22;;;;;;;;;;;;;;;;23625:29;;23431:231;;;;:::o;22454:310::-;22556:4;22608:26;22593:41;;;:11;:41;;;;:110;;;;22666:37;22651:52;;;:11;:52;;;;22593:110;:163;;;;22720:36;22744:11;22720:23;:36::i;:::-;22593:163;22573:183;;22454:310;;;:::o;42539:76::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42603:4:::1;42588:12;;:19;;;;;;;;;;;;;;;;;;42539:76::o:0;43332:175::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43432:32:::1;43449:6;;43457;43432:16;:32::i;:::-;43475:24;43492:6;43475:16;:24::i;:::-;43332:175:::0;;;:::o;41996:274::-;42055:13;42081:21;42105:9;:17;42115:6;42105:17;;;;;;;;;;;42081:41;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42162:1;42143:7;42137:21;:26;42133:130;;42187:17;42197:6;42187:9;:17::i;:::-;42180:24;;;;;42133:130;42244:7;42237:14;;;41996:274;;;;:::o;39437:90::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39514:5:::1;39494:17;;:25;;;;;;;;;;;;;;;;;;39437:90::o:0;40617:293::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40768:11:::1;40742:15;:23;40758:6;40742:23;;;;;;;;;;;:37;;;;40810:5;40790:9;:17;40800:6;40790:17;;;;;;;;;;;:25;;;;40851:10;40826:14;:22;40841:6;40826:22;;;;;;;;;;;:35;;;;40895:6;40879:23;;;;;;;;;;40617:293:::0;;;;:::o;38286:44::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38451:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;39592:152::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39694:5:::1;39671:14;:20;39686:4;39671:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;39731:4;39715:21;;;;;;;;;;;;39592:152:::0;;:::o;39820:400::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39953:17:::1;;;;;;;;;;;39945:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;40020:5;;:12;;40003:6;;:13;;:29;:62;;;;;40052:6;;:13;;40036:5;;:12;;:29;40003:62;39995:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;40112:9;40107:106;40131:6;;:13;;40127:1;:17;40107:106;;;40162:41;40168:6;;40175:1;40168:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;40179:5;;40185:1;40179:8;;;;;;;:::i;:::-;;;;;;;;40189:6;;40196:1;40189:9;;;;;;;:::i;:::-;;;;;;;;40162:41;;;;;;;;;;;::::0;:5:::1;:41::i;:::-;40146:3;;;;;:::i;:::-;;;;40107:106;;;;39820:400:::0;;;;;;:::o;38211:36::-;;;;;;;;;;;;;:::o;25370:442::-;25611:12;:10;:12::i;:::-;25603:20;;:4;:20;;;:60;;;;25627:36;25644:4;25650:12;:10;:12::i;:::-;25627:16;:36::i;:::-;25603:60;25581:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;25752:52;25775:4;25781:2;25785:3;25790:7;25799:4;25752:22;:52::i;:::-;25370:442;;;;;:::o;38896:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;43865:145::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43915:15:::1;43933:21;43915:39;;43973:10;43965:28;;:37;43994:7;43965:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43904:106;43865:145::o:0;23828:524::-;23984:16;24045:3;:10;24026:8;:15;:29;24018:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;24114:30;24161:8;:15;24147:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24114:63;;24195:9;24190:122;24214:8;:15;24210:1;:19;24190:122;;;24270:30;24280:8;24289:1;24280:11;;;;;;;;:::i;:::-;;;;;;;;24293:3;24297:1;24293:6;;;;;;;;:::i;:::-;;;;;;;;24270:9;:30::i;:::-;24251:13;24265:1;24251:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;24231:3;;;;:::i;:::-;;;24190:122;;;;24331:13;24324:20;;;23828:524;;;;:::o;38715:44::-;;;;;;;;;;;;;;;;;:::o;42337:138::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42417:12:::1;;;;;;;;;;;42416:13;42408:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;42452:15;42460:6;;42452:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:15::i;:::-;42337:138:::0;;:::o;38799:49::-;;;;;;;;;;;;;;;;;:::o;37700:353::-;37876:12;:10;:12::i;:::-;37865:23;;:7;:23;;;:66;;;;37892:39;37909:7;37918:12;:10;:12::i;:::-;37892:16;:39::i;:::-;37865:66;37843:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;38013:32;38024:7;38033:3;38038:6;38013:10;:32::i;:::-;37700:353;;;:::o;38632:50::-;;;;;;;;;;;;;;;;;:::o;2618:103::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2683:30:::1;2710:1;2683:18;:30::i;:::-;2618:103::o:0;1967:87::-;2013:7;2040:6;;;;;;;;;;;2033:13;;1967:87;:::o;40986:453::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41169:9:::1;41164:268;41184:7;;:14;;41182:1;:16;41164:268;;;41250:12;;41263:1;41250:15;;;;;;;:::i;:::-;;;;;;;;41220;:27;41236:7;;41244:1;41236:10;;;;;;;:::i;:::-;;;;;;;;41220:27;;;;;;;;;;;:45;;;;41304:6;;41311:1;41304:9;;;;;;;:::i;:::-;;;;;;;;41280;:21;41290:7;;41298:1;41290:10;;;;;;;:::i;:::-;;;;;;;;41280:21;;;;;;;;;;;:33;;;;41357:11;;41369:1;41357:14;;;;;;;:::i;:::-;;;;;;;;41328;:26;41343:7;;41351:1;41343:10;;;;;;;:::i;:::-;;;;;;;;41328:26;;;;;;;;;;;:43;;;;41409:7;;41417:1;41409:10;;;;;;;:::i;:::-;;;;;;;;41393:27;;;;;;;;;;41200:3;;;;;:::i;:::-;;;;41164:268;;;;40986:453:::0;;;;;;;;:::o;42899:184::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43002:16:::1;:24;43019:6;43002:24;;;;;;;;;;;;;;;;;;;;;43001:25;42993:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;43069:6;;43049:9;:17;43059:6;43049:17;;;;;;;;;;;:26;;;;;;;:::i;:::-;;42899:184:::0;;;:::o;24425:155::-;24520:52;24539:12;:10;:12::i;:::-;24553:8;24563;24520:18;:52::i;:::-;24425:155;;:::o;38373:24::-;;;;;;;;;;;;;:::o;42691:124::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42768:17:::1;42778:6;;42768:9;:17::i;:::-;42796:11;:9;:11::i;:::-;42691:124:::0;;:::o;38545:47::-;;;;;;;;;;;;;;;;;:::o;43147:109::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43244:4:::1;43217:16;:24;43234:6;43217:24;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;43147:109:::0;:::o;40291:260::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40395:17:::1;;;;;;;;;;;40387:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;40453:9;40448:96;40472:6;;:13;;40468:1;:17;40448:96;;;40503:31;40509:6;;40516:1;40509:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;40520:6;40528:1;40503:31;;;;;;;;;;;::::0;:5:::1;:31::i;:::-;40487:3;;;;;:::i;:::-;;;;40448:96;;;;40291:260:::0;;;:::o;43572:200::-;43671:4;43695:14;:24;43710:8;43695:24;;;;;;;;;;;;;;;;;;;;;;;;;:69;;;;43723:41;43746:7;43755:8;43723:22;:41::i;:::-;43695:69;43688:76;;43572:200;;;;:::o;41490:458::-;41596:9;:17;41606:6;41596:17;;;;;;;;;;;;41589:6;:24;;;;:::i;:::-;41576:9;:37;41568:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41662:14;:22;41677:6;41662:22;;;;;;;;;;;;41652:6;:32;;41644:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41738:1;41729:6;:10;41721:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;41807:15;:23;41823:6;41807:23;;;;;;;;;;;;41797:6;41775:11;:19;41787:6;41775:19;;;;;;;;;;;;:28;;;;:::i;:::-;:55;;41767:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;41886:6;41863:11;:19;41875:6;41863:19;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;41903:37;41909:10;41921:6;41929;41903:37;;;;;;;;;;;;:5;:37::i;:::-;41490:458;;:::o;24892:401::-;25108:12;:10;:12::i;:::-;25100:20;;:4;:20;;;:60;;;;25124:36;25141:4;25147:12;:10;:12::i;:::-;25124:16;:36::i;:::-;25100:60;25078:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;25240:45;25258:4;25264:2;25268;25272:6;25280:4;25240:17;:45::i;:::-;24892:401;;;;;:::o;2876:201::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2985:1:::1;2965:22;;:8;:22;;::::0;2957:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3041:28;3060:8;3041:18;:28::i;:::-;2876:201:::0;:::o;37371:321::-;37522:12;:10;:12::i;:::-;37511:23;;:7;:23;;;:66;;;;37538:39;37555:7;37564:12;:10;:12::i;:::-;37538:16;:39::i;:::-;37511:66;37489:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;37659:25;37665:7;37674:2;37678:5;37659;:25::i;:::-;37371:321;;;:::o;13738:157::-;13823:4;13862:25;13847:40;;;:11;:40;;;;13840:47;;13738:157;;;:::o;685:98::-;738:7;765:10;758:17;;685:98;:::o;23175:105::-;23235:13;23268:4;23261:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23175:105;;;:::o;29846:569::-;30013:1;29999:16;;:2;:16;;;29991:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30066:16;30085:12;:10;:12::i;:::-;30066:31;;30110:102;30131:8;30149:1;30153:2;30157:21;30175:2;30157:17;:21::i;:::-;30180:25;30198:6;30180:17;:25::i;:::-;30207:4;30110:20;:102::i;:::-;30246:6;30225:9;:13;30235:2;30225:13;;;;;;;;;;;:17;30239:2;30225:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;30305:2;30268:52;;30301:1;30268:52;;30283:8;30268:52;;;30309:2;30313:6;30268:52;;;;;;;:::i;:::-;;;;;;;;30333:74;30364:8;30382:1;30386:2;30390;30394:6;30402:4;30333:30;:74::i;:::-;29980:435;29846:569;;;;:::o;27454:1074::-;27681:7;:14;27667:3;:10;:28;27659:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;27773:1;27759:16;;:2;:16;;;27751:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;27830:16;27849:12;:10;:12::i;:::-;27830:31;;27874:60;27895:8;27905:4;27911:2;27915:3;27920:7;27929:4;27874:20;:60::i;:::-;27952:9;27947:421;27971:3;:10;27967:1;:14;27947:421;;;28003:10;28016:3;28020:1;28016:6;;;;;;;;:::i;:::-;;;;;;;;28003:19;;28037:14;28054:7;28062:1;28054:10;;;;;;;;:::i;:::-;;;;;;;;28037:27;;28081:19;28103:9;:13;28113:2;28103:13;;;;;;;;;;;:19;28117:4;28103:19;;;;;;;;;;;;;;;;28081:41;;28160:6;28145:11;:21;;28137:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28293:6;28279:11;:20;28257:9;:13;28267:2;28257:13;;;;;;;;;;;:19;28271:4;28257:19;;;;;;;;;;;;;;;:42;;;;28350:6;28329:9;:13;28339:2;28329:13;;;;;;;;;;;:17;28343:2;28329:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;27988:380;;;27983:3;;;;:::i;:::-;;;27947:421;;;;28415:2;28385:47;;28409:4;28385:47;;28399:8;28385:47;;;28419:3;28424:7;28385:47;;;;;;;:::i;:::-;;;;;;;;28445:75;28481:8;28491:4;28497:2;28501:3;28506:7;28515:4;28445:35;:75::i;:::-;27648:880;27454:1074;;;;;:::o;29372:88::-;29446:6;29439:4;:13;;;;;;;;;;;;:::i;:::-;;29372:88;:::o;32607:891::-;32775:1;32759:18;;:4;:18;;;32751:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32850:7;:14;32836:3;:10;:28;32828:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;32922:16;32941:12;:10;:12::i;:::-;32922:31;;32966:66;32987:8;32997:4;33011:1;33015:3;33020:7;32966:66;;;;;;;;;;;;:20;:66::i;:::-;33050:9;33045:373;33069:3;:10;33065:1;:14;33045:373;;;33101:10;33114:3;33118:1;33114:6;;;;;;;;:::i;:::-;;;;;;;;33101:19;;33135:14;33152:7;33160:1;33152:10;;;;;;;;:::i;:::-;;;;;;;;33135:27;;33179:19;33201:9;:13;33211:2;33201:13;;;;;;;;;;;:19;33215:4;33201:19;;;;;;;;;;;;;;;;33179:41;;33258:6;33243:11;:21;;33235:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;33385:6;33371:11;:20;33349:9;:13;33359:2;33349:13;;;;;;;;;;;:19;33363:4;33349:19;;;;;;;;;;;;;;;:42;;;;33086:332;;;33081:3;;;;;:::i;:::-;;;;33045:373;;;;33473:1;33435:55;;33459:4;33435:55;;33449:8;33435:55;;;33477:3;33482:7;33435:55;;;;;;;:::i;:::-;;;;;;;;32740:758;32607:891;;;:::o;3237:191::-;3311:16;3330:6;;;;;;;;;;;3311:25;;3356:8;3347:6;;:17;;;;;;;;;;;;;;;;;;3411:8;3380:40;;3401:8;3380:40;;;;;;;;;;;;3300:128;3237:191;:::o;33640:331::-;33795:8;33786:17;;:5;:17;;;33778:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33898:8;33860:18;:25;33879:5;33860:25;;;;;;;;;;;;;;;:35;33886:8;33860:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33944:8;33922:41;;33937:5;33922:41;;;33954:8;33922:41;;;;;;:::i;:::-;;;;;;;;33640:331;;;:::o;24652:168::-;24751:4;24775:18;:27;24794:7;24775:27;;;;;;;;;;;;;;;:37;24803:8;24775:37;;;;;;;;;;;;;;;;;;;;;;;;;24768:44;;24652:168;;;;:::o;26276:820::-;26478:1;26464:16;;:2;:16;;;26456:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;26535:16;26554:12;:10;:12::i;:::-;26535:31;;26579:96;26600:8;26610:4;26616:2;26620:21;26638:2;26620:17;:21::i;:::-;26643:25;26661:6;26643:17;:25::i;:::-;26670:4;26579:20;:96::i;:::-;26688:19;26710:9;:13;26720:2;26710:13;;;;;;;;;;;:19;26724:4;26710:19;;;;;;;;;;;;;;;;26688:41;;26763:6;26748:11;:21;;26740:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26888:6;26874:11;:20;26852:9;:13;26862:2;26852:13;;;;;;;;;;;:19;26866:4;26852:19;;;;;;;;;;;;;;;:42;;;;26937:6;26916:9;:13;26926:2;26916:13;;;;;;;;;;;:17;26930:2;26916:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;26992:2;26961:46;;26986:4;26961:46;;26976:8;26961:46;;;26996:2;27000:6;26961:46;;;;;;;:::i;:::-;;;;;;;;27020:68;27051:8;27061:4;27067:2;27071;27075:6;27083:4;27020:30;:68::i;:::-;26445:651;;26276:820;;;;;:::o;31756:648::-;31899:1;31883:18;;:4;:18;;;31875:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31954:16;31973:12;:10;:12::i;:::-;31954:31;;31998:102;32019:8;32029:4;32043:1;32047:21;32065:2;32047:17;:21::i;:::-;32070:25;32088:6;32070:17;:25::i;:::-;31998:102;;;;;;;;;;;;:20;:102::i;:::-;32113:19;32135:9;:13;32145:2;32135:13;;;;;;;;;;;:19;32149:4;32135:19;;;;;;;;;;;;;;;;32113:41;;32188:6;32173:11;:21;;32165:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;32307:6;32293:11;:20;32271:9;:13;32281:2;32271:13;;;;;;;;;;;:19;32285:4;32271:19;;;;;;;;;;;;;;;:42;;;;32381:1;32342:54;;32367:4;32342:54;;32357:8;32342:54;;;32385:2;32389:6;32342:54;;;;;;;:::i;:::-;;;;;;;;31864:540;;31756:648;;;:::o;36729:198::-;36795:16;36824:22;36863:1;36849:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36824:41;;36887:7;36876:5;36882:1;36876:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;36914:5;36907:12;;;36729:198;;;:::o;34927:221::-;;;;;;;:::o;35156:744::-;35371:15;:2;:13;;;:15::i;:::-;35367:526;;;35424:2;35407:38;;;35446:8;35456:4;35462:2;35466:6;35474:4;35407:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35403:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;35755:6;35748:14;;;;;;;;;;;:::i;:::-;;;;;;;;35403:479;;;35804:62;;;;;;;;;;:::i;:::-;;;;;;;;35403:479;35541:43;;;35529:55;;;:8;:55;;;;35525:154;;35609:50;;;;;;;;;;:::i;:::-;;;;;;;;35525:154;35480:214;35367:526;35156:744;;;;;;:::o;35908:813::-;36148:15;:2;:13;;;:15::i;:::-;36144:570;;;36201:2;36184:43;;;36228:8;36238:4;36244:3;36249:7;36258:4;36184:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36180:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;36576:6;36569:14;;;;;;;;;;;:::i;:::-;;;;;;;;36180:523;;;36625:62;;;;;;;;;;:::i;:::-;;;;;;;;36180:523;36357:48;;;36345:60;;;:8;:60;;;;36341:159;;36430:50;;;;;;;;;;:::i;:::-;;;;;;;;36341:159;36264:251;36144:570;35908:813;;;;;;:::o;4674:326::-;4734:4;4991:1;4969:7;:19;;;:23;4962:30;;4674:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:117;3568:1;3565;3558:12;3596:553;3654:8;3664:6;3714:3;3707:4;3699:6;3695:17;3691:27;3681:122;;3722:79;;:::i;:::-;3681:122;3835:6;3822:20;3812:30;;3865:18;3857:6;3854:30;3851:117;;;3887:79;;:::i;:::-;3851:117;4001:4;3993:6;3989:17;3977:29;;4055:3;4047:4;4039:6;4035:17;4025:8;4021:32;4018:41;4015:128;;;4062:79;;:::i;:::-;4015:128;3596:553;;;;;:::o;4155:674::-;4235:6;4243;4251;4300:2;4288:9;4279:7;4275:23;4271:32;4268:119;;;4306:79;;:::i;:::-;4268:119;4454:1;4443:9;4439:17;4426:31;4484:18;4476:6;4473:30;4470:117;;;4506:79;;:::i;:::-;4470:117;4619:65;4676:7;4667:6;4656:9;4652:22;4619:65;:::i;:::-;4601:83;;;;4397:297;4733:2;4759:53;4804:7;4795:6;4784:9;4780:22;4759:53;:::i;:::-;4749:63;;4704:118;4155:674;;;;;:::o;4835:329::-;4894:6;4943:2;4931:9;4922:7;4918:23;4914:32;4911:119;;;4949:79;;:::i;:::-;4911:119;5069:1;5094:53;5139:7;5130:6;5119:9;5115:22;5094:53;:::i;:::-;5084:63;;5040:117;4835:329;;;;:::o;5170:99::-;5222:6;5256:5;5250:12;5240:22;;5170:99;;;:::o;5275:169::-;5359:11;5393:6;5388:3;5381:19;5433:4;5428:3;5424:14;5409:29;;5275:169;;;;:::o;5450:307::-;5518:1;5528:113;5542:6;5539:1;5536:13;5528:113;;;5627:1;5622:3;5618:11;5612:18;5608:1;5603:3;5599:11;5592:39;5564:2;5561:1;5557:10;5552:15;;5528:113;;;5659:6;5656:1;5653:13;5650:101;;;5739:1;5730:6;5725:3;5721:16;5714:27;5650:101;5499:258;5450:307;;;:::o;5763:102::-;5804:6;5855:2;5851:7;5846:2;5839:5;5835:14;5831:28;5821:38;;5763:102;;;:::o;5871:364::-;5959:3;5987:39;6020:5;5987:39;:::i;:::-;6042:71;6106:6;6101:3;6042:71;:::i;:::-;6035:78;;6122:52;6167:6;6162:3;6155:4;6148:5;6144:16;6122:52;:::i;:::-;6199:29;6221:6;6199:29;:::i;:::-;6194:3;6190:39;6183:46;;5963:272;5871:364;;;;:::o;6241:313::-;6354:4;6392:2;6381:9;6377:18;6369:26;;6441:9;6435:4;6431:20;6427:1;6416:9;6412:17;6405:47;6469:78;6542:4;6533:6;6469:78;:::i;:::-;6461:86;;6241:313;;;;:::o;6560:765::-;6646:6;6654;6662;6670;6719:3;6707:9;6698:7;6694:23;6690:33;6687:120;;;6726:79;;:::i;:::-;6687:120;6846:1;6871:53;6916:7;6907:6;6896:9;6892:22;6871:53;:::i;:::-;6861:63;;6817:117;6973:2;6999:53;7044:7;7035:6;7024:9;7020:22;6999:53;:::i;:::-;6989:63;;6944:118;7101:2;7127:53;7172:7;7163:6;7152:9;7148:22;7127:53;:::i;:::-;7117:63;;7072:118;7229:2;7255:53;7300:7;7291:6;7280:9;7276:22;7255:53;:::i;:::-;7245:63;;7200:118;6560:765;;;;;;;:::o;7331:116::-;7401:21;7416:5;7401:21;:::i;:::-;7394:5;7391:32;7381:60;;7437:1;7434;7427:12;7381:60;7331:116;:::o;7453:133::-;7496:5;7534:6;7521:20;7512:29;;7550:30;7574:5;7550:30;:::i;:::-;7453:133;;;;:::o;7592:468::-;7657:6;7665;7714:2;7702:9;7693:7;7689:23;7685:32;7682:119;;;7720:79;;:::i;:::-;7682:119;7840:1;7865:53;7910:7;7901:6;7890:9;7886:22;7865:53;:::i;:::-;7855:63;;7811:117;7967:2;7993:50;8035:7;8026:6;8015:9;8011:22;7993:50;:::i;:::-;7983:60;;7938:115;7592:468;;;;;:::o;8083:568::-;8156:8;8166:6;8216:3;8209:4;8201:6;8197:17;8193:27;8183:122;;8224:79;;:::i;:::-;8183:122;8337:6;8324:20;8314:30;;8367:18;8359:6;8356:30;8353:117;;;8389:79;;:::i;:::-;8353:117;8503:4;8495:6;8491:17;8479:29;;8557:3;8549:4;8541:6;8537:17;8527:8;8523:32;8520:41;8517:128;;;8564:79;;:::i;:::-;8517:128;8083:568;;;;;:::o;8674:::-;8747:8;8757:6;8807:3;8800:4;8792:6;8788:17;8784:27;8774:122;;8815:79;;:::i;:::-;8774:122;8928:6;8915:20;8905:30;;8958:18;8950:6;8947:30;8944:117;;;8980:79;;:::i;:::-;8944:117;9094:4;9086:6;9082:17;9070:29;;9148:3;9140:4;9132:6;9128:17;9118:8;9114:32;9111:41;9108:128;;;9155:79;;:::i;:::-;9108:128;8674:568;;;;;:::o;9248:1309::-;9406:6;9414;9422;9430;9438;9446;9495:2;9483:9;9474:7;9470:23;9466:32;9463:119;;;9501:79;;:::i;:::-;9463:119;9649:1;9638:9;9634:17;9621:31;9679:18;9671:6;9668:30;9665:117;;;9701:79;;:::i;:::-;9665:117;9814:80;9886:7;9877:6;9866:9;9862:22;9814:80;:::i;:::-;9796:98;;;;9592:312;9971:2;9960:9;9956:18;9943:32;10002:18;9994:6;9991:30;9988:117;;;10024:79;;:::i;:::-;9988:117;10137:80;10209:7;10200:6;10189:9;10185:22;10137:80;:::i;:::-;10119:98;;;;9914:313;10294:2;10283:9;10279:18;10266:32;10325:18;10317:6;10314:30;10311:117;;;10347:79;;:::i;:::-;10311:117;10460:80;10532:7;10523:6;10512:9;10508:22;10460:80;:::i;:::-;10442:98;;;;10237:313;9248:1309;;;;;;;;:::o;10563:180::-;10611:77;10608:1;10601:88;10708:4;10705:1;10698:15;10732:4;10729:1;10722:15;10749:281;10832:27;10854:4;10832:27;:::i;:::-;10824:6;10820:40;10962:6;10950:10;10947:22;10926:18;10914:10;10911:34;10908:62;10905:88;;;10973:18;;:::i;:::-;10905:88;11013:10;11009:2;11002:22;10792:238;10749:281;;:::o;11036:129::-;11070:6;11097:20;;:::i;:::-;11087:30;;11126:33;11154:4;11146:6;11126:33;:::i;:::-;11036:129;;;:::o;11171:311::-;11248:4;11338:18;11330:6;11327:30;11324:56;;;11360:18;;:::i;:::-;11324:56;11410:4;11402:6;11398:17;11390:25;;11470:4;11464;11460:15;11452:23;;11171:311;;;:::o;11505:710::-;11601:5;11626:81;11642:64;11699:6;11642:64;:::i;:::-;11626:81;:::i;:::-;11617:90;;11727:5;11756:6;11749:5;11742:21;11790:4;11783:5;11779:16;11772:23;;11843:4;11835:6;11831:17;11823:6;11819:30;11872:3;11864:6;11861:15;11858:122;;;11891:79;;:::i;:::-;11858:122;12006:6;11989:220;12023:6;12018:3;12015:15;11989:220;;;12098:3;12127:37;12160:3;12148:10;12127:37;:::i;:::-;12122:3;12115:50;12194:4;12189:3;12185:14;12178:21;;12065:144;12049:4;12044:3;12040:14;12033:21;;11989:220;;;11993:21;11607:608;;11505:710;;;;;:::o;12238:370::-;12309:5;12358:3;12351:4;12343:6;12339:17;12335:27;12325:122;;12366:79;;:::i;:::-;12325:122;12483:6;12470:20;12508:94;12598:3;12590:6;12583:4;12575:6;12571:17;12508:94;:::i;:::-;12499:103;;12315:293;12238:370;;;;:::o;12614:117::-;12723:1;12720;12713:12;12737:307;12798:4;12888:18;12880:6;12877:30;12874:56;;;12910:18;;:::i;:::-;12874:56;12948:29;12970:6;12948:29;:::i;:::-;12940:37;;13032:4;13026;13022:15;13014:23;;12737:307;;;:::o;13050:154::-;13134:6;13129:3;13124;13111:30;13196:1;13187:6;13182:3;13178:16;13171:27;13050:154;;;:::o;13210:410::-;13287:5;13312:65;13328:48;13369:6;13328:48;:::i;:::-;13312:65;:::i;:::-;13303:74;;13400:6;13393:5;13386:21;13438:4;13431:5;13427:16;13476:3;13467:6;13462:3;13458:16;13455:25;13452:112;;;13483:79;;:::i;:::-;13452:112;13573:41;13607:6;13602:3;13597;13573:41;:::i;:::-;13293:327;13210:410;;;;;:::o;13639:338::-;13694:5;13743:3;13736:4;13728:6;13724:17;13720:27;13710:122;;13751:79;;:::i;:::-;13710:122;13868:6;13855:20;13893:78;13967:3;13959:6;13952:4;13944:6;13940:17;13893:78;:::i;:::-;13884:87;;13700:277;13639:338;;;;:::o;13983:1509::-;14137:6;14145;14153;14161;14169;14218:3;14206:9;14197:7;14193:23;14189:33;14186:120;;;14225:79;;:::i;:::-;14186:120;14345:1;14370:53;14415:7;14406:6;14395:9;14391:22;14370:53;:::i;:::-;14360:63;;14316:117;14472:2;14498:53;14543:7;14534:6;14523:9;14519:22;14498:53;:::i;:::-;14488:63;;14443:118;14628:2;14617:9;14613:18;14600:32;14659:18;14651:6;14648:30;14645:117;;;14681:79;;:::i;:::-;14645:117;14786:78;14856:7;14847:6;14836:9;14832:22;14786:78;:::i;:::-;14776:88;;14571:303;14941:2;14930:9;14926:18;14913:32;14972:18;14964:6;14961:30;14958:117;;;14994:79;;:::i;:::-;14958:117;15099:78;15169:7;15160:6;15149:9;15145:22;15099:78;:::i;:::-;15089:88;;14884:303;15254:3;15243:9;15239:19;15226:33;15286:18;15278:6;15275:30;15272:117;;;15308:79;;:::i;:::-;15272:117;15413:62;15467:7;15458:6;15447:9;15443:22;15413:62;:::i;:::-;15403:72;;15197:288;13983:1509;;;;;;;;:::o;15498:329::-;15557:6;15606:2;15594:9;15585:7;15581:23;15577:32;15574:119;;;15612:79;;:::i;:::-;15574:119;15732:1;15757:53;15802:7;15793:6;15782:9;15778:22;15757:53;:::i;:::-;15747:63;;15703:117;15498:329;;;;:::o;15833:311::-;15910:4;16000:18;15992:6;15989:30;15986:56;;;16022:18;;:::i;:::-;15986:56;16072:4;16064:6;16060:17;16052:25;;16132:4;16126;16122:15;16114:23;;15833:311;;;:::o;16167:710::-;16263:5;16288:81;16304:64;16361:6;16304:64;:::i;:::-;16288:81;:::i;:::-;16279:90;;16389:5;16418:6;16411:5;16404:21;16452:4;16445:5;16441:16;16434:23;;16505:4;16497:6;16493:17;16485:6;16481:30;16534:3;16526:6;16523:15;16520:122;;;16553:79;;:::i;:::-;16520:122;16668:6;16651:220;16685:6;16680:3;16677:15;16651:220;;;16760:3;16789:37;16822:3;16810:10;16789:37;:::i;:::-;16784:3;16777:50;16856:4;16851:3;16847:14;16840:21;;16727:144;16711:4;16706:3;16702:14;16695:21;;16651:220;;;16655:21;16269:608;;16167:710;;;;;:::o;16900:370::-;16971:5;17020:3;17013:4;17005:6;17001:17;16997:27;16987:122;;17028:79;;:::i;:::-;16987:122;17145:6;17132:20;17170:94;17260:3;17252:6;17245:4;17237:6;17233:17;17170:94;:::i;:::-;17161:103;;16977:293;16900:370;;;;:::o;17276:894::-;17394:6;17402;17451:2;17439:9;17430:7;17426:23;17422:32;17419:119;;;17457:79;;:::i;:::-;17419:119;17605:1;17594:9;17590:17;17577:31;17635:18;17627:6;17624:30;17621:117;;;17657:79;;:::i;:::-;17621:117;17762:78;17832:7;17823:6;17812:9;17808:22;17762:78;:::i;:::-;17752:88;;17548:302;17917:2;17906:9;17902:18;17889:32;17948:18;17940:6;17937:30;17934:117;;;17970:79;;:::i;:::-;17934:117;18075:78;18145:7;18136:6;18125:9;18121:22;18075:78;:::i;:::-;18065:88;;17860:303;17276:894;;;;;:::o;18176:114::-;18243:6;18277:5;18271:12;18261:22;;18176:114;;;:::o;18296:184::-;18395:11;18429:6;18424:3;18417:19;18469:4;18464:3;18460:14;18445:29;;18296:184;;;;:::o;18486:132::-;18553:4;18576:3;18568:11;;18606:4;18601:3;18597:14;18589:22;;18486:132;;;:::o;18624:108::-;18701:24;18719:5;18701:24;:::i;:::-;18696:3;18689:37;18624:108;;:::o;18738:179::-;18807:10;18828:46;18870:3;18862:6;18828:46;:::i;:::-;18906:4;18901:3;18897:14;18883:28;;18738:179;;;;:::o;18923:113::-;18993:4;19025;19020:3;19016:14;19008:22;;18923:113;;;:::o;19072:732::-;19191:3;19220:54;19268:5;19220:54;:::i;:::-;19290:86;19369:6;19364:3;19290:86;:::i;:::-;19283:93;;19400:56;19450:5;19400:56;:::i;:::-;19479:7;19510:1;19495:284;19520:6;19517:1;19514:13;19495:284;;;19596:6;19590:13;19623:63;19682:3;19667:13;19623:63;:::i;:::-;19616:70;;19709:60;19762:6;19709:60;:::i;:::-;19699:70;;19555:224;19542:1;19539;19535:9;19530:14;;19495:284;;;19499:14;19795:3;19788:10;;19196:608;;;19072:732;;;;:::o;19810:373::-;19953:4;19991:2;19980:9;19976:18;19968:26;;20040:9;20034:4;20030:20;20026:1;20015:9;20011:17;20004:47;20068:108;20171:4;20162:6;20068:108;:::i;:::-;20060:116;;19810:373;;;;:::o;20189:529::-;20260:6;20268;20317:2;20305:9;20296:7;20292:23;20288:32;20285:119;;;20323:79;;:::i;:::-;20285:119;20471:1;20460:9;20456:17;20443:31;20501:18;20493:6;20490:30;20487:117;;;20523:79;;:::i;:::-;20487:117;20636:65;20693:7;20684:6;20673:9;20669:22;20636:65;:::i;:::-;20618:83;;;;20414:297;20189:529;;;;;:::o;20724:1039::-;20851:6;20859;20867;20916:2;20904:9;20895:7;20891:23;20887:32;20884:119;;;20922:79;;:::i;:::-;20884:119;21042:1;21067:53;21112:7;21103:6;21092:9;21088:22;21067:53;:::i;:::-;21057:63;;21013:117;21197:2;21186:9;21182:18;21169:32;21228:18;21220:6;21217:30;21214:117;;;21250:79;;:::i;:::-;21214:117;21355:78;21425:7;21416:6;21405:9;21401:22;21355:78;:::i;:::-;21345:88;;21140:303;21510:2;21499:9;21495:18;21482:32;21541:18;21533:6;21530:30;21527:117;;;21563:79;;:::i;:::-;21527:117;21668:78;21738:7;21729:6;21718:9;21714:22;21668:78;:::i;:::-;21658:88;;21453:303;20724:1039;;;;;:::o;21769:118::-;21856:24;21874:5;21856:24;:::i;:::-;21851:3;21844:37;21769:118;;:::o;21893:222::-;21986:4;22024:2;22013:9;22009:18;22001:26;;22037:71;22105:1;22094:9;22090:17;22081:6;22037:71;:::i;:::-;21893:222;;;;:::o;22121:1685::-;22315:6;22323;22331;22339;22347;22355;22363;22371;22420:3;22408:9;22399:7;22395:23;22391:33;22388:120;;;22427:79;;:::i;:::-;22388:120;22575:1;22564:9;22560:17;22547:31;22605:18;22597:6;22594:30;22591:117;;;22627:79;;:::i;:::-;22591:117;22740:80;22812:7;22803:6;22792:9;22788:22;22740:80;:::i;:::-;22722:98;;;;22518:312;22897:2;22886:9;22882:18;22869:32;22928:18;22920:6;22917:30;22914:117;;;22950:79;;:::i;:::-;22914:117;23063:80;23135:7;23126:6;23115:9;23111:22;23063:80;:::i;:::-;23045:98;;;;22840:313;23220:2;23209:9;23205:18;23192:32;23251:18;23243:6;23240:30;23237:117;;;23273:79;;:::i;:::-;23237:117;23386:80;23458:7;23449:6;23438:9;23434:22;23386:80;:::i;:::-;23368:98;;;;23163:313;23543:2;23532:9;23528:18;23515:32;23574:18;23566:6;23563:30;23560:117;;;23596:79;;:::i;:::-;23560:117;23709:80;23781:7;23772:6;23761:9;23757:22;23709:80;:::i;:::-;23691:98;;;;23486:313;22121:1685;;;;;;;;;;;:::o;23812:704::-;23907:6;23915;23923;23972:2;23960:9;23951:7;23947:23;23943:32;23940:119;;;23978:79;;:::i;:::-;23940:119;24126:1;24115:9;24111:17;24098:31;24156:18;24148:6;24145:30;24142:117;;;24178:79;;:::i;:::-;24142:117;24291:80;24363:7;24354:6;24343:9;24339:22;24291:80;:::i;:::-;24273:98;;;;24069:312;24420:2;24446:53;24491:7;24482:6;24471:9;24467:22;24446:53;:::i;:::-;24436:63;;24391:118;23812:704;;;;;:::o;24522:474::-;24590:6;24598;24647:2;24635:9;24626:7;24622:23;24618:32;24615:119;;;24653:79;;:::i;:::-;24615:119;24773:1;24798:53;24843:7;24834:6;24823:9;24819:22;24798:53;:::i;:::-;24788:63;;24744:117;24900:2;24926:53;24971:7;24962:6;24951:9;24947:22;24926:53;:::i;:::-;24916:63;;24871:118;24522:474;;;;;:::o;25002:::-;25070:6;25078;25127:2;25115:9;25106:7;25102:23;25098:32;25095:119;;;25133:79;;:::i;:::-;25095:119;25253:1;25278:53;25323:7;25314:6;25303:9;25299:22;25278:53;:::i;:::-;25268:63;;25224:117;25380:2;25406:53;25451:7;25442:6;25431:9;25427:22;25406:53;:::i;:::-;25396:63;;25351:118;25002:474;;;;;:::o;25482:1089::-;25586:6;25594;25602;25610;25618;25667:3;25655:9;25646:7;25642:23;25638:33;25635:120;;;25674:79;;:::i;:::-;25635:120;25794:1;25819:53;25864:7;25855:6;25844:9;25840:22;25819:53;:::i;:::-;25809:63;;25765:117;25921:2;25947:53;25992:7;25983:6;25972:9;25968:22;25947:53;:::i;:::-;25937:63;;25892:118;26049:2;26075:53;26120:7;26111:6;26100:9;26096:22;26075:53;:::i;:::-;26065:63;;26020:118;26177:2;26203:53;26248:7;26239:6;26228:9;26224:22;26203:53;:::i;:::-;26193:63;;26148:118;26333:3;26322:9;26318:19;26305:33;26365:18;26357:6;26354:30;26351:117;;;26387:79;;:::i;:::-;26351:117;26492:62;26546:7;26537:6;26526:9;26522:22;26492:62;:::i;:::-;26482:72;;26276:288;25482:1089;;;;;;;;:::o;26577:619::-;26654:6;26662;26670;26719:2;26707:9;26698:7;26694:23;26690:32;26687:119;;;26725:79;;:::i;:::-;26687:119;26845:1;26870:53;26915:7;26906:6;26895:9;26891:22;26870:53;:::i;:::-;26860:63;;26816:117;26972:2;26998:53;27043:7;27034:6;27023:9;27019:22;26998:53;:::i;:::-;26988:63;;26943:118;27100:2;27126:53;27171:7;27162:6;27151:9;27147:22;27126:53;:::i;:::-;27116:63;;27071:118;26577:619;;;;;:::o;27202:230::-;27342:34;27338:1;27330:6;27326:14;27319:58;27411:13;27406:2;27398:6;27394:15;27387:38;27202:230;:::o;27438:366::-;27580:3;27601:67;27665:2;27660:3;27601:67;:::i;:::-;27594:74;;27677:93;27766:3;27677:93;:::i;:::-;27795:2;27790:3;27786:12;27779:19;;27438:366;;;:::o;27810:419::-;27976:4;28014:2;28003:9;27999:18;27991:26;;28063:9;28057:4;28053:20;28049:1;28038:9;28034:17;28027:47;28091:131;28217:4;28091:131;:::i;:::-;28083:139;;27810:419;;;:::o;28235:182::-;28375:34;28371:1;28363:6;28359:14;28352:58;28235:182;:::o;28423:366::-;28565:3;28586:67;28650:2;28645:3;28586:67;:::i;:::-;28579:74;;28662:93;28751:3;28662:93;:::i;:::-;28780:2;28775:3;28771:12;28764:19;;28423:366;;;:::o;28795:419::-;28961:4;28999:2;28988:9;28984:18;28976:26;;29048:9;29042:4;29038:20;29034:1;29023:9;29019:17;29012:47;29076:131;29202:4;29076:131;:::i;:::-;29068:139;;28795:419;;;:::o;29220:180::-;29268:77;29265:1;29258:88;29365:4;29362:1;29355:15;29389:4;29386:1;29379:15;29406:320;29450:6;29487:1;29481:4;29477:12;29467:22;;29534:1;29528:4;29524:12;29555:18;29545:81;;29611:4;29603:6;29599:17;29589:27;;29545:81;29673:2;29665:6;29662:14;29642:18;29639:38;29636:84;;29692:18;;:::i;:::-;29636:84;29457:269;29406:320;;;:::o;29732:161::-;29872:13;29868:1;29860:6;29856:14;29849:37;29732:161;:::o;29899:366::-;30041:3;30062:67;30126:2;30121:3;30062:67;:::i;:::-;30055:74;;30138:93;30227:3;30138:93;:::i;:::-;30256:2;30251:3;30247:12;30240:19;;29899:366;;;:::o;30271:419::-;30437:4;30475:2;30464:9;30460:18;30452:26;;30524:9;30518:4;30514:20;30510:1;30499:9;30495:17;30488:47;30552:131;30678:4;30552:131;:::i;:::-;30544:139;;30271:419;;;:::o;30696:167::-;30836:19;30832:1;30824:6;30820:14;30813:43;30696:167;:::o;30869:366::-;31011:3;31032:67;31096:2;31091:3;31032:67;:::i;:::-;31025:74;;31108:93;31197:3;31108:93;:::i;:::-;31226:2;31221:3;31217:12;31210:19;;30869:366;;;:::o;31241:419::-;31407:4;31445:2;31434:9;31430:18;31422:26;;31494:9;31488:4;31484:20;31480:1;31469:9;31465:17;31458:47;31522:131;31648:4;31522:131;:::i;:::-;31514:139;;31241:419;;;:::o;31666:180::-;31714:77;31711:1;31704:88;31811:4;31808:1;31801:15;31835:4;31832:1;31825:15;31852:180;31900:77;31897:1;31890:88;31997:4;31994:1;31987:15;32021:4;32018:1;32011:15;32038:233;32077:3;32100:24;32118:5;32100:24;:::i;:::-;32091:33;;32146:66;32139:5;32136:77;32133:103;;32216:18;;:::i;:::-;32133:103;32263:1;32256:5;32252:13;32245:20;;32038:233;;;:::o;32277:237::-;32417:34;32413:1;32405:6;32401:14;32394:58;32486:20;32481:2;32473:6;32469:15;32462:45;32277:237;:::o;32520:366::-;32662:3;32683:67;32747:2;32742:3;32683:67;:::i;:::-;32676:74;;32759:93;32848:3;32759:93;:::i;:::-;32877:2;32872:3;32868:12;32861:19;;32520:366;;;:::o;32892:419::-;33058:4;33096:2;33085:9;33081:18;33073:26;;33145:9;33139:4;33135:20;33131:1;33120:9;33116:17;33109:47;33173:131;33299:4;33173:131;:::i;:::-;33165:139;;32892:419;;;:::o;33317:228::-;33457:34;33453:1;33445:6;33441:14;33434:58;33526:11;33521:2;33513:6;33509:15;33502:36;33317:228;:::o;33551:366::-;33693:3;33714:67;33778:2;33773:3;33714:67;:::i;:::-;33707:74;;33790:93;33879:3;33790:93;:::i;:::-;33908:2;33903:3;33899:12;33892:19;;33551:366;;;:::o;33923:419::-;34089:4;34127:2;34116:9;34112:18;34104:26;;34176:9;34170:4;34166:20;34162:1;34151:9;34147:17;34140:47;34204:131;34330:4;34204:131;:::i;:::-;34196:139;;33923:419;;;:::o;34348:157::-;34488:9;34484:1;34476:6;34472:14;34465:33;34348:157;:::o;34511:365::-;34653:3;34674:66;34738:1;34733:3;34674:66;:::i;:::-;34667:73;;34749:93;34838:3;34749:93;:::i;:::-;34867:2;34862:3;34858:12;34851:19;;34511:365;;;:::o;34882:419::-;35048:4;35086:2;35075:9;35071:18;35063:26;;35135:9;35129:4;35125:20;35121:1;35110:9;35106:17;35099:47;35163:131;35289:4;35163:131;:::i;:::-;35155:139;;34882:419;;;:::o;35307:228::-;35447:34;35443:1;35435:6;35431:14;35424:58;35516:11;35511:2;35503:6;35499:15;35492:36;35307:228;:::o;35541:366::-;35683:3;35704:67;35768:2;35763:3;35704:67;:::i;:::-;35697:74;;35780:93;35869:3;35780:93;:::i;:::-;35898:2;35893:3;35889:12;35882:19;;35541:366;;;:::o;35913:419::-;36079:4;36117:2;36106:9;36102:18;36094:26;;36166:9;36160:4;36156:20;36152:1;36141:9;36137:17;36130:47;36194:131;36320:4;36194:131;:::i;:::-;36186:139;;35913:419;;;:::o;36338:348::-;36378:7;36401:20;36419:1;36401:20;:::i;:::-;36396:25;;36435:20;36453:1;36435:20;:::i;:::-;36430:25;;36623:1;36555:66;36551:74;36548:1;36545:81;36540:1;36533:9;36526:17;36522:105;36519:131;;;36630:18;;:::i;:::-;36519:131;36678:1;36675;36671:9;36660:20;;36338:348;;;;:::o;36692:165::-;36832:17;36828:1;36820:6;36816:14;36809:41;36692:165;:::o;36863:366::-;37005:3;37026:67;37090:2;37085:3;37026:67;:::i;:::-;37019:74;;37102:93;37191:3;37102:93;:::i;:::-;37220:2;37215:3;37211:12;37204:19;;36863:366;;;:::o;37235:419::-;37401:4;37439:2;37428:9;37424:18;37416:26;;37488:9;37482:4;37478:20;37474:1;37463:9;37459:17;37452:47;37516:131;37642:4;37516:131;:::i;:::-;37508:139;;37235:419;;;:::o;37660:171::-;37800:23;37796:1;37788:6;37784:14;37777:47;37660:171;:::o;37837:366::-;37979:3;38000:67;38064:2;38059:3;38000:67;:::i;:::-;37993:74;;38076:93;38165:3;38076:93;:::i;:::-;38194:2;38189:3;38185:12;38178:19;;37837:366;;;:::o;38209:419::-;38375:4;38413:2;38402:9;38398:18;38390:26;;38462:9;38456:4;38452:20;38448:1;38437:9;38433:17;38426:47;38490:131;38616:4;38490:131;:::i;:::-;38482:139;;38209:419;;;:::o;38634:162::-;38774:14;38770:1;38762:6;38758:14;38751:38;38634:162;:::o;38802:366::-;38944:3;38965:67;39029:2;39024:3;38965:67;:::i;:::-;38958:74;;39041:93;39130:3;39041:93;:::i;:::-;39159:2;39154:3;39150:12;39143:19;;38802:366;;;:::o;39174:419::-;39340:4;39378:2;39367:9;39363:18;39355:26;;39427:9;39421:4;39417:20;39413:1;39402:9;39398:17;39391:47;39455:131;39581:4;39455:131;:::i;:::-;39447:139;;39174:419;;;:::o;39599:305::-;39639:3;39658:20;39676:1;39658:20;:::i;:::-;39653:25;;39692:20;39710:1;39692:20;:::i;:::-;39687:25;;39846:1;39778:66;39774:74;39771:1;39768:81;39765:107;;;39852:18;;:::i;:::-;39765:107;39896:1;39893;39889:9;39882:16;;39599:305;;;;:::o;39910:165::-;40050:17;40046:1;40038:6;40034:14;40027:41;39910:165;:::o;40081:366::-;40223:3;40244:67;40308:2;40303:3;40244:67;:::i;:::-;40237:74;;40320:93;40409:3;40320:93;:::i;:::-;40438:2;40433:3;40429:12;40422:19;;40081:366;;;:::o;40453:419::-;40619:4;40657:2;40646:9;40642:18;40634:26;;40706:9;40700:4;40696:20;40692:1;40681:9;40677:17;40670:47;40734:131;40860:4;40734:131;:::i;:::-;40726:139;;40453:419;;;:::o;40878:225::-;41018:34;41014:1;41006:6;41002:14;40995:58;41087:8;41082:2;41074:6;41070:15;41063:33;40878:225;:::o;41109:366::-;41251:3;41272:67;41336:2;41331:3;41272:67;:::i;:::-;41265:74;;41348:93;41437:3;41348:93;:::i;:::-;41466:2;41461:3;41457:12;41450:19;;41109:366;;;:::o;41481:419::-;41647:4;41685:2;41674:9;41670:18;41662:26;;41734:9;41728:4;41724:20;41720:1;41709:9;41705:17;41698:47;41762:131;41888:4;41762:131;:::i;:::-;41754:139;;41481:419;;;:::o;41906:220::-;42046:34;42042:1;42034:6;42030:14;42023:58;42115:3;42110:2;42102:6;42098:15;42091:28;41906:220;:::o;42132:366::-;42274:3;42295:67;42359:2;42354:3;42295:67;:::i;:::-;42288:74;;42371:93;42460:3;42371:93;:::i;:::-;42489:2;42484:3;42480:12;42473:19;;42132:366;;;:::o;42504:419::-;42670:4;42708:2;42697:9;42693:18;42685:26;;42757:9;42751:4;42747:20;42743:1;42732:9;42728:17;42721:47;42785:131;42911:4;42785:131;:::i;:::-;42777:139;;42504:419;;;:::o;42929:332::-;43050:4;43088:2;43077:9;43073:18;43065:26;;43101:71;43169:1;43158:9;43154:17;43145:6;43101:71;:::i;:::-;43182:72;43250:2;43239:9;43235:18;43226:6;43182:72;:::i;:::-;42929:332;;;;;:::o;43267:227::-;43407:34;43403:1;43395:6;43391:14;43384:58;43476:10;43471:2;43463:6;43459:15;43452:35;43267:227;:::o;43500:366::-;43642:3;43663:67;43727:2;43722:3;43663:67;:::i;:::-;43656:74;;43739:93;43828:3;43739:93;:::i;:::-;43857:2;43852:3;43848:12;43841:19;;43500:366;;;:::o;43872:419::-;44038:4;44076:2;44065:9;44061:18;44053:26;;44125:9;44119:4;44115:20;44111:1;44100:9;44096:17;44089:47;44153:131;44279:4;44153:131;:::i;:::-;44145:139;;43872:419;;;:::o;44297:224::-;44437:34;44433:1;44425:6;44421:14;44414:58;44506:7;44501:2;44493:6;44489:15;44482:32;44297:224;:::o;44527:366::-;44669:3;44690:67;44754:2;44749:3;44690:67;:::i;:::-;44683:74;;44766:93;44855:3;44766:93;:::i;:::-;44884:2;44879:3;44875:12;44868:19;;44527:366;;;:::o;44899:419::-;45065:4;45103:2;45092:9;45088:18;45080:26;;45152:9;45146:4;45142:20;45138:1;45127:9;45123:17;45116:47;45180:131;45306:4;45180:131;:::i;:::-;45172:139;;44899:419;;;:::o;45324:229::-;45464:34;45460:1;45452:6;45448:14;45441:58;45533:12;45528:2;45520:6;45516:15;45509:37;45324:229;:::o;45559:366::-;45701:3;45722:67;45786:2;45781:3;45722:67;:::i;:::-;45715:74;;45798:93;45887:3;45798:93;:::i;:::-;45916:2;45911:3;45907:12;45900:19;;45559:366;;;:::o;45931:419::-;46097:4;46135:2;46124:9;46120:18;46112:26;;46184:9;46178:4;46174:20;46170:1;46159:9;46155:17;46148:47;46212:131;46338:4;46212:131;:::i;:::-;46204:139;;45931:419;;;:::o;46356:634::-;46577:4;46615:2;46604:9;46600:18;46592:26;;46664:9;46658:4;46654:20;46650:1;46639:9;46635:17;46628:47;46692:108;46795:4;46786:6;46692:108;:::i;:::-;46684:116;;46847:9;46841:4;46837:20;46832:2;46821:9;46817:18;46810:48;46875:108;46978:4;46969:6;46875:108;:::i;:::-;46867:116;;46356:634;;;;;:::o;46996:222::-;47136:34;47132:1;47124:6;47120:14;47113:58;47205:5;47200:2;47192:6;47188:15;47181:30;46996:222;:::o;47224:366::-;47366:3;47387:67;47451:2;47446:3;47387:67;:::i;:::-;47380:74;;47463:93;47552:3;47463:93;:::i;:::-;47581:2;47576:3;47572:12;47565:19;;47224:366;;;:::o;47596:419::-;47762:4;47800:2;47789:9;47785:18;47777:26;;47849:9;47843:4;47839:20;47835:1;47824:9;47820:17;47813:47;47877:131;48003:4;47877:131;:::i;:::-;47869:139;;47596:419;;;:::o;48021:223::-;48161:34;48157:1;48149:6;48145:14;48138:58;48230:6;48225:2;48217:6;48213:15;48206:31;48021:223;:::o;48250:366::-;48392:3;48413:67;48477:2;48472:3;48413:67;:::i;:::-;48406:74;;48489:93;48578:3;48489:93;:::i;:::-;48607:2;48602:3;48598:12;48591:19;;48250:366;;;:::o;48622:419::-;48788:4;48826:2;48815:9;48811:18;48803:26;;48875:9;48869:4;48865:20;48861:1;48850:9;48846:17;48839:47;48903:131;49029:4;48903:131;:::i;:::-;48895:139;;48622:419;;;:::o;49047:228::-;49187:34;49183:1;49175:6;49171:14;49164:58;49256:11;49251:2;49243:6;49239:15;49232:36;49047:228;:::o;49281:366::-;49423:3;49444:67;49508:2;49503:3;49444:67;:::i;:::-;49437:74;;49520:93;49609:3;49520:93;:::i;:::-;49638:2;49633:3;49629:12;49622:19;;49281:366;;;:::o;49653:419::-;49819:4;49857:2;49846:9;49842:18;49834:26;;49906:9;49900:4;49896:20;49892:1;49881:9;49877:17;49870:47;49934:131;50060:4;49934:131;:::i;:::-;49926:139;;49653:419;;;:::o;50078:98::-;50129:6;50163:5;50157:12;50147:22;;50078:98;;;:::o;50182:168::-;50265:11;50299:6;50294:3;50287:19;50339:4;50334:3;50330:14;50315:29;;50182:168;;;;:::o;50356:360::-;50442:3;50470:38;50502:5;50470:38;:::i;:::-;50524:70;50587:6;50582:3;50524:70;:::i;:::-;50517:77;;50603:52;50648:6;50643:3;50636:4;50629:5;50625:16;50603:52;:::i;:::-;50680:29;50702:6;50680:29;:::i;:::-;50675:3;50671:39;50664:46;;50446:270;50356:360;;;;:::o;50722:751::-;50945:4;50983:3;50972:9;50968:19;50960:27;;50997:71;51065:1;51054:9;51050:17;51041:6;50997:71;:::i;:::-;51078:72;51146:2;51135:9;51131:18;51122:6;51078:72;:::i;:::-;51160;51228:2;51217:9;51213:18;51204:6;51160:72;:::i;:::-;51242;51310:2;51299:9;51295:18;51286:6;51242:72;:::i;:::-;51362:9;51356:4;51352:20;51346:3;51335:9;51331:19;51324:49;51390:76;51461:4;51452:6;51390:76;:::i;:::-;51382:84;;50722:751;;;;;;;;:::o;51479:141::-;51535:5;51566:6;51560:13;51551:22;;51582:32;51608:5;51582:32;:::i;:::-;51479:141;;;;:::o;51626:349::-;51695:6;51744:2;51732:9;51723:7;51719:23;51715:32;51712:119;;;51750:79;;:::i;:::-;51712:119;51870:1;51895:63;51950:7;51941:6;51930:9;51926:22;51895:63;:::i;:::-;51885:73;;51841:127;51626:349;;;;:::o;51981:106::-;52025:8;52074:5;52069:3;52065:15;52044:36;;51981:106;;;:::o;52093:183::-;52128:3;52166:1;52148:16;52145:23;52142:128;;;52204:1;52201;52198;52183:23;52226:34;52257:1;52251:8;52226:34;:::i;:::-;52219:41;;52142:128;52093:183;:::o;52282:711::-;52321:3;52359:4;52341:16;52338:26;52367:5;52335:39;52396:20;;:::i;:::-;52471:1;52453:16;52449:24;52446:1;52440:4;52425:49;52504:4;52498:11;52603:16;52596:4;52588:6;52584:17;52581:39;52548:18;52540:6;52537:30;52521:113;52518:146;;;52649:5;;;;52518:146;52695:6;52689:4;52685:17;52731:3;52725:10;52758:18;52750:6;52747:30;52744:43;;;52780:5;;;;;;52744:43;52828:6;52821:4;52816:3;52812:14;52808:27;52887:1;52869:16;52865:24;52859:4;52855:35;52850:3;52847:44;52844:57;;;52894:5;;;;;;;52844:57;52911;52959:6;52953:4;52949:17;52941:6;52937:30;52931:4;52911:57;:::i;:::-;52984:3;52977:10;;52325:668;;;;;52282:711;;:::o;52999:239::-;53139:34;53135:1;53127:6;53123:14;53116:58;53208:22;53203:2;53195:6;53191:15;53184:47;52999:239;:::o;53244:366::-;53386:3;53407:67;53471:2;53466:3;53407:67;:::i;:::-;53400:74;;53483:93;53572:3;53483:93;:::i;:::-;53601:2;53596:3;53592:12;53585:19;;53244:366;;;:::o;53616:419::-;53782:4;53820:2;53809:9;53805:18;53797:26;;53869:9;53863:4;53859:20;53855:1;53844:9;53840:17;53833:47;53897:131;54023:4;53897:131;:::i;:::-;53889:139;;53616:419;;;:::o;54041:227::-;54181:34;54177:1;54169:6;54165:14;54158:58;54250:10;54245:2;54237:6;54233:15;54226:35;54041:227;:::o;54274:366::-;54416:3;54437:67;54501:2;54496:3;54437:67;:::i;:::-;54430:74;;54513:93;54602:3;54513:93;:::i;:::-;54631:2;54626:3;54622:12;54615:19;;54274:366;;;:::o;54646:419::-;54812:4;54850:2;54839:9;54835:18;54827:26;;54899:9;54893:4;54889:20;54885:1;54874:9;54870:17;54863:47;54927:131;55053:4;54927:131;:::i;:::-;54919:139;;54646:419;;;:::o;55071:1053::-;55394:4;55432:3;55421:9;55417:19;55409:27;;55446:71;55514:1;55503:9;55499:17;55490:6;55446:71;:::i;:::-;55527:72;55595:2;55584:9;55580:18;55571:6;55527:72;:::i;:::-;55646:9;55640:4;55636:20;55631:2;55620:9;55616:18;55609:48;55674:108;55777:4;55768:6;55674:108;:::i;:::-;55666:116;;55829:9;55823:4;55819:20;55814:2;55803:9;55799:18;55792:48;55857:108;55960:4;55951:6;55857:108;:::i;:::-;55849:116;;56013:9;56007:4;56003:20;55997:3;55986:9;55982:19;55975:49;56041:76;56112:4;56103:6;56041:76;:::i;:::-;56033:84;;55071:1053;;;;;;;;:::o

Swarm Source

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