Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 50 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw Proceed... | 16899733 | 594 days ago | IN | 0 ETH | 0.00079746 | ||||
Mint The Metalor... | 16806584 | 607 days ago | IN | 4 ETH | 0.00249474 | ||||
Safe Transfer Fr... | 16680398 | 625 days ago | IN | 0 ETH | 0.00176582 | ||||
Withdraw Proceed... | 16602008 | 636 days ago | IN | 0 ETH | 0.00073025 | ||||
Set Approval For... | 16602003 | 636 days ago | IN | 0 ETH | 0.00099643 | ||||
Mint The Metalor... | 16601994 | 636 days ago | IN | 8 ETH | 0.00238879 | ||||
Withdraw Proceed... | 16587464 | 638 days ago | IN | 0 ETH | 0.00084658 | ||||
Mint The Metalor... | 16577881 | 639 days ago | IN | 4 ETH | 0.00280714 | ||||
Withdraw Proceed... | 16471869 | 654 days ago | IN | 0 ETH | 0.00072637 | ||||
Mint The Metalor... | 16456500 | 656 days ago | IN | 4 ETH | 0.00174648 | ||||
Withdraw Proceed... | 16422678 | 661 days ago | IN | 0 ETH | 0.00114208 | ||||
Safe Transfer Fr... | 16400422 | 664 days ago | IN | 0 ETH | 0.00175515 | ||||
Mint The Metalor... | 16400394 | 664 days ago | IN | 4 ETH | 0.00263829 | ||||
Withdraw Proceed... | 16321457 | 675 days ago | IN | 0 ETH | 0.00060925 | ||||
Safe Transfer Fr... | 16155704 | 698 days ago | IN | 0 ETH | 0.00090793 | ||||
Mint The Metalor... | 16155693 | 698 days ago | IN | 4 ETH | 0.00120799 | ||||
Mint The Metalor... | 16128259 | 702 days ago | IN | 4 ETH | 0.00106062 | ||||
Mint The Metalor... | 16097605 | 706 days ago | IN | 4 ETH | 0.00147583 | ||||
Withdraw Proceed... | 16051037 | 713 days ago | IN | 0 ETH | 0.00031848 | ||||
Mint The Metalor... | 15979799 | 723 days ago | IN | 4 ETH | 0.00108723 | ||||
Withdraw Proceed... | 15927493 | 730 days ago | IN | 0 ETH | 0.00947715 | ||||
Mint The Metalor... | 15898921 | 734 days ago | IN | 4 ETH | 0.00164211 | ||||
Withdraw Proceed... | 15879566 | 737 days ago | IN | 0 ETH | 0.00040074 | ||||
Safe Transfer Fr... | 15870130 | 738 days ago | IN | 0 ETH | 0.00122693 | ||||
Mint The Metalor... | 15865193 | 739 days ago | IN | 4 ETH | 0.00073622 |
Latest 17 internal transactions
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
16899733 | 594 days ago | 4 ETH | ||||
16602008 | 636 days ago | 8 ETH | ||||
16587464 | 638 days ago | 4 ETH | ||||
16471869 | 654 days ago | 4 ETH | ||||
16422678 | 661 days ago | 4 ETH | ||||
16321457 | 675 days ago | 12 ETH | ||||
16051037 | 713 days ago | 4 ETH | ||||
15927493 | 730 days ago | 4 ETH | ||||
15879566 | 737 days ago | 4 ETH | ||||
15705404 | 761 days ago | 4 ETH | ||||
15671794 | 766 days ago | 4 ETH | ||||
15585662 | 778 days ago | 4 ETH | ||||
15480939 | 794 days ago | 4 ETH | ||||
15474411 | 795 days ago | 4 ETH | ||||
15444018 | 800 days ago | 8 ETH | ||||
15419194 | 804 days ago | 4 ETH | ||||
15308350 | 821 days ago | 4 ETH |
Loading...
Loading
Contract Name:
TheMetalorianDAOGold
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-01 */ // SPDX-License-Identifier: AGPL-3.0-only // 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: @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: contracts/theMetalorianDAOGold.sol pragma solidity 0.8.4; /// ============ Imports ============ ///@title TheMetalorianDAOGold ///@notice Token ERC721 for the Metalorian DAO contract TheMetalorianDAOGold is ERC721, Ownable { ///============================================ ///============= Errors ======================= ///@notice NFT per address limit exceeded ///@param user Caller address ///@param balanceOf User NFT balance error NftLimitPerDirection(address user, uint256 balanceOf); ///@notice The sent value of ETH is not correct to make the purchase ///@param user Caller address ///@param amountSent Amount sent by the user error IncorrectPayment(address user, uint256 amountSent); ///@notice No funds to transfer ///@param owner Caller address error NotFondsToTranfer(address owner); ///@notice Error transferring funds to account ///@param owner Caller address error UnsuccessfulPayout(address owner); ///@notice Invoked token number does not exist error TokenDoesNotExist(); ///@notice The sale not started ///@param user Caller address error SaleNotStarted(address user); ///@notice No token available for sale ///@param user Caller address error NftSoldOut(address user); /// =========================================== /// ============ Immutable storage ============ /// @notice Available NFT supply uint256 public constant AVAILABLE_SUPPLY = 1000; ///@notice Maximum number of nft to buy per address uint256 public constant LIMIT_NFT_BY_ADDRES = 1000; /// =========================================== /// ============ Mutable storage ============== ///@notice Type of variable used for handling numeric sequences using Counters for Counters.Counter; ///@notice String with the base for the tokenURI string public baseURI; ///@notice used to know if the sale of NFT has started bool public startSale; /// @notice Cost to mint each NFT uint256 public mintCost; /// @notice Number of NFTs minted Counters.Counter public tokenIdCounter; /// ====================================================== /// ============ Constructor ============================= constructor() ERC721("The Metalorian DAO Gold", "TMDG") { tokenIdCounter.increment(); baseURI = "ipfs://bafybeid25us5d33kjusw6kovvmf2pppccayyk52lotnihbtiumbrla5sti/GoldMetadata/"; mintCost = 4 ether; } /// ======================================================== /// ============= Event ==================================== /// @notice Emitted after a successful Withdraw Proceeds /// @param owner Address of owner /// @param amount Amount of proceeds claimed by owner event WithdrawProceeds(address indexed owner, uint256 amount ); /// @notice Emitted after a successful Mint Nft /// @param user Address of the user Mint /// @param tokenId Number token Mint event MintTheMetalorianDAOGold(address indexed user, uint256 tokenId); /// @notice Emitted after a successful change starSale variable /// @param owner Address of owner /// @param date Date when change event SetStartSale(address indexed owner, uint256 date); ///@notice Emitted after a successful change mintCost variable ///@param owner Address of owner ///@param amount new value per NFT event SetMintCost(address indexed owner, uint256 amount); /// ========================================================= /// ============ Functions ================================== //****************************************************** */ // ************* functions set parameter *************** */ ///@notice start public sale ///@param value value in bowling for sale function setStartSale(bool value) external onlyOwner { startSale = value; emit SetStartSale(msg.sender, block.timestamp); } ///@notice Sets baseURI of NFT ///@param setBaseUri string whit baseURI function setBaseURI(string memory setBaseUri) external onlyOwner { baseURI = setBaseUri; } ///@notice Allows set price mint by owner ///@param newMintCost value price mint function setMintCost(uint256 newMintCost) external onlyOwner { mintCost = newMintCost; emit SetMintCost(msg.sender, newMintCost); } ///@notice return tokenURI for each token ///@param tokenId the id of the token you want the tokenURI function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)){ revert TokenDoesNotExist(); } return string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json")); } //************************************************* */ //************** mint function********************* */ ///@notice buy from NFT ///@param amountNft number of NFTs you want to buy function mintTheMetalorianDAOGold(uint256 amountNft) external payable { if(!startSale){ revert SaleNotStarted(msg.sender); } if (msg.value != mintCost * amountNft) { revert IncorrectPayment(msg.sender, msg.value); } if(amountNft > (LIMIT_NFT_BY_ADDRES - balanceOf(msg.sender))){ revert NftLimitPerDirection( msg.sender, balanceOf(msg.sender)); } for(uint i; i < amountNft ; i++){ if(tokenIdCounter.current() > AVAILABLE_SUPPLY){ revert NftSoldOut(msg.sender); } emit MintTheMetalorianDAOGold(msg.sender, tokenIdCounter.current()); _safeMint(msg.sender, tokenIdCounter.current()); tokenIdCounter.increment(); } } //****************************************************** */ //***************** withdraw function******************* */ ///@notice withdraw funds by owner function withdrawProceeds() external onlyOwner { uint256 balance = address(this).balance; if (balance == 0){ revert NotFondsToTranfer(msg.sender);} (bool sent, ) = payable(msg.sender).call{value: balance}(""); if (!sent){revert UnsuccessfulPayout(msg.sender);} emit WithdrawProceeds(msg.sender, balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amountSent","type":"uint256"}],"name":"IncorrectPayment","type":"error"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"balanceOf","type":"uint256"}],"name":"NftLimitPerDirection","type":"error"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"NftSoldOut","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"NotFondsToTranfer","type":"error"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"SaleNotStarted","type":"error"},{"inputs":[],"name":"TokenDoesNotExist","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"UnsuccessfulPayout","type":"error"},{"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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MintTheMetalorianDAOGold","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":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMintCost","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"date","type":"uint256"}],"name":"SetStartSale","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawProceeds","type":"event"},{"inputs":[],"name":"AVAILABLE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIMIT_NFT_BY_ADDRES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountNft","type":"uint256"}],"name":"mintTheMetalorianDAOGold","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"setBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintCost","type":"uint256"}],"name":"setMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setStartSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"tokenIdCounter","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"withdrawProceeds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601781526020017f546865204d6574616c6f7269616e2044414f20476f6c640000000000000000008152506040518060400160405280600481526020017f544d44470000000000000000000000000000000000000000000000000000000081525081600090805190602001906200009692919062000214565b508060019080519060200190620000af92919062000214565b505050620000d2620000c66200013060201b60201c565b6200013860201b60201c565b620000e9600a620001fe60201b620012d11760201c565b604051806080016040528060508152602001620036cf60509139600790805190602001906200011a92919062000214565b50673782dace9d90000060098190555062000329565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b8280546200022290620002c4565b90600052602060002090601f01602090048101928262000246576000855562000292565b82601f106200026157805160ff191683800117855562000292565b8280016001018555821562000292579182015b828111156200029157825182559160200191906001019062000274565b5b509050620002a19190620002a5565b5090565b5b80821115620002c0576000816000905550600101620002a6565b5090565b60006002820490506001821680620002dd57607f821691505b60208210811415620002f457620002f3620002fa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61339680620003396000396000f3fe60806040526004361061019c5760003560e01c80638da5cb5b116100ec578063b66a0e5d1161008a578063c87b56dd11610064578063c87b56dd14610581578063d9857a5b146105be578063e985e9c5146105e7578063f2fde38b146106245761019c565b8063b66a0e5d14610502578063b88d4fde1461052d578063bdb4b848146105565761019c565b806398bdf6f5116100c657806398bdf6f514610458578063a22cb46514610483578063a7f323ad146104ac578063b438e12e146104d75761019c565b80638da5cb5b146103eb5780639038e6931461041657806395d89b411461042d5761019c565b806355f804b31161015957806370a082311161013357806370a0823114610352578063715018a61461038f57806377c89c11146103a65780638545f4ea146103c25761019c565b806355f804b3146102c15780636352211e146102ea5780636c0360eb146103275761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806323b872dd1461026f57806342842e0e14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612450565b61064d565b6040516101d5919061293c565b60405180910390f35b3480156101ea57600080fd5b506101f361072f565b6040516102009190612957565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b91906124e3565b6107c1565b60405161023d91906128ac565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906123eb565b610807565b005b34801561027b57600080fd5b50610296600480360381019061029191906122e5565b61091f565b005b3480156102a457600080fd5b506102bf60048036038101906102ba91906122e5565b61097f565b005b3480156102cd57600080fd5b506102e860048036038101906102e391906124a2565b61099f565b005b3480156102f657600080fd5b50610311600480360381019061030c91906124e3565b6109c1565b60405161031e91906128ac565b60405180910390f35b34801561033357600080fd5b5061033c610a73565b6040516103499190612957565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190612280565b610b01565b6040516103869190612b19565b60405180910390f35b34801561039b57600080fd5b506103a4610bb9565b005b6103c060048036038101906103bb91906124e3565b610bcd565b005b3480156103ce57600080fd5b506103e960048036038101906103e491906124e3565b610dbb565b005b3480156103f757600080fd5b50610400610e1b565b60405161040d91906128ac565b60405180910390f35b34801561042257600080fd5b5061042b610e45565b005b34801561043957600080fd5b50610442610f98565b60405161044f9190612957565b60405180910390f35b34801561046457600080fd5b5061046d61102a565b60405161047a9190612b19565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a591906123af565b611036565b005b3480156104b857600080fd5b506104c161104c565b6040516104ce9190612b19565b60405180910390f35b3480156104e357600080fd5b506104ec611052565b6040516104f99190612b19565b60405180910390f35b34801561050e57600080fd5b50610517611058565b604051610524919061293c565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190612334565b61106b565b005b34801561056257600080fd5b5061056b6110cd565b6040516105789190612b19565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a391906124e3565b6110d3565b6040516105b59190612957565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190612427565b611146565b005b3480156105f357600080fd5b5061060e600480360381019061060991906122a9565b6111b9565b60405161061b919061293c565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190612280565b61124d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107285750610727826112e7565b5b9050919050565b60606000805461073e90612de9565b80601f016020809104026020016040519081016040528092919081815260200182805461076a90612de9565b80156107b75780601f1061078c576101008083540402835291602001916107b7565b820191906000526020600020905b81548152906001019060200180831161079a57829003601f168201915b5050505050905090565b60006107cc82611351565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610812826109c1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087a90612ad9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108a261139c565b73ffffffffffffffffffffffffffffffffffffffff1614806108d157506108d0816108cb61139c565b6111b9565b5b610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090790612a59565b60405180910390fd5b61091a83836113a4565b505050565b61093061092a61139c565b8261145d565b61096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690612af9565b60405180910390fd5b61097a8383836114f2565b505050565b61099a8383836040518060200160405280600081525061106b565b505050565b6109a7611759565b80600790805190602001906109bd9291906120a4565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6190612ab9565b60405180910390fd5b80915050919050565b60078054610a8090612de9565b80601f0160208091040260200160405190810160405280929190818152602001828054610aac90612de9565b8015610af95780601f10610ace57610100808354040283529160200191610af9565b820191906000526020600020905b815481529060010190602001808311610adc57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990612a39565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bc1611759565b610bcb60006117d7565b565b600860009054906101000a900460ff16610c1e57336040517fc9bbd13b000000000000000000000000000000000000000000000000000000008152600401610c1591906128ac565b60405180910390fd5b80600954610c2c9190612ca5565b3414610c715733346040517f54f72886000000000000000000000000000000000000000000000000000000008152600401610c68929190612913565b60405180910390fd5b610c7a33610b01565b6103e8610c879190612cff565b811115610cd55733610c9833610b01565b6040517f2f67f8fb000000000000000000000000000000000000000000000000000000008152600401610ccc929190612913565b60405180910390fd5b60005b81811015610db7576103e8610ced600a61189d565b1115610d3057336040517fdd8dc884000000000000000000000000000000000000000000000000000000008152600401610d2791906128ac565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f4a916166b9e67be3c4c62565ab135eb988e789d2de21b5b46ca856c3ec9f0bbd610d72600a61189d565b604051610d7f9190612b19565b60405180910390a2610d9a33610d95600a61189d565b6118ab565b610da4600a6112d1565b8080610daf90612e4c565b915050610cd8565b5050565b610dc3611759565b806009819055503373ffffffffffffffffffffffffffffffffffffffff167f3863cc21dcd5d991431cdfea12ad71dc99601a367ba63b11e9a9e763c541702682604051610e109190612b19565b60405180910390a250565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e4d611759565b60004790506000811415610e9857336040517fd7451e6b000000000000000000000000000000000000000000000000000000008152600401610e8f91906128ac565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610ebe90612897565b60006040518083038185875af1925050503d8060008114610efb576040519150601f19603f3d011682016040523d82523d6000602084013e610f00565b606091505b5050905080610f4657336040517ff7cf3901000000000000000000000000000000000000000000000000000000008152600401610f3d91906128ac565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167fb2abe8535f8ab52b58b1b5a5b0ed6bd5c1ba7c92099f0c509988f6d04c584ef983604051610f8c9190612b19565b60405180910390a25050565b606060018054610fa790612de9565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd390612de9565b80156110205780601f10610ff557610100808354040283529160200191611020565b820191906000526020600020905b81548152906001019060200180831161100357829003601f168201915b5050505050905090565b600a8060000154905081565b61104861104161139c565b83836118c9565b5050565b6103e881565b6103e881565b600860009054906101000a900460ff1681565b61107c61107661139c565b8361145d565b6110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290612af9565b60405180910390fd5b6110c784848484611a36565b50505050565b60095481565b60606110de82611a92565b611114576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600761111f83611afe565b604051602001611130929190612868565b6040516020818303038152906040529050919050565b61114e611759565b80600860006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f80da56dc7c76a07dc7aed1999cb8bd66e8490db72dc8a4bc87557b995b6300c7426040516111ae9190612b19565b60405180910390a250565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611255611759565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90612999565b60405180910390fd5b6112ce816117d7565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61135a81611a92565b611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139090612ab9565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611417836109c1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611469836109c1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114ab57506114aa81856111b9565b5b806114e957508373ffffffffffffffffffffffffffffffffffffffff166114d1846107c1565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611512826109c1565b73ffffffffffffffffffffffffffffffffffffffff1614611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f906129b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf906129f9565b60405180910390fd5b6115e3838383611cab565b6115ee6000826113a4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461163e9190612cff565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116959190612c1e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611754838383611cb0565b505050565b61176161139c565b73ffffffffffffffffffffffffffffffffffffffff1661177f610e1b565b73ffffffffffffffffffffffffffffffffffffffff16146117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc90612a99565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6118c5828260405180602001604052806000815250611cb5565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90612a19565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a29919061293c565b60405180910390a3505050565b611a418484846114f2565b611a4d84848484611d10565b611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390612979565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415611b46576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ca6565b600082905060005b60008214611b78578080611b6190612e4c565b915050600a82611b719190612c74565b9150611b4e565b60008167ffffffffffffffff811115611bba577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611bec5781602001600182028036833780820191505090505b5090505b60008514611c9f57600182611c059190612cff565b9150600a85611c149190612e95565b6030611c209190612c1e565b60f81b818381518110611c5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c989190612c74565b9450611bf0565b8093505050505b919050565b505050565b505050565b611cbf8383611ea7565b611ccc6000848484611d10565b611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0290612979565b60405180910390fd5b505050565b6000611d318473ffffffffffffffffffffffffffffffffffffffff16612081565b15611e9a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d5a61139c565b8786866040518563ffffffff1660e01b8152600401611d7c94939291906128c7565b602060405180830381600087803b158015611d9657600080fd5b505af1925050508015611dc757506040513d601f19601f82011682018060405250810190611dc49190612479565b60015b611e4a573d8060008114611df7576040519150601f19603f3d011682016040523d82523d6000602084013e611dfc565b606091505b50600081511415611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3990612979565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e9f565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90612a79565b60405180910390fd5b611f2081611a92565b15611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f57906129d9565b60405180910390fd5b611f6c60008383611cab565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fbc9190612c1e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461207d60008383611cb0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546120b090612de9565b90600052602060002090601f0160209004810192826120d25760008555612119565b82601f106120eb57805160ff1916838001178555612119565b82800160010185558215612119579182015b828111156121185782518255916020019190600101906120fd565b5b509050612126919061212a565b5090565b5b8082111561214357600081600090555060010161212b565b5090565b600061215a61215584612b59565b612b34565b90508281526020810184848401111561217257600080fd5b61217d848285612da7565b509392505050565b600061219861219384612b8a565b612b34565b9050828152602081018484840111156121b057600080fd5b6121bb848285612da7565b509392505050565b6000813590506121d281613304565b92915050565b6000813590506121e78161331b565b92915050565b6000813590506121fc81613332565b92915050565b60008151905061221181613332565b92915050565b600082601f83011261222857600080fd5b8135612238848260208601612147565b91505092915050565b600082601f83011261225257600080fd5b8135612262848260208601612185565b91505092915050565b60008135905061227a81613349565b92915050565b60006020828403121561229257600080fd5b60006122a0848285016121c3565b91505092915050565b600080604083850312156122bc57600080fd5b60006122ca858286016121c3565b92505060206122db858286016121c3565b9150509250929050565b6000806000606084860312156122fa57600080fd5b6000612308868287016121c3565b9350506020612319868287016121c3565b925050604061232a8682870161226b565b9150509250925092565b6000806000806080858703121561234a57600080fd5b6000612358878288016121c3565b9450506020612369878288016121c3565b935050604061237a8782880161226b565b925050606085013567ffffffffffffffff81111561239757600080fd5b6123a387828801612217565b91505092959194509250565b600080604083850312156123c257600080fd5b60006123d0858286016121c3565b92505060206123e1858286016121d8565b9150509250929050565b600080604083850312156123fe57600080fd5b600061240c858286016121c3565b925050602061241d8582860161226b565b9150509250929050565b60006020828403121561243957600080fd5b6000612447848285016121d8565b91505092915050565b60006020828403121561246257600080fd5b6000612470848285016121ed565b91505092915050565b60006020828403121561248b57600080fd5b600061249984828501612202565b91505092915050565b6000602082840312156124b457600080fd5b600082013567ffffffffffffffff8111156124ce57600080fd5b6124da84828501612241565b91505092915050565b6000602082840312156124f557600080fd5b60006125038482850161226b565b91505092915050565b61251581612d33565b82525050565b61252481612d45565b82525050565b600061253582612bd0565b61253f8185612be6565b935061254f818560208601612db6565b61255881612f82565b840191505092915050565b600061256e82612bdb565b6125788185612c02565b9350612588818560208601612db6565b61259181612f82565b840191505092915050565b60006125a782612bdb565b6125b18185612c13565b93506125c1818560208601612db6565b80840191505092915050565b600081546125da81612de9565b6125e48186612c13565b945060018216600081146125ff576001811461261057612643565b60ff19831686528186019350612643565b61261985612bbb565b60005b8381101561263b5781548189015260018201915060208101905061261c565b838801955050505b50505092915050565b6000612659603283612c02565b915061266482612f93565b604082019050919050565b600061267c602683612c02565b915061268782612fe2565b604082019050919050565b600061269f602583612c02565b91506126aa82613031565b604082019050919050565b60006126c2601c83612c02565b91506126cd82613080565b602082019050919050565b60006126e5602483612c02565b91506126f0826130a9565b604082019050919050565b6000612708601983612c02565b9150612713826130f8565b602082019050919050565b600061272b602983612c02565b915061273682613121565b604082019050919050565b600061274e603e83612c02565b915061275982613170565b604082019050919050565b6000612771602083612c02565b915061277c826131bf565b602082019050919050565b6000612794600583612c13565b915061279f826131e8565b600582019050919050565b60006127b7602083612c02565b91506127c282613211565b602082019050919050565b60006127da601883612c02565b91506127e58261323a565b602082019050919050565b60006127fd602183612c02565b915061280882613263565b604082019050919050565b6000612820600083612bf7565b915061282b826132b2565b600082019050919050565b6000612843602e83612c02565b915061284e826132b5565b604082019050919050565b61286281612d9d565b82525050565b600061287482856125cd565b9150612880828461259c565b915061288b82612787565b91508190509392505050565b60006128a282612813565b9150819050919050565b60006020820190506128c1600083018461250c565b92915050565b60006080820190506128dc600083018761250c565b6128e9602083018661250c565b6128f66040830185612859565b8181036060830152612908818461252a565b905095945050505050565b6000604082019050612928600083018561250c565b6129356020830184612859565b9392505050565b6000602082019050612951600083018461251b565b92915050565b600060208201905081810360008301526129718184612563565b905092915050565b600060208201905081810360008301526129928161264c565b9050919050565b600060208201905081810360008301526129b28161266f565b9050919050565b600060208201905081810360008301526129d281612692565b9050919050565b600060208201905081810360008301526129f2816126b5565b9050919050565b60006020820190508181036000830152612a12816126d8565b9050919050565b60006020820190508181036000830152612a32816126fb565b9050919050565b60006020820190508181036000830152612a528161271e565b9050919050565b60006020820190508181036000830152612a7281612741565b9050919050565b60006020820190508181036000830152612a9281612764565b9050919050565b60006020820190508181036000830152612ab2816127aa565b9050919050565b60006020820190508181036000830152612ad2816127cd565b9050919050565b60006020820190508181036000830152612af2816127f0565b9050919050565b60006020820190508181036000830152612b1281612836565b9050919050565b6000602082019050612b2e6000830184612859565b92915050565b6000612b3e612b4f565b9050612b4a8282612e1b565b919050565b6000604051905090565b600067ffffffffffffffff821115612b7457612b73612f53565b5b612b7d82612f82565b9050602081019050919050565b600067ffffffffffffffff821115612ba557612ba4612f53565b5b612bae82612f82565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c2982612d9d565b9150612c3483612d9d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c6957612c68612ec6565b5b828201905092915050565b6000612c7f82612d9d565b9150612c8a83612d9d565b925082612c9a57612c99612ef5565b5b828204905092915050565b6000612cb082612d9d565b9150612cbb83612d9d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cf457612cf3612ec6565b5b828202905092915050565b6000612d0a82612d9d565b9150612d1583612d9d565b925082821015612d2857612d27612ec6565b5b828203905092915050565b6000612d3e82612d7d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612dd4578082015181840152602081019050612db9565b83811115612de3576000848401525b50505050565b60006002820490506001821680612e0157607f821691505b60208210811415612e1557612e14612f24565b5b50919050565b612e2482612f82565b810181811067ffffffffffffffff82111715612e4357612e42612f53565b5b80604052505050565b6000612e5782612d9d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e8a57612e89612ec6565b5b600182019050919050565b6000612ea082612d9d565b9150612eab83612d9d565b925082612ebb57612eba612ef5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61330d81612d33565b811461331857600080fd5b50565b61332481612d45565b811461332f57600080fd5b50565b61333b81612d51565b811461334657600080fd5b50565b61335281612d9d565b811461335d57600080fd5b5056fea2646970667358221220ae03836ce87f29d113d8e6169ecb7090ff07fc1af41593b0e9fc976aa1f6551b64736f6c63430008040033697066733a2f2f626166796265696432357573356433336b6a757377366b6f76766d663270707063636179796b35326c6f746e6968627469756d62726c61357374692f476f6c644d657461646174612f
Deployed Bytecode
0x60806040526004361061019c5760003560e01c80638da5cb5b116100ec578063b66a0e5d1161008a578063c87b56dd11610064578063c87b56dd14610581578063d9857a5b146105be578063e985e9c5146105e7578063f2fde38b146106245761019c565b8063b66a0e5d14610502578063b88d4fde1461052d578063bdb4b848146105565761019c565b806398bdf6f5116100c657806398bdf6f514610458578063a22cb46514610483578063a7f323ad146104ac578063b438e12e146104d75761019c565b80638da5cb5b146103eb5780639038e6931461041657806395d89b411461042d5761019c565b806355f804b31161015957806370a082311161013357806370a0823114610352578063715018a61461038f57806377c89c11146103a65780638545f4ea146103c25761019c565b806355f804b3146102c15780636352211e146102ea5780636c0360eb146103275761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806323b872dd1461026f57806342842e0e14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612450565b61064d565b6040516101d5919061293c565b60405180910390f35b3480156101ea57600080fd5b506101f361072f565b6040516102009190612957565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b91906124e3565b6107c1565b60405161023d91906128ac565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906123eb565b610807565b005b34801561027b57600080fd5b50610296600480360381019061029191906122e5565b61091f565b005b3480156102a457600080fd5b506102bf60048036038101906102ba91906122e5565b61097f565b005b3480156102cd57600080fd5b506102e860048036038101906102e391906124a2565b61099f565b005b3480156102f657600080fd5b50610311600480360381019061030c91906124e3565b6109c1565b60405161031e91906128ac565b60405180910390f35b34801561033357600080fd5b5061033c610a73565b6040516103499190612957565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190612280565b610b01565b6040516103869190612b19565b60405180910390f35b34801561039b57600080fd5b506103a4610bb9565b005b6103c060048036038101906103bb91906124e3565b610bcd565b005b3480156103ce57600080fd5b506103e960048036038101906103e491906124e3565b610dbb565b005b3480156103f757600080fd5b50610400610e1b565b60405161040d91906128ac565b60405180910390f35b34801561042257600080fd5b5061042b610e45565b005b34801561043957600080fd5b50610442610f98565b60405161044f9190612957565b60405180910390f35b34801561046457600080fd5b5061046d61102a565b60405161047a9190612b19565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a591906123af565b611036565b005b3480156104b857600080fd5b506104c161104c565b6040516104ce9190612b19565b60405180910390f35b3480156104e357600080fd5b506104ec611052565b6040516104f99190612b19565b60405180910390f35b34801561050e57600080fd5b50610517611058565b604051610524919061293c565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190612334565b61106b565b005b34801561056257600080fd5b5061056b6110cd565b6040516105789190612b19565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a391906124e3565b6110d3565b6040516105b59190612957565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190612427565b611146565b005b3480156105f357600080fd5b5061060e600480360381019061060991906122a9565b6111b9565b60405161061b919061293c565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190612280565b61124d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107285750610727826112e7565b5b9050919050565b60606000805461073e90612de9565b80601f016020809104026020016040519081016040528092919081815260200182805461076a90612de9565b80156107b75780601f1061078c576101008083540402835291602001916107b7565b820191906000526020600020905b81548152906001019060200180831161079a57829003601f168201915b5050505050905090565b60006107cc82611351565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610812826109c1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087a90612ad9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108a261139c565b73ffffffffffffffffffffffffffffffffffffffff1614806108d157506108d0816108cb61139c565b6111b9565b5b610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090790612a59565b60405180910390fd5b61091a83836113a4565b505050565b61093061092a61139c565b8261145d565b61096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690612af9565b60405180910390fd5b61097a8383836114f2565b505050565b61099a8383836040518060200160405280600081525061106b565b505050565b6109a7611759565b80600790805190602001906109bd9291906120a4565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6190612ab9565b60405180910390fd5b80915050919050565b60078054610a8090612de9565b80601f0160208091040260200160405190810160405280929190818152602001828054610aac90612de9565b8015610af95780601f10610ace57610100808354040283529160200191610af9565b820191906000526020600020905b815481529060010190602001808311610adc57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990612a39565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bc1611759565b610bcb60006117d7565b565b600860009054906101000a900460ff16610c1e57336040517fc9bbd13b000000000000000000000000000000000000000000000000000000008152600401610c1591906128ac565b60405180910390fd5b80600954610c2c9190612ca5565b3414610c715733346040517f54f72886000000000000000000000000000000000000000000000000000000008152600401610c68929190612913565b60405180910390fd5b610c7a33610b01565b6103e8610c879190612cff565b811115610cd55733610c9833610b01565b6040517f2f67f8fb000000000000000000000000000000000000000000000000000000008152600401610ccc929190612913565b60405180910390fd5b60005b81811015610db7576103e8610ced600a61189d565b1115610d3057336040517fdd8dc884000000000000000000000000000000000000000000000000000000008152600401610d2791906128ac565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f4a916166b9e67be3c4c62565ab135eb988e789d2de21b5b46ca856c3ec9f0bbd610d72600a61189d565b604051610d7f9190612b19565b60405180910390a2610d9a33610d95600a61189d565b6118ab565b610da4600a6112d1565b8080610daf90612e4c565b915050610cd8565b5050565b610dc3611759565b806009819055503373ffffffffffffffffffffffffffffffffffffffff167f3863cc21dcd5d991431cdfea12ad71dc99601a367ba63b11e9a9e763c541702682604051610e109190612b19565b60405180910390a250565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e4d611759565b60004790506000811415610e9857336040517fd7451e6b000000000000000000000000000000000000000000000000000000008152600401610e8f91906128ac565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610ebe90612897565b60006040518083038185875af1925050503d8060008114610efb576040519150601f19603f3d011682016040523d82523d6000602084013e610f00565b606091505b5050905080610f4657336040517ff7cf3901000000000000000000000000000000000000000000000000000000008152600401610f3d91906128ac565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167fb2abe8535f8ab52b58b1b5a5b0ed6bd5c1ba7c92099f0c509988f6d04c584ef983604051610f8c9190612b19565b60405180910390a25050565b606060018054610fa790612de9565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd390612de9565b80156110205780601f10610ff557610100808354040283529160200191611020565b820191906000526020600020905b81548152906001019060200180831161100357829003601f168201915b5050505050905090565b600a8060000154905081565b61104861104161139c565b83836118c9565b5050565b6103e881565b6103e881565b600860009054906101000a900460ff1681565b61107c61107661139c565b8361145d565b6110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290612af9565b60405180910390fd5b6110c784848484611a36565b50505050565b60095481565b60606110de82611a92565b611114576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600761111f83611afe565b604051602001611130929190612868565b6040516020818303038152906040529050919050565b61114e611759565b80600860006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f80da56dc7c76a07dc7aed1999cb8bd66e8490db72dc8a4bc87557b995b6300c7426040516111ae9190612b19565b60405180910390a250565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611255611759565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90612999565b60405180910390fd5b6112ce816117d7565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61135a81611a92565b611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139090612ab9565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611417836109c1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611469836109c1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114ab57506114aa81856111b9565b5b806114e957508373ffffffffffffffffffffffffffffffffffffffff166114d1846107c1565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611512826109c1565b73ffffffffffffffffffffffffffffffffffffffff1614611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f906129b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf906129f9565b60405180910390fd5b6115e3838383611cab565b6115ee6000826113a4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461163e9190612cff565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116959190612c1e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611754838383611cb0565b505050565b61176161139c565b73ffffffffffffffffffffffffffffffffffffffff1661177f610e1b565b73ffffffffffffffffffffffffffffffffffffffff16146117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc90612a99565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6118c5828260405180602001604052806000815250611cb5565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90612a19565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a29919061293c565b60405180910390a3505050565b611a418484846114f2565b611a4d84848484611d10565b611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390612979565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415611b46576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ca6565b600082905060005b60008214611b78578080611b6190612e4c565b915050600a82611b719190612c74565b9150611b4e565b60008167ffffffffffffffff811115611bba577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611bec5781602001600182028036833780820191505090505b5090505b60008514611c9f57600182611c059190612cff565b9150600a85611c149190612e95565b6030611c209190612c1e565b60f81b818381518110611c5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c989190612c74565b9450611bf0565b8093505050505b919050565b505050565b505050565b611cbf8383611ea7565b611ccc6000848484611d10565b611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0290612979565b60405180910390fd5b505050565b6000611d318473ffffffffffffffffffffffffffffffffffffffff16612081565b15611e9a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d5a61139c565b8786866040518563ffffffff1660e01b8152600401611d7c94939291906128c7565b602060405180830381600087803b158015611d9657600080fd5b505af1925050508015611dc757506040513d601f19601f82011682018060405250810190611dc49190612479565b60015b611e4a573d8060008114611df7576040519150601f19603f3d011682016040523d82523d6000602084013e611dfc565b606091505b50600081511415611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3990612979565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e9f565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90612a79565b60405180910390fd5b611f2081611a92565b15611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f57906129d9565b60405180910390fd5b611f6c60008383611cab565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fbc9190612c1e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461207d60008383611cb0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546120b090612de9565b90600052602060002090601f0160209004810192826120d25760008555612119565b82601f106120eb57805160ff1916838001178555612119565b82800160010185558215612119579182015b828111156121185782518255916020019190600101906120fd565b5b509050612126919061212a565b5090565b5b8082111561214357600081600090555060010161212b565b5090565b600061215a61215584612b59565b612b34565b90508281526020810184848401111561217257600080fd5b61217d848285612da7565b509392505050565b600061219861219384612b8a565b612b34565b9050828152602081018484840111156121b057600080fd5b6121bb848285612da7565b509392505050565b6000813590506121d281613304565b92915050565b6000813590506121e78161331b565b92915050565b6000813590506121fc81613332565b92915050565b60008151905061221181613332565b92915050565b600082601f83011261222857600080fd5b8135612238848260208601612147565b91505092915050565b600082601f83011261225257600080fd5b8135612262848260208601612185565b91505092915050565b60008135905061227a81613349565b92915050565b60006020828403121561229257600080fd5b60006122a0848285016121c3565b91505092915050565b600080604083850312156122bc57600080fd5b60006122ca858286016121c3565b92505060206122db858286016121c3565b9150509250929050565b6000806000606084860312156122fa57600080fd5b6000612308868287016121c3565b9350506020612319868287016121c3565b925050604061232a8682870161226b565b9150509250925092565b6000806000806080858703121561234a57600080fd5b6000612358878288016121c3565b9450506020612369878288016121c3565b935050604061237a8782880161226b565b925050606085013567ffffffffffffffff81111561239757600080fd5b6123a387828801612217565b91505092959194509250565b600080604083850312156123c257600080fd5b60006123d0858286016121c3565b92505060206123e1858286016121d8565b9150509250929050565b600080604083850312156123fe57600080fd5b600061240c858286016121c3565b925050602061241d8582860161226b565b9150509250929050565b60006020828403121561243957600080fd5b6000612447848285016121d8565b91505092915050565b60006020828403121561246257600080fd5b6000612470848285016121ed565b91505092915050565b60006020828403121561248b57600080fd5b600061249984828501612202565b91505092915050565b6000602082840312156124b457600080fd5b600082013567ffffffffffffffff8111156124ce57600080fd5b6124da84828501612241565b91505092915050565b6000602082840312156124f557600080fd5b60006125038482850161226b565b91505092915050565b61251581612d33565b82525050565b61252481612d45565b82525050565b600061253582612bd0565b61253f8185612be6565b935061254f818560208601612db6565b61255881612f82565b840191505092915050565b600061256e82612bdb565b6125788185612c02565b9350612588818560208601612db6565b61259181612f82565b840191505092915050565b60006125a782612bdb565b6125b18185612c13565b93506125c1818560208601612db6565b80840191505092915050565b600081546125da81612de9565b6125e48186612c13565b945060018216600081146125ff576001811461261057612643565b60ff19831686528186019350612643565b61261985612bbb565b60005b8381101561263b5781548189015260018201915060208101905061261c565b838801955050505b50505092915050565b6000612659603283612c02565b915061266482612f93565b604082019050919050565b600061267c602683612c02565b915061268782612fe2565b604082019050919050565b600061269f602583612c02565b91506126aa82613031565b604082019050919050565b60006126c2601c83612c02565b91506126cd82613080565b602082019050919050565b60006126e5602483612c02565b91506126f0826130a9565b604082019050919050565b6000612708601983612c02565b9150612713826130f8565b602082019050919050565b600061272b602983612c02565b915061273682613121565b604082019050919050565b600061274e603e83612c02565b915061275982613170565b604082019050919050565b6000612771602083612c02565b915061277c826131bf565b602082019050919050565b6000612794600583612c13565b915061279f826131e8565b600582019050919050565b60006127b7602083612c02565b91506127c282613211565b602082019050919050565b60006127da601883612c02565b91506127e58261323a565b602082019050919050565b60006127fd602183612c02565b915061280882613263565b604082019050919050565b6000612820600083612bf7565b915061282b826132b2565b600082019050919050565b6000612843602e83612c02565b915061284e826132b5565b604082019050919050565b61286281612d9d565b82525050565b600061287482856125cd565b9150612880828461259c565b915061288b82612787565b91508190509392505050565b60006128a282612813565b9150819050919050565b60006020820190506128c1600083018461250c565b92915050565b60006080820190506128dc600083018761250c565b6128e9602083018661250c565b6128f66040830185612859565b8181036060830152612908818461252a565b905095945050505050565b6000604082019050612928600083018561250c565b6129356020830184612859565b9392505050565b6000602082019050612951600083018461251b565b92915050565b600060208201905081810360008301526129718184612563565b905092915050565b600060208201905081810360008301526129928161264c565b9050919050565b600060208201905081810360008301526129b28161266f565b9050919050565b600060208201905081810360008301526129d281612692565b9050919050565b600060208201905081810360008301526129f2816126b5565b9050919050565b60006020820190508181036000830152612a12816126d8565b9050919050565b60006020820190508181036000830152612a32816126fb565b9050919050565b60006020820190508181036000830152612a528161271e565b9050919050565b60006020820190508181036000830152612a7281612741565b9050919050565b60006020820190508181036000830152612a9281612764565b9050919050565b60006020820190508181036000830152612ab2816127aa565b9050919050565b60006020820190508181036000830152612ad2816127cd565b9050919050565b60006020820190508181036000830152612af2816127f0565b9050919050565b60006020820190508181036000830152612b1281612836565b9050919050565b6000602082019050612b2e6000830184612859565b92915050565b6000612b3e612b4f565b9050612b4a8282612e1b565b919050565b6000604051905090565b600067ffffffffffffffff821115612b7457612b73612f53565b5b612b7d82612f82565b9050602081019050919050565b600067ffffffffffffffff821115612ba557612ba4612f53565b5b612bae82612f82565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c2982612d9d565b9150612c3483612d9d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c6957612c68612ec6565b5b828201905092915050565b6000612c7f82612d9d565b9150612c8a83612d9d565b925082612c9a57612c99612ef5565b5b828204905092915050565b6000612cb082612d9d565b9150612cbb83612d9d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cf457612cf3612ec6565b5b828202905092915050565b6000612d0a82612d9d565b9150612d1583612d9d565b925082821015612d2857612d27612ec6565b5b828203905092915050565b6000612d3e82612d7d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612dd4578082015181840152602081019050612db9565b83811115612de3576000848401525b50505050565b60006002820490506001821680612e0157607f821691505b60208210811415612e1557612e14612f24565b5b50919050565b612e2482612f82565b810181811067ffffffffffffffff82111715612e4357612e42612f53565b5b80604052505050565b6000612e5782612d9d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e8a57612e89612ec6565b5b600182019050919050565b6000612ea082612d9d565b9150612eab83612d9d565b925082612ebb57612eba612ef5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61330d81612d33565b811461331857600080fd5b50565b61332481612d45565b811461332f57600080fd5b50565b61333b81612d51565b811461334657600080fd5b50565b61335281612d9d565b811461335d57600080fd5b5056fea2646970667358221220ae03836ce87f29d113d8e6169ecb7090ff07fc1af41593b0e9fc976aa1f6551b64736f6c63430008040033
Deployed Bytecode Sourcemap
39630:6528:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24780:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25707:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27220:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26737:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27920:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28327:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43678:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25418:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41408:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25149:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5316:103;;;;;;;;;;;;;:::i;:::-;;44656:937;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43881:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4668:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45771:380;;;;;;;;;;;;;:::i;:::-;;25876:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41647:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27463:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41074:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40958:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41501:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28583:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41575:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44155:276;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43440:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27689:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5574:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24780:305;24882:4;24934:25;24919:40;;;:11;:40;;;;:105;;;;24991:33;24976:48;;;:11;:48;;;;24919:105;:158;;;;25041:36;25065:11;25041:23;:36::i;:::-;24919:158;24899:178;;24780:305;;;:::o;25707:100::-;25761:13;25794:5;25787:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25707:100;:::o;27220:171::-;27296:7;27316:23;27331:7;27316:14;:23::i;:::-;27359:15;:24;27375:7;27359:24;;;;;;;;;;;;;;;;;;;;;27352:31;;27220:171;;;:::o;26737:417::-;26818:13;26834:23;26849:7;26834:14;:23::i;:::-;26818:39;;26882:5;26876:11;;:2;:11;;;;26868:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26976:5;26960:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26985:37;27002:5;27009:12;:10;:12::i;:::-;26985:16;:37::i;:::-;26960:62;26938:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;27125:21;27134:2;27138:7;27125:8;:21::i;:::-;26737:417;;;:::o;27920:336::-;28115:41;28134:12;:10;:12::i;:::-;28148:7;28115:18;:41::i;:::-;28107:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;28220:28;28230:4;28236:2;28240:7;28220:9;:28::i;:::-;27920:336;;;:::o;28327:185::-;28465:39;28482:4;28488:2;28492:7;28465:39;;;;;;;;;;;;:16;:39::i;:::-;28327:185;;;:::o;43678:104::-;4554:13;:11;:13::i;:::-;43764:10:::1;43754:7;:20;;;;;;;;;;;;:::i;:::-;;43678:104:::0;:::o;25418:222::-;25490:7;25510:13;25526:7;:16;25534:7;25526:16;;;;;;;;;;;;;;;;;;;;;25510:32;;25578:1;25561:19;;:5;:19;;;;25553:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;25627:5;25620:12;;;25418:222;;;:::o;41408:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25149:207::-;25221:7;25266:1;25249:19;;:5;:19;;;;25241:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25332:9;:16;25342:5;25332:16;;;;;;;;;;;;;;;;25325:23;;25149:207;;;:::o;5316:103::-;4554:13;:11;:13::i;:::-;5381:30:::1;5408:1;5381:18;:30::i;:::-;5316:103::o:0;44656:937::-;44743:9;;;;;;;;;;;44739:74;;44790:10;44775:26;;;;;;;;;;;:::i;:::-;;;;;;;;44739:74;44853:9;44842:8;;:20;;;;:::i;:::-;44829:9;:33;44825:112;;44903:10;44915:9;44886:39;;;;;;;;;;;;:::i;:::-;;;;;;;;44825:112;44987:21;44997:10;44987:9;:21::i;:::-;41120:4;44965:43;;;;:::i;:::-;44952:9;:57;44949:201;;;45071:10;45100:21;45110:10;45100:9;:21::i;:::-;45032:90;;;;;;;;;;;;:::i;:::-;;;;;;;;44949:201;45182:6;45178:393;45194:9;45190:1;:13;45178:393;;;41001:4;45242:24;:14;:22;:24::i;:::-;:43;45239:111;;;45323:10;45312:22;;;;;;;;;;;:::i;:::-;;;;;;;;45239:111;45399:10;45374:62;;;45411:24;:14;:22;:24::i;:::-;45374:62;;;;;;:::i;:::-;;;;;;;;45463:47;45473:10;45485:24;:14;:22;:24::i;:::-;45463:9;:47::i;:::-;45533:26;:14;:24;:26::i;:::-;45206:3;;;;;:::i;:::-;;;;45178:393;;;;44656:937;:::o;43881:154::-;4554:13;:11;:13::i;:::-;43964:11:::1;43953:8;:22;;;;44003:10;43991:36;;;44015:11;43991:36;;;;;;:::i;:::-;;;;;;;;43881:154:::0;:::o;4668:87::-;4714:7;4741:6;;;;;;;;;;;4734:13;;4668:87;:::o;45771:380::-;4554:13;:11;:13::i;:::-;45829:15:::1;45847:21;45829:39;;45902:1;45891:7;:12;45887:57;;;45931:10;45913:29;;;;;;;;;;;:::i;:::-;;;;;;;;45887:57;45963:9;45986:10;45978:24;;46010:7;45978:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45962:60;;;46038:4;46033:50;;46070:10;46051:30;;;;;;;;;;;:::i;:::-;;;;;;;;46033:50;46123:10;46106:37;;;46135:7;46106:37;;;;;;:::i;:::-;;;;;;;;4578:1;;45771:380::o:0;25876:104::-;25932:13;25965:7;25958:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25876:104;:::o;41647:38::-;;;;;;;;;:::o;27463:155::-;27558:52;27577:12;:10;:12::i;:::-;27591:8;27601;27558:18;:52::i;:::-;27463:155;;:::o;41074:50::-;41120:4;41074:50;:::o;40958:47::-;41001:4;40958:47;:::o;41501:21::-;;;;;;;;;;;;;:::o;28583:323::-;28757:41;28776:12;:10;:12::i;:::-;28790:7;28757:18;:41::i;:::-;28749:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;28860:38;28874:4;28880:2;28884:7;28893:4;28860:13;:38::i;:::-;28583:323;;;;:::o;41575:23::-;;;;:::o;44155:276::-;44228:13;44262:16;44270:7;44262;:16::i;:::-;44257:75;;44301:19;;;;;;;;;;;;;;44257:75;44378:7;44387:25;44404:7;44387:16;:25::i;:::-;44361:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44347:76;;44155:276;;;:::o;43440:146::-;4554:13;:11;:13::i;:::-;43516:5:::1;43504:9;;:17;;;;;;;;;;;;;;;;;;43550:10;43537:41;;;43562:15;43537:41;;;;;;:::i;:::-;;;;;;;;43440:146:::0;:::o;27689:164::-;27786:4;27810:18;:25;27829:5;27810:25;;;;;;;;;;;;;;;:35;27836:8;27810:35;;;;;;;;;;;;;;;;;;;;;;;;;27803:42;;27689:164;;;;:::o;5574:201::-;4554:13;:11;:13::i;:::-;5683:1:::1;5663:22;;:8;:22;;;;5655:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5739:28;5758:8;5739:18;:28::i;:::-;5574:201:::0;:::o;38956:127::-;39063:1;39045:7;:14;;;:19;;;;;;;;;;;38956:127;:::o;17522:157::-;17607:4;17646:25;17631:40;;;:11;:40;;;;17624:47;;17522:157;;;:::o;35195:135::-;35277:16;35285:7;35277;:16::i;:::-;35269:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;35195:135;:::o;3219:98::-;3272:7;3299:10;3292:17;;3219:98;:::o;34474:174::-;34576:2;34549:15;:24;34565:7;34549:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34632:7;34628:2;34594:46;;34603:23;34618:7;34603:14;:23::i;:::-;34594:46;;;;;;;;;;;;34474:174;;:::o;30707:264::-;30800:4;30817:13;30833:23;30848:7;30833:14;:23::i;:::-;30817:39;;30886:5;30875:16;;:7;:16;;;:52;;;;30895:32;30912:5;30919:7;30895:16;:32::i;:::-;30875:52;:87;;;;30955:7;30931:31;;:20;30943:7;30931:11;:20::i;:::-;:31;;;30875:87;30867:96;;;30707:264;;;;:::o;33730:625::-;33889:4;33862:31;;:23;33877:7;33862:14;:23::i;:::-;:31;;;33854:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;33968:1;33954:16;;:2;:16;;;;33946:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34024:39;34045:4;34051:2;34055:7;34024:20;:39::i;:::-;34128:29;34145:1;34149:7;34128:8;:29::i;:::-;34189:1;34170:9;:15;34180:4;34170:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34218:1;34201:9;:13;34211:2;34201:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34249:2;34230:7;:16;34238:7;34230:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34288:7;34284:2;34269:27;;34278:4;34269:27;;;;;;;;;;;;34309:38;34329:4;34335:2;34339:7;34309:19;:38::i;:::-;33730:625;;;:::o;4833:132::-;4908:12;:10;:12::i;:::-;4897:23;;:7;:5;:7::i;:::-;:23;;;4889:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4833:132::o;5935:191::-;6009:16;6028:6;;;;;;;;;;;6009:25;;6054:8;6045:6;;:17;;;;;;;;;;;;;;;;;;6109:8;6078:40;;6099:8;6078:40;;;;;;;;;;;;5935:191;;:::o;38834:114::-;38899:7;38926;:14;;;38919:21;;38834:114;;;:::o;31313:110::-;31389:26;31399:2;31403:7;31389:26;;;;;;;;;;;;:9;:26::i;:::-;31313:110;;:::o;34791:315::-;34946:8;34937:17;;:5;:17;;;;34929:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35033:8;34995:18;:25;35014:5;34995:25;;;;;;;;;;;;;;;:35;35021:8;34995:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35079:8;35057:41;;35072:5;35057:41;;;35089:8;35057:41;;;;;;:::i;:::-;;;;;;;;34791:315;;;:::o;29787:313::-;29943:28;29953:4;29959:2;29963:7;29943:9;:28::i;:::-;29990:47;30013:4;30019:2;30023:7;30032:4;29990:22;:47::i;:::-;29982:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;29787:313;;;;:::o;30413:127::-;30478:4;30530:1;30502:30;;:7;:16;30510:7;30502:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30495:37;;30413:127;;;:::o;473:723::-;529:13;759:1;750:5;:10;746:53;;;777:10;;;;;;;;;;;;;;;;;;;;;746:53;809:12;824:5;809:20;;840:14;865:78;880:1;872:4;:9;865:78;;898:8;;;;;:::i;:::-;;;;929:2;921:10;;;;;:::i;:::-;;;865:78;;;953:19;985:6;975:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;953:39;;1003:154;1019:1;1010:5;:10;1003:154;;1047:1;1037:11;;;;;:::i;:::-;;;1114:2;1106:5;:10;;;;:::i;:::-;1093:2;:24;;;;:::i;:::-;1080:39;;1063:6;1070;1063:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1143:2;1134:11;;;;;:::i;:::-;;;1003:154;;;1181:6;1167:21;;;;;473:723;;;;:::o;37319:126::-;;;;:::o;37830:125::-;;;;:::o;31650:319::-;31779:18;31785:2;31789:7;31779:5;:18::i;:::-;31830:53;31861:1;31865:2;31869:7;31878:4;31830:22;:53::i;:::-;31808:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;31650:319;;;:::o;35894:853::-;36048:4;36069:15;:2;:13;;;:15::i;:::-;36065:675;;;36121:2;36105:36;;;36142:12;:10;:12::i;:::-;36156:4;36162:7;36171:4;36105:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36101:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36363:1;36346:6;:13;:18;36342:328;;;36389:60;;;;;;;;;;:::i;:::-;;;;;;;;36342:328;36620:6;36614:13;36605:6;36601:2;36597:15;36590:38;36101:584;36237:41;;;36227:51;;;:6;:51;;;;36220:58;;;;;36065:675;36724:4;36717:11;;35894:853;;;;;;;:::o;32305:439::-;32399:1;32385:16;;:2;:16;;;;32377:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32458:16;32466:7;32458;:16::i;:::-;32457:17;32449:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32520:45;32549:1;32553:2;32557:7;32520:20;:45::i;:::-;32595:1;32578:9;:13;32588:2;32578:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32626:2;32607:7;:16;32615:7;32607:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32671:7;32667:2;32646:33;;32663:1;32646:33;;;;;;;;;;;;32692:44;32720:1;32724:2;32728:7;32692:19;:44::i;:::-;32305:439;;:::o;7366:326::-;7426:4;7683:1;7661:7;:19;;;:23;7654:30;;7366:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:118::-;6435:24;6453:5;6435:24;:::i;:::-;6430:3;6423:37;6413:53;;:::o;6472:109::-;6553:21;6568:5;6553:21;:::i;:::-;6548:3;6541:34;6531:50;;:::o;6587:360::-;6673:3;6701:38;6733:5;6701:38;:::i;:::-;6755:70;6818:6;6813:3;6755:70;:::i;:::-;6748:77;;6834:52;6879:6;6874:3;6867:4;6860:5;6856:16;6834:52;:::i;:::-;6911:29;6933:6;6911:29;:::i;:::-;6906:3;6902:39;6895:46;;6677:270;;;;;:::o;6953:364::-;7041:3;7069:39;7102:5;7069:39;:::i;:::-;7124:71;7188:6;7183:3;7124:71;:::i;:::-;7117:78;;7204:52;7249:6;7244:3;7237:4;7230:5;7226:16;7204:52;:::i;:::-;7281:29;7303:6;7281:29;:::i;:::-;7276:3;7272:39;7265:46;;7045:272;;;;;:::o;7323:377::-;7429:3;7457:39;7490:5;7457:39;:::i;:::-;7512:89;7594:6;7589:3;7512:89;:::i;:::-;7505:96;;7610:52;7655:6;7650:3;7643:4;7636:5;7632:16;7610:52;:::i;:::-;7687:6;7682:3;7678:16;7671:23;;7433:267;;;;;:::o;7730:845::-;7833:3;7870:5;7864:12;7899:36;7925:9;7899:36;:::i;:::-;7951:89;8033:6;8028:3;7951:89;:::i;:::-;7944:96;;8071:1;8060:9;8056:17;8087:1;8082:137;;;;8233:1;8228:341;;;;8049:520;;8082:137;8166:4;8162:9;8151;8147:25;8142:3;8135:38;8202:6;8197:3;8193:16;8186:23;;8082:137;;8228:341;8295:38;8327:5;8295:38;:::i;:::-;8355:1;8369:154;8383:6;8380:1;8377:13;8369:154;;;8457:7;8451:14;8447:1;8442:3;8438:11;8431:35;8507:1;8498:7;8494:15;8483:26;;8405:4;8402:1;8398:12;8393:17;;8369:154;;;8552:6;8547:3;8543:16;8536:23;;8235:334;;8049:520;;7837:738;;;;;;:::o;8581:366::-;8723:3;8744:67;8808:2;8803:3;8744:67;:::i;:::-;8737:74;;8820:93;8909:3;8820:93;:::i;:::-;8938:2;8933:3;8929:12;8922:19;;8727:220;;;:::o;8953:366::-;9095:3;9116:67;9180:2;9175:3;9116:67;:::i;:::-;9109:74;;9192:93;9281:3;9192:93;:::i;:::-;9310:2;9305:3;9301:12;9294:19;;9099:220;;;:::o;9325:366::-;9467:3;9488:67;9552:2;9547:3;9488:67;:::i;:::-;9481:74;;9564:93;9653:3;9564:93;:::i;:::-;9682:2;9677:3;9673:12;9666:19;;9471:220;;;:::o;9697:366::-;9839:3;9860:67;9924:2;9919:3;9860:67;:::i;:::-;9853:74;;9936:93;10025:3;9936:93;:::i;:::-;10054:2;10049:3;10045:12;10038:19;;9843:220;;;:::o;10069:366::-;10211:3;10232:67;10296:2;10291:3;10232:67;:::i;:::-;10225:74;;10308:93;10397:3;10308:93;:::i;:::-;10426:2;10421:3;10417:12;10410:19;;10215:220;;;:::o;10441:366::-;10583:3;10604:67;10668:2;10663:3;10604:67;:::i;:::-;10597:74;;10680:93;10769:3;10680:93;:::i;:::-;10798:2;10793:3;10789:12;10782:19;;10587:220;;;:::o;10813:366::-;10955:3;10976:67;11040:2;11035:3;10976:67;:::i;:::-;10969:74;;11052:93;11141:3;11052:93;:::i;:::-;11170:2;11165:3;11161:12;11154:19;;10959:220;;;:::o;11185:366::-;11327:3;11348:67;11412:2;11407:3;11348:67;:::i;:::-;11341:74;;11424:93;11513:3;11424:93;:::i;:::-;11542:2;11537:3;11533:12;11526:19;;11331:220;;;:::o;11557:366::-;11699:3;11720:67;11784:2;11779:3;11720:67;:::i;:::-;11713:74;;11796:93;11885:3;11796:93;:::i;:::-;11914:2;11909:3;11905:12;11898:19;;11703:220;;;:::o;11929:400::-;12089:3;12110:84;12192:1;12187:3;12110:84;:::i;:::-;12103:91;;12203:93;12292:3;12203:93;:::i;:::-;12321:1;12316:3;12312:11;12305:18;;12093:236;;;:::o;12335:366::-;12477:3;12498:67;12562:2;12557:3;12498:67;:::i;:::-;12491:74;;12574:93;12663:3;12574:93;:::i;:::-;12692:2;12687:3;12683:12;12676:19;;12481:220;;;:::o;12707:366::-;12849:3;12870:67;12934:2;12929:3;12870:67;:::i;:::-;12863:74;;12946:93;13035:3;12946:93;:::i;:::-;13064:2;13059:3;13055:12;13048:19;;12853:220;;;:::o;13079:366::-;13221:3;13242:67;13306:2;13301:3;13242:67;:::i;:::-;13235:74;;13318:93;13407:3;13318:93;:::i;:::-;13436:2;13431:3;13427:12;13420:19;;13225:220;;;:::o;13451:398::-;13610:3;13631:83;13712:1;13707:3;13631:83;:::i;:::-;13624:90;;13723:93;13812:3;13723:93;:::i;:::-;13841:1;13836:3;13832:11;13825:18;;13614:235;;;:::o;13855:366::-;13997:3;14018:67;14082:2;14077:3;14018:67;:::i;:::-;14011:74;;14094:93;14183:3;14094:93;:::i;:::-;14212:2;14207:3;14203:12;14196:19;;14001:220;;;:::o;14227:118::-;14314:24;14332:5;14314:24;:::i;:::-;14309:3;14302:37;14292:53;;:::o;14351:695::-;14629:3;14651:92;14739:3;14730:6;14651:92;:::i;:::-;14644:99;;14760:95;14851:3;14842:6;14760:95;:::i;:::-;14753:102;;14872:148;15016:3;14872:148;:::i;:::-;14865:155;;15037:3;15030:10;;14633:413;;;;;:::o;15052:379::-;15236:3;15258:147;15401:3;15258:147;:::i;:::-;15251:154;;15422:3;15415:10;;15240:191;;;:::o;15437:222::-;15530:4;15568:2;15557:9;15553:18;15545:26;;15581:71;15649:1;15638:9;15634:17;15625:6;15581:71;:::i;:::-;15535:124;;;;:::o;15665:640::-;15860:4;15898:3;15887:9;15883:19;15875:27;;15912:71;15980:1;15969:9;15965:17;15956:6;15912:71;:::i;:::-;15993:72;16061:2;16050:9;16046:18;16037:6;15993:72;:::i;:::-;16075;16143:2;16132:9;16128:18;16119:6;16075:72;:::i;:::-;16194:9;16188:4;16184:20;16179:2;16168:9;16164:18;16157:48;16222:76;16293:4;16284:6;16222:76;:::i;:::-;16214:84;;15865:440;;;;;;;:::o;16311:332::-;16432:4;16470:2;16459:9;16455:18;16447:26;;16483:71;16551:1;16540:9;16536:17;16527:6;16483:71;:::i;:::-;16564:72;16632:2;16621:9;16617:18;16608:6;16564:72;:::i;:::-;16437:206;;;;;:::o;16649:210::-;16736:4;16774:2;16763:9;16759:18;16751:26;;16787:65;16849:1;16838:9;16834:17;16825:6;16787:65;:::i;:::-;16741:118;;;;:::o;16865:313::-;16978:4;17016:2;17005:9;17001:18;16993:26;;17065:9;17059:4;17055:20;17051:1;17040:9;17036:17;17029:47;17093:78;17166:4;17157:6;17093:78;:::i;:::-;17085:86;;16983:195;;;;:::o;17184:419::-;17350:4;17388:2;17377:9;17373:18;17365:26;;17437:9;17431:4;17427:20;17423:1;17412:9;17408:17;17401:47;17465:131;17591:4;17465:131;:::i;:::-;17457:139;;17355:248;;;:::o;17609:419::-;17775:4;17813:2;17802:9;17798:18;17790:26;;17862:9;17856:4;17852:20;17848:1;17837:9;17833:17;17826:47;17890:131;18016:4;17890:131;:::i;:::-;17882:139;;17780:248;;;:::o;18034:419::-;18200:4;18238:2;18227:9;18223:18;18215:26;;18287:9;18281:4;18277:20;18273:1;18262:9;18258:17;18251:47;18315:131;18441:4;18315:131;:::i;:::-;18307:139;;18205:248;;;:::o;18459:419::-;18625:4;18663:2;18652:9;18648:18;18640:26;;18712:9;18706:4;18702:20;18698:1;18687:9;18683:17;18676:47;18740:131;18866:4;18740:131;:::i;:::-;18732:139;;18630:248;;;:::o;18884:419::-;19050:4;19088:2;19077:9;19073:18;19065:26;;19137:9;19131:4;19127:20;19123:1;19112:9;19108:17;19101:47;19165:131;19291:4;19165:131;:::i;:::-;19157:139;;19055:248;;;:::o;19309:419::-;19475:4;19513:2;19502:9;19498:18;19490:26;;19562:9;19556:4;19552:20;19548:1;19537:9;19533:17;19526:47;19590:131;19716:4;19590:131;:::i;:::-;19582:139;;19480:248;;;:::o;19734:419::-;19900:4;19938:2;19927:9;19923:18;19915:26;;19987:9;19981:4;19977:20;19973:1;19962:9;19958:17;19951:47;20015:131;20141:4;20015:131;:::i;:::-;20007:139;;19905:248;;;:::o;20159:419::-;20325:4;20363:2;20352:9;20348:18;20340:26;;20412:9;20406:4;20402:20;20398:1;20387:9;20383:17;20376:47;20440:131;20566:4;20440:131;:::i;:::-;20432:139;;20330:248;;;:::o;20584:419::-;20750:4;20788:2;20777:9;20773:18;20765:26;;20837:9;20831:4;20827:20;20823:1;20812:9;20808:17;20801:47;20865:131;20991:4;20865:131;:::i;:::-;20857:139;;20755:248;;;:::o;21009:419::-;21175:4;21213:2;21202:9;21198:18;21190:26;;21262:9;21256:4;21252:20;21248:1;21237:9;21233:17;21226:47;21290:131;21416:4;21290:131;:::i;:::-;21282:139;;21180:248;;;:::o;21434:419::-;21600:4;21638:2;21627:9;21623:18;21615:26;;21687:9;21681:4;21677:20;21673:1;21662:9;21658:17;21651:47;21715:131;21841:4;21715:131;:::i;:::-;21707:139;;21605:248;;;:::o;21859:419::-;22025:4;22063:2;22052:9;22048:18;22040:26;;22112:9;22106:4;22102:20;22098:1;22087:9;22083:17;22076:47;22140:131;22266:4;22140:131;:::i;:::-;22132:139;;22030:248;;;:::o;22284:419::-;22450:4;22488:2;22477:9;22473:18;22465:26;;22537:9;22531:4;22527:20;22523:1;22512:9;22508:17;22501:47;22565:131;22691:4;22565:131;:::i;:::-;22557:139;;22455:248;;;:::o;22709:222::-;22802:4;22840:2;22829:9;22825:18;22817:26;;22853:71;22921:1;22910:9;22906:17;22897:6;22853:71;:::i;:::-;22807:124;;;;:::o;22937:129::-;22971:6;22998:20;;:::i;:::-;22988:30;;23027:33;23055:4;23047:6;23027:33;:::i;:::-;22978:88;;;:::o;23072:75::-;23105:6;23138:2;23132:9;23122:19;;23112:35;:::o;23153:307::-;23214:4;23304:18;23296:6;23293:30;23290:2;;;23326:18;;:::i;:::-;23290:2;23364:29;23386:6;23364:29;:::i;:::-;23356:37;;23448:4;23442;23438:15;23430:23;;23219:241;;;:::o;23466:308::-;23528:4;23618:18;23610:6;23607:30;23604:2;;;23640:18;;:::i;:::-;23604:2;23678:29;23700:6;23678:29;:::i;:::-;23670:37;;23762:4;23756;23752:15;23744:23;;23533:241;;;:::o;23780:141::-;23829:4;23852:3;23844:11;;23875:3;23872:1;23865:14;23909:4;23906:1;23896:18;23888:26;;23834:87;;;:::o;23927:98::-;23978:6;24012:5;24006:12;23996:22;;23985:40;;;:::o;24031:99::-;24083:6;24117:5;24111:12;24101:22;;24090:40;;;:::o;24136:168::-;24219:11;24253:6;24248:3;24241:19;24293:4;24288:3;24284:14;24269:29;;24231:73;;;;:::o;24310:147::-;24411:11;24448:3;24433:18;;24423:34;;;;:::o;24463:169::-;24547:11;24581:6;24576:3;24569:19;24621:4;24616:3;24612:14;24597:29;;24559:73;;;;:::o;24638:148::-;24740:11;24777:3;24762:18;;24752:34;;;;:::o;24792:305::-;24832:3;24851:20;24869:1;24851:20;:::i;:::-;24846:25;;24885:20;24903:1;24885:20;:::i;:::-;24880:25;;25039:1;24971:66;24967:74;24964:1;24961:81;24958:2;;;25045:18;;:::i;:::-;24958:2;25089:1;25086;25082:9;25075:16;;24836:261;;;;:::o;25103:185::-;25143:1;25160:20;25178:1;25160:20;:::i;:::-;25155:25;;25194:20;25212:1;25194:20;:::i;:::-;25189:25;;25233:1;25223:2;;25238:18;;:::i;:::-;25223:2;25280:1;25277;25273:9;25268:14;;25145:143;;;;:::o;25294:348::-;25334:7;25357:20;25375:1;25357:20;:::i;:::-;25352:25;;25391:20;25409:1;25391:20;:::i;:::-;25386:25;;25579:1;25511:66;25507:74;25504:1;25501:81;25496:1;25489:9;25482:17;25478:105;25475:2;;;25586:18;;:::i;:::-;25475:2;25634:1;25631;25627:9;25616:20;;25342:300;;;;:::o;25648:191::-;25688:4;25708:20;25726:1;25708:20;:::i;:::-;25703:25;;25742:20;25760:1;25742:20;:::i;:::-;25737:25;;25781:1;25778;25775:8;25772:2;;;25786:18;;:::i;:::-;25772:2;25831:1;25828;25824:9;25816:17;;25693:146;;;;:::o;25845:96::-;25882:7;25911:24;25929:5;25911:24;:::i;:::-;25900:35;;25890:51;;;:::o;25947:90::-;25981:7;26024:5;26017:13;26010:21;25999:32;;25989:48;;;:::o;26043:149::-;26079:7;26119:66;26112:5;26108:78;26097:89;;26087:105;;;:::o;26198:126::-;26235:7;26275:42;26268:5;26264:54;26253:65;;26243:81;;;:::o;26330:77::-;26367:7;26396:5;26385:16;;26375:32;;;:::o;26413:154::-;26497:6;26492:3;26487;26474:30;26559:1;26550:6;26545:3;26541:16;26534:27;26464:103;;;:::o;26573:307::-;26641:1;26651:113;26665:6;26662:1;26659:13;26651:113;;;26750:1;26745:3;26741:11;26735:18;26731:1;26726:3;26722:11;26715:39;26687:2;26684:1;26680:10;26675:15;;26651:113;;;26782:6;26779:1;26776:13;26773:2;;;26862:1;26853:6;26848:3;26844:16;26837:27;26773:2;26622:258;;;;:::o;26886:320::-;26930:6;26967:1;26961:4;26957:12;26947:22;;27014:1;27008:4;27004:12;27035:18;27025:2;;27091:4;27083:6;27079:17;27069:27;;27025:2;27153;27145:6;27142:14;27122:18;27119:38;27116:2;;;27172:18;;:::i;:::-;27116:2;26937:269;;;;:::o;27212:281::-;27295:27;27317:4;27295:27;:::i;:::-;27287:6;27283:40;27425:6;27413:10;27410:22;27389:18;27377:10;27374:34;27371:62;27368:2;;;27436:18;;:::i;:::-;27368:2;27476:10;27472:2;27465:22;27255:238;;;:::o;27499:233::-;27538:3;27561:24;27579:5;27561:24;:::i;:::-;27552:33;;27607:66;27600:5;27597:77;27594:2;;;27677:18;;:::i;:::-;27594:2;27724:1;27717:5;27713:13;27706:20;;27542:190;;;:::o;27738:176::-;27770:1;27787:20;27805:1;27787:20;:::i;:::-;27782:25;;27821:20;27839:1;27821:20;:::i;:::-;27816:25;;27860:1;27850:2;;27865:18;;:::i;:::-;27850:2;27906:1;27903;27899:9;27894:14;;27772:142;;;;:::o;27920:180::-;27968:77;27965:1;27958:88;28065:4;28062:1;28055:15;28089:4;28086:1;28079:15;28106:180;28154:77;28151:1;28144:88;28251:4;28248:1;28241:15;28275:4;28272:1;28265:15;28292:180;28340:77;28337:1;28330:88;28437:4;28434:1;28427:15;28461:4;28458:1;28451:15;28478:180;28526:77;28523:1;28516:88;28623:4;28620:1;28613:15;28647:4;28644:1;28637:15;28664:102;28705:6;28756:2;28752:7;28747:2;28740:5;28736:14;28732:28;28722:38;;28712:54;;;:::o;28772:237::-;28912:34;28908:1;28900:6;28896:14;28889:58;28981:20;28976:2;28968:6;28964:15;28957:45;28878:131;:::o;29015:225::-;29155:34;29151:1;29143:6;29139:14;29132:58;29224:8;29219:2;29211:6;29207:15;29200:33;29121:119;:::o;29246:224::-;29386:34;29382:1;29374:6;29370:14;29363:58;29455:7;29450:2;29442:6;29438:15;29431:32;29352:118;:::o;29476:178::-;29616:30;29612:1;29604:6;29600:14;29593:54;29582:72;:::o;29660:223::-;29800:34;29796:1;29788:6;29784:14;29777:58;29869:6;29864:2;29856:6;29852:15;29845:31;29766:117;:::o;29889:175::-;30029:27;30025:1;30017:6;30013:14;30006:51;29995:69;:::o;30070:228::-;30210:34;30206:1;30198:6;30194:14;30187:58;30279:11;30274:2;30266:6;30262:15;30255:36;30176:122;:::o;30304:249::-;30444:34;30440:1;30432:6;30428:14;30421:58;30513:32;30508:2;30500:6;30496:15;30489:57;30410:143;:::o;30559:182::-;30699:34;30695:1;30687:6;30683:14;30676:58;30665:76;:::o;30747:155::-;30887:7;30883:1;30875:6;30871:14;30864:31;30853:49;:::o;30908:182::-;31048:34;31044:1;31036:6;31032:14;31025:58;31014:76;:::o;31096:174::-;31236:26;31232:1;31224:6;31220:14;31213:50;31202:68;:::o;31276:220::-;31416:34;31412:1;31404:6;31400:14;31393:58;31485:3;31480:2;31472:6;31468:15;31461:28;31382:114;:::o;31502:::-;31608:8;:::o;31622:233::-;31762:34;31758:1;31750:6;31746:14;31739:58;31831:16;31826:2;31818:6;31814:15;31807:41;31728:127;:::o;31861:122::-;31934:24;31952:5;31934:24;:::i;:::-;31927:5;31924:35;31914:2;;31973:1;31970;31963:12;31914:2;31904:79;:::o;31989:116::-;32059:21;32074:5;32059:21;:::i;:::-;32052:5;32049:32;32039:2;;32095:1;32092;32085:12;32039:2;32029:76;:::o;32111:120::-;32183:23;32200:5;32183:23;:::i;:::-;32176:5;32173:34;32163:2;;32221:1;32218;32211:12;32163:2;32153:78;:::o;32237:122::-;32310:24;32328:5;32310:24;:::i;:::-;32303:5;32300:35;32290:2;;32349:1;32346;32339:12;32290:2;32280:79;:::o
Swarm Source
ipfs://ae03836ce87f29d113d8e6169ecb7090ff07fc1af41593b0e9fc976aa1f6551b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ 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.