ETH Price: $3,057.44 (+2.53%)
Gas: 1 Gwei

Token

chibizuki ()
 

Overview

Max Total Supply

5,555 chibizuki

Holders

530

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lazthe01.eth
Balance
4 chibizuki
0x09846C9ED5D569b3c2429b03997Ca9f7bC76393a
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:
chibizuki

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts 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/contracts/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/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev 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, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: chibizuki.sol


pragma solidity >=0.7.0 <0.9.0;




contract chibizuki is ERC721, Ownable, ReentrancyGuard {
  using Strings for uint256;
  using Counters for Counters.Counter;
  Counters.Counter private supply;
  string public baseURI = "ipfs://QmUDL5QVHXxGnMVaZLg3qvYBZjapLsARP5xqJfvryjdZNN/";
  string public baseExtension = ".json";
    
  uint256 public cost = 0.00 ether;
  uint256 public maxSupply = 5555;
  uint256 public maxMintAmountPerTx = 10;
  bool public paused = true;
  
  constructor() ERC721("chibizuki", "") { }
  function totalSupply() public view returns (uint256) { 
    return supply.current();
  }
  function mint(uint256 _mintAmount) public payable nonReentrant {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(!paused || msg.sender == owner(), "The contract is paused!");
    require(msg.value >= cost * _mintAmount || msg.sender == owner(), "Insufficient funds!");
    _mintLoop(msg.sender, _mintAmount);
  }
  
  function walletOfOwner(address _owner) public view returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;
    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);
      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;
        ownedTokenIndex++;
      }
      currentTokenId++;
    }
    return ownedTokenIds;
  }
  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), baseExtension))
        : "";
  }
 
  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }
  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }
  function setBaseURI(string memory baseURI_in) public onlyOwner {
    baseURI = baseURI_in;
  }
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }
  function withdraw() public onlyOwner {
    uint256 balance = address(this).balance;
    Address.sendValue(payable(owner()), balance);
  }
  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_in","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280603681526020016200431b60369139600990805190602001906200003592919062000233565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200008392919062000233565b506000600b556115b3600c55600a600d556001600e60006101000a81548160ff021916908315150217905550348015620000bc57600080fd5b506040518060400160405280600981526020017f63686962697a756b6900000000000000000000000000000000000000000000008152506040518060200160405280600081525081600090805190602001906200011b92919062000233565b5080600190805190602001906200013492919062000233565b505050620001576200014b6200016560201b60201c565b6200016d60201b60201c565b600160078190555062000348565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024190620002e3565b90600052602060002090601f016020900481019282620002655760008555620002b1565b82601f106200028057805160ff1916838001178555620002b1565b82800160010185558215620002b1579182015b82811115620002b057825182559160200191906001019062000293565b5b509050620002c09190620002c4565b5090565b5b80821115620002df576000816000905550600101620002c5565b5090565b60006002820490506001821680620002fc57607f821691505b6020821081141562000313576200031262000319565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613fc380620003586000396000f3fe6080604052600436106101d85760003560e01c80636c0360eb11610102578063b071401b11610095578063d5abeb0111610064578063d5abeb0114610689578063da3ef23f146106b4578063e985e9c5146106dd578063f2fde38b1461071a576101d8565b8063b071401b146105cf578063b88d4fde146105f8578063c668286214610621578063c87b56dd1461064c576101d8565b806394354fd0116100d157806394354fd01461053457806395d89b411461055f578063a0712d681461058a578063a22cb465146105a6576101d8565b80636c0360eb1461048a57806370a08231146104b5578063715018a6146104f25780638da5cb5b14610509576101d8565b806323b872dd1161017a57806344a0d68a1161014957806344a0d68a146103d057806355f804b3146103f95780635c975abb146104225780636352211e1461044d576101d8565b806323b872dd1461032a5780633ccfd60b1461035357806342842e0e1461036a578063438b630014610393576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806313faede6146102ab57806316c38b3c146102d657806318160ddd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612ac3565b610743565b604051610211919061317e565b60405180910390f35b34801561022657600080fd5b5061022f610825565b60405161023c9190613199565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612b66565b6108b7565b60405161027991906130f5565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612a56565b61093c565b005b3480156102b757600080fd5b506102c0610a54565b6040516102cd919061349b565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612a96565b610a5a565b005b34801561030b57600080fd5b50610314610af3565b604051610321919061349b565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612940565b610b04565b005b34801561035f57600080fd5b50610368610b64565b005b34801561037657600080fd5b50610391600480360381019061038c9190612940565b610bf9565b005b34801561039f57600080fd5b506103ba60048036038101906103b591906128d3565b610c19565b6040516103c7919061315c565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f29190612b66565b610d24565b005b34801561040557600080fd5b50610420600480360381019061041b9190612b1d565b610daa565b005b34801561042e57600080fd5b50610437610e40565b604051610444919061317e565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190612b66565b610e53565b60405161048191906130f5565b60405180910390f35b34801561049657600080fd5b5061049f610f05565b6040516104ac9190613199565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d791906128d3565b610f93565b6040516104e9919061349b565b60405180910390f35b3480156104fe57600080fd5b5061050761104b565b005b34801561051557600080fd5b5061051e6110d3565b60405161052b91906130f5565b60405180910390f35b34801561054057600080fd5b506105496110fd565b604051610556919061349b565b60405180910390f35b34801561056b57600080fd5b50610574611103565b6040516105819190613199565b60405180910390f35b6105a4600480360381019061059f9190612b66565b611195565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190612a16565b6113bc565b005b3480156105db57600080fd5b506105f660048036038101906105f19190612b66565b6113d2565b005b34801561060457600080fd5b5061061f600480360381019061061a9190612993565b611458565b005b34801561062d57600080fd5b506106366114ba565b6040516106439190613199565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e9190612b66565b611548565b6040516106809190613199565b60405180910390f35b34801561069557600080fd5b5061069e6115f2565b6040516106ab919061349b565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190612b1d565b6115f8565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190612900565b61168e565b604051610711919061317e565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c91906128d3565b611722565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081e575061081d8261181a565b5b9050919050565b606060008054610834906137a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610860906137a4565b80156108ad5780601f10610882576101008083540402835291602001916108ad565b820191906000526020600020905b81548152906001019060200180831161089057829003601f168201915b5050505050905090565b60006108c282611884565b610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f89061337b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094782610e53565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af906133fb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d76118f0565b73ffffffffffffffffffffffffffffffffffffffff161480610a065750610a0581610a006118f0565b61168e565b5b610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c906132fb565b60405180910390fd5b610a4f83836118f8565b505050565b600b5481565b610a626118f0565b73ffffffffffffffffffffffffffffffffffffffff16610a806110d3565b73ffffffffffffffffffffffffffffffffffffffff1614610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd9061339b565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610aff60086119b1565b905090565b610b15610b0f6118f0565b826119bf565b610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b9061343b565b60405180910390fd5b610b5f838383611a9d565b505050565b610b6c6118f0565b73ffffffffffffffffffffffffffffffffffffffff16610b8a6110d3565b73ffffffffffffffffffffffffffffffffffffffff1614610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd79061339b565b60405180910390fd5b6000479050610bf6610bf06110d3565b82611d04565b50565b610c1483838360405180602001604052806000815250611458565b505050565b60606000610c2683610f93565b905060008167ffffffffffffffff811115610c4457610c4361393d565b5b604051908082528060200260200182016040528015610c725781602001602082028036833780820191505090505b50905060006001905060005b8381108015610c8f5750600c548211155b15610d18576000610c9f83610e53565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d045782848381518110610ce957610ce861390e565b5b6020026020010181815250508180610d0090613807565b9250505b8280610d0f90613807565b93505050610c7e565b82945050505050919050565b610d2c6118f0565b73ffffffffffffffffffffffffffffffffffffffff16610d4a6110d3565b73ffffffffffffffffffffffffffffffffffffffff1614610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d979061339b565b60405180910390fd5b80600b8190555050565b610db26118f0565b73ffffffffffffffffffffffffffffffffffffffff16610dd06110d3565b73ffffffffffffffffffffffffffffffffffffffff1614610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d9061339b565b60405180910390fd5b8060099080519060200190610e3c9291906126e7565b5050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef39061333b565b60405180910390fd5b80915050919050565b60098054610f12906137a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3e906137a4565b8015610f8b5780601f10610f6057610100808354040283529160200191610f8b565b820191906000526020600020905b815481529060010190602001808311610f6e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb9061331b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110536118f0565b73ffffffffffffffffffffffffffffffffffffffff166110716110d3565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be9061339b565b60405180910390fd5b6110d16000611df8565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b606060018054611112906137a4565b80601f016020809104026020016040519081016040528092919081815260200182805461113e906137a4565b801561118b5780601f106111605761010080835404028352916020019161118b565b820191906000526020600020905b81548152906001019060200180831161116e57829003601f168201915b5050505050905090565b600260075414156111db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d29061345b565b60405180910390fd5b60026007819055506000811180156111f55750600d548111155b611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b9061323b565b60405180910390fd5b600c548161124260086119b1565b61124c91906135d9565b111561128d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112849061341b565b60405180910390fd5b600e60009054906101000a900460ff1615806112db57506112ac6110d3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61131a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611311906133bb565b60405180910390fd5b80600b546113289190613660565b3410158061136857506113396110d3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e9061347b565b60405180910390fd5b6113b13382611ebe565b600160078190555050565b6113ce6113c76118f0565b8383611efe565b5050565b6113da6118f0565b73ffffffffffffffffffffffffffffffffffffffff166113f86110d3565b73ffffffffffffffffffffffffffffffffffffffff161461144e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114459061339b565b60405180910390fd5b80600d8190555050565b6114696114636118f0565b836119bf565b6114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f9061343b565b60405180910390fd5b6114b48484848461206b565b50505050565b600a80546114c7906137a4565b80601f01602080910402602001604051908101604052809291908181526020018280546114f3906137a4565b80156115405780601f1061151557610100808354040283529160200191611540565b820191906000526020600020905b81548152906001019060200180831161152357829003601f168201915b505050505081565b606061155382611884565b611592576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611589906133db565b60405180910390fd5b600061159c6120c7565b905060008151116115bc57604051806020016040528060008152506115ea565b806115c684612159565b600a6040516020016115da939291906130af565b6040516020818303038152906040525b915050919050565b600c5481565b6116006118f0565b73ffffffffffffffffffffffffffffffffffffffff1661161e6110d3565b73ffffffffffffffffffffffffffffffffffffffff1614611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b9061339b565b60405180910390fd5b80600a908051906020019061168a9291906126e7565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61172a6118f0565b73ffffffffffffffffffffffffffffffffffffffff166117486110d3565b73ffffffffffffffffffffffffffffffffffffffff161461179e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117959061339b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561180e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611805906131db565b60405180910390fd5b61181781611df8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661196b83610e53565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006119ca82611884565b611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a00906132db565b60405180910390fd5b6000611a1483610e53565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a565750611a55818561168e565b5b80611a9457508373ffffffffffffffffffffffffffffffffffffffff16611a7c846108b7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611abd82610e53565b73ffffffffffffffffffffffffffffffffffffffff1614611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a906131fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a9061325b565b60405180910390fd5b611b8e8383836122ba565b611b996000826118f8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611be991906136ba565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c4091906135d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cff8383836122bf565b505050565b80471015611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e906132bb565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d6d906130e0565b60006040518083038185875af1925050503d8060008114611daa576040519150601f19603f3d011682016040523d82523d6000602084013e611daf565b606091505b5050905080611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea9061329b565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611ef957611ed360086122c4565b611ee683611ee160086119b1565b6122da565b8080611ef190613807565b915050611ec1565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f649061327b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205e919061317e565b60405180910390a3505050565b612076848484611a9d565b612082848484846122f8565b6120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b8906131bb565b60405180910390fd5b50505050565b6060600980546120d6906137a4565b80601f0160208091040260200160405190810160405280929190818152602001828054612102906137a4565b801561214f5780601f106121245761010080835404028352916020019161214f565b820191906000526020600020905b81548152906001019060200180831161213257829003601f168201915b5050505050905090565b606060008214156121a1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122b5565b600082905060005b600082146121d35780806121bc90613807565b915050600a826121cc919061362f565b91506121a9565b60008167ffffffffffffffff8111156121ef576121ee61393d565b5b6040519080825280601f01601f1916602001820160405280156122215781602001600182028036833780820191505090505b5090505b600085146122ae5760018261223a91906136ba565b9150600a856122499190613850565b603061225591906135d9565b60f81b81838151811061226b5761226a61390e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122a7919061362f565b9450612225565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6122f482826040518060200160405280600081525061248f565b5050565b60006123198473ffffffffffffffffffffffffffffffffffffffff166124ea565b15612482578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123426118f0565b8786866040518563ffffffff1660e01b81526004016123649493929190613110565b602060405180830381600087803b15801561237e57600080fd5b505af19250505080156123af57506040513d601f19601f820116820180604052508101906123ac9190612af0565b60015b612432573d80600081146123df576040519150601f19603f3d011682016040523d82523d6000602084013e6123e4565b606091505b5060008151141561242a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612421906131bb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612487565b600190505b949350505050565b612499838361250d565b6124a660008484846122f8565b6124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc906131bb565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561257d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125749061335b565b60405180910390fd5b61258681611884565b156125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd9061321b565b60405180910390fd5b6125d2600083836122ba565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461262291906135d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126e3600083836122bf565b5050565b8280546126f3906137a4565b90600052602060002090601f016020900481019282612715576000855561275c565b82601f1061272e57805160ff191683800117855561275c565b8280016001018555821561275c579182015b8281111561275b578251825591602001919060010190612740565b5b509050612769919061276d565b5090565b5b8082111561278657600081600090555060010161276e565b5090565b600061279d612798846134db565b6134b6565b9050828152602081018484840111156127b9576127b8613971565b5b6127c4848285613762565b509392505050565b60006127df6127da8461350c565b6134b6565b9050828152602081018484840111156127fb576127fa613971565b5b612806848285613762565b509392505050565b60008135905061281d81613f31565b92915050565b60008135905061283281613f48565b92915050565b60008135905061284781613f5f565b92915050565b60008151905061285c81613f5f565b92915050565b600082601f8301126128775761287661396c565b5b813561288784826020860161278a565b91505092915050565b600082601f8301126128a5576128a461396c565b5b81356128b58482602086016127cc565b91505092915050565b6000813590506128cd81613f76565b92915050565b6000602082840312156128e9576128e861397b565b5b60006128f78482850161280e565b91505092915050565b600080604083850312156129175761291661397b565b5b60006129258582860161280e565b92505060206129368582860161280e565b9150509250929050565b6000806000606084860312156129595761295861397b565b5b60006129678682870161280e565b93505060206129788682870161280e565b9250506040612989868287016128be565b9150509250925092565b600080600080608085870312156129ad576129ac61397b565b5b60006129bb8782880161280e565b94505060206129cc8782880161280e565b93505060406129dd878288016128be565b925050606085013567ffffffffffffffff8111156129fe576129fd613976565b5b612a0a87828801612862565b91505092959194509250565b60008060408385031215612a2d57612a2c61397b565b5b6000612a3b8582860161280e565b9250506020612a4c85828601612823565b9150509250929050565b60008060408385031215612a6d57612a6c61397b565b5b6000612a7b8582860161280e565b9250506020612a8c858286016128be565b9150509250929050565b600060208284031215612aac57612aab61397b565b5b6000612aba84828501612823565b91505092915050565b600060208284031215612ad957612ad861397b565b5b6000612ae784828501612838565b91505092915050565b600060208284031215612b0657612b0561397b565b5b6000612b148482850161284d565b91505092915050565b600060208284031215612b3357612b3261397b565b5b600082013567ffffffffffffffff811115612b5157612b50613976565b5b612b5d84828501612890565b91505092915050565b600060208284031215612b7c57612b7b61397b565b5b6000612b8a848285016128be565b91505092915050565b6000612b9f8383613091565b60208301905092915050565b612bb4816136ee565b82525050565b6000612bc582613562565b612bcf8185613590565b9350612bda8361353d565b8060005b83811015612c0b578151612bf28882612b93565b9750612bfd83613583565b925050600181019050612bde565b5085935050505092915050565b612c2181613700565b82525050565b6000612c328261356d565b612c3c81856135a1565b9350612c4c818560208601613771565b612c5581613980565b840191505092915050565b6000612c6b82613578565b612c7581856135bd565b9350612c85818560208601613771565b612c8e81613980565b840191505092915050565b6000612ca482613578565b612cae81856135ce565b9350612cbe818560208601613771565b80840191505092915050565b60008154612cd7816137a4565b612ce181866135ce565b94506001821660008114612cfc5760018114612d0d57612d40565b60ff19831686528186019350612d40565b612d168561354d565b60005b83811015612d3857815481890152600182019150602081019050612d19565b838801955050505b50505092915050565b6000612d566032836135bd565b9150612d6182613991565b604082019050919050565b6000612d796026836135bd565b9150612d84826139e0565b604082019050919050565b6000612d9c6025836135bd565b9150612da782613a2f565b604082019050919050565b6000612dbf601c836135bd565b9150612dca82613a7e565b602082019050919050565b6000612de26014836135bd565b9150612ded82613aa7565b602082019050919050565b6000612e056024836135bd565b9150612e1082613ad0565b604082019050919050565b6000612e286019836135bd565b9150612e3382613b1f565b602082019050919050565b6000612e4b603a836135bd565b9150612e5682613b48565b604082019050919050565b6000612e6e601d836135bd565b9150612e7982613b97565b602082019050919050565b6000612e91602c836135bd565b9150612e9c82613bc0565b604082019050919050565b6000612eb46038836135bd565b9150612ebf82613c0f565b604082019050919050565b6000612ed7602a836135bd565b9150612ee282613c5e565b604082019050919050565b6000612efa6029836135bd565b9150612f0582613cad565b604082019050919050565b6000612f1d6020836135bd565b9150612f2882613cfc565b602082019050919050565b6000612f40602c836135bd565b9150612f4b82613d25565b604082019050919050565b6000612f636020836135bd565b9150612f6e82613d74565b602082019050919050565b6000612f866017836135bd565b9150612f9182613d9d565b602082019050919050565b6000612fa9602f836135bd565b9150612fb482613dc6565b604082019050919050565b6000612fcc6021836135bd565b9150612fd782613e15565b604082019050919050565b6000612fef6000836135b2565b9150612ffa82613e64565b600082019050919050565b60006130126014836135bd565b915061301d82613e67565b602082019050919050565b60006130356031836135bd565b915061304082613e90565b604082019050919050565b6000613058601f836135bd565b915061306382613edf565b602082019050919050565b600061307b6013836135bd565b915061308682613f08565b602082019050919050565b61309a81613758565b82525050565b6130a981613758565b82525050565b60006130bb8286612c99565b91506130c78285612c99565b91506130d38284612cca565b9150819050949350505050565b60006130eb82612fe2565b9150819050919050565b600060208201905061310a6000830184612bab565b92915050565b60006080820190506131256000830187612bab565b6131326020830186612bab565b61313f60408301856130a0565b81810360608301526131518184612c27565b905095945050505050565b600060208201905081810360008301526131768184612bba565b905092915050565b60006020820190506131936000830184612c18565b92915050565b600060208201905081810360008301526131b38184612c60565b905092915050565b600060208201905081810360008301526131d481612d49565b9050919050565b600060208201905081810360008301526131f481612d6c565b9050919050565b6000602082019050818103600083015261321481612d8f565b9050919050565b6000602082019050818103600083015261323481612db2565b9050919050565b6000602082019050818103600083015261325481612dd5565b9050919050565b6000602082019050818103600083015261327481612df8565b9050919050565b6000602082019050818103600083015261329481612e1b565b9050919050565b600060208201905081810360008301526132b481612e3e565b9050919050565b600060208201905081810360008301526132d481612e61565b9050919050565b600060208201905081810360008301526132f481612e84565b9050919050565b6000602082019050818103600083015261331481612ea7565b9050919050565b6000602082019050818103600083015261333481612eca565b9050919050565b6000602082019050818103600083015261335481612eed565b9050919050565b6000602082019050818103600083015261337481612f10565b9050919050565b6000602082019050818103600083015261339481612f33565b9050919050565b600060208201905081810360008301526133b481612f56565b9050919050565b600060208201905081810360008301526133d481612f79565b9050919050565b600060208201905081810360008301526133f481612f9c565b9050919050565b6000602082019050818103600083015261341481612fbf565b9050919050565b6000602082019050818103600083015261343481613005565b9050919050565b6000602082019050818103600083015261345481613028565b9050919050565b600060208201905081810360008301526134748161304b565b9050919050565b600060208201905081810360008301526134948161306e565b9050919050565b60006020820190506134b060008301846130a0565b92915050565b60006134c06134d1565b90506134cc82826137d6565b919050565b6000604051905090565b600067ffffffffffffffff8211156134f6576134f561393d565b5b6134ff82613980565b9050602081019050919050565b600067ffffffffffffffff8211156135275761352661393d565b5b61353082613980565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135e482613758565b91506135ef83613758565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561362457613623613881565b5b828201905092915050565b600061363a82613758565b915061364583613758565b925082613655576136546138b0565b5b828204905092915050565b600061366b82613758565b915061367683613758565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136af576136ae613881565b5b828202905092915050565b60006136c582613758565b91506136d083613758565b9250828210156136e3576136e2613881565b5b828203905092915050565b60006136f982613738565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561378f578082015181840152602081019050613774565b8381111561379e576000848401525b50505050565b600060028204905060018216806137bc57607f821691505b602082108114156137d0576137cf6138df565b5b50919050565b6137df82613980565b810181811067ffffffffffffffff821117156137fe576137fd61393d565b5b80604052505050565b600061381282613758565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561384557613844613881565b5b600182019050919050565b600061385b82613758565b915061386683613758565b925082613876576138756138b0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613f3a816136ee565b8114613f4557600080fd5b50565b613f5181613700565b8114613f5c57600080fd5b50565b613f688161370c565b8114613f7357600080fd5b50565b613f7f81613758565b8114613f8a57600080fd5b5056fea2646970667358221220523f344007badf3191421bdb72232dcc33a5a7e71abeb04585bfb026bdae6e4864736f6c63430008070033697066733a2f2f516d55444c355156485878476e4d56615a4c6733717659425a6a61704c734152503578714a667672796a645a4e4e2f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636c0360eb11610102578063b071401b11610095578063d5abeb0111610064578063d5abeb0114610689578063da3ef23f146106b4578063e985e9c5146106dd578063f2fde38b1461071a576101d8565b8063b071401b146105cf578063b88d4fde146105f8578063c668286214610621578063c87b56dd1461064c576101d8565b806394354fd0116100d157806394354fd01461053457806395d89b411461055f578063a0712d681461058a578063a22cb465146105a6576101d8565b80636c0360eb1461048a57806370a08231146104b5578063715018a6146104f25780638da5cb5b14610509576101d8565b806323b872dd1161017a57806344a0d68a1161014957806344a0d68a146103d057806355f804b3146103f95780635c975abb146104225780636352211e1461044d576101d8565b806323b872dd1461032a5780633ccfd60b1461035357806342842e0e1461036a578063438b630014610393576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806313faede6146102ab57806316c38b3c146102d657806318160ddd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612ac3565b610743565b604051610211919061317e565b60405180910390f35b34801561022657600080fd5b5061022f610825565b60405161023c9190613199565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612b66565b6108b7565b60405161027991906130f5565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612a56565b61093c565b005b3480156102b757600080fd5b506102c0610a54565b6040516102cd919061349b565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612a96565b610a5a565b005b34801561030b57600080fd5b50610314610af3565b604051610321919061349b565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612940565b610b04565b005b34801561035f57600080fd5b50610368610b64565b005b34801561037657600080fd5b50610391600480360381019061038c9190612940565b610bf9565b005b34801561039f57600080fd5b506103ba60048036038101906103b591906128d3565b610c19565b6040516103c7919061315c565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f29190612b66565b610d24565b005b34801561040557600080fd5b50610420600480360381019061041b9190612b1d565b610daa565b005b34801561042e57600080fd5b50610437610e40565b604051610444919061317e565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190612b66565b610e53565b60405161048191906130f5565b60405180910390f35b34801561049657600080fd5b5061049f610f05565b6040516104ac9190613199565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d791906128d3565b610f93565b6040516104e9919061349b565b60405180910390f35b3480156104fe57600080fd5b5061050761104b565b005b34801561051557600080fd5b5061051e6110d3565b60405161052b91906130f5565b60405180910390f35b34801561054057600080fd5b506105496110fd565b604051610556919061349b565b60405180910390f35b34801561056b57600080fd5b50610574611103565b6040516105819190613199565b60405180910390f35b6105a4600480360381019061059f9190612b66565b611195565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190612a16565b6113bc565b005b3480156105db57600080fd5b506105f660048036038101906105f19190612b66565b6113d2565b005b34801561060457600080fd5b5061061f600480360381019061061a9190612993565b611458565b005b34801561062d57600080fd5b506106366114ba565b6040516106439190613199565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e9190612b66565b611548565b6040516106809190613199565b60405180910390f35b34801561069557600080fd5b5061069e6115f2565b6040516106ab919061349b565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190612b1d565b6115f8565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190612900565b61168e565b604051610711919061317e565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c91906128d3565b611722565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081e575061081d8261181a565b5b9050919050565b606060008054610834906137a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610860906137a4565b80156108ad5780601f10610882576101008083540402835291602001916108ad565b820191906000526020600020905b81548152906001019060200180831161089057829003601f168201915b5050505050905090565b60006108c282611884565b610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f89061337b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094782610e53565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af906133fb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d76118f0565b73ffffffffffffffffffffffffffffffffffffffff161480610a065750610a0581610a006118f0565b61168e565b5b610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c906132fb565b60405180910390fd5b610a4f83836118f8565b505050565b600b5481565b610a626118f0565b73ffffffffffffffffffffffffffffffffffffffff16610a806110d3565b73ffffffffffffffffffffffffffffffffffffffff1614610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd9061339b565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610aff60086119b1565b905090565b610b15610b0f6118f0565b826119bf565b610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b9061343b565b60405180910390fd5b610b5f838383611a9d565b505050565b610b6c6118f0565b73ffffffffffffffffffffffffffffffffffffffff16610b8a6110d3565b73ffffffffffffffffffffffffffffffffffffffff1614610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd79061339b565b60405180910390fd5b6000479050610bf6610bf06110d3565b82611d04565b50565b610c1483838360405180602001604052806000815250611458565b505050565b60606000610c2683610f93565b905060008167ffffffffffffffff811115610c4457610c4361393d565b5b604051908082528060200260200182016040528015610c725781602001602082028036833780820191505090505b50905060006001905060005b8381108015610c8f5750600c548211155b15610d18576000610c9f83610e53565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d045782848381518110610ce957610ce861390e565b5b6020026020010181815250508180610d0090613807565b9250505b8280610d0f90613807565b93505050610c7e565b82945050505050919050565b610d2c6118f0565b73ffffffffffffffffffffffffffffffffffffffff16610d4a6110d3565b73ffffffffffffffffffffffffffffffffffffffff1614610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d979061339b565b60405180910390fd5b80600b8190555050565b610db26118f0565b73ffffffffffffffffffffffffffffffffffffffff16610dd06110d3565b73ffffffffffffffffffffffffffffffffffffffff1614610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d9061339b565b60405180910390fd5b8060099080519060200190610e3c9291906126e7565b5050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef39061333b565b60405180910390fd5b80915050919050565b60098054610f12906137a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3e906137a4565b8015610f8b5780601f10610f6057610100808354040283529160200191610f8b565b820191906000526020600020905b815481529060010190602001808311610f6e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb9061331b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110536118f0565b73ffffffffffffffffffffffffffffffffffffffff166110716110d3565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be9061339b565b60405180910390fd5b6110d16000611df8565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b606060018054611112906137a4565b80601f016020809104026020016040519081016040528092919081815260200182805461113e906137a4565b801561118b5780601f106111605761010080835404028352916020019161118b565b820191906000526020600020905b81548152906001019060200180831161116e57829003601f168201915b5050505050905090565b600260075414156111db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d29061345b565b60405180910390fd5b60026007819055506000811180156111f55750600d548111155b611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b9061323b565b60405180910390fd5b600c548161124260086119b1565b61124c91906135d9565b111561128d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112849061341b565b60405180910390fd5b600e60009054906101000a900460ff1615806112db57506112ac6110d3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61131a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611311906133bb565b60405180910390fd5b80600b546113289190613660565b3410158061136857506113396110d3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e9061347b565b60405180910390fd5b6113b13382611ebe565b600160078190555050565b6113ce6113c76118f0565b8383611efe565b5050565b6113da6118f0565b73ffffffffffffffffffffffffffffffffffffffff166113f86110d3565b73ffffffffffffffffffffffffffffffffffffffff161461144e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114459061339b565b60405180910390fd5b80600d8190555050565b6114696114636118f0565b836119bf565b6114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f9061343b565b60405180910390fd5b6114b48484848461206b565b50505050565b600a80546114c7906137a4565b80601f01602080910402602001604051908101604052809291908181526020018280546114f3906137a4565b80156115405780601f1061151557610100808354040283529160200191611540565b820191906000526020600020905b81548152906001019060200180831161152357829003601f168201915b505050505081565b606061155382611884565b611592576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611589906133db565b60405180910390fd5b600061159c6120c7565b905060008151116115bc57604051806020016040528060008152506115ea565b806115c684612159565b600a6040516020016115da939291906130af565b6040516020818303038152906040525b915050919050565b600c5481565b6116006118f0565b73ffffffffffffffffffffffffffffffffffffffff1661161e6110d3565b73ffffffffffffffffffffffffffffffffffffffff1614611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b9061339b565b60405180910390fd5b80600a908051906020019061168a9291906126e7565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61172a6118f0565b73ffffffffffffffffffffffffffffffffffffffff166117486110d3565b73ffffffffffffffffffffffffffffffffffffffff161461179e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117959061339b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561180e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611805906131db565b60405180910390fd5b61181781611df8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661196b83610e53565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006119ca82611884565b611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a00906132db565b60405180910390fd5b6000611a1483610e53565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a565750611a55818561168e565b5b80611a9457508373ffffffffffffffffffffffffffffffffffffffff16611a7c846108b7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611abd82610e53565b73ffffffffffffffffffffffffffffffffffffffff1614611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a906131fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a9061325b565b60405180910390fd5b611b8e8383836122ba565b611b996000826118f8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611be991906136ba565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c4091906135d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cff8383836122bf565b505050565b80471015611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e906132bb565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d6d906130e0565b60006040518083038185875af1925050503d8060008114611daa576040519150601f19603f3d011682016040523d82523d6000602084013e611daf565b606091505b5050905080611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea9061329b565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611ef957611ed360086122c4565b611ee683611ee160086119b1565b6122da565b8080611ef190613807565b915050611ec1565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f649061327b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205e919061317e565b60405180910390a3505050565b612076848484611a9d565b612082848484846122f8565b6120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b8906131bb565b60405180910390fd5b50505050565b6060600980546120d6906137a4565b80601f0160208091040260200160405190810160405280929190818152602001828054612102906137a4565b801561214f5780601f106121245761010080835404028352916020019161214f565b820191906000526020600020905b81548152906001019060200180831161213257829003601f168201915b5050505050905090565b606060008214156121a1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122b5565b600082905060005b600082146121d35780806121bc90613807565b915050600a826121cc919061362f565b91506121a9565b60008167ffffffffffffffff8111156121ef576121ee61393d565b5b6040519080825280601f01601f1916602001820160405280156122215781602001600182028036833780820191505090505b5090505b600085146122ae5760018261223a91906136ba565b9150600a856122499190613850565b603061225591906135d9565b60f81b81838151811061226b5761226a61390e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122a7919061362f565b9450612225565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6122f482826040518060200160405280600081525061248f565b5050565b60006123198473ffffffffffffffffffffffffffffffffffffffff166124ea565b15612482578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123426118f0565b8786866040518563ffffffff1660e01b81526004016123649493929190613110565b602060405180830381600087803b15801561237e57600080fd5b505af19250505080156123af57506040513d601f19601f820116820180604052508101906123ac9190612af0565b60015b612432573d80600081146123df576040519150601f19603f3d011682016040523d82523d6000602084013e6123e4565b606091505b5060008151141561242a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612421906131bb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612487565b600190505b949350505050565b612499838361250d565b6124a660008484846122f8565b6124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc906131bb565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561257d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125749061335b565b60405180910390fd5b61258681611884565b156125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd9061321b565b60405180910390fd5b6125d2600083836122ba565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461262291906135d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126e3600083836122bf565b5050565b8280546126f3906137a4565b90600052602060002090601f016020900481019282612715576000855561275c565b82601f1061272e57805160ff191683800117855561275c565b8280016001018555821561275c579182015b8281111561275b578251825591602001919060010190612740565b5b509050612769919061276d565b5090565b5b8082111561278657600081600090555060010161276e565b5090565b600061279d612798846134db565b6134b6565b9050828152602081018484840111156127b9576127b8613971565b5b6127c4848285613762565b509392505050565b60006127df6127da8461350c565b6134b6565b9050828152602081018484840111156127fb576127fa613971565b5b612806848285613762565b509392505050565b60008135905061281d81613f31565b92915050565b60008135905061283281613f48565b92915050565b60008135905061284781613f5f565b92915050565b60008151905061285c81613f5f565b92915050565b600082601f8301126128775761287661396c565b5b813561288784826020860161278a565b91505092915050565b600082601f8301126128a5576128a461396c565b5b81356128b58482602086016127cc565b91505092915050565b6000813590506128cd81613f76565b92915050565b6000602082840312156128e9576128e861397b565b5b60006128f78482850161280e565b91505092915050565b600080604083850312156129175761291661397b565b5b60006129258582860161280e565b92505060206129368582860161280e565b9150509250929050565b6000806000606084860312156129595761295861397b565b5b60006129678682870161280e565b93505060206129788682870161280e565b9250506040612989868287016128be565b9150509250925092565b600080600080608085870312156129ad576129ac61397b565b5b60006129bb8782880161280e565b94505060206129cc8782880161280e565b93505060406129dd878288016128be565b925050606085013567ffffffffffffffff8111156129fe576129fd613976565b5b612a0a87828801612862565b91505092959194509250565b60008060408385031215612a2d57612a2c61397b565b5b6000612a3b8582860161280e565b9250506020612a4c85828601612823565b9150509250929050565b60008060408385031215612a6d57612a6c61397b565b5b6000612a7b8582860161280e565b9250506020612a8c858286016128be565b9150509250929050565b600060208284031215612aac57612aab61397b565b5b6000612aba84828501612823565b91505092915050565b600060208284031215612ad957612ad861397b565b5b6000612ae784828501612838565b91505092915050565b600060208284031215612b0657612b0561397b565b5b6000612b148482850161284d565b91505092915050565b600060208284031215612b3357612b3261397b565b5b600082013567ffffffffffffffff811115612b5157612b50613976565b5b612b5d84828501612890565b91505092915050565b600060208284031215612b7c57612b7b61397b565b5b6000612b8a848285016128be565b91505092915050565b6000612b9f8383613091565b60208301905092915050565b612bb4816136ee565b82525050565b6000612bc582613562565b612bcf8185613590565b9350612bda8361353d565b8060005b83811015612c0b578151612bf28882612b93565b9750612bfd83613583565b925050600181019050612bde565b5085935050505092915050565b612c2181613700565b82525050565b6000612c328261356d565b612c3c81856135a1565b9350612c4c818560208601613771565b612c5581613980565b840191505092915050565b6000612c6b82613578565b612c7581856135bd565b9350612c85818560208601613771565b612c8e81613980565b840191505092915050565b6000612ca482613578565b612cae81856135ce565b9350612cbe818560208601613771565b80840191505092915050565b60008154612cd7816137a4565b612ce181866135ce565b94506001821660008114612cfc5760018114612d0d57612d40565b60ff19831686528186019350612d40565b612d168561354d565b60005b83811015612d3857815481890152600182019150602081019050612d19565b838801955050505b50505092915050565b6000612d566032836135bd565b9150612d6182613991565b604082019050919050565b6000612d796026836135bd565b9150612d84826139e0565b604082019050919050565b6000612d9c6025836135bd565b9150612da782613a2f565b604082019050919050565b6000612dbf601c836135bd565b9150612dca82613a7e565b602082019050919050565b6000612de26014836135bd565b9150612ded82613aa7565b602082019050919050565b6000612e056024836135bd565b9150612e1082613ad0565b604082019050919050565b6000612e286019836135bd565b9150612e3382613b1f565b602082019050919050565b6000612e4b603a836135bd565b9150612e5682613b48565b604082019050919050565b6000612e6e601d836135bd565b9150612e7982613b97565b602082019050919050565b6000612e91602c836135bd565b9150612e9c82613bc0565b604082019050919050565b6000612eb46038836135bd565b9150612ebf82613c0f565b604082019050919050565b6000612ed7602a836135bd565b9150612ee282613c5e565b604082019050919050565b6000612efa6029836135bd565b9150612f0582613cad565b604082019050919050565b6000612f1d6020836135bd565b9150612f2882613cfc565b602082019050919050565b6000612f40602c836135bd565b9150612f4b82613d25565b604082019050919050565b6000612f636020836135bd565b9150612f6e82613d74565b602082019050919050565b6000612f866017836135bd565b9150612f9182613d9d565b602082019050919050565b6000612fa9602f836135bd565b9150612fb482613dc6565b604082019050919050565b6000612fcc6021836135bd565b9150612fd782613e15565b604082019050919050565b6000612fef6000836135b2565b9150612ffa82613e64565b600082019050919050565b60006130126014836135bd565b915061301d82613e67565b602082019050919050565b60006130356031836135bd565b915061304082613e90565b604082019050919050565b6000613058601f836135bd565b915061306382613edf565b602082019050919050565b600061307b6013836135bd565b915061308682613f08565b602082019050919050565b61309a81613758565b82525050565b6130a981613758565b82525050565b60006130bb8286612c99565b91506130c78285612c99565b91506130d38284612cca565b9150819050949350505050565b60006130eb82612fe2565b9150819050919050565b600060208201905061310a6000830184612bab565b92915050565b60006080820190506131256000830187612bab565b6131326020830186612bab565b61313f60408301856130a0565b81810360608301526131518184612c27565b905095945050505050565b600060208201905081810360008301526131768184612bba565b905092915050565b60006020820190506131936000830184612c18565b92915050565b600060208201905081810360008301526131b38184612c60565b905092915050565b600060208201905081810360008301526131d481612d49565b9050919050565b600060208201905081810360008301526131f481612d6c565b9050919050565b6000602082019050818103600083015261321481612d8f565b9050919050565b6000602082019050818103600083015261323481612db2565b9050919050565b6000602082019050818103600083015261325481612dd5565b9050919050565b6000602082019050818103600083015261327481612df8565b9050919050565b6000602082019050818103600083015261329481612e1b565b9050919050565b600060208201905081810360008301526132b481612e3e565b9050919050565b600060208201905081810360008301526132d481612e61565b9050919050565b600060208201905081810360008301526132f481612e84565b9050919050565b6000602082019050818103600083015261331481612ea7565b9050919050565b6000602082019050818103600083015261333481612eca565b9050919050565b6000602082019050818103600083015261335481612eed565b9050919050565b6000602082019050818103600083015261337481612f10565b9050919050565b6000602082019050818103600083015261339481612f33565b9050919050565b600060208201905081810360008301526133b481612f56565b9050919050565b600060208201905081810360008301526133d481612f79565b9050919050565b600060208201905081810360008301526133f481612f9c565b9050919050565b6000602082019050818103600083015261341481612fbf565b9050919050565b6000602082019050818103600083015261343481613005565b9050919050565b6000602082019050818103600083015261345481613028565b9050919050565b600060208201905081810360008301526134748161304b565b9050919050565b600060208201905081810360008301526134948161306e565b9050919050565b60006020820190506134b060008301846130a0565b92915050565b60006134c06134d1565b90506134cc82826137d6565b919050565b6000604051905090565b600067ffffffffffffffff8211156134f6576134f561393d565b5b6134ff82613980565b9050602081019050919050565b600067ffffffffffffffff8211156135275761352661393d565b5b61353082613980565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135e482613758565b91506135ef83613758565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561362457613623613881565b5b828201905092915050565b600061363a82613758565b915061364583613758565b925082613655576136546138b0565b5b828204905092915050565b600061366b82613758565b915061367683613758565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136af576136ae613881565b5b828202905092915050565b60006136c582613758565b91506136d083613758565b9250828210156136e3576136e2613881565b5b828203905092915050565b60006136f982613738565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561378f578082015181840152602081019050613774565b8381111561379e576000848401525b50505050565b600060028204905060018216806137bc57607f821691505b602082108114156137d0576137cf6138df565b5b50919050565b6137df82613980565b810181811067ffffffffffffffff821117156137fe576137fd61393d565b5b80604052505050565b600061381282613758565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561384557613844613881565b5b600182019050919050565b600061385b82613758565b915061386683613758565b925082613876576138756138b0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613f3a816136ee565b8114613f4557600080fd5b50565b613f5181613700565b8114613f5c57600080fd5b50565b613f688161370c565b8114613f7357600080fd5b50565b613f7f81613758565b8114613f8a57600080fd5b5056fea2646970667358221220523f344007badf3191421bdb72232dcc33a5a7e71abeb04585bfb026bdae6e4864736f6c63430008070033

