Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 5 from a total of 5 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Add To White Lis... | 15161880 | 903 days ago | IN | 0 ETH | 0.00159746 | ||||
Set Max Presale ... | 15161870 | 903 days ago | IN | 0 ETH | 0.00099834 | ||||
Set Max Mint Amo... | 15161867 | 903 days ago | IN | 0 ETH | 0.00076635 | ||||
Set Paused | 15161857 | 903 days ago | IN | 0 ETH | 0.00067887 | ||||
Set Uri Prefix | 15161832 | 903 days ago | IN | 0 ETH | 0.00320615 |
Loading...
Loading
Contract Name:
BlockchainFrenz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-17 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // SPDX-License-Identifier: MIT // 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 (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/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.7.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 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.7.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: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); 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 token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); 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: caller is not token 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: caller is not token 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) { 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 an {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 an {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 Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly 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: contracts/blockchainfrenz.sol /* ------------------------------------------------------------------------------------------------- :::==== ::: :::==== :::===== ::: === :::===== ::: === :::==== ::: :::= === :::===== :::==== :::===== :::= === :::===== ::: === ::: ::: === ::: ::: === ::: ::: === ::: === ::: :::===== ::: ::: === ::: :::===== === ======= === === === === ====== === ======== ======== === ======== ====== ======= ====== ======== === === === === === === === === === === === === === === === === ==== === === === === === ==== === ======= ======== ====== ======= === === ======= === === === === === === === === === === ======== === === ======== ------------------------------------------------------------------------------------------------- About The Project --> Project Name -> Blockchain Frenz Total Supply -> 5,555 Pieces > ? Contract Author -> BAD SAPIENS The Blockchain Frenz is a NFT collection consisting of 5,555 pieces and over 99 traits, set out to bring street culture and language to the world of Web3. ------------------------------------------------------------------------------------------------- */ pragma solidity >=0.7.0 <0.9.0; // Minting Roadmap --> Presale Start -> Free Minting for 2000 pieces -> Presale Continues -> Presale End -> Public Sale Start -> Public Sale Ends -> Reveal -> contract BlockchainFrenz is ERC721, Ownable, ReentrancyGuard { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; // Free at the begining, then 0.009 for public mint. uint256 public cost = 0 ether; uint256 public maxSupply = 5555; uint256 public maxMintAmountPerTx = 2; bool public paused = true; bool public revealed = false; bool public presale = true; mapping(address => bool) public whitelisted; uint256 public maxPresaleMintAmount = 2; constructor() ERC721("Blockchain Frenz", "BCF") { setHiddenMetadataUri("ipfs://bafybeiglw4va3xoj3cgz4gaur3n2dzcqql5iyun6olbhf2cfi3izhl45fa/hidden.json"); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function totalSupply() public view returns (uint256) { return supply.current(); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); uint256 TS = supply.current(); // If total supply equal to 2639, revert transaction for 2 pieces but accept for 1 piece. if (TS == 2639 && _mintAmount >1) { revert("You can only mint 1 piece."); } require(msg.value >= cost * _mintAmount, "Insufficient funds!"); // If total supply equal to 2640 or total supply equal 2638, accept for 2 and make cost = publicCost if (TS == 2640 || (TS == 2638 && _mintAmount == 2)) { cost = 0.009 ether; } if (presale) { // Murf dont allow minting if presale is set and buyer is not in whitelisted map. if ( !isInWhiteList(msg.sender)) { revert("Buyer is not in Whitelist for Pre-Sale"); } // BM check if already bought. if ( balanceOf(msg.sender)+_mintAmount > maxPresaleMintAmount) { revert("Buyer has already pre-sale minted max tokens"); } } _mintLoop(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _mintLoop(_receiver, _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" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner nonReentrant { // This will pay Can's 5% of the initial sale. // ============================================================================= (bool hs, ) = payable(0x1B6c8a28005425b09387F3527D4847D1791696C3).call{value: address(this).balance * 5 / 100}(""); require(hs); // ============================================================================= // - This will transfer the remaining contract balance to the owner. // - Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); // ============================================================================= } 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 uriPrefix; } //Murf Whitelist Functions function setPresale(bool _state) public onlyOwner { presale = _state; } function setMaxPresaleMintAmount(uint256 _max) public onlyOwner { maxPresaleMintAmount = _max; } function addToWhiteList(address _addr) public onlyOwner { whitelisted[_addr] = true; } function addArrayToWhiteList(address[] memory _addrs) public onlyOwner { for (uint256 i=0;i< _addrs.length;i++) whitelisted[_addrs[i]] = true; } function removeFromWhiteList(address _addr) public onlyOwner { whitelisted[_addr] = false; } function isInWhiteList(address _addr) private view returns (bool) { return whitelisted[_addr] || _addr == owner(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"_addrs","type":"address[]"}],"name":"addArrayToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxPresaleMintAmount","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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"removeFromWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPresaleMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600990805190602001906200002b9291906200039b565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000799291906200039b565b506000600c556115b3600d556002600e556001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff0219169083151502179055506002601155348015620000ed57600080fd5b506040518060400160405280601081526020017f426c6f636b636861696e204672656e7a000000000000000000000000000000008152506040518060400160405280600381526020017f42434600000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001729291906200039b565b5080600190805190602001906200018b9291906200039b565b505050620001ae620001a2620001e660201b60201c565b620001ee60201b60201c565b6001600781905550620001e06040518060800160405280604e815260200162004aab604e9139620002b460201b60201c565b62000533565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c4620002e060201b60201c565b80600b9080519060200190620002dc9291906200039b565b5050565b620002f0620001e660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003166200037160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200036f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003669062000472565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003a990620004a5565b90600052602060002090601f016020900481019282620003cd576000855562000419565b82601f10620003e857805160ff191683800117855562000419565b8280016001018555821562000419579182015b8281111562000418578251825591602001919060010190620003fb565b5b5090506200042891906200042c565b5090565b5b80821115620004475760008160009055506001016200042d565b5090565b60006200045a60208362000494565b915062000467826200050a565b602082019050919050565b600060208201905081810360008301526200048d816200044b565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004be57607f821691505b60208210811415620004d557620004d4620004db565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61456880620005436000396000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063c243c6c1116100b6578063d936547e1161007a578063d936547e146108e3578063e0a8085314610920578063e985e9c514610949578063efbd73f414610986578063f2fde38b146109af578063fdea8e0b146109d857610267565b8063c243c6c114610800578063c54e73e314610829578063c87b56dd14610852578063d5abeb011461088f578063d76fd220146108ba57610267565b806395d89b411161010857806395d89b4114610713578063a0712d681461073e578063a22cb4651461075a578063a45ba8e714610783578063b071401b146107ae578063b88d4fde146107d757610267565b8063715018a6146106525780637ec4a6591461066957806385480756146106925780638da5cb5b146106bd57806394354fd0146106e857610267565b806342842e0e116101dd57806351830227116101a1578063518302271461052c5780635503a0e8146105575780635c975abb1461058257806362b99ad4146105ad5780636352211e146105d857806370a082311461061557610267565b806342842e0e1461044b578063438b63001461047457806344a0d68a146104b157806347ee0394146104da5780634fdd43cb1461050357610267565b806313faede61161022f57806313faede61461036357806316ba10e01461038e57806316c38b3c146103b757806318160ddd146103e057806323b872dd1461040b5780633ccfd60b1461043457610267565b806301bf66481461026c57806301ffc9a71461029557806306fdde03146102d2578063081812fc146102fd578063095ea7b31461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612e76565b610a03565b005b3480156102a157600080fd5b506102bc60048036038101906102b791906130af565b610a66565b6040516102c99190613787565b60405180910390f35b3480156102de57600080fd5b506102e7610b48565b6040516102f491906137a2565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613152565b610bda565b60405161033191906136fe565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190612ff9565b610c20565b005b34801561036f57600080fd5b50610378610d38565b6040516103859190613a84565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613109565b610d3e565b005b3480156103c357600080fd5b506103de60048036038101906103d99190613082565b610d60565b005b3480156103ec57600080fd5b506103f5610d85565b6040516104029190613a84565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d9190612ee3565b610d96565b005b34801561044057600080fd5b50610449610df6565b005b34801561045757600080fd5b50610472600480360381019061046d9190612ee3565b610f77565b005b34801561048057600080fd5b5061049b60048036038101906104969190612e76565b610f97565b6040516104a89190613765565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190613152565b6110a2565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190612e76565b6110b4565b005b34801561050f57600080fd5b5061052a60048036038101906105259190613109565b611117565b005b34801561053857600080fd5b50610541611139565b60405161054e9190613787565b60405180910390f35b34801561056357600080fd5b5061056c61114c565b60405161057991906137a2565b60405180910390f35b34801561058e57600080fd5b506105976111da565b6040516105a49190613787565b60405180910390f35b3480156105b957600080fd5b506105c26111ed565b6040516105cf91906137a2565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613152565b61127b565b60405161060c91906136fe565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190612e76565b61132d565b6040516106499190613a84565b60405180910390f35b34801561065e57600080fd5b506106676113e5565b005b34801561067557600080fd5b50610690600480360381019061068b9190613109565b6113f9565b005b34801561069e57600080fd5b506106a761141b565b6040516106b49190613a84565b60405180910390f35b3480156106c957600080fd5b506106d2611421565b6040516106df91906136fe565b60405180910390f35b3480156106f457600080fd5b506106fd61144b565b60405161070a9190613a84565b60405180910390f35b34801561071f57600080fd5b50610728611451565b60405161073591906137a2565b60405180910390f35b61075860048036038101906107539190613152565b6114e3565b005b34801561076657600080fd5b50610781600480360381019061077c9190612fb9565b611783565b005b34801561078f57600080fd5b50610798611799565b6040516107a591906137a2565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190613152565b611827565b005b3480156107e357600080fd5b506107fe60048036038101906107f99190612f36565b611839565b005b34801561080c57600080fd5b5061082760048036038101906108229190613039565b61189b565b005b34801561083557600080fd5b50610850600480360381019061084b9190613082565b611938565b005b34801561085e57600080fd5b5061087960048036038101906108749190613152565b61195d565b60405161088691906137a2565b60405180910390f35b34801561089b57600080fd5b506108a4611ab6565b6040516108b19190613a84565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613152565b611abc565b005b3480156108ef57600080fd5b5061090a60048036038101906109059190612e76565b611ace565b6040516109179190613787565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190613082565b611aee565b005b34801561095557600080fd5b50610970600480360381019061096b9190612ea3565b611b13565b60405161097d9190613787565b60405180910390f35b34801561099257600080fd5b506109ad60048036038101906109a8919061317f565b611ba7565b005b3480156109bb57600080fd5b506109d660048036038101906109d19190612e76565b611c69565b005b3480156109e457600080fd5b506109ed611ced565b6040516109fa9190613787565b60405180910390f35b610a0b611d00565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b415750610b4082611d7e565b5b9050919050565b606060008054610b5790613db9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8390613db9565b8015610bd05780601f10610ba557610100808354040283529160200191610bd0565b820191906000526020600020905b815481529060010190602001808311610bb357829003601f168201915b5050505050905090565b6000610be582611de8565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c2b8261127b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c93906139c4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cbb611e33565b73ffffffffffffffffffffffffffffffffffffffff161480610cea5750610ce981610ce4611e33565b611b13565b5b610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906138e4565b60405180910390fd5b610d338383611e3b565b505050565b600c5481565b610d46611d00565b80600a9080519060200190610d5c929190612bec565b5050565b610d68611d00565b80600f60006101000a81548160ff02191690831515021790555050565b6000610d916008611ef4565b905090565b610da7610da1611e33565b82611f02565b610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90613a24565b60405180910390fd5b610df1838383611f97565b505050565b610dfe611d00565b60026007541415610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90613a44565b60405180910390fd5b60026007819055506000731b6c8a28005425b09387f3527d4847d1791696c373ffffffffffffffffffffffffffffffffffffffff166064600547610e889190613c75565b610e929190613c44565b604051610e9e906136e9565b60006040518083038185875af1925050503d8060008114610edb576040519150601f19603f3d011682016040523d82523d6000602084013e610ee0565b606091505b5050905080610eee57600080fd5b6000610ef8611421565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f1b906136e9565b60006040518083038185875af1925050503d8060008114610f58576040519150601f19603f3d011682016040523d82523d6000602084013e610f5d565b606091505b5050905080610f6b57600080fd5b50506001600781905550565b610f9283838360405180602001604052806000815250611839565b505050565b60606000610fa48361132d565b905060008167ffffffffffffffff811115610fc257610fc1613f52565b5b604051908082528060200260200182016040528015610ff05781602001602082028036833780820191505090505b50905060006001905060005b838110801561100d5750600d548211155b1561109657600061101d8361127b565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611082578284838151811061106757611066613f23565b5b602002602001018181525050818061107e90613e1c565b9250505b828061108d90613e1c565b93505050610ffc565b82945050505050919050565b6110aa611d00565b80600c8190555050565b6110bc611d00565b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61111f611d00565b80600b9080519060200190611135929190612bec565b5050565b600f60019054906101000a900460ff1681565b600a805461115990613db9565b80601f016020809104026020016040519081016040528092919081815260200182805461118590613db9565b80156111d25780601f106111a7576101008083540402835291602001916111d2565b820191906000526020600020905b8154815290600101906020018083116111b557829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b600980546111fa90613db9565b80601f016020809104026020016040519081016040528092919081815260200182805461122690613db9565b80156112735780601f1061124857610100808354040283529160200191611273565b820191906000526020600020905b81548152906001019060200180831161125657829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b906139a4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611395906138c4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113ed611d00565b6113f760006121fe565b565b611401611d00565b8060099080519060200190611417929190612bec565b5050565b60115481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606001805461146090613db9565b80601f016020809104026020016040519081016040528092919081815260200182805461148c90613db9565b80156114d95780601f106114ae576101008083540402835291602001916114d9565b820191906000526020600020905b8154815290600101906020018083116114bc57829003601f168201915b5050505050905090565b806000811180156114f65750600e548111155b611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c90613844565b60405180910390fd5b600d54816115436008611ef4565b61154d9190613bee565b111561158e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611585906139e4565b60405180910390fd5b600f60009054906101000a900460ff16156115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590613964565b60405180910390fd5b60006115ea6008611ef4565b9050610a4f811480156115fd5750600183115b1561163d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163490613944565b60405180910390fd5b82600c5461164b9190613c75565b34101561168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490613a64565b60405180910390fd5b610a508114806116aa5750610a4e811480156116a95750600283145b5b156116be57661ff973cafa8000600c819055505b600f60029054906101000a900460ff1615611774576116dc336122c4565b61171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290613a04565b60405180910390fd5b601154836117283361132d565b6117329190613bee565b1115611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a906138a4565b60405180910390fd5b5b61177e3384612357565b505050565b61179561178e611e33565b8383612397565b5050565b600b80546117a690613db9565b80601f01602080910402602001604051908101604052809291908181526020018280546117d290613db9565b801561181f5780601f106117f45761010080835404028352916020019161181f565b820191906000526020600020905b81548152906001019060200180831161180257829003601f168201915b505050505081565b61182f611d00565b80600e8190555050565b61184a611844611e33565b83611f02565b611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090613a24565b60405180910390fd5b61189584848484612504565b50505050565b6118a3611d00565b60005b8151811015611934576001601060008484815181106118c8576118c7613f23565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061192c90613e1c565b9150506118a6565b5050565b611940611d00565b80600f60026101000a81548160ff02191690831515021790555050565b606061196882612560565b6119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e90613984565b60405180910390fd5b60001515600f60019054906101000a900460ff1615151415611a5557600b80546119d090613db9565b80601f01602080910402602001604051908101604052809291908181526020018280546119fc90613db9565b8015611a495780601f10611a1e57610100808354040283529160200191611a49565b820191906000526020600020905b815481529060010190602001808311611a2c57829003601f168201915b50505050509050611ab1565b6000611a5f6125cc565b90506000815111611a7f5760405180602001604052806000815250611aad565b80611a898461265e565b600a604051602001611a9d939291906136b8565b6040516020818303038152906040525b9150505b919050565b600d5481565b611ac4611d00565b8060118190555050565b60106020528060005260406000206000915054906101000a900460ff1681565b611af6611d00565b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611bba5750600e548111155b611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090613844565b60405180910390fd5b600d5481611c076008611ef4565b611c119190613bee565b1115611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c49906139e4565b60405180910390fd5b611c5a611d00565b611c648284612357565b505050565b611c71611d00565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd8906137e4565b60405180910390fd5b611cea816121fe565b50565b600f60029054906101000a900460ff1681565b611d08611e33565b73ffffffffffffffffffffffffffffffffffffffff16611d26611421565b73ffffffffffffffffffffffffffffffffffffffff1614611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7390613924565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611df181612560565b611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e27906139a4565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611eae8361127b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600080611f0e8361127b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f505750611f4f8185611b13565b5b80611f8e57508373ffffffffffffffffffffffffffffffffffffffff16611f7684610bda565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb78261127b565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200490613804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490613864565b60405180910390fd5b6120888383836127bf565b612093600082611e3b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e39190613ccf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213a9190613bee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f98383836127c4565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123505750612321611421565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050919050565b60005b818110156123925761236c60086127c9565b61237f8361237a6008611ef4565b6127df565b808061238a90613e1c565b91505061235a565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fd90613884565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124f79190613787565b60405180910390a3505050565b61250f848484611f97565b61251b848484846127fd565b61255a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612551906137c4565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600980546125db90613db9565b80601f016020809104026020016040519081016040528092919081815260200182805461260790613db9565b80156126545780601f1061262957610100808354040283529160200191612654565b820191906000526020600020905b81548152906001019060200180831161263757829003601f168201915b5050505050905090565b606060008214156126a6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127ba565b600082905060005b600082146126d85780806126c190613e1c565b915050600a826126d19190613c44565b91506126ae565b60008167ffffffffffffffff8111156126f4576126f3613f52565b5b6040519080825280601f01601f1916602001820160405280156127265781602001600182028036833780820191505090505b5090505b600085146127b35760018261273f9190613ccf565b9150600a8561274e9190613e65565b603061275a9190613bee565b60f81b8183815181106127705761276f613f23565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127ac9190613c44565b945061272a565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6127f9828260405180602001604052806000815250612994565b5050565b600061281e8473ffffffffffffffffffffffffffffffffffffffff166129ef565b15612987578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612847611e33565b8786866040518563ffffffff1660e01b81526004016128699493929190613719565b602060405180830381600087803b15801561288357600080fd5b505af19250505080156128b457506040513d601f19601f820116820180604052508101906128b191906130dc565b60015b612937573d80600081146128e4576040519150601f19603f3d011682016040523d82523d6000602084013e6128e9565b606091505b5060008151141561292f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612926906137c4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061298c565b600190505b949350505050565b61299e8383612a12565b6129ab60008484846127fd565b6129ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e1906137c4565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7990613904565b60405180910390fd5b612a8b81612560565b15612acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac290613824565b60405180910390fd5b612ad7600083836127bf565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b279190613bee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612be8600083836127c4565b5050565b828054612bf890613db9565b90600052602060002090601f016020900481019282612c1a5760008555612c61565b82601f10612c3357805160ff1916838001178555612c61565b82800160010185558215612c61579182015b82811115612c60578251825591602001919060010190612c45565b5b509050612c6e9190612c72565b5090565b5b80821115612c8b576000816000905550600101612c73565b5090565b6000612ca2612c9d84613ac4565b613a9f565b90508083825260208201905082856020860282011115612cc557612cc4613f86565b5b60005b85811015612cf55781612cdb8882612d83565b845260208401935060208301925050600181019050612cc8565b5050509392505050565b6000612d12612d0d84613af0565b613a9f565b905082815260208101848484011115612d2e57612d2d613f8b565b5b612d39848285613d77565b509392505050565b6000612d54612d4f84613b21565b613a9f565b905082815260208101848484011115612d7057612d6f613f8b565b5b612d7b848285613d77565b509392505050565b600081359050612d92816144d6565b92915050565b600082601f830112612dad57612dac613f81565b5b8135612dbd848260208601612c8f565b91505092915050565b600081359050612dd5816144ed565b92915050565b600081359050612dea81614504565b92915050565b600081519050612dff81614504565b92915050565b600082601f830112612e1a57612e19613f81565b5b8135612e2a848260208601612cff565b91505092915050565b600082601f830112612e4857612e47613f81565b5b8135612e58848260208601612d41565b91505092915050565b600081359050612e708161451b565b92915050565b600060208284031215612e8c57612e8b613f95565b5b6000612e9a84828501612d83565b91505092915050565b60008060408385031215612eba57612eb9613f95565b5b6000612ec885828601612d83565b9250506020612ed985828601612d83565b9150509250929050565b600080600060608486031215612efc57612efb613f95565b5b6000612f0a86828701612d83565b9350506020612f1b86828701612d83565b9250506040612f2c86828701612e61565b9150509250925092565b60008060008060808587031215612f5057612f4f613f95565b5b6000612f5e87828801612d83565b9450506020612f6f87828801612d83565b9350506040612f8087828801612e61565b925050606085013567ffffffffffffffff811115612fa157612fa0613f90565b5b612fad87828801612e05565b91505092959194509250565b60008060408385031215612fd057612fcf613f95565b5b6000612fde85828601612d83565b9250506020612fef85828601612dc6565b9150509250929050565b600080604083850312156130105761300f613f95565b5b600061301e85828601612d83565b925050602061302f85828601612e61565b9150509250929050565b60006020828403121561304f5761304e613f95565b5b600082013567ffffffffffffffff81111561306d5761306c613f90565b5b61307984828501612d98565b91505092915050565b60006020828403121561309857613097613f95565b5b60006130a684828501612dc6565b91505092915050565b6000602082840312156130c5576130c4613f95565b5b60006130d384828501612ddb565b91505092915050565b6000602082840312156130f2576130f1613f95565b5b600061310084828501612df0565b91505092915050565b60006020828403121561311f5761311e613f95565b5b600082013567ffffffffffffffff81111561313d5761313c613f90565b5b61314984828501612e33565b91505092915050565b60006020828403121561316857613167613f95565b5b600061317684828501612e61565b91505092915050565b6000806040838503121561319657613195613f95565b5b60006131a485828601612e61565b92505060206131b585828601612d83565b9150509250929050565b60006131cb838361369a565b60208301905092915050565b6131e081613d03565b82525050565b60006131f182613b77565b6131fb8185613ba5565b935061320683613b52565b8060005b8381101561323757815161321e88826131bf565b975061322983613b98565b92505060018101905061320a565b5085935050505092915050565b61324d81613d15565b82525050565b600061325e82613b82565b6132688185613bb6565b9350613278818560208601613d86565b61328181613f9a565b840191505092915050565b600061329782613b8d565b6132a18185613bd2565b93506132b1818560208601613d86565b6132ba81613f9a565b840191505092915050565b60006132d082613b8d565b6132da8185613be3565b93506132ea818560208601613d86565b80840191505092915050565b6000815461330381613db9565b61330d8186613be3565b9450600182166000811461332857600181146133395761336c565b60ff1983168652818601935061336c565b61334285613b62565b60005b8381101561336457815481890152600182019150602081019050613345565b838801955050505b50505092915050565b6000613382603283613bd2565b915061338d82613fab565b604082019050919050565b60006133a5602683613bd2565b91506133b082613ffa565b604082019050919050565b60006133c8602583613bd2565b91506133d382614049565b604082019050919050565b60006133eb601c83613bd2565b91506133f682614098565b602082019050919050565b600061340e601483613bd2565b9150613419826140c1565b602082019050919050565b6000613431602483613bd2565b915061343c826140ea565b604082019050919050565b6000613454601983613bd2565b915061345f82614139565b602082019050919050565b6000613477602c83613bd2565b915061348282614162565b604082019050919050565b600061349a602983613bd2565b91506134a5826141b1565b604082019050919050565b60006134bd603e83613bd2565b91506134c882614200565b604082019050919050565b60006134e0602083613bd2565b91506134eb8261424f565b602082019050919050565b6000613503602083613bd2565b915061350e82614278565b602082019050919050565b6000613526601a83613bd2565b9150613531826142a1565b602082019050919050565b6000613549601783613bd2565b9150613554826142ca565b602082019050919050565b600061356c602f83613bd2565b9150613577826142f3565b604082019050919050565b600061358f601883613bd2565b915061359a82614342565b602082019050919050565b60006135b2602183613bd2565b91506135bd8261436b565b604082019050919050565b60006135d5600083613bc7565b91506135e0826143ba565b600082019050919050565b60006135f8601483613bd2565b9150613603826143bd565b602082019050919050565b600061361b602683613bd2565b9150613626826143e6565b604082019050919050565b600061363e602e83613bd2565b915061364982614435565b604082019050919050565b6000613661601f83613bd2565b915061366c82614484565b602082019050919050565b6000613684601383613bd2565b915061368f826144ad565b602082019050919050565b6136a381613d6d565b82525050565b6136b281613d6d565b82525050565b60006136c482866132c5565b91506136d082856132c5565b91506136dc82846132f6565b9150819050949350505050565b60006136f4826135c8565b9150819050919050565b600060208201905061371360008301846131d7565b92915050565b600060808201905061372e60008301876131d7565b61373b60208301866131d7565b61374860408301856136a9565b818103606083015261375a8184613253565b905095945050505050565b6000602082019050818103600083015261377f81846131e6565b905092915050565b600060208201905061379c6000830184613244565b92915050565b600060208201905081810360008301526137bc818461328c565b905092915050565b600060208201905081810360008301526137dd81613375565b9050919050565b600060208201905081810360008301526137fd81613398565b9050919050565b6000602082019050818103600083015261381d816133bb565b9050919050565b6000602082019050818103600083015261383d816133de565b9050919050565b6000602082019050818103600083015261385d81613401565b9050919050565b6000602082019050818103600083015261387d81613424565b9050919050565b6000602082019050818103600083015261389d81613447565b9050919050565b600060208201905081810360008301526138bd8161346a565b9050919050565b600060208201905081810360008301526138dd8161348d565b9050919050565b600060208201905081810360008301526138fd816134b0565b9050919050565b6000602082019050818103600083015261391d816134d3565b9050919050565b6000602082019050818103600083015261393d816134f6565b9050919050565b6000602082019050818103600083015261395d81613519565b9050919050565b6000602082019050818103600083015261397d8161353c565b9050919050565b6000602082019050818103600083015261399d8161355f565b9050919050565b600060208201905081810360008301526139bd81613582565b9050919050565b600060208201905081810360008301526139dd816135a5565b9050919050565b600060208201905081810360008301526139fd816135eb565b9050919050565b60006020820190508181036000830152613a1d8161360e565b9050919050565b60006020820190508181036000830152613a3d81613631565b9050919050565b60006020820190508181036000830152613a5d81613654565b9050919050565b60006020820190508181036000830152613a7d81613677565b9050919050565b6000602082019050613a9960008301846136a9565b92915050565b6000613aa9613aba565b9050613ab58282613deb565b919050565b6000604051905090565b600067ffffffffffffffff821115613adf57613ade613f52565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b0b57613b0a613f52565b5b613b1482613f9a565b9050602081019050919050565b600067ffffffffffffffff821115613b3c57613b3b613f52565b5b613b4582613f9a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bf982613d6d565b9150613c0483613d6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3957613c38613e96565b5b828201905092915050565b6000613c4f82613d6d565b9150613c5a83613d6d565b925082613c6a57613c69613ec5565b5b828204905092915050565b6000613c8082613d6d565b9150613c8b83613d6d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cc457613cc3613e96565b5b828202905092915050565b6000613cda82613d6d565b9150613ce583613d6d565b925082821015613cf857613cf7613e96565b5b828203905092915050565b6000613d0e82613d4d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613da4578082015181840152602081019050613d89565b83811115613db3576000848401525b50505050565b60006002820490506001821680613dd157607f821691505b60208210811415613de557613de4613ef4565b5b50919050565b613df482613f9a565b810181811067ffffffffffffffff82111715613e1357613e12613f52565b5b80604052505050565b6000613e2782613d6d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e5a57613e59613e96565b5b600182019050919050565b6000613e7082613d6d565b9150613e7b83613d6d565b925082613e8b57613e8a613ec5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f42757965722068617320616c7265616479207072652d73616c65206d696e746560008201527f64206d617820746f6b656e730000000000000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752063616e206f6e6c79206d696e7420312070696563652e000000000000600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4275796572206973206e6f7420696e2057686974656c69737420666f7220507260008201527f652d53616c650000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6144df81613d03565b81146144ea57600080fd5b50565b6144f681613d15565b811461450157600080fd5b50565b61450d81613d21565b811461451857600080fd5b50565b61452481613d6d565b811461452f57600080fd5b5056fea264697066735822122028a2ac11187d3e0887b56ba0a7686ada875327c2adc8711d1d9c6439b3bae38464736f6c63430008070033697066733a2f2f62616679626569676c7734766133786f6a3363677a3467617572336e32647a6371716c356979756e366f6c6268663263666933697a686c343566612f68696464656e2e6a736f6e
Deployed Bytecode
0x6080604052600436106102675760003560e01c8063715018a611610144578063c243c6c1116100b6578063d936547e1161007a578063d936547e146108e3578063e0a8085314610920578063e985e9c514610949578063efbd73f414610986578063f2fde38b146109af578063fdea8e0b146109d857610267565b8063c243c6c114610800578063c54e73e314610829578063c87b56dd14610852578063d5abeb011461088f578063d76fd220146108ba57610267565b806395d89b411161010857806395d89b4114610713578063a0712d681461073e578063a22cb4651461075a578063a45ba8e714610783578063b071401b146107ae578063b88d4fde146107d757610267565b8063715018a6146106525780637ec4a6591461066957806385480756146106925780638da5cb5b146106bd57806394354fd0146106e857610267565b806342842e0e116101dd57806351830227116101a1578063518302271461052c5780635503a0e8146105575780635c975abb1461058257806362b99ad4146105ad5780636352211e146105d857806370a082311461061557610267565b806342842e0e1461044b578063438b63001461047457806344a0d68a146104b157806347ee0394146104da5780634fdd43cb1461050357610267565b806313faede61161022f57806313faede61461036357806316ba10e01461038e57806316c38b3c146103b757806318160ddd146103e057806323b872dd1461040b5780633ccfd60b1461043457610267565b806301bf66481461026c57806301ffc9a71461029557806306fdde03146102d2578063081812fc146102fd578063095ea7b31461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612e76565b610a03565b005b3480156102a157600080fd5b506102bc60048036038101906102b791906130af565b610a66565b6040516102c99190613787565b60405180910390f35b3480156102de57600080fd5b506102e7610b48565b6040516102f491906137a2565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613152565b610bda565b60405161033191906136fe565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190612ff9565b610c20565b005b34801561036f57600080fd5b50610378610d38565b6040516103859190613a84565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613109565b610d3e565b005b3480156103c357600080fd5b506103de60048036038101906103d99190613082565b610d60565b005b3480156103ec57600080fd5b506103f5610d85565b6040516104029190613a84565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d9190612ee3565b610d96565b005b34801561044057600080fd5b50610449610df6565b005b34801561045757600080fd5b50610472600480360381019061046d9190612ee3565b610f77565b005b34801561048057600080fd5b5061049b60048036038101906104969190612e76565b610f97565b6040516104a89190613765565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190613152565b6110a2565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190612e76565b6110b4565b005b34801561050f57600080fd5b5061052a60048036038101906105259190613109565b611117565b005b34801561053857600080fd5b50610541611139565b60405161054e9190613787565b60405180910390f35b34801561056357600080fd5b5061056c61114c565b60405161057991906137a2565b60405180910390f35b34801561058e57600080fd5b506105976111da565b6040516105a49190613787565b60405180910390f35b3480156105b957600080fd5b506105c26111ed565b6040516105cf91906137a2565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613152565b61127b565b60405161060c91906136fe565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190612e76565b61132d565b6040516106499190613a84565b60405180910390f35b34801561065e57600080fd5b506106676113e5565b005b34801561067557600080fd5b50610690600480360381019061068b9190613109565b6113f9565b005b34801561069e57600080fd5b506106a761141b565b6040516106b49190613a84565b60405180910390f35b3480156106c957600080fd5b506106d2611421565b6040516106df91906136fe565b60405180910390f35b3480156106f457600080fd5b506106fd61144b565b60405161070a9190613a84565b60405180910390f35b34801561071f57600080fd5b50610728611451565b60405161073591906137a2565b60405180910390f35b61075860048036038101906107539190613152565b6114e3565b005b34801561076657600080fd5b50610781600480360381019061077c9190612fb9565b611783565b005b34801561078f57600080fd5b50610798611799565b6040516107a591906137a2565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190613152565b611827565b005b3480156107e357600080fd5b506107fe60048036038101906107f99190612f36565b611839565b005b34801561080c57600080fd5b5061082760048036038101906108229190613039565b61189b565b005b34801561083557600080fd5b50610850600480360381019061084b9190613082565b611938565b005b34801561085e57600080fd5b5061087960048036038101906108749190613152565b61195d565b60405161088691906137a2565b60405180910390f35b34801561089b57600080fd5b506108a4611ab6565b6040516108b19190613a84565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613152565b611abc565b005b3480156108ef57600080fd5b5061090a60048036038101906109059190612e76565b611ace565b6040516109179190613787565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190613082565b611aee565b005b34801561095557600080fd5b50610970600480360381019061096b9190612ea3565b611b13565b60405161097d9190613787565b60405180910390f35b34801561099257600080fd5b506109ad60048036038101906109a8919061317f565b611ba7565b005b3480156109bb57600080fd5b506109d660048036038101906109d19190612e76565b611c69565b005b3480156109e457600080fd5b506109ed611ced565b6040516109fa9190613787565b60405180910390f35b610a0b611d00565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b415750610b4082611d7e565b5b9050919050565b606060008054610b5790613db9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8390613db9565b8015610bd05780601f10610ba557610100808354040283529160200191610bd0565b820191906000526020600020905b815481529060010190602001808311610bb357829003601f168201915b5050505050905090565b6000610be582611de8565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c2b8261127b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c93906139c4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cbb611e33565b73ffffffffffffffffffffffffffffffffffffffff161480610cea5750610ce981610ce4611e33565b611b13565b5b610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906138e4565b60405180910390fd5b610d338383611e3b565b505050565b600c5481565b610d46611d00565b80600a9080519060200190610d5c929190612bec565b5050565b610d68611d00565b80600f60006101000a81548160ff02191690831515021790555050565b6000610d916008611ef4565b905090565b610da7610da1611e33565b82611f02565b610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90613a24565b60405180910390fd5b610df1838383611f97565b505050565b610dfe611d00565b60026007541415610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90613a44565b60405180910390fd5b60026007819055506000731b6c8a28005425b09387f3527d4847d1791696c373ffffffffffffffffffffffffffffffffffffffff166064600547610e889190613c75565b610e929190613c44565b604051610e9e906136e9565b60006040518083038185875af1925050503d8060008114610edb576040519150601f19603f3d011682016040523d82523d6000602084013e610ee0565b606091505b5050905080610eee57600080fd5b6000610ef8611421565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f1b906136e9565b60006040518083038185875af1925050503d8060008114610f58576040519150601f19603f3d011682016040523d82523d6000602084013e610f5d565b606091505b5050905080610f6b57600080fd5b50506001600781905550565b610f9283838360405180602001604052806000815250611839565b505050565b60606000610fa48361132d565b905060008167ffffffffffffffff811115610fc257610fc1613f52565b5b604051908082528060200260200182016040528015610ff05781602001602082028036833780820191505090505b50905060006001905060005b838110801561100d5750600d548211155b1561109657600061101d8361127b565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611082578284838151811061106757611066613f23565b5b602002602001018181525050818061107e90613e1c565b9250505b828061108d90613e1c565b93505050610ffc565b82945050505050919050565b6110aa611d00565b80600c8190555050565b6110bc611d00565b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61111f611d00565b80600b9080519060200190611135929190612bec565b5050565b600f60019054906101000a900460ff1681565b600a805461115990613db9565b80601f016020809104026020016040519081016040528092919081815260200182805461118590613db9565b80156111d25780601f106111a7576101008083540402835291602001916111d2565b820191906000526020600020905b8154815290600101906020018083116111b557829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b600980546111fa90613db9565b80601f016020809104026020016040519081016040528092919081815260200182805461122690613db9565b80156112735780601f1061124857610100808354040283529160200191611273565b820191906000526020600020905b81548152906001019060200180831161125657829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b906139a4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611395906138c4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113ed611d00565b6113f760006121fe565b565b611401611d00565b8060099080519060200190611417929190612bec565b5050565b60115481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606001805461146090613db9565b80601f016020809104026020016040519081016040528092919081815260200182805461148c90613db9565b80156114d95780601f106114ae576101008083540402835291602001916114d9565b820191906000526020600020905b8154815290600101906020018083116114bc57829003601f168201915b5050505050905090565b806000811180156114f65750600e548111155b611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c90613844565b60405180910390fd5b600d54816115436008611ef4565b61154d9190613bee565b111561158e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611585906139e4565b60405180910390fd5b600f60009054906101000a900460ff16156115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590613964565b60405180910390fd5b60006115ea6008611ef4565b9050610a4f811480156115fd5750600183115b1561163d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163490613944565b60405180910390fd5b82600c5461164b9190613c75565b34101561168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490613a64565b60405180910390fd5b610a508114806116aa5750610a4e811480156116a95750600283145b5b156116be57661ff973cafa8000600c819055505b600f60029054906101000a900460ff1615611774576116dc336122c4565b61171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290613a04565b60405180910390fd5b601154836117283361132d565b6117329190613bee565b1115611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a906138a4565b60405180910390fd5b5b61177e3384612357565b505050565b61179561178e611e33565b8383612397565b5050565b600b80546117a690613db9565b80601f01602080910402602001604051908101604052809291908181526020018280546117d290613db9565b801561181f5780601f106117f45761010080835404028352916020019161181f565b820191906000526020600020905b81548152906001019060200180831161180257829003601f168201915b505050505081565b61182f611d00565b80600e8190555050565b61184a611844611e33565b83611f02565b611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090613a24565b60405180910390fd5b61189584848484612504565b50505050565b6118a3611d00565b60005b8151811015611934576001601060008484815181106118c8576118c7613f23565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061192c90613e1c565b9150506118a6565b5050565b611940611d00565b80600f60026101000a81548160ff02191690831515021790555050565b606061196882612560565b6119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e90613984565b60405180910390fd5b60001515600f60019054906101000a900460ff1615151415611a5557600b80546119d090613db9565b80601f01602080910402602001604051908101604052809291908181526020018280546119fc90613db9565b8015611a495780601f10611a1e57610100808354040283529160200191611a49565b820191906000526020600020905b815481529060010190602001808311611a2c57829003601f168201915b50505050509050611ab1565b6000611a5f6125cc565b90506000815111611a7f5760405180602001604052806000815250611aad565b80611a898461265e565b600a604051602001611a9d939291906136b8565b6040516020818303038152906040525b9150505b919050565b600d5481565b611ac4611d00565b8060118190555050565b60106020528060005260406000206000915054906101000a900460ff1681565b611af6611d00565b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611bba5750600e548111155b611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090613844565b60405180910390fd5b600d5481611c076008611ef4565b611c119190613bee565b1115611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c49906139e4565b60405180910390fd5b611c5a611d00565b611c648284612357565b505050565b611c71611d00565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd8906137e4565b60405180910390fd5b611cea816121fe565b50565b600f60029054906101000a900460ff1681565b611d08611e33565b73ffffffffffffffffffffffffffffffffffffffff16611d26611421565b73ffffffffffffffffffffffffffffffffffffffff1614611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7390613924565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611df181612560565b611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e27906139a4565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611eae8361127b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600080611f0e8361127b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f505750611f4f8185611b13565b5b80611f8e57508373ffffffffffffffffffffffffffffffffffffffff16611f7684610bda565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb78261127b565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200490613804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490613864565b60405180910390fd5b6120888383836127bf565b612093600082611e3b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e39190613ccf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213a9190613bee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f98383836127c4565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123505750612321611421565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050919050565b60005b818110156123925761236c60086127c9565b61237f8361237a6008611ef4565b6127df565b808061238a90613e1c565b91505061235a565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fd90613884565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124f79190613787565b60405180910390a3505050565b61250f848484611f97565b61251b848484846127fd565b61255a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612551906137c4565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600980546125db90613db9565b80601f016020809104026020016040519081016040528092919081815260200182805461260790613db9565b80156126545780601f1061262957610100808354040283529160200191612654565b820191906000526020600020905b81548152906001019060200180831161263757829003601f168201915b5050505050905090565b606060008214156126a6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127ba565b600082905060005b600082146126d85780806126c190613e1c565b915050600a826126d19190613c44565b91506126ae565b60008167ffffffffffffffff8111156126f4576126f3613f52565b5b6040519080825280601f01601f1916602001820160405280156127265781602001600182028036833780820191505090505b5090505b600085146127b35760018261273f9190613ccf565b9150600a8561274e9190613e65565b603061275a9190613bee565b60f81b8183815181106127705761276f613f23565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127ac9190613c44565b945061272a565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6127f9828260405180602001604052806000815250612994565b5050565b600061281e8473ffffffffffffffffffffffffffffffffffffffff166129ef565b15612987578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612847611e33565b8786866040518563ffffffff1660e01b81526004016128699493929190613719565b602060405180830381600087803b15801561288357600080fd5b505af19250505080156128b457506040513d601f19601f820116820180604052508101906128b191906130dc565b60015b612937573d80600081146128e4576040519150601f19603f3d011682016040523d82523d6000602084013e6128e9565b606091505b5060008151141561292f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612926906137c4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061298c565b600190505b949350505050565b61299e8383612a12565b6129ab60008484846127fd565b6129ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e1906137c4565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7990613904565b60405180910390fd5b612a8b81612560565b15612acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac290613824565b60405180910390fd5b612ad7600083836127bf565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b279190613bee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612be8600083836127c4565b5050565b828054612bf890613db9565b90600052602060002090601f016020900481019282612c1a5760008555612c61565b82601f10612c3357805160ff1916838001178555612c61565b82800160010185558215612c61579182015b82811115612c60578251825591602001919060010190612c45565b5b509050612c6e9190612c72565b5090565b5b80821115612c8b576000816000905550600101612c73565b5090565b6000612ca2612c9d84613ac4565b613a9f565b90508083825260208201905082856020860282011115612cc557612cc4613f86565b5b60005b85811015612cf55781612cdb8882612d83565b845260208401935060208301925050600181019050612cc8565b5050509392505050565b6000612d12612d0d84613af0565b613a9f565b905082815260208101848484011115612d2e57612d2d613f8b565b5b612d39848285613d77565b509392505050565b6000612d54612d4f84613b21565b613a9f565b905082815260208101848484011115612d7057612d6f613f8b565b5b612d7b848285613d77565b509392505050565b600081359050612d92816144d6565b92915050565b600082601f830112612dad57612dac613f81565b5b8135612dbd848260208601612c8f565b91505092915050565b600081359050612dd5816144ed565b92915050565b600081359050612dea81614504565b92915050565b600081519050612dff81614504565b92915050565b600082601f830112612e1a57612e19613f81565b5b8135612e2a848260208601612cff565b91505092915050565b600082601f830112612e4857612e47613f81565b5b8135612e58848260208601612d41565b91505092915050565b600081359050612e708161451b565b92915050565b600060208284031215612e8c57612e8b613f95565b5b6000612e9a84828501612d83565b91505092915050565b60008060408385031215612eba57612eb9613f95565b5b6000612ec885828601612d83565b9250506020612ed985828601612d83565b9150509250929050565b600080600060608486031215612efc57612efb613f95565b5b6000612f0a86828701612d83565b9350506020612f1b86828701612d83565b9250506040612f2c86828701612e61565b9150509250925092565b60008060008060808587031215612f5057612f4f613f95565b5b6000612f5e87828801612d83565b9450506020612f6f87828801612d83565b9350506040612f8087828801612e61565b925050606085013567ffffffffffffffff811115612fa157612fa0613f90565b5b612fad87828801612e05565b91505092959194509250565b60008060408385031215612fd057612fcf613f95565b5b6000612fde85828601612d83565b9250506020612fef85828601612dc6565b9150509250929050565b600080604083850312156130105761300f613f95565b5b600061301e85828601612d83565b925050602061302f85828601612e61565b9150509250929050565b60006020828403121561304f5761304e613f95565b5b600082013567ffffffffffffffff81111561306d5761306c613f90565b5b61307984828501612d98565b91505092915050565b60006020828403121561309857613097613f95565b5b60006130a684828501612dc6565b91505092915050565b6000602082840312156130c5576130c4613f95565b5b60006130d384828501612ddb565b91505092915050565b6000602082840312156130f2576130f1613f95565b5b600061310084828501612df0565b91505092915050565b60006020828403121561311f5761311e613f95565b5b600082013567ffffffffffffffff81111561313d5761313c613f90565b5b61314984828501612e33565b91505092915050565b60006020828403121561316857613167613f95565b5b600061317684828501612e61565b91505092915050565b6000806040838503121561319657613195613f95565b5b60006131a485828601612e61565b92505060206131b585828601612d83565b9150509250929050565b60006131cb838361369a565b60208301905092915050565b6131e081613d03565b82525050565b60006131f182613b77565b6131fb8185613ba5565b935061320683613b52565b8060005b8381101561323757815161321e88826131bf565b975061322983613b98565b92505060018101905061320a565b5085935050505092915050565b61324d81613d15565b82525050565b600061325e82613b82565b6132688185613bb6565b9350613278818560208601613d86565b61328181613f9a565b840191505092915050565b600061329782613b8d565b6132a18185613bd2565b93506132b1818560208601613d86565b6132ba81613f9a565b840191505092915050565b60006132d082613b8d565b6132da8185613be3565b93506132ea818560208601613d86565b80840191505092915050565b6000815461330381613db9565b61330d8186613be3565b9450600182166000811461332857600181146133395761336c565b60ff1983168652818601935061336c565b61334285613b62565b60005b8381101561336457815481890152600182019150602081019050613345565b838801955050505b50505092915050565b6000613382603283613bd2565b915061338d82613fab565b604082019050919050565b60006133a5602683613bd2565b91506133b082613ffa565b604082019050919050565b60006133c8602583613bd2565b91506133d382614049565b604082019050919050565b60006133eb601c83613bd2565b91506133f682614098565b602082019050919050565b600061340e601483613bd2565b9150613419826140c1565b602082019050919050565b6000613431602483613bd2565b915061343c826140ea565b604082019050919050565b6000613454601983613bd2565b915061345f82614139565b602082019050919050565b6000613477602c83613bd2565b915061348282614162565b604082019050919050565b600061349a602983613bd2565b91506134a5826141b1565b604082019050919050565b60006134bd603e83613bd2565b91506134c882614200565b604082019050919050565b60006134e0602083613bd2565b91506134eb8261424f565b602082019050919050565b6000613503602083613bd2565b915061350e82614278565b602082019050919050565b6000613526601a83613bd2565b9150613531826142a1565b602082019050919050565b6000613549601783613bd2565b9150613554826142ca565b602082019050919050565b600061356c602f83613bd2565b9150613577826142f3565b604082019050919050565b600061358f601883613bd2565b915061359a82614342565b602082019050919050565b60006135b2602183613bd2565b91506135bd8261436b565b604082019050919050565b60006135d5600083613bc7565b91506135e0826143ba565b600082019050919050565b60006135f8601483613bd2565b9150613603826143bd565b602082019050919050565b600061361b602683613bd2565b9150613626826143e6565b604082019050919050565b600061363e602e83613bd2565b915061364982614435565b604082019050919050565b6000613661601f83613bd2565b915061366c82614484565b602082019050919050565b6000613684601383613bd2565b915061368f826144ad565b602082019050919050565b6136a381613d6d565b82525050565b6136b281613d6d565b82525050565b60006136c482866132c5565b91506136d082856132c5565b91506136dc82846132f6565b9150819050949350505050565b60006136f4826135c8565b9150819050919050565b600060208201905061371360008301846131d7565b92915050565b600060808201905061372e60008301876131d7565b61373b60208301866131d7565b61374860408301856136a9565b818103606083015261375a8184613253565b905095945050505050565b6000602082019050818103600083015261377f81846131e6565b905092915050565b600060208201905061379c6000830184613244565b92915050565b600060208201905081810360008301526137bc818461328c565b905092915050565b600060208201905081810360008301526137dd81613375565b9050919050565b600060208201905081810360008301526137fd81613398565b9050919050565b6000602082019050818103600083015261381d816133bb565b9050919050565b6000602082019050818103600083015261383d816133de565b9050919050565b6000602082019050818103600083015261385d81613401565b9050919050565b6000602082019050818103600083015261387d81613424565b9050919050565b6000602082019050818103600083015261389d81613447565b9050919050565b600060208201905081810360008301526138bd8161346a565b9050919050565b600060208201905081810360008301526138dd8161348d565b9050919050565b600060208201905081810360008301526138fd816134b0565b9050919050565b6000602082019050818103600083015261391d816134d3565b9050919050565b6000602082019050818103600083015261393d816134f6565b9050919050565b6000602082019050818103600083015261395d81613519565b9050919050565b6000602082019050818103600083015261397d8161353c565b9050919050565b6000602082019050818103600083015261399d8161355f565b9050919050565b600060208201905081810360008301526139bd81613582565b9050919050565b600060208201905081810360008301526139dd816135a5565b9050919050565b600060208201905081810360008301526139fd816135eb565b9050919050565b60006020820190508181036000830152613a1d8161360e565b9050919050565b60006020820190508181036000830152613a3d81613631565b9050919050565b60006020820190508181036000830152613a5d81613654565b9050919050565b60006020820190508181036000830152613a7d81613677565b9050919050565b6000602082019050613a9960008301846136a9565b92915050565b6000613aa9613aba565b9050613ab58282613deb565b919050565b6000604051905090565b600067ffffffffffffffff821115613adf57613ade613f52565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b0b57613b0a613f52565b5b613b1482613f9a565b9050602081019050919050565b600067ffffffffffffffff821115613b3c57613b3b613f52565b5b613b4582613f9a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bf982613d6d565b9150613c0483613d6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3957613c38613e96565b5b828201905092915050565b6000613c4f82613d6d565b9150613c5a83613d6d565b925082613c6a57613c69613ec5565b5b828204905092915050565b6000613c8082613d6d565b9150613c8b83613d6d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cc457613cc3613e96565b5b828202905092915050565b6000613cda82613d6d565b9150613ce583613d6d565b925082821015613cf857613cf7613e96565b5b828203905092915050565b6000613d0e82613d4d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613da4578082015181840152602081019050613d89565b83811115613db3576000848401525b50505050565b60006002820490506001821680613dd157607f821691505b60208210811415613de557613de4613ef4565b5b50919050565b613df482613f9a565b810181811067ffffffffffffffff82111715613e1357613e12613f52565b5b80604052505050565b6000613e2782613d6d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e5a57613e59613e96565b5b600182019050919050565b6000613e7082613d6d565b9150613e7b83613d6d565b925082613e8b57613e8a613ec5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f42757965722068617320616c7265616479207072652d73616c65206d696e746560008201527f64206d617820746f6b656e730000000000000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752063616e206f6e6c79206d696e7420312070696563652e000000000000600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4275796572206973206e6f7420696e2057686974656c69737420666f7220507260008201527f652d53616c650000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6144df81613d03565b81146144ea57600080fd5b50565b6144f681613d15565b811461450157600080fd5b50565b61450d81613d21565b811461451857600080fd5b50565b61452481613d6d565b811461452f57600080fd5b5056fea264697066735822122028a2ac11187d3e0887b56ba0a7686ada875327c2adc8711d1d9c6439b3bae38464736f6c63430008070033
Deployed Bytecode Sourcemap
44033:6247:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50042:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28994:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29921:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31434:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30951:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44379:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48160:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48266:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45092:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32134:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48349:864;;;;;;;;;;;;;:::i;:::-;;32541:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46472:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47700:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49768:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47916:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44523:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44242:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44493:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44209:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29632:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29363:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9530:103;;;;;;;;;;;;;:::i;:::-;;48054:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44637:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8882:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44449:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30090:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45187:1116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31677:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44280:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47780:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32797:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49870:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49569:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47113:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44413:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49656:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44589:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47613:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31903:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46311:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9788:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44558:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50042:102;8768:13;:11;:13::i;:::-;50133:5:::1;50112:11;:18;50124:5;50112:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;50042:102:::0;:::o;28994:305::-;29096:4;29148:25;29133:40;;;:11;:40;;;;:105;;;;29205:33;29190:48;;;:11;:48;;;;29133:105;:158;;;;29255:36;29279:11;29255:23;:36::i;:::-;29133:158;29113:178;;28994:305;;;:::o;29921:100::-;29975:13;30008:5;30001:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29921:100;:::o;31434:171::-;31510:7;31530:23;31545:7;31530:14;:23::i;:::-;31573:15;:24;31589:7;31573:24;;;;;;;;;;;;;;;;;;;;;31566:31;;31434:171;;;:::o;30951:417::-;31032:13;31048:23;31063:7;31048:14;:23::i;:::-;31032:39;;31096:5;31090:11;;:2;:11;;;;31082:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;31190:5;31174:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;31199:37;31216:5;31223:12;:10;:12::i;:::-;31199:16;:37::i;:::-;31174:62;31152:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;31339:21;31348:2;31352:7;31339:8;:21::i;:::-;31021:347;30951:417;;:::o;44379:29::-;;;;:::o;48160:100::-;8768:13;:11;:13::i;:::-;48244:10:::1;48232:9;:22;;;;;;;;;;;;:::i;:::-;;48160:100:::0;:::o;48266:77::-;8768:13;:11;:13::i;:::-;48331:6:::1;48322;;:15;;;;;;;;;;;;;;;;;;48266:77:::0;:::o;45092:89::-;45136:7;45159:16;:6;:14;:16::i;:::-;45152:23;;45092:89;:::o;32134:336::-;32329:41;32348:12;:10;:12::i;:::-;32362:7;32329:18;:41::i;:::-;32321:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;32434:28;32444:4;32450:2;32454:7;32434:9;:28::i;:::-;32134:336;;;:::o;48349:864::-;8768:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;48553:7:::2;48574:42;48566:56;;48658:3;48654:1;48630:21;:25;;;;:::i;:::-;:31;;;;:::i;:::-;48566:100;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48552:114;;;48681:2;48673:11;;;::::0;::::2;;49033:7;49054;:5;:7::i;:::-;49046:21;;49075;49046:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49032:69;;;49116:2;49108:11;;;::::0;::::2;;48399:814;;1801:1:::1;2755:7;:22;;;;48349:864::o:0;32541:185::-;32679:39;32696:4;32702:2;32706:7;32679:39;;;;;;;;;;;;:16;:39::i;:::-;32541:185;;;:::o;46472:635::-;46547:16;46575:23;46601:17;46611:6;46601:9;:17::i;:::-;46575:43;;46625:30;46672:15;46658:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46625:63;;46695:22;46720:1;46695:26;;46728:23;46764:309;46789:15;46771;:33;:64;;;;;46826:9;;46808:14;:27;;46771:64;46764:309;;;46846:25;46874:23;46882:14;46874:7;:23::i;:::-;46846:51;;46933:6;46912:27;;:17;:27;;;46908:131;;;46985:14;46952:13;46966:15;46952:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;47012:17;;;;;:::i;:::-;;;;46908:131;47049:16;;;;;:::i;:::-;;;;46837:236;46764:309;;;47088:13;47081:20;;;;;;46472:635;;;:::o;47700:74::-;8768:13;:11;:13::i;:::-;47763:5:::1;47756:4;:12;;;;47700:74:::0;:::o;49768:96::-;8768:13;:11;:13::i;:::-;49854:4:::1;49833:11;:18;49845:5;49833:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;49768:96:::0;:::o;47916:132::-;8768:13;:11;:13::i;:::-;48024:18:::1;48004:17;:38;;;;;;;;;;;;:::i;:::-;;47916:132:::0;:::o;44523:28::-;;;;;;;;;;;;;:::o;44242:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44493:25::-;;;;;;;;;;;;;:::o;44209:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29632:222::-;29704:7;29724:13;29740:7;:16;29748:7;29740:16;;;;;;;;;;;;;;;;;;;;;29724:32;;29792:1;29775:19;;:5;:19;;;;29767:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;29841:5;29834:12;;;29632:222;;;:::o;29363:207::-;29435:7;29480:1;29463:19;;:5;:19;;;;29455:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29546:9;:16;29556:5;29546:16;;;;;;;;;;;;;;;;29539:23;;29363:207;;;:::o;9530:103::-;8768:13;:11;:13::i;:::-;9595:30:::1;9622:1;9595:18;:30::i;:::-;9530:103::o:0;48054:100::-;8768:13;:11;:13::i;:::-;48138:10:::1;48126:9;:22;;;;;;;;;;;;:::i;:::-;;48054:100:::0;:::o;44637:39::-;;;;:::o;8882:87::-;8928:7;8955:6;;;;;;;;;;;8948:13;;8882:87;:::o;44449:37::-;;;;:::o;30090:104::-;30146:13;30179:7;30172:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30090:104;:::o;45187:1116::-;45252:11;44926:1;44912:11;:15;:52;;;;;44946:18;;44931:11;:33;;44912:52;44904:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;45038:9;;45023:11;45004:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;44996:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;45281:6:::1;;;;;;;;;;;45280:7;45272:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;45322:10;45335:16;:6;:14;:16::i;:::-;45322:29;;45464:4;45458:2;:10;:28;;;;;45485:1;45472:11;:14;45458:28;45454:87;;;45497:36;;;;;;;;;;:::i;:::-;;;;;;;;45454:87;45581:11;45574:4;;:18;;;;:::i;:::-;45561:9;:31;;45553:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45740:4;45734:2;:10;:46;;;;45755:4;45749:2;:10;:30;;;;;45778:1;45763:11;:16;45749:30;45734:46;45730:89;;;45800:11;45793:4;:18;;;;45730:89;45831:7;;;;;;;;;;;45827:428;;;45949:25;45963:10;45949:13;:25::i;:::-;45943:109;;45992:48;;;;;;;;;;:::i;:::-;;;;;;;;45943:109;46145:20;;46131:11;46109:21;46119:10;46109:9;:21::i;:::-;:33;;;;:::i;:::-;:56;46104:144;;;46182:54;;;;;;;;;;:::i;:::-;;;;;;;;46104:144;45827:428;46263:34;46273:10;46285:11;46263:9;:34::i;:::-;45265:1038;45187:1116:::0;;:::o;31677:155::-;31772:52;31791:12;:10;:12::i;:::-;31805:8;31815;31772:18;:52::i;:::-;31677:155;;:::o;44280:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47780:130::-;8768:13;:11;:13::i;:::-;47885:19:::1;47864:18;:40;;;;47780:130:::0;:::o;32797:323::-;32971:41;32990:12;:10;:12::i;:::-;33004:7;32971:18;:41::i;:::-;32963:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;33074:38;33088:4;33094:2;33098:7;33107:4;33074:13;:38::i;:::-;32797:323;;;;:::o;49870:166::-;8768:13;:11;:13::i;:::-;49955:9:::1;49950:79;49970:6;:13;49967:1;:16;49950:79;;;50025:4;50000:11;:22;50012:6;50019:1;50012:9;;;;;;;;:::i;:::-;;;;;;;;50000:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;49984:3;;;;;:::i;:::-;;;;49950:79;;;;49870:166:::0;:::o;49569:81::-;8768:13;:11;:13::i;:::-;49638:6:::1;49628:7;;:16;;;;;;;;;;;;;;;;;;49569:81:::0;:::o;47113:494::-;47212:13;47253:17;47261:8;47253:7;:17::i;:::-;47237:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;47360:5;47348:17;;:8;;;;;;;;;;;:17;;;47344:64;;;47383:17;47376:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47344:64;47416:28;47447:10;:8;:10::i;:::-;47416:41;;47502:1;47477:14;47471:28;:32;:130;;;;;;;;;;;;;;;;;47539:14;47555:19;:8;:17;:19::i;:::-;47576:9;47522:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47471:130;47464:137;;;47113:494;;;;:::o;44413:31::-;;;;:::o;49656:106::-;8768:13;:11;:13::i;:::-;49752:4:::1;49729:20;:27;;;;49656:106:::0;:::o;44589:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;47613:81::-;8768:13;:11;:13::i;:::-;47682:6:::1;47671:8;;:17;;;;;;;;;;;;;;;;;;47613:81:::0;:::o;31903:164::-;32000:4;32024:18;:25;32043:5;32024:25;;;;;;;;;;;;;;;:35;32050:8;32024:35;;;;;;;;;;;;;;;;;;;;;;;;;32017:42;;31903:164;;;;:::o;46311:155::-;46397:11;44926:1;44912:11;:15;:52;;;;;44946:18;;44931:11;:33;;44912:52;44904:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;45038:9;;45023:11;45004:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;44996:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;8768:13:::1;:11;:13::i;:::-;46427:33:::2;46437:9;46448:11;46427:9;:33::i;:::-;46311:155:::0;;;:::o;9788:201::-;8768:13;:11;:13::i;:::-;9897:1:::1;9877:22;;:8;:22;;;;9869:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9953:28;9972:8;9953:18;:28::i;:::-;9788:201:::0;:::o;44558:26::-;;;;;;;;;;;;;:::o;9047:132::-;9122:12;:10;:12::i;:::-;9111:23;;:7;:5;:7::i;:::-;:23;;;9103:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9047:132::o;21736:157::-;21821:4;21860:25;21845:40;;;:11;:40;;;;21838:47;;21736:157;;;:::o;39409:135::-;39491:16;39499:7;39491;:16::i;:::-;39483:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;39409:135;:::o;7433:98::-;7486:7;7513:10;7506:17;;7433:98;:::o;38688:174::-;38790:2;38763:15;:24;38779:7;38763:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38846:7;38842:2;38808:46;;38817:23;38832:7;38817:14;:23::i;:::-;38808:46;;;;;;;;;;;;38688:174;;:::o;3664:114::-;3729:7;3756;:14;;;3749:21;;3664:114;;;:::o;34921:264::-;35014:4;35031:13;35047:23;35062:7;35047:14;:23::i;:::-;35031:39;;35100:5;35089:16;;:7;:16;;;:52;;;;35109:32;35126:5;35133:7;35109:16;:32::i;:::-;35089:52;:87;;;;35169:7;35145:31;;:20;35157:7;35145:11;:20::i;:::-;:31;;;35089:87;35081:96;;;34921:264;;;;:::o;37944:625::-;38103:4;38076:31;;:23;38091:7;38076:14;:23::i;:::-;:31;;;38068:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;38182:1;38168:16;;:2;:16;;;;38160:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;38238:39;38259:4;38265:2;38269:7;38238:20;:39::i;:::-;38342:29;38359:1;38363:7;38342:8;:29::i;:::-;38403:1;38384:9;:15;38394:4;38384:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;38432:1;38415:9;:13;38425:2;38415:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38463:2;38444:7;:16;38452:7;38444:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38502:7;38498:2;38483:27;;38492:4;38483:27;;;;;;;;;;;;38523:38;38543:4;38549:2;38553:7;38523:19;:38::i;:::-;37944:625;;;:::o;10149:191::-;10223:16;10242:6;;;;;;;;;;;10223:25;;10268:8;10259:6;;:17;;;;;;;;;;;;;;;;;;10323:8;10292:40;;10313:8;10292:40;;;;;;;;;;;;10212:128;10149:191;:::o;50150:127::-;50210:4;50232:11;:18;50244:5;50232:18;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;;50264:7;:5;:7::i;:::-;50255:16;;:5;:16;;;50232:39;50225:46;;50150:127;;;:::o;49219:204::-;49299:9;49294:124;49318:11;49314:1;:15;49294:124;;;49345:18;:6;:16;:18::i;:::-;49372:38;49382:9;49393:16;:6;:14;:16::i;:::-;49372:9;:38::i;:::-;49331:3;;;;;:::i;:::-;;;;49294:124;;;;49219:204;;:::o;39005:315::-;39160:8;39151:17;;:5;:17;;;;39143:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;39247:8;39209:18;:25;39228:5;39209:25;;;;;;;;;;;;;;;:35;39235:8;39209:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39293:8;39271:41;;39286:5;39271:41;;;39303:8;39271:41;;;;;;:::i;:::-;;;;;;;;39005:315;;;:::o;34001:313::-;34157:28;34167:4;34173:2;34177:7;34157:9;:28::i;:::-;34204:47;34227:4;34233:2;34237:7;34246:4;34204:22;:47::i;:::-;34196:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;34001:313;;;;:::o;34627:127::-;34692:4;34744:1;34716:30;;:7;:16;34724:7;34716:16;;;;;;;;;;;;;;;;;;;;;:30;;;;34709:37;;34627:127;;;:::o;49429:104::-;49489:13;49518:9;49511:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49429:104;:::o;4687:723::-;4743:13;4973:1;4964:5;:10;4960:53;;;4991:10;;;;;;;;;;;;;;;;;;;;;4960:53;5023:12;5038:5;5023:20;;5054:14;5079:78;5094:1;5086:4;:9;5079:78;;5112:8;;;;;:::i;:::-;;;;5143:2;5135:10;;;;;:::i;:::-;;;5079:78;;;5167:19;5199:6;5189:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5167:39;;5217:154;5233:1;5224:5;:10;5217:154;;5261:1;5251:11;;;;;:::i;:::-;;;5328:2;5320:5;:10;;;;:::i;:::-;5307:2;:24;;;;:::i;:::-;5294:39;;5277:6;5284;5277:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;5357:2;5348:11;;;;;:::i;:::-;;;5217:154;;;5395:6;5381:21;;;;;4687:723;;;;:::o;41533:126::-;;;;:::o;42044:125::-;;;;:::o;3786:127::-;3893:1;3875:7;:14;;;:19;;;;;;;;;;;3786:127;:::o;35527:110::-;35603:26;35613:2;35617:7;35603:26;;;;;;;;;;;;:9;:26::i;:::-;35527:110;;:::o;40108:853::-;40262:4;40283:15;:2;:13;;;:15::i;:::-;40279:675;;;40335:2;40319:36;;;40356:12;:10;:12::i;:::-;40370:4;40376:7;40385:4;40319:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40315:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40577:1;40560:6;:13;:18;40556:328;;;40603:60;;;;;;;;;;:::i;:::-;;;;;;;;40556:328;40834:6;40828:13;40819:6;40815:2;40811:15;40804:38;40315:584;40451:41;;;40441:51;;;:6;:51;;;;40434:58;;;;;40279:675;40938:4;40931:11;;40108:853;;;;;;;:::o;35864:319::-;35993:18;35999:2;36003:7;35993:5;:18::i;:::-;36044:53;36075:1;36079:2;36083:7;36092:4;36044:22;:53::i;:::-;36022:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;35864:319;;;:::o;11580:326::-;11640:4;11897:1;11875:7;:19;;;:23;11868:30;;11580:326;;;:::o;36519:439::-;36613:1;36599:16;;:2;:16;;;;36591:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36672:16;36680:7;36672;:16::i;:::-;36671:17;36663:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36734:45;36763:1;36767:2;36771:7;36734:20;:45::i;:::-;36809:1;36792:9;:13;36802:2;36792:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36840:2;36821:7;:16;36829:7;36821:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36885:7;36881:2;36860:33;;36877:1;36860:33;;;;;;;;;;;;36906:44;36934:1;36938:2;36942:7;36906:19;:44::i;:::-;36519:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7303:323;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:119;;;7745:79;;:::i;:::-;7707:119;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7632:327;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:119;;;8089:79;;:::i;:::-;8051:119;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;7965:349;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:119;;;8444:79;;:::i;:::-;8406:119;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:117;;;8644:79;;:::i;:::-;8608:117;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8320:509;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:119;;;8949:79;;:::i;:::-;8911:119;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8835:329;;;;:::o;9170:474::-;9238:6;9246;9295:2;9283:9;9274:7;9270:23;9266:32;9263:119;;;9301:79;;:::i;:::-;9263:119;9421:1;9446:53;9491:7;9482:6;9471:9;9467:22;9446:53;:::i;:::-;9436:63;;9392:117;9548:2;9574:53;9619:7;9610:6;9599:9;9595:22;9574:53;:::i;:::-;9564:63;;9519:118;9170:474;;;;;:::o;9650:179::-;9719:10;9740:46;9782:3;9774:6;9740:46;:::i;:::-;9818:4;9813:3;9809:14;9795:28;;9650:179;;;;:::o;9835:118::-;9922:24;9940:5;9922:24;:::i;:::-;9917:3;9910:37;9835:118;;:::o;9989:732::-;10108:3;10137:54;10185:5;10137:54;:::i;:::-;10207:86;10286:6;10281:3;10207:86;:::i;:::-;10200:93;;10317:56;10367:5;10317:56;:::i;:::-;10396:7;10427:1;10412:284;10437:6;10434:1;10431:13;10412:284;;;10513:6;10507:13;10540:63;10599:3;10584:13;10540:63;:::i;:::-;10533:70;;10626:60;10679:6;10626:60;:::i;:::-;10616:70;;10472:224;10459:1;10456;10452:9;10447:14;;10412:284;;;10416:14;10712:3;10705:10;;10113:608;;;9989:732;;;;:::o;10727:109::-;10808:21;10823:5;10808:21;:::i;:::-;10803:3;10796:34;10727:109;;:::o;10842:360::-;10928:3;10956:38;10988:5;10956:38;:::i;:::-;11010:70;11073:6;11068:3;11010:70;:::i;:::-;11003:77;;11089:52;11134:6;11129:3;11122:4;11115:5;11111:16;11089:52;:::i;:::-;11166:29;11188:6;11166:29;:::i;:::-;11161:3;11157:39;11150:46;;10932:270;10842:360;;;;:::o;11208:364::-;11296:3;11324:39;11357:5;11324:39;:::i;:::-;11379:71;11443:6;11438:3;11379:71;:::i;:::-;11372:78;;11459:52;11504:6;11499:3;11492:4;11485:5;11481:16;11459:52;:::i;:::-;11536:29;11558:6;11536:29;:::i;:::-;11531:3;11527:39;11520:46;;11300:272;11208:364;;;;:::o;11578:377::-;11684:3;11712:39;11745:5;11712:39;:::i;:::-;11767:89;11849:6;11844:3;11767:89;:::i;:::-;11760:96;;11865:52;11910:6;11905:3;11898:4;11891:5;11887:16;11865:52;:::i;:::-;11942:6;11937:3;11933:16;11926:23;;11688:267;11578:377;;;;:::o;11985:845::-;12088:3;12125:5;12119:12;12154:36;12180:9;12154:36;:::i;:::-;12206:89;12288:6;12283:3;12206:89;:::i;:::-;12199:96;;12326:1;12315:9;12311:17;12342:1;12337:137;;;;12488:1;12483:341;;;;12304:520;;12337:137;12421:4;12417:9;12406;12402:25;12397:3;12390:38;12457:6;12452:3;12448:16;12441:23;;12337:137;;12483:341;12550:38;12582:5;12550:38;:::i;:::-;12610:1;12624:154;12638:6;12635:1;12632:13;12624:154;;;12712:7;12706:14;12702:1;12697:3;12693:11;12686:35;12762:1;12753:7;12749:15;12738:26;;12660:4;12657:1;12653:12;12648:17;;12624:154;;;12807:6;12802:3;12798:16;12791:23;;12490:334;;12304:520;;12092:738;;11985:845;;;;:::o;12836:366::-;12978:3;12999:67;13063:2;13058:3;12999:67;:::i;:::-;12992:74;;13075:93;13164:3;13075:93;:::i;:::-;13193:2;13188:3;13184:12;13177:19;;12836:366;;;:::o;13208:::-;13350:3;13371:67;13435:2;13430:3;13371:67;:::i;:::-;13364:74;;13447:93;13536:3;13447:93;:::i;:::-;13565:2;13560:3;13556:12;13549:19;;13208:366;;;:::o;13580:::-;13722:3;13743:67;13807:2;13802:3;13743:67;:::i;:::-;13736:74;;13819:93;13908:3;13819:93;:::i;:::-;13937:2;13932:3;13928:12;13921:19;;13580:366;;;:::o;13952:::-;14094:3;14115:67;14179:2;14174:3;14115:67;:::i;:::-;14108:74;;14191:93;14280:3;14191:93;:::i;:::-;14309:2;14304:3;14300:12;14293:19;;13952:366;;;:::o;14324:::-;14466:3;14487:67;14551:2;14546:3;14487:67;:::i;:::-;14480:74;;14563:93;14652:3;14563:93;:::i;:::-;14681:2;14676:3;14672:12;14665:19;;14324:366;;;:::o;14696:::-;14838:3;14859:67;14923:2;14918:3;14859:67;:::i;:::-;14852:74;;14935:93;15024:3;14935:93;:::i;:::-;15053:2;15048:3;15044:12;15037:19;;14696:366;;;:::o;15068:::-;15210:3;15231:67;15295:2;15290:3;15231:67;:::i;:::-;15224:74;;15307:93;15396:3;15307:93;:::i;:::-;15425:2;15420:3;15416:12;15409:19;;15068:366;;;:::o;15440:::-;15582:3;15603:67;15667:2;15662:3;15603:67;:::i;:::-;15596:74;;15679:93;15768:3;15679:93;:::i;:::-;15797:2;15792:3;15788:12;15781:19;;15440:366;;;:::o;15812:::-;15954:3;15975:67;16039:2;16034:3;15975:67;:::i;:::-;15968:74;;16051:93;16140:3;16051:93;:::i;:::-;16169:2;16164:3;16160:12;16153:19;;15812:366;;;:::o;16184:::-;16326:3;16347:67;16411:2;16406:3;16347:67;:::i;:::-;16340:74;;16423:93;16512:3;16423:93;:::i;:::-;16541:2;16536:3;16532:12;16525:19;;16184:366;;;:::o;16556:::-;16698:3;16719:67;16783:2;16778:3;16719:67;:::i;:::-;16712:74;;16795:93;16884:3;16795:93;:::i;:::-;16913:2;16908:3;16904:12;16897:19;;16556:366;;;:::o;16928:::-;17070:3;17091:67;17155:2;17150:3;17091:67;:::i;:::-;17084:74;;17167:93;17256:3;17167:93;:::i;:::-;17285:2;17280:3;17276:12;17269:19;;16928:366;;;:::o;17300:::-;17442:3;17463:67;17527:2;17522:3;17463:67;:::i;:::-;17456:74;;17539:93;17628:3;17539:93;:::i;:::-;17657:2;17652:3;17648:12;17641:19;;17300:366;;;:::o;17672:::-;17814:3;17835:67;17899:2;17894:3;17835:67;:::i;:::-;17828:74;;17911:93;18000:3;17911:93;:::i;:::-;18029:2;18024:3;18020:12;18013:19;;17672:366;;;:::o;18044:::-;18186:3;18207:67;18271:2;18266:3;18207:67;:::i;:::-;18200:74;;18283:93;18372:3;18283:93;:::i;:::-;18401:2;18396:3;18392:12;18385:19;;18044:366;;;:::o;18416:::-;18558:3;18579:67;18643:2;18638:3;18579:67;:::i;:::-;18572:74;;18655:93;18744:3;18655:93;:::i;:::-;18773:2;18768:3;18764:12;18757:19;;18416:366;;;:::o;18788:::-;18930:3;18951:67;19015:2;19010:3;18951:67;:::i;:::-;18944:74;;19027:93;19116:3;19027:93;:::i;:::-;19145:2;19140:3;19136:12;19129:19;;18788:366;;;:::o;19160:398::-;19319:3;19340:83;19421:1;19416:3;19340:83;:::i;:::-;19333:90;;19432:93;19521:3;19432:93;:::i;:::-;19550:1;19545:3;19541:11;19534:18;;19160:398;;;:::o;19564:366::-;19706:3;19727:67;19791:2;19786:3;19727:67;:::i;:::-;19720:74;;19803:93;19892:3;19803:93;:::i;:::-;19921:2;19916:3;19912:12;19905:19;;19564:366;;;:::o;19936:::-;20078:3;20099:67;20163:2;20158:3;20099:67;:::i;:::-;20092:74;;20175:93;20264:3;20175:93;:::i;:::-;20293:2;20288:3;20284:12;20277:19;;19936:366;;;:::o;20308:::-;20450:3;20471:67;20535:2;20530:3;20471:67;:::i;:::-;20464:74;;20547:93;20636:3;20547:93;:::i;:::-;20665:2;20660:3;20656:12;20649:19;;20308:366;;;:::o;20680:::-;20822:3;20843:67;20907:2;20902:3;20843:67;:::i;:::-;20836:74;;20919:93;21008:3;20919:93;:::i;:::-;21037:2;21032:3;21028:12;21021:19;;20680:366;;;:::o;21052:::-;21194:3;21215:67;21279:2;21274:3;21215:67;:::i;:::-;21208:74;;21291:93;21380:3;21291:93;:::i;:::-;21409:2;21404:3;21400:12;21393:19;;21052:366;;;:::o;21424:108::-;21501:24;21519:5;21501:24;:::i;:::-;21496:3;21489:37;21424:108;;:::o;21538:118::-;21625:24;21643:5;21625:24;:::i;:::-;21620:3;21613:37;21538:118;;:::o;21662:589::-;21887:3;21909:95;22000:3;21991:6;21909:95;:::i;:::-;21902:102;;22021:95;22112:3;22103:6;22021:95;:::i;:::-;22014:102;;22133:92;22221:3;22212:6;22133:92;:::i;:::-;22126:99;;22242:3;22235:10;;21662:589;;;;;;:::o;22257:379::-;22441:3;22463:147;22606:3;22463:147;:::i;:::-;22456:154;;22627:3;22620:10;;22257:379;;;:::o;22642:222::-;22735:4;22773:2;22762:9;22758:18;22750:26;;22786:71;22854:1;22843:9;22839:17;22830:6;22786:71;:::i;:::-;22642:222;;;;:::o;22870:640::-;23065:4;23103:3;23092:9;23088:19;23080:27;;23117:71;23185:1;23174:9;23170:17;23161:6;23117:71;:::i;:::-;23198:72;23266:2;23255:9;23251:18;23242:6;23198:72;:::i;:::-;23280;23348:2;23337:9;23333:18;23324:6;23280:72;:::i;:::-;23399:9;23393:4;23389:20;23384:2;23373:9;23369:18;23362:48;23427:76;23498:4;23489:6;23427:76;:::i;:::-;23419:84;;22870:640;;;;;;;:::o;23516:373::-;23659:4;23697:2;23686:9;23682:18;23674:26;;23746:9;23740:4;23736:20;23732:1;23721:9;23717:17;23710:47;23774:108;23877:4;23868:6;23774:108;:::i;:::-;23766:116;;23516:373;;;;:::o;23895:210::-;23982:4;24020:2;24009:9;24005:18;23997:26;;24033:65;24095:1;24084:9;24080:17;24071:6;24033:65;:::i;:::-;23895:210;;;;:::o;24111:313::-;24224:4;24262:2;24251:9;24247:18;24239:26;;24311:9;24305:4;24301:20;24297:1;24286:9;24282:17;24275:47;24339:78;24412:4;24403:6;24339:78;:::i;:::-;24331:86;;24111:313;;;;:::o;24430:419::-;24596:4;24634:2;24623:9;24619:18;24611:26;;24683:9;24677:4;24673:20;24669:1;24658:9;24654:17;24647:47;24711:131;24837:4;24711:131;:::i;:::-;24703:139;;24430:419;;;:::o;24855:::-;25021:4;25059:2;25048:9;25044:18;25036:26;;25108:9;25102:4;25098:20;25094:1;25083:9;25079:17;25072:47;25136:131;25262:4;25136:131;:::i;:::-;25128:139;;24855:419;;;:::o;25280:::-;25446:4;25484:2;25473:9;25469:18;25461:26;;25533:9;25527:4;25523:20;25519:1;25508:9;25504:17;25497:47;25561:131;25687:4;25561:131;:::i;:::-;25553:139;;25280:419;;;:::o;25705:::-;25871:4;25909:2;25898:9;25894:18;25886:26;;25958:9;25952:4;25948:20;25944:1;25933:9;25929:17;25922:47;25986:131;26112:4;25986:131;:::i;:::-;25978:139;;25705:419;;;:::o;26130:::-;26296:4;26334:2;26323:9;26319:18;26311:26;;26383:9;26377:4;26373:20;26369:1;26358:9;26354:17;26347:47;26411:131;26537:4;26411:131;:::i;:::-;26403:139;;26130:419;;;:::o;26555:::-;26721:4;26759:2;26748:9;26744:18;26736:26;;26808:9;26802:4;26798:20;26794:1;26783:9;26779:17;26772:47;26836:131;26962:4;26836:131;:::i;:::-;26828:139;;26555:419;;;:::o;26980:::-;27146:4;27184:2;27173:9;27169:18;27161:26;;27233:9;27227:4;27223:20;27219:1;27208:9;27204:17;27197:47;27261:131;27387:4;27261:131;:::i;:::-;27253:139;;26980:419;;;:::o;27405:::-;27571:4;27609:2;27598:9;27594:18;27586:26;;27658:9;27652:4;27648:20;27644:1;27633:9;27629:17;27622:47;27686:131;27812:4;27686:131;:::i;:::-;27678:139;;27405:419;;;:::o;27830:::-;27996:4;28034:2;28023:9;28019:18;28011:26;;28083:9;28077:4;28073:20;28069:1;28058:9;28054:17;28047:47;28111:131;28237:4;28111:131;:::i;:::-;28103:139;;27830:419;;;:::o;28255:::-;28421:4;28459:2;28448:9;28444:18;28436:26;;28508:9;28502:4;28498:20;28494:1;28483:9;28479:17;28472:47;28536:131;28662:4;28536:131;:::i;:::-;28528:139;;28255:419;;;:::o;28680:::-;28846:4;28884:2;28873:9;28869:18;28861:26;;28933:9;28927:4;28923:20;28919:1;28908:9;28904:17;28897:47;28961:131;29087:4;28961:131;:::i;:::-;28953:139;;28680:419;;;:::o;29105:::-;29271:4;29309:2;29298:9;29294:18;29286:26;;29358:9;29352:4;29348:20;29344:1;29333:9;29329:17;29322:47;29386:131;29512:4;29386:131;:::i;:::-;29378:139;;29105:419;;;:::o;29530:::-;29696:4;29734:2;29723:9;29719:18;29711:26;;29783:9;29777:4;29773:20;29769:1;29758:9;29754:17;29747:47;29811:131;29937:4;29811:131;:::i;:::-;29803:139;;29530:419;;;:::o;29955:::-;30121:4;30159:2;30148:9;30144:18;30136:26;;30208:9;30202:4;30198:20;30194:1;30183:9;30179:17;30172:47;30236:131;30362:4;30236:131;:::i;:::-;30228:139;;29955:419;;;:::o;30380:::-;30546:4;30584:2;30573:9;30569:18;30561:26;;30633:9;30627:4;30623:20;30619:1;30608:9;30604:17;30597:47;30661:131;30787:4;30661:131;:::i;:::-;30653:139;;30380:419;;;:::o;30805:::-;30971:4;31009:2;30998:9;30994:18;30986:26;;31058:9;31052:4;31048:20;31044:1;31033:9;31029:17;31022:47;31086:131;31212:4;31086:131;:::i;:::-;31078:139;;30805:419;;;:::o;31230:::-;31396:4;31434:2;31423:9;31419:18;31411:26;;31483:9;31477:4;31473:20;31469:1;31458:9;31454:17;31447:47;31511:131;31637:4;31511:131;:::i;:::-;31503:139;;31230:419;;;:::o;31655:::-;31821:4;31859:2;31848:9;31844:18;31836:26;;31908:9;31902:4;31898:20;31894:1;31883:9;31879:17;31872:47;31936:131;32062:4;31936:131;:::i;:::-;31928:139;;31655:419;;;:::o;32080:::-;32246:4;32284:2;32273:9;32269:18;32261:26;;32333:9;32327:4;32323:20;32319:1;32308:9;32304:17;32297:47;32361:131;32487:4;32361:131;:::i;:::-;32353:139;;32080:419;;;:::o;32505:::-;32671:4;32709:2;32698:9;32694:18;32686:26;;32758:9;32752:4;32748:20;32744:1;32733:9;32729:17;32722:47;32786:131;32912:4;32786:131;:::i;:::-;32778:139;;32505:419;;;:::o;32930:::-;33096:4;33134:2;33123:9;33119:18;33111:26;;33183:9;33177:4;33173:20;33169:1;33158:9;33154:17;33147:47;33211:131;33337:4;33211:131;:::i;:::-;33203:139;;32930:419;;;:::o;33355:::-;33521:4;33559:2;33548:9;33544:18;33536:26;;33608:9;33602:4;33598:20;33594:1;33583:9;33579:17;33572:47;33636:131;33762:4;33636:131;:::i;:::-;33628:139;;33355:419;;;:::o;33780:222::-;33873:4;33911:2;33900:9;33896:18;33888:26;;33924:71;33992:1;33981:9;33977:17;33968:6;33924:71;:::i;:::-;33780:222;;;;:::o;34008:129::-;34042:6;34069:20;;:::i;:::-;34059:30;;34098:33;34126:4;34118:6;34098:33;:::i;:::-;34008:129;;;:::o;34143:75::-;34176:6;34209:2;34203:9;34193:19;;34143:75;:::o;34224:311::-;34301:4;34391:18;34383:6;34380:30;34377:56;;;34413:18;;:::i;:::-;34377:56;34463:4;34455:6;34451:17;34443:25;;34523:4;34517;34513:15;34505:23;;34224:311;;;:::o;34541:307::-;34602:4;34692:18;34684:6;34681:30;34678:56;;;34714:18;;:::i;:::-;34678:56;34752:29;34774:6;34752:29;:::i;:::-;34744:37;;34836:4;34830;34826:15;34818:23;;34541:307;;;:::o;34854:308::-;34916:4;35006:18;34998:6;34995:30;34992:56;;;35028:18;;:::i;:::-;34992:56;35066:29;35088:6;35066:29;:::i;:::-;35058:37;;35150:4;35144;35140:15;35132:23;;34854:308;;;:::o;35168:132::-;35235:4;35258:3;35250:11;;35288:4;35283:3;35279:14;35271:22;;35168:132;;;:::o;35306:141::-;35355:4;35378:3;35370:11;;35401:3;35398:1;35391:14;35435:4;35432:1;35422:18;35414:26;;35306:141;;;:::o;35453:114::-;35520:6;35554:5;35548:12;35538:22;;35453:114;;;:::o;35573:98::-;35624:6;35658:5;35652:12;35642:22;;35573:98;;;:::o;35677:99::-;35729:6;35763:5;35757:12;35747:22;;35677:99;;;:::o;35782:113::-;35852:4;35884;35879:3;35875:14;35867:22;;35782:113;;;:::o;35901:184::-;36000:11;36034:6;36029:3;36022:19;36074:4;36069:3;36065:14;36050:29;;35901:184;;;;:::o;36091:168::-;36174:11;36208:6;36203:3;36196:19;36248:4;36243:3;36239:14;36224:29;;36091:168;;;;:::o;36265:147::-;36366:11;36403:3;36388:18;;36265:147;;;;:::o;36418:169::-;36502:11;36536:6;36531:3;36524:19;36576:4;36571:3;36567:14;36552:29;;36418:169;;;;:::o;36593:148::-;36695:11;36732:3;36717:18;;36593:148;;;;:::o;36747:305::-;36787:3;36806:20;36824:1;36806:20;:::i;:::-;36801:25;;36840:20;36858:1;36840:20;:::i;:::-;36835:25;;36994:1;36926:66;36922:74;36919:1;36916:81;36913:107;;;37000:18;;:::i;:::-;36913:107;37044:1;37041;37037:9;37030:16;;36747:305;;;;:::o;37058:185::-;37098:1;37115:20;37133:1;37115:20;:::i;:::-;37110:25;;37149:20;37167:1;37149:20;:::i;:::-;37144:25;;37188:1;37178:35;;37193:18;;:::i;:::-;37178:35;37235:1;37232;37228:9;37223:14;;37058:185;;;;:::o;37249:348::-;37289:7;37312:20;37330:1;37312:20;:::i;:::-;37307:25;;37346:20;37364:1;37346:20;:::i;:::-;37341:25;;37534:1;37466:66;37462:74;37459:1;37456:81;37451:1;37444:9;37437:17;37433:105;37430:131;;;37541:18;;:::i;:::-;37430:131;37589:1;37586;37582:9;37571:20;;37249:348;;;;:::o;37603:191::-;37643:4;37663:20;37681:1;37663:20;:::i;:::-;37658:25;;37697:20;37715:1;37697:20;:::i;:::-;37692:25;;37736:1;37733;37730:8;37727:34;;;37741:18;;:::i;:::-;37727:34;37786:1;37783;37779:9;37771:17;;37603:191;;;;:::o;37800:96::-;37837:7;37866:24;37884:5;37866:24;:::i;:::-;37855:35;;37800:96;;;:::o;37902:90::-;37936:7;37979:5;37972:13;37965:21;37954:32;;37902:90;;;:::o;37998:149::-;38034:7;38074:66;38067:5;38063:78;38052:89;;37998:149;;;:::o;38153:126::-;38190:7;38230:42;38223:5;38219:54;38208:65;;38153:126;;;:::o;38285:77::-;38322:7;38351:5;38340:16;;38285:77;;;:::o;38368:154::-;38452:6;38447:3;38442;38429:30;38514:1;38505:6;38500:3;38496:16;38489:27;38368:154;;;:::o;38528:307::-;38596:1;38606:113;38620:6;38617:1;38614:13;38606:113;;;38705:1;38700:3;38696:11;38690:18;38686:1;38681:3;38677:11;38670:39;38642:2;38639:1;38635:10;38630:15;;38606:113;;;38737:6;38734:1;38731:13;38728:101;;;38817:1;38808:6;38803:3;38799:16;38792:27;38728:101;38577:258;38528:307;;;:::o;38841:320::-;38885:6;38922:1;38916:4;38912:12;38902:22;;38969:1;38963:4;38959:12;38990:18;38980:81;;39046:4;39038:6;39034:17;39024:27;;38980:81;39108:2;39100:6;39097:14;39077:18;39074:38;39071:84;;;39127:18;;:::i;:::-;39071:84;38892:269;38841:320;;;:::o;39167:281::-;39250:27;39272:4;39250:27;:::i;:::-;39242:6;39238:40;39380:6;39368:10;39365:22;39344:18;39332:10;39329:34;39326:62;39323:88;;;39391:18;;:::i;:::-;39323:88;39431:10;39427:2;39420:22;39210:238;39167:281;;:::o;39454:233::-;39493:3;39516:24;39534:5;39516:24;:::i;:::-;39507:33;;39562:66;39555:5;39552:77;39549:103;;;39632:18;;:::i;:::-;39549:103;39679:1;39672:5;39668:13;39661:20;;39454:233;;;:::o;39693:176::-;39725:1;39742:20;39760:1;39742:20;:::i;:::-;39737:25;;39776:20;39794:1;39776:20;:::i;:::-;39771:25;;39815:1;39805:35;;39820:18;;:::i;:::-;39805:35;39861:1;39858;39854:9;39849:14;;39693:176;;;;:::o;39875:180::-;39923:77;39920:1;39913:88;40020:4;40017:1;40010:15;40044:4;40041:1;40034:15;40061:180;40109:77;40106:1;40099:88;40206:4;40203:1;40196:15;40230:4;40227:1;40220:15;40247:180;40295:77;40292:1;40285:88;40392:4;40389:1;40382:15;40416:4;40413:1;40406:15;40433:180;40481:77;40478:1;40471:88;40578:4;40575:1;40568:15;40602:4;40599:1;40592:15;40619:180;40667:77;40664:1;40657:88;40764:4;40761:1;40754:15;40788:4;40785:1;40778:15;40805:117;40914:1;40911;40904:12;40928:117;41037:1;41034;41027:12;41051:117;41160:1;41157;41150:12;41174:117;41283:1;41280;41273:12;41297:117;41406:1;41403;41396:12;41420:102;41461:6;41512:2;41508:7;41503:2;41496:5;41492:14;41488:28;41478:38;;41420:102;;;:::o;41528:237::-;41668:34;41664:1;41656:6;41652:14;41645:58;41737:20;41732:2;41724:6;41720:15;41713:45;41528:237;:::o;41771:225::-;41911:34;41907:1;41899:6;41895:14;41888:58;41980:8;41975:2;41967:6;41963:15;41956:33;41771:225;:::o;42002:224::-;42142:34;42138:1;42130:6;42126:14;42119:58;42211:7;42206:2;42198:6;42194:15;42187:32;42002:224;:::o;42232:178::-;42372:30;42368:1;42360:6;42356:14;42349:54;42232:178;:::o;42416:170::-;42556:22;42552:1;42544:6;42540:14;42533:46;42416:170;:::o;42592:223::-;42732:34;42728:1;42720:6;42716:14;42709:58;42801:6;42796:2;42788:6;42784:15;42777:31;42592:223;:::o;42821:175::-;42961:27;42957:1;42949:6;42945:14;42938:51;42821:175;:::o;43002:231::-;43142:34;43138:1;43130:6;43126:14;43119:58;43211:14;43206:2;43198:6;43194:15;43187:39;43002:231;:::o;43239:228::-;43379:34;43375:1;43367:6;43363:14;43356:58;43448:11;43443:2;43435:6;43431:15;43424:36;43239:228;:::o;43473:249::-;43613:34;43609:1;43601:6;43597:14;43590:58;43682:32;43677:2;43669:6;43665:15;43658:57;43473:249;:::o;43728:182::-;43868:34;43864:1;43856:6;43852:14;43845:58;43728:182;:::o;43916:::-;44056:34;44052:1;44044:6;44040:14;44033:58;43916:182;:::o;44104:176::-;44244:28;44240:1;44232:6;44228:14;44221:52;44104:176;:::o;44286:173::-;44426:25;44422:1;44414:6;44410:14;44403:49;44286:173;:::o;44465:234::-;44605:34;44601:1;44593:6;44589:14;44582:58;44674:17;44669:2;44661:6;44657:15;44650:42;44465:234;:::o;44705:174::-;44845:26;44841:1;44833:6;44829:14;44822:50;44705:174;:::o;44885:220::-;45025:34;45021:1;45013:6;45009:14;45002:58;45094:3;45089:2;45081:6;45077:15;45070:28;44885:220;:::o;45111:114::-;;:::o;45231:170::-;45371:22;45367:1;45359:6;45355:14;45348:46;45231:170;:::o;45407:225::-;45547:34;45543:1;45535:6;45531:14;45524:58;45616:8;45611:2;45603:6;45599:15;45592:33;45407:225;:::o;45638:233::-;45778:34;45774:1;45766:6;45762:14;45755:58;45847:16;45842:2;45834:6;45830:15;45823:41;45638:233;:::o;45877:181::-;46017:33;46013:1;46005:6;46001:14;45994:57;45877:181;:::o;46064:169::-;46204:21;46200:1;46192:6;46188:14;46181:45;46064:169;:::o;46239:122::-;46312:24;46330:5;46312:24;:::i;:::-;46305:5;46302:35;46292:63;;46351:1;46348;46341:12;46292:63;46239:122;:::o;46367:116::-;46437:21;46452:5;46437:21;:::i;:::-;46430:5;46427:32;46417:60;;46473:1;46470;46463:12;46417:60;46367:116;:::o;46489:120::-;46561:23;46578:5;46561:23;:::i;:::-;46554:5;46551:34;46541:62;;46599:1;46596;46589:12;46541:62;46489:120;:::o;46615:122::-;46688:24;46706:5;46688:24;:::i;:::-;46681:5;46678:35;46668:63;;46727:1;46724;46717:12;46668:63;46615:122;:::o
Swarm Source
ipfs://28a2ac11187d3e0887b56ba0a7686ada875327c2adc8711d1d9c6439b3bae384
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.