Deployed Bytecode Sourcemap

41555:3047:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28371:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29316:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30876:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30399:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41854:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44064:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42049:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31626:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44145:140;;;;;;;;;;;;;:::i;:::-;;32036:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42606:610;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43626:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43838:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41970:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29010:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41721:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28740:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8954:103;;;;;;;;;;;;;:::i;:::-;;8303:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41927:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29485:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42143:455;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31169:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43704:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32292:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41806:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43220:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41891:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43938:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31395:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9212:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28371:305;28473:4;28525:25;28510:40;;;:11;:40;;;;:105;;;;28582:33;28567:48;;;:11;:48;;;;28510:105;:158;;;;28632:36;28656:11;28632:23;:36::i;:::-;28510:158;28490:178;;28371:305;;;:::o;29316:100::-;29370:13;29403:5;29396:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29316:100;:::o;30876:221::-;30952:7;30980:16;30988:7;30980;:16::i;:::-;30972:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31065:15;:24;31081:7;31065:24;;;;;;;;;;;;;;;;;;;;;31058:31;;30876:221;;;:::o;30399:411::-;30480:13;30496:23;30511:7;30496:14;:23::i;:::-;30480:39;;30544:5;30538:11;;:2;:11;;;;30530:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;30638:5;30622:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30647:37;30664:5;30671:12;:10;:12::i;:::-;30647:16;:37::i;:::-;30622:62;30600:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;30781:21;30790:2;30794:7;30781:8;:21::i;:::-;30469:341;30399:411;;:::o;41854:32::-;;;;:::o;44064:77::-;8534:12;:10;:12::i;:::-;8523:23;;:7;:5;:7::i;:::-;:23;;;8515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44129:6:::1;44120;;:15;;;;;;;;;;;;;;;;;;44064:77:::0;:::o;42049:90::-;42093:7;42117:16;:6;:14;:16::i;:::-;42110:23;;42049:90;:::o;31626:339::-;31821:41;31840:12;:10;:12::i;:::-;31854:7;31821:18;:41::i;:::-;31813:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31929:28;31939:4;31945:2;31949:7;31929:9;:28::i;:::-;31626:339;;;:::o;44145:140::-;8534:12;:10;:12::i;:::-;8523:23;;:7;:5;:7::i;:::-;:23;;;8515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44189:15:::1;44207:21;44189:39;;44235:44;44261:7;:5;:7::i;:::-;44271;44235:17;:44::i;:::-;44182:103;44145:140::o:0;32036:185::-;32174:39;32191:4;32197:2;32201:7;32174:39;;;;;;;;;;;;:16;:39::i;:::-;32036:185;;;:::o;42606:610::-;42666:16;42694:23;42720:17;42730:6;42720:9;:17::i;:::-;42694:43;;42744:30;42791:15;42777:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42744:63;;42814:22;42839:1;42814:26;;42847:23;42881:303;42906:15;42888;:33;:64;;;;;42943:9;;42925:14;:27;;42888:64;42881:303;;;42963:25;42991:23;42999:14;42991:7;:23::i;:::-;42963:51;;43048:6;43027:27;;:17;:27;;;43023:129;;;43100:14;43067:13;43081:15;43067:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;43125:17;;;;;:::i;:::-;;;;43023:129;43160:16;;;;;:::i;:::-;;;;42954:230;42881:303;;;43197:13;43190:20;;;;;;42606:610;;;:::o;43626:74::-;8534:12;:10;:12::i;:::-;8523:23;;:7;:5;:7::i;:::-;:23;;;8515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43689:5:::1;43682:4;:12;;;;43626:74:::0;:::o;43838:96::-;8534:12;:10;:12::i;:::-;8523:23;;:7;:5;:7::i;:::-;:23;;;8515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43918:10:::1;43908:7;:20;;;;;;;;;;;;:::i;:::-;;43838:96:::0;:::o;41970:25::-;;;;;;;;;;;;;:::o;29010:239::-;29082:7;29102:13;29118:7;:16;29126:7;29118:16;;;;;;;;;;;;;;;;;;;;;29102:32;;29170:1;29153:19;;:5;:19;;;;29145:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29236:5;29229:12;;;29010:239;;;:::o;41721:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28740:208::-;28812:7;28857:1;28840:19;;:5;:19;;;;28832:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28924:9;:16;28934:5;28924:16;;;;;;;;;;;;;;;;28917:23;;28740:208;;;:::o;8954:103::-;8534:12;:10;:12::i;:::-;8523:23;;:7;:5;:7::i;:::-;:23;;;8515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9019:30:::1;9046:1;9019:18;:30::i;:::-;8954:103::o:0;8303:87::-;8349:7;8376:6;;;;;;;;;;;8369:13;;8303:87;:::o;41927:38::-;;;;:::o;29485:104::-;29541:13;29574:7;29567:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29485:104;:::o;42143:455::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;42235:1:::1;42221:11;:15;:52;;;;;42255:18;;42240:11;:33;;42221:52;42213:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;42347:9;;42332:11;42313:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;42305:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;42397:6;;;;;;;;;;;42396:7;:32;;;;42421:7;:5;:7::i;:::-;42407:21;;:10;:21;;;42396:32;42388:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42491:11;42484:4;;:18;;;;:::i;:::-;42471:9;:31;;:56;;;;42520:7;:5;:7::i;:::-;42506:21;;:10;:21;;;42471:56;42463:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;42558:34;42568:10;42580:11;42558:9;:34::i;:::-;1768:1:::0;2722:7;:22;;;;42143:455;:::o;31169:155::-;31264:52;31283:12;:10;:12::i;:::-;31297:8;31307;31264:18;:52::i;:::-;31169:155;;:::o;43704:130::-;8534:12;:10;:12::i;:::-;8523:23;;:7;:5;:7::i;:::-;:23;;;8515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43809:19:::1;43788:18;:40;;;;43704:130:::0;:::o;32292:328::-;32467:41;32486:12;:10;:12::i;:::-;32500:7;32467:18;:41::i;:::-;32459:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32573:39;32587:4;32593:2;32597:7;32606:5;32573:13;:39::i;:::-;32292:328;;;;:::o;41806:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43220:399::-;43294:13;43335:17;43343:8;43335:7;:17::i;:::-;43319:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;43424:28;43455:10;:8;:10::i;:::-;43424:41;;43510:1;43485:14;43479:28;:32;:134;;;;;;;;;;;;;;;;;43547:14;43563:19;:8;:17;:19::i;:::-;43584:13;43530:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43479:134;43472:141;;;43220:399;;;:::o;41891:31::-;;;;:::o;43938:122::-;8534:12;:10;:12::i;:::-;8523:23;;:7;:5;:7::i;:::-;:23;;;8515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44037:17:::1;44021:13;:33;;;;;;;;;;;;:::i;:::-;;43938:122:::0;:::o;31395:164::-;31492:4;31516:18;:25;31535:5;31516:25;;;;;;;;;;;;;;;:35;31542:8;31516:35;;;;;;;;;;;;;;;;;;;;;;;;;31509:42;;31395:164;;;;:::o;9212:201::-;8534:12;:10;:12::i;:::-;8523:23;;:7;:5;:7::i;:::-;:23;;;8515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9321:1:::1;9301:22;;:8;:22;;;;9293:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9377:28;9396:8;9377:18;:28::i;:::-;9212:201:::0;:::o;21110:157::-;21195:4;21234:25;21219:40;;;:11;:40;;;;21212:47;;21110:157;;;:::o;34130:127::-;34195:4;34247:1;34219:30;;:7;:16;34227:7;34219:16;;;;;;;;;;;;;;;;;;;;;:30;;;;34212:37;;34130:127;;;:::o;7027:98::-;7080:7;7107:10;7100:17;;7027:98;:::o;38276:174::-;38378:2;38351:15;:24;38367:7;38351:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38434:7;38430:2;38396:46;;38405:23;38420:7;38405:14;:23::i;:::-;38396:46;;;;;;;;;;;;38276:174;;:::o;3631:114::-;3696:7;3723;:14;;;3716:21;;3631:114;;;:::o;34424:348::-;34517:4;34542:16;34550:7;34542;:16::i;:::-;34534:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34618:13;34634:23;34649:7;34634:14;:23::i;:::-;34618:39;;34687:5;34676:16;;:7;:16;;;:52;;;;34696:32;34713:5;34720:7;34696:16;:32::i;:::-;34676:52;:87;;;;34756:7;34732:31;;:20;34744:7;34732:11;:20::i;:::-;:31;;;34676:87;34668:96;;;34424:348;;;;:::o;37533:625::-;37692:4;37665:31;;:23;37680:7;37665:14;:23::i;:::-;:31;;;37657:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37771:1;37757:16;;:2;:16;;;;37749:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37827:39;37848:4;37854:2;37858:7;37827:20;:39::i;:::-;37931:29;37948:1;37952:7;37931:8;:29::i;:::-;37992:1;37973:9;:15;37983:4;37973:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;38021:1;38004:9;:13;38014:2;38004:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38052:2;38033:7;:16;38041:7;38033:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38091:7;38087:2;38072:27;;38081:4;38072:27;;;;;;;;;;;;38112:38;38132:4;38138:2;38142:7;38112:19;:38::i;:::-;37533:625;;;:::o;12265:317::-;12380:6;12355:21;:31;;12347:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12434:12;12452:9;:14;;12474:6;12452:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12433:52;;;12504:7;12496:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;12336:246;12265:317;;:::o;9573:191::-;9647:16;9666:6;;;;;;;;;;;9647:25;;9692:8;9683:6;;:17;;;;;;;;;;;;;;;;;;9747:8;9716:40;;9737:8;9716:40;;;;;;;;;;;;9636:128;9573:191;:::o;44289:204::-;44369:9;44364:124;44388:11;44384:1;:15;44364:124;;;44415:18;:6;:16;:18::i;:::-;44442:38;44452:9;44463:16;:6;:14;:16::i;:::-;44442:9;:38::i;:::-;44401:3;;;;;:::i;:::-;;;;44364:124;;;;44289:204;;:::o;38592:315::-;38747:8;38738:17;;:5;:17;;;;38730:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;38834:8;38796:18;:25;38815:5;38796:25;;;;;;;;;;;;;;;:35;38822:8;38796:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38880:8;38858:41;;38873:5;38858:41;;;38890:8;38858:41;;;;;;:::i;:::-;;;;;;;;38592:315;;;:::o;33502:::-;33659:28;33669:4;33675:2;33679:7;33659:9;:28::i;:::-;33706:48;33729:4;33735:2;33739:7;33748:5;33706:22;:48::i;:::-;33698:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;33502:315;;;;:::o;44497:102::-;44557:13;44586:7;44579:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44497:102;:::o;4589:723::-;4645:13;4875:1;4866:5;:10;4862:53;;;4893:10;;;;;;;;;;;;;;;;;;;;;4862:53;4925:12;4940:5;4925:20;;4956:14;4981:78;4996:1;4988:4;:9;4981:78;;5014:8;;;;;:::i;:::-;;;;5045:2;5037:10;;;;;:::i;:::-;;;4981:78;;;5069:19;5101:6;5091:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5069:39;;5119:154;5135:1;5126:5;:10;5119:154;;5163:1;5153:11;;;;;:::i;:::-;;;5230:2;5222:5;:10;;;;:::i;:::-;5209:2;:24;;;;:::i;:::-;5196:39;;5179:6;5186;5179:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;5259:2;5250:11;;;;;:::i;:::-;;;5119:154;;;5297:6;5283:21;;;;;4589:723;;;;:::o;40843:126::-;;;;:::o;41354:125::-;;;;:::o;3753:127::-;3860:1;3842:7;:14;;;:19;;;;;;;;;;;3753:127;:::o;35114:110::-;35190:26;35200:2;35204:7;35190:26;;;;;;;;;;;;:9;:26::i;:::-;35114:110;;:::o;39472:799::-;39627:4;39648:15;:2;:13;;;:15::i;:::-;39644:620;;;39700:2;39684:36;;;39721:12;:10;:12::i;:::-;39735:4;39741:7;39750:5;39684:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39680:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39943:1;39926:6;:13;:18;39922:272;;;39969:60;;;;;;;;;;:::i;:::-;;;;;;;;39922:272;40144:6;40138:13;40129:6;40125:2;40121:15;40114:38;39680:529;39817:41;;;39807:51;;;:6;:51;;;;39800:58;;;;;39644:620;40248:4;40241:11;;39472:799;;;;;;;:::o;35451:321::-;35581:18;35587:2;35591:7;35581:5;:18::i;:::-;35632:54;35663:1;35667:2;35671:7;35680:5;35632:22;:54::i;:::-;35610:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;35451:321;;;:::o;11004:326::-;11064:4;11321:1;11299:7;:19;;;:23;11292:30;;11004:326;;;:::o;36108:439::-;36202:1;36188:16;;:2;:16;;;;36180:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36261:16;36269:7;36261;:16::i;:::-;36260:17;36252:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36323:45;36352:1;36356:2;36360:7;36323:20;:45::i;:::-;36398:1;36381:9;:13;36391:2;36381:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36429:2;36410:7;:16;36418:7;36410:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36474:7;36470:2;36449:33;;36466:1;36449:33;;;;;;;;;;;;36495:44;36523:1;36527:2;36531:7;36495:19;:44::i;:::-;36108:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:::-;16767:3;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16864:93;16953:3;16864:93;:::i;:::-;16982:2;16977:3;16973:12;16966:19;;16625:366;;;:::o;16997:::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:::-;17511:3;17532:67;17596:2;17591:3;17532:67;:::i;:::-;17525:74;;17608:93;17697:3;17608:93;:::i;:::-;17726:2;17721:3;17717:12;17710:19;;17369:366;;;:::o;17741:398::-;17900:3;17921:83;18002:1;17997:3;17921:83;:::i;:::-;17914:90;;18013:93;18102:3;18013:93;:::i;:::-;18131:1;18126:3;18122:11;18115:18;;17741:398;;;:::o;18145:366::-;18287:3;18308:67;18372:2;18367:3;18308:67;:::i;:::-;18301:74;;18384:93;18473:3;18384:93;:::i;:::-;18502:2;18497:3;18493:12;18486:19;;18145:366;;;:::o;18517:::-;18659:3;18680:67;18744:2;18739:3;18680:67;:::i;:::-;18673:74;;18756:93;18845:3;18756:93;:::i;:::-;18874:2;18869:3;18865:12;18858:19;;18517:366;;;:::o;18889:::-;19031:3;19052:67;19116:2;19111:3;19052:67;:::i;:::-;19045:74;;19128:93;19217:3;19128:93;:::i;:::-;19246:2;19241:3;19237:12;19230:19;;18889:366;;;:::o;19261:::-;19403:3;19424:67;19488:2;19483:3;19424:67;:::i;:::-;19417:74;;19500:93;19589:3;19500:93;:::i;:::-;19618:2;19613:3;19609:12;19602:19;;19261:366;;;:::o;19633:108::-;19710:24;19728:5;19710:24;:::i;:::-;19705:3;19698:37;19633:108;;:::o;19747:118::-;19834:24;19852:5;19834:24;:::i;:::-;19829:3;19822:37;19747:118;;:::o;19871:589::-;20096:3;20118:95;20209:3;20200:6;20118:95;:::i;:::-;20111:102;;20230:95;20321:3;20312:6;20230:95;:::i;:::-;20223:102;;20342:92;20430:3;20421:6;20342:92;:::i;:::-;20335:99;;20451:3;20444:10;;19871:589;;;;;;:::o;20466:379::-;20650:3;20672:147;20815:3;20672:147;:::i;:::-;20665:154;;20836:3;20829:10;;20466:379;;;:::o;20851:222::-;20944:4;20982:2;20971:9;20967:18;20959:26;;20995:71;21063:1;21052:9;21048:17;21039:6;20995:71;:::i;:::-;20851:222;;;;:::o;21079:640::-;21274:4;21312:3;21301:9;21297:19;21289:27;;21326:71;21394:1;21383:9;21379:17;21370:6;21326:71;:::i;:::-;21407:72;21475:2;21464:9;21460:18;21451:6;21407:72;:::i;:::-;21489;21557:2;21546:9;21542:18;21533:6;21489:72;:::i;:::-;21608:9;21602:4;21598:20;21593:2;21582:9;21578:18;21571:48;21636:76;21707:4;21698:6;21636:76;:::i;:::-;21628:84;;21079:640;;;;;;;:::o;21725:373::-;21868:4;21906:2;21895:9;21891:18;21883:26;;21955:9;21949:4;21945:20;21941:1;21930:9;21926:17;21919:47;21983:108;22086:4;22077:6;21983:108;:::i;:::-;21975:116;;21725:373;;;;:::o;22104:210::-;22191:4;22229:2;22218:9;22214:18;22206:26;;22242:65;22304:1;22293:9;22289:17;22280:6;22242:65;:::i;:::-;22104:210;;;;:::o;22320:313::-;22433:4;22471:2;22460:9;22456:18;22448:26;;22520:9;22514:4;22510:20;22506:1;22495:9;22491:17;22484:47;22548:78;22621:4;22612:6;22548:78;:::i;:::-;22540:86;;22320:313;;;;:::o;22639:419::-;22805:4;22843:2;22832:9;22828:18;22820:26;;22892:9;22886:4;22882:20;22878:1;22867:9;22863:17;22856:47;22920:131;23046:4;22920:131;:::i;:::-;22912:139;;22639:419;;;:::o;23064:::-;23230:4;23268:2;23257:9;23253:18;23245:26;;23317:9;23311:4;23307:20;23303:1;23292:9;23288:17;23281:47;23345:131;23471:4;23345:131;:::i;:::-;23337:139;;23064:419;;;:::o;23489:::-;23655:4;23693:2;23682:9;23678:18;23670:26;;23742:9;23736:4;23732:20;23728:1;23717:9;23713:17;23706:47;23770:131;23896:4;23770:131;:::i;:::-;23762:139;;23489:419;;;:::o;23914:::-;24080:4;24118:2;24107:9;24103:18;24095:26;;24167:9;24161:4;24157:20;24153:1;24142:9;24138:17;24131:47;24195:131;24321:4;24195:131;:::i;:::-;24187:139;;23914:419;;;:::o;24339:::-;24505:4;24543:2;24532:9;24528:18;24520:26;;24592:9;24586:4;24582:20;24578:1;24567:9;24563:17;24556:47;24620:131;24746:4;24620:131;:::i;:::-;24612:139;;24339:419;;;:::o;24764:::-;24930:4;24968:2;24957:9;24953:18;24945:26;;25017:9;25011:4;25007:20;25003:1;24992:9;24988:17;24981:47;25045:131;25171:4;25045:131;:::i;:::-;25037:139;;24764:419;;;:::o;25189:::-;25355:4;25393:2;25382:9;25378:18;25370:26;;25442:9;25436:4;25432:20;25428:1;25417:9;25413:17;25406:47;25470:131;25596:4;25470:131;:::i;:::-;25462:139;;25189:419;;;:::o;25614:::-;25780:4;25818:2;25807:9;25803:18;25795:26;;25867:9;25861:4;25857:20;25853:1;25842:9;25838:17;25831:47;25895:131;26021:4;25895:131;:::i;:::-;25887:139;;25614:419;;;:::o;26039:::-;26205:4;26243:2;26232:9;26228:18;26220:26;;26292:9;26286:4;26282:20;26278:1;26267:9;26263:17;26256:47;26320:131;26446:4;26320:131;:::i;:::-;26312:139;;26039:419;;;:::o;26464:::-;26630:4;26668:2;26657:9;26653:18;26645:26;;26717:9;26711:4;26707:20;26703:1;26692:9;26688:17;26681:47;26745:131;26871:4;26745:131;:::i;:::-;26737:139;;26464:419;;;:::o;26889:::-;27055:4;27093:2;27082:9;27078:18;27070:26;;27142:9;27136:4;27132:20;27128:1;27117:9;27113:17;27106:47;27170:131;27296:4;27170:131;:::i;:::-;27162:139;;26889:419;;;:::o;27314:::-;27480:4;27518:2;27507:9;27503:18;27495:26;;27567:9;27561:4;27557:20;27553:1;27542:9;27538:17;27531:47;27595:131;27721:4;27595:131;:::i;:::-;27587:139;;27314:419;;;:::o;27739:::-;27905:4;27943:2;27932:9;27928:18;27920:26;;27992:9;27986:4;27982:20;27978:1;27967:9;27963:17;27956:47;28020:131;28146:4;28020:131;:::i;:::-;28012:139;;27739:419;;;:::o;28164:::-;28330:4;28368:2;28357:9;28353:18;28345:26;;28417:9;28411:4;28407:20;28403:1;28392:9;28388:17;28381:47;28445:131;28571:4;28445:131;:::i;:::-;28437:139;;28164:419;;;:::o;28589:::-;28755:4;28793:2;28782:9;28778:18;28770:26;;28842:9;28836:4;28832:20;28828:1;28817:9;28813:17;28806:47;28870:131;28996:4;28870:131;:::i;:::-;28862:139;;28589:419;;;:::o;29014:::-;29180:4;29218:2;29207:9;29203:18;29195:26;;29267:9;29261:4;29257:20;29253:1;29242:9;29238:17;29231:47;29295:131;29421:4;29295:131;:::i;:::-;29287:139;;29014:419;;;:::o;29439:::-;29605:4;29643:2;29632:9;29628:18;29620:26;;29692:9;29686:4;29682:20;29678:1;29667:9;29663:17;29656:47;29720:131;29846:4;29720:131;:::i;:::-;29712:139;;29439:419;;;:::o;29864:::-;30030:4;30068:2;30057:9;30053:18;30045:26;;30117:9;30111:4;30107:20;30103:1;30092:9;30088:17;30081:47;30145:131;30271:4;30145:131;:::i;:::-;30137:139;;29864:419;;;:::o;30289:::-;30455:4;30493:2;30482:9;30478:18;30470:26;;30542:9;30536:4;30532:20;30528:1;30517:9;30513:17;30506:47;30570:131;30696:4;30570:131;:::i;:::-;30562:139;;30289:419;;;:::o;30714:::-;30880:4;30918:2;30907:9;30903:18;30895:26;;30967:9;30961:4;30957:20;30953:1;30942:9;30938:17;30931:47;30995:131;31121:4;30995:131;:::i;:::-;30987:139;;30714:419;;;:::o;31139:::-;31305:4;31343:2;31332:9;31328:18;31320:26;;31392:9;31386:4;31382:20;31378:1;31367:9;31363:17;31356:47;31420:131;31546:4;31420:131;:::i;:::-;31412:139;;31139:419;;;:::o;31564:::-;31730:4;31768:2;31757:9;31753:18;31745:26;;31817:9;31811:4;31807:20;31803:1;31792:9;31788:17;31781:47;31845:131;31971:4;31845:131;:::i;:::-;31837:139;;31564:419;;;:::o;31989:::-;32155:4;32193:2;32182:9;32178:18;32170:26;;32242:9;32236:4;32232:20;32228:1;32217:9;32213:17;32206:47;32270:131;32396:4;32270:131;:::i;:::-;32262:139;;31989:419;;;:::o;32414:222::-;32507:4;32545:2;32534:9;32530:18;32522:26;;32558:71;32626:1;32615:9;32611:17;32602:6;32558:71;:::i;:::-;32414:222;;;;:::o;32642:129::-;32676:6;32703:20;;:::i;:::-;32693:30;;32732:33;32760:4;32752:6;32732:33;:::i;:::-;32642:129;;;:::o;32777:75::-;32810:6;32843:2;32837:9;32827:19;;32777:75;:::o;32858:307::-;32919:4;33009:18;33001:6;32998:30;32995:56;;;33031:18;;:::i;:::-;32995:56;33069:29;33091:6;33069:29;:::i;:::-;33061:37;;33153:4;33147;33143:15;33135:23;;32858:307;;;:::o;33171:308::-;33233:4;33323:18;33315:6;33312:30;33309:56;;;33345:18;;:::i;:::-;33309:56;33383:29;33405:6;33383:29;:::i;:::-;33375:37;;33467:4;33461;33457:15;33449:23;;33171:308;;;:::o;33485:132::-;33552:4;33575:3;33567:11;;33605:4;33600:3;33596:14;33588:22;;33485:132;;;:::o;33623:141::-;33672:4;33695:3;33687:11;;33718:3;33715:1;33708:14;33752:4;33749:1;33739:18;33731:26;;33623:141;;;:::o;33770:114::-;33837:6;33871:5;33865:12;33855:22;;33770:114;;;:::o;33890:98::-;33941:6;33975:5;33969:12;33959:22;;33890:98;;;:::o;33994:99::-;34046:6;34080:5;34074:12;34064:22;;33994:99;;;:::o;34099:113::-;34169:4;34201;34196:3;34192:14;34184:22;;34099:113;;;:::o;34218:184::-;34317:11;34351:6;34346:3;34339:19;34391:4;34386:3;34382:14;34367:29;;34218:184;;;;:::o;34408:168::-;34491:11;34525:6;34520:3;34513:19;34565:4;34560:3;34556:14;34541:29;;34408:168;;;;:::o;34582:147::-;34683:11;34720:3;34705:18;;34582:147;;;;:::o;34735:169::-;34819:11;34853:6;34848:3;34841:19;34893:4;34888:3;34884:14;34869:29;;34735:169;;;;:::o;34910:148::-;35012:11;35049:3;35034:18;;34910:148;;;;:::o;35064:305::-;35104:3;35123:20;35141:1;35123:20;:::i;:::-;35118:25;;35157:20;35175:1;35157:20;:::i;:::-;35152:25;;35311:1;35243:66;35239:74;35236:1;35233:81;35230:107;;;35317:18;;:::i;:::-;35230:107;35361:1;35358;35354:9;35347:16;;35064:305;;;;:::o;35375:185::-;35415:1;35432:20;35450:1;35432:20;:::i;:::-;35427:25;;35466:20;35484:1;35466:20;:::i;:::-;35461:25;;35505:1;35495:35;;35510:18;;:::i;:::-;35495:35;35552:1;35549;35545:9;35540:14;;35375:185;;;;:::o;35566:348::-;35606:7;35629:20;35647:1;35629:20;:::i;:::-;35624:25;;35663:20;35681:1;35663:20;:::i;:::-;35658:25;;35851:1;35783:66;35779:74;35776:1;35773:81;35768:1;35761:9;35754:17;35750:105;35747:131;;;35858:18;;:::i;:::-;35747:131;35906:1;35903;35899:9;35888:20;;35566:348;;;;:::o;35920:191::-;35960:4;35980:20;35998:1;35980:20;:::i;:::-;35975:25;;36014:20;36032:1;36014:20;:::i;:::-;36009:25;;36053:1;36050;36047:8;36044:34;;;36058:18;;:::i;:::-;36044:34;36103:1;36100;36096:9;36088:17;;35920:191;;;;:::o;36117:96::-;36154:7;36183:24;36201:5;36183:24;:::i;:::-;36172:35;;36117:96;;;:::o;36219:90::-;36253:7;36296:5;36289:13;36282:21;36271:32;;36219:90;;;:::o;36315:149::-;36351:7;36391:66;36384:5;36380:78;36369:89;;36315:149;;;:::o;36470:126::-;36507:7;36547:42;36540:5;36536:54;36525:65;;36470:126;;;:::o;36602:77::-;36639:7;36668:5;36657:16;;36602:77;;;:::o;36685:154::-;36769:6;36764:3;36759;36746:30;36831:1;36822:6;36817:3;36813:16;36806:27;36685:154;;;:::o;36845:307::-;36913:1;36923:113;36937:6;36934:1;36931:13;36923:113;;;37022:1;37017:3;37013:11;37007:18;37003:1;36998:3;36994:11;36987:39;36959:2;36956:1;36952:10;36947:15;;36923:113;;;37054:6;37051:1;37048:13;37045:101;;;37134:1;37125:6;37120:3;37116:16;37109:27;37045:101;36894:258;36845:307;;;:::o;37158:320::-;37202:6;37239:1;37233:4;37229:12;37219:22;;37286:1;37280:4;37276:12;37307:18;37297:81;;37363:4;37355:6;37351:17;37341:27;;37297:81;37425:2;37417:6;37414:14;37394:18;37391:38;37388:84;;;37444:18;;:::i;:::-;37388:84;37209:269;37158:320;;;:::o;37484:281::-;37567:27;37589:4;37567:27;:::i;:::-;37559:6;37555:40;37697:6;37685:10;37682:22;37661:18;37649:10;37646:34;37643:62;37640:88;;;37708:18;;:::i;:::-;37640:88;37748:10;37744:2;37737:22;37527:238;37484:281;;:::o;37771:233::-;37810:3;37833:24;37851:5;37833:24;:::i;:::-;37824:33;;37879:66;37872:5;37869:77;37866:103;;;37949:18;;:::i;:::-;37866:103;37996:1;37989:5;37985:13;37978:20;;37771:233;;;:::o;38010:176::-;38042:1;38059:20;38077:1;38059:20;:::i;:::-;38054:25;;38093:20;38111:1;38093:20;:::i;:::-;38088:25;;38132:1;38122:35;;38137:18;;:::i;:::-;38122:35;38178:1;38175;38171:9;38166:14;;38010:176;;;;:::o;38192:180::-;38240:77;38237:1;38230:88;38337:4;38334:1;38327:15;38361:4;38358:1;38351:15;38378:180;38426:77;38423:1;38416:88;38523:4;38520:1;38513:15;38547:4;38544:1;38537:15;38564:180;38612:77;38609:1;38602:88;38709:4;38706:1;38699:15;38733:4;38730:1;38723:15;38750:180;38798:77;38795:1;38788:88;38895:4;38892:1;38885:15;38919:4;38916:1;38909:15;38936:180;38984:77;38981:1;38974:88;39081:4;39078:1;39071:15;39105:4;39102:1;39095:15;39122:117;39231:1;39228;39221:12;39245:117;39354:1;39351;39344:12;39368:117;39477:1;39474;39467:12;39491:117;39600:1;39597;39590:12;39614:102;39655:6;39706:2;39702:7;39697:2;39690:5;39686:14;39682:28;39672:38;;39614:102;;;:::o;39722:237::-;39862:34;39858:1;39850:6;39846:14;39839:58;39931:20;39926:2;39918:6;39914:15;39907:45;39722:237;:::o;39965:225::-;40105:34;40101:1;40093:6;40089:14;40082:58;40174:8;40169:2;40161:6;40157:15;40150:33;39965:225;:::o;40196:224::-;40336:34;40332:1;40324:6;40320:14;40313:58;40405:7;40400:2;40392:6;40388:15;40381:32;40196:224;:::o;40426:178::-;40566:30;40562:1;40554:6;40550:14;40543:54;40426:178;:::o;40610:170::-;40750:22;40746:1;40738:6;40734:14;40727:46;40610:170;:::o;40786:223::-;40926:34;40922:1;40914:6;40910:14;40903:58;40995:6;40990:2;40982:6;40978:15;40971:31;40786:223;:::o;41015:175::-;41155:27;41151:1;41143:6;41139:14;41132:51;41015:175;:::o;41196:245::-;41336:34;41332:1;41324:6;41320:14;41313:58;41405:28;41400:2;41392:6;41388:15;41381:53;41196:245;:::o;41447:179::-;41587:31;41583:1;41575:6;41571:14;41564:55;41447:179;:::o;41632:231::-;41772:34;41768:1;41760:6;41756:14;41749:58;41841:14;41836:2;41828:6;41824:15;41817:39;41632:231;:::o;41869:243::-;42009:34;42005:1;41997:6;41993:14;41986:58;42078:26;42073:2;42065:6;42061:15;42054:51;41869:243;:::o;42118:229::-;42258:34;42254:1;42246:6;42242:14;42235:58;42327:12;42322:2;42314:6;42310:15;42303:37;42118:229;:::o;42353:228::-;42493:34;42489:1;42481:6;42477:14;42470:58;42562:11;42557:2;42549:6;42545:15;42538:36;42353:228;:::o;42587:182::-;42727:34;42723:1;42715:6;42711:14;42704:58;42587:182;:::o;42775:231::-;42915:34;42911:1;42903:6;42899:14;42892:58;42984:14;42979:2;42971:6;42967:15;42960:39;42775:231;:::o;43012:182::-;43152:34;43148:1;43140:6;43136:14;43129:58;43012:182;:::o;43200:173::-;43340:25;43336:1;43328:6;43324:14;43317:49;43200:173;:::o;43379:234::-;43519:34;43515:1;43507:6;43503:14;43496:58;43588:17;43583:2;43575:6;43571:15;43564:42;43379:234;:::o;43619:220::-;43759:34;43755:1;43747:6;43743:14;43736:58;43828:3;43823:2;43815:6;43811:15;43804:28;43619:220;:::o;43845:114::-;;:::o;43965:170::-;44105:22;44101:1;44093:6;44089:14;44082:46;43965:170;:::o;44141:236::-;44281:34;44277:1;44269:6;44265:14;44258:58;44350:19;44345:2;44337:6;44333:15;44326:44;44141:236;:::o;44383:181::-;44523:33;44519:1;44511:6;44507:14;44500:57;44383:181;:::o;44570:169::-;44710:21;44706:1;44698:6;44694:14;44687:45;44570:169;:::o;44745:122::-;44818:24;44836:5;44818:24;:::i;:::-;44811:5;44808:35;44798:63;;44857:1;44854;44847:12;44798:63;44745:122;:::o;44873:116::-;44943:21;44958:5;44943:21;:::i;:::-;44936:5;44933:32;44923:60;;44979:1;44976;44969:12;44923:60;44873:116;:::o;44995:120::-;45067:23;45084:5;45067:23;:::i;:::-;45060:5;45057:34;45047:62;;45105:1;45102;45095:12;45047:62;44995:120;:::o;45121:122::-;45194:24;45212:5;45194:24;:::i;:::-;45187:5;45184:35;45174:63;;45233:1;45230;45223:12;45174:63;45121:122;:::o

Swarm Source

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