Overview
TokenID
46
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
RoninCats
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-15 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (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 `IERC721.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 v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // 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 v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: RoninCats.sol pragma solidity >=0.7.0 <0.9.0; /** * @dev ERC721 token standard */ /** * @dev Modifier 'onlyOwner' becomes available, where owner is the contract deployer */ contract RoninCats is ERC721Enumerable, Ownable { using Strings for uint256; string baseURI; string public baseExtension = ".json"; uint256 public cost = 0.05 ether; uint256 public maxSupply = 1000; uint256 public maxMintAmount = 2; bool public revealed = false; string public notRevealedUri; bool public preSaleStatus; bool public publicSaleStatus; address public honourToken; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // EVENTS // event TokenMinted(uint tokenId); // MAPPINGS // mapping(address => bool) whitelist; mapping(uint => uint) lastClaimStamp; // tokenId => timestamp. mapping(address => uint) residualDays; // address => number of days worth of unclaimed HONOUR due to ERC721 token transfer // public function mint(uint256 _mintAmount) public payable { require(preSaleStatus || publicSaleStatus, "Minting not live"); require(_mintAmount > 0 && _mintAmount <= maxMintAmount, "Incorrect mint amount"); require(totalSupply() + _mintAmount <= maxSupply, "Minting that many would exceed max supply"); if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount); } if (preSaleStatus) { if (msg.sender != owner()) { require(whitelist[msg.sender], "Not on whitelist"); } } for (uint256 i = 0; i < _mintAmount; i++) { uint tokenId = totalSupply() + 1; _safeMint(msg.sender, tokenId); emit TokenMinted(tokenId); lastClaimStamp[tokenId] = block.timestamp; } } function setLastClaimStamp(uint _tokenId) external { require(msg.sender == honourToken, "Function only callable by HonourToken contract"); lastClaimStamp[_tokenId] = block.timestamp; } function resetResidualDays(address _address) external { require(msg.sender == honourToken, "Function only callable by HonourToken contract"); residualDays[_address] = 0; } function getLastClaimStamp(uint _tokenId) external view returns(uint) { return lastClaimStamp[_tokenId]; } function getResidualDays(address _address) external view returns(uint) { return residualDays[_address]; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function transferFrom(address from, address to, uint256 tokenId) public override { updateRewards(from, tokenId); ERC721.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override { updateRewards(from, tokenId); ERC721.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public override { updateRewards(from, tokenId); ERC721.safeTransferFrom(from, to, tokenId, _data); } function updateRewards(address from, uint256 tokenId) internal { residualDays[from] = ((block.timestamp - lastClaimStamp[tokenId])) / (24*60*60); lastClaimStamp[tokenId] = block.timestamp; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } // internal // function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // ONLY OWNER // function reveal(bool _revealStatus) public onlyOwner { revealed = _revealStatus; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setPreSaleStatus(bool _state) public onlyOwner { publicSaleStatus = false; preSaleStatus = _state; } function setPublicSaleStatus(bool _state) public onlyOwner { preSaleStatus = false; publicSaleStatus = _state; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } function setHonourTokenAddress(address _address) public onlyOwner { honourToken = _address; } /** * @dev Add addresses to whitelist, giving access to the pre sale * @param _addresses - array of address' that tokens will be sent to ["address","address",...] */ function whitelistAddresses(address[] calldata _addresses) external onlyOwner { for (uint i=0; i<_addresses.length; i++) { whitelist[_addresses[i]] = true; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getLastClaimStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getResidualDays","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"honourToken","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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"preSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"resetResidualDays","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealStatus","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setHonourTokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"setLastClaimStamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000386565b5066b1a2bc2ec50000600d556103e8600e556002600f556000601060006101000a81548160ff0219169083151502179055503480156200009057600080fd5b506040516200583c3803806200583c8339818101604052810190620000b69190620004b4565b83838160009080519060200190620000d092919062000386565b508060019080519060200190620000e992919062000386565b5050506200010c620001006200013860201b60201c565b6200014060201b60201c565b6200011d826200020660201b60201c565b6200012e81620002b160201b60201c565b50505050620007a9565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002166200013860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200023c6200035c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000295576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028c90620005c9565b60405180910390fd5b80600b9080519060200190620002ad92919062000386565b5050565b620002c16200013860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e76200035c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033790620005c9565b60405180910390fd5b80601190805190602001906200035892919062000386565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003949062000691565b90600052602060002090601f016020900481019282620003b8576000855562000404565b82601f10620003d357805160ff191683800117855562000404565b8280016001018555821562000404579182015b8281111562000403578251825591602001919060010190620003e6565b5b50905062000413919062000417565b5090565b5b808211156200043257600081600090555060010162000418565b5090565b60006200044d620004478462000614565b620005eb565b9050828152602081018484840111156200046c576200046b62000760565b5b620004798482856200065b565b509392505050565b600082601f8301126200049957620004986200075b565b5b8151620004ab84826020860162000436565b91505092915050565b60008060008060808587031215620004d157620004d06200076a565b5b600085015167ffffffffffffffff811115620004f257620004f162000765565b5b620005008782880162000481565b945050602085015167ffffffffffffffff81111562000524576200052362000765565b5b620005328782880162000481565b935050604085015167ffffffffffffffff81111562000556576200055562000765565b5b620005648782880162000481565b925050606085015167ffffffffffffffff81111562000588576200058762000765565b5b620005968782880162000481565b91505092959194509250565b6000620005b16020836200064a565b9150620005be8262000780565b602082019050919050565b60006020820190508181036000830152620005e481620005a2565b9050919050565b6000620005f76200060a565b9050620006058282620006c7565b919050565b6000604051905090565b600067ffffffffffffffff8211156200063257620006316200072c565b5b6200063d826200076f565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200067b5780820151818401526020810190506200065e565b838111156200068b576000848401525b50505050565b60006002820490506001821680620006aa57607f821691505b60208210811415620006c157620006c0620006fd565b5b50919050565b620006d2826200076f565b810181811067ffffffffffffffff82111715620006f457620006f36200072c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61508380620007b96000396000f3fe6080604052600436106102725760003560e01c80636ac0aec31161014f578063b423fe67116100c1578063d5abeb011161007a578063d5abeb0114610958578063d8aa7f8814610983578063da3ef23f146109ac578063e985e9c5146109d5578063f2c4ce1e14610a12578063f2fde38b14610a3b57610272565b8063b423fe6714610836578063b6c693e51461085f578063b88d4fde1461088a578063c6682862146108b3578063c87b56dd146108de578063d04bc8be1461091b57610272565b80638c900976116101135780638c900976146107495780638da5cb5b14610772578063940cd05b1461079d57806395d89b41146107c6578063a0712d68146107f1578063a22cb4651461080d57610272565b80636ac0aec31461067857806370a08231146106a3578063715018a6146106e05780637d3dc939146106f75780637f00c7a61461072057610272565b80633ccfd60b116101e85780634755b725116101ac5780634755b725146105445780634f6ccce71461058157806351830227146105be57806355f804b3146105e95780635e326b92146106125780636352211e1461063b57610272565b80633ccfd60b1461048057806342842e0e1461048a578063438b6300146104b357806344a0d68a146104f0578063464bd6401461051957610272565b806313faede61161023a57806313faede61461037057806318160ddd1461039b578063239c70ae146103c657806323b872dd146103f15780632bf043041461041a5780632f745c591461044357610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063081c8c441461031c578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613ad8565b610a64565b6040516102ab9190614193565b60405180910390f35b3480156102c057600080fd5b506102c9610ade565b6040516102d691906141ae565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613b7b565b610b70565b604051610313919061410a565b60405180910390f35b34801561032857600080fd5b50610331610bf5565b60405161033e91906141ae565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613a1e565b610c83565b005b34801561037c57600080fd5b50610385610d9b565b60405161039291906144b0565b60405180910390f35b3480156103a757600080fd5b506103b0610da1565b6040516103bd91906144b0565b60405180910390f35b3480156103d257600080fd5b506103db610dae565b6040516103e891906144b0565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190613908565b610db4565b005b34801561042657600080fd5b50610441600480360381019061043c9190613a5e565b610dce565b005b34801561044f57600080fd5b5061046a60048036038101906104659190613a1e565b610eef565b60405161047791906144b0565b60405180910390f35b610488610f94565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613908565b611089565b005b3480156104bf57600080fd5b506104da60048036038101906104d5919061389b565b6110a3565b6040516104e79190614171565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190613b7b565b611151565b005b34801561052557600080fd5b5061052e6111d7565b60405161053b9190614193565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190613b7b565b6111ea565b60405161057891906144b0565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613b7b565b611207565b6040516105b591906144b0565b60405180910390f35b3480156105ca57600080fd5b506105d3611278565b6040516105e09190614193565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b9190613b32565b61128b565b005b34801561061e57600080fd5b5061063960048036038101906106349190613aab565b611321565b005b34801561064757600080fd5b50610662600480360381019061065d9190613b7b565b6113d5565b60405161066f919061410a565b60405180910390f35b34801561068457600080fd5b5061068d611487565b60405161069a919061410a565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c5919061389b565b6114ad565b6040516106d791906144b0565b60405180910390f35b3480156106ec57600080fd5b506106f5611565565b005b34801561070357600080fd5b5061071e60048036038101906107199190613b7b565b6115ed565b005b34801561072c57600080fd5b5061074760048036038101906107429190613b7b565b611698565b005b34801561075557600080fd5b50610770600480360381019061076b919061389b565b61171e565b005b34801561077e57600080fd5b506107876117de565b604051610794919061410a565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613aab565b611808565b005b3480156107d257600080fd5b506107db6118a1565b6040516107e891906141ae565b60405180910390f35b61080b60048036038101906108069190613b7b565b611933565b005b34801561081957600080fd5b50610834600480360381019061082f91906139de565b611c07565b005b34801561084257600080fd5b5061085d60048036038101906108589190613aab565b611c1d565b005b34801561086b57600080fd5b50610874611cd1565b6040516108819190614193565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac919061395b565b611ce4565b005b3480156108bf57600080fd5b506108c8611d00565b6040516108d591906141ae565b60405180910390f35b3480156108ea57600080fd5b5061090560048036038101906109009190613b7b565b611d8e565b60405161091291906141ae565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d919061389b565b611ee7565b60405161094f91906144b0565b60405180910390f35b34801561096457600080fd5b5061096d611f30565b60405161097a91906144b0565b60405180910390f35b34801561098f57600080fd5b506109aa60048036038101906109a5919061389b565b611f36565b005b3480156109b857600080fd5b506109d360048036038101906109ce9190613b32565b61200e565b005b3480156109e157600080fd5b506109fc60048036038101906109f791906138c8565b6120a4565b604051610a099190614193565b60405180910390f35b348015610a1e57600080fd5b50610a396004803603810190610a349190613b32565b612138565b005b348015610a4757600080fd5b50610a626004803603810190610a5d919061389b565b6121ce565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad75750610ad6826122c6565b5b9050919050565b606060008054610aed906147b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b19906147b9565b8015610b665780601f10610b3b57610100808354040283529160200191610b66565b820191906000526020600020905b815481529060010190602001808311610b4957829003601f168201915b5050505050905090565b6000610b7b826123a8565b610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb1906143b0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610c02906147b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2e906147b9565b8015610c7b5780601f10610c5057610100808354040283529160200191610c7b565b820191906000526020600020905b815481529060010190602001808311610c5e57829003601f168201915b505050505081565b6000610c8e826113d5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf690614430565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1e612414565b73ffffffffffffffffffffffffffffffffffffffff161480610d4d5750610d4c81610d47612414565b6120a4565b5b610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390614330565b60405180910390fd5b610d96838361241c565b505050565b600d5481565b6000600880549050905090565b600f5481565b610dbe83826124d5565b610dc9838383612561565b505050565b610dd6612414565b73ffffffffffffffffffffffffffffffffffffffff16610df46117de565b73ffffffffffffffffffffffffffffffffffffffff1614610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e41906143d0565b60405180910390fd5b60005b82829050811015610eea57600160136000858585818110610e7157610e70614952565b5b9050602002016020810190610e86919061389b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ee29061481c565b915050610e4d565b505050565b6000610efa836114ad565b8210610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f32906141f0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f9c612414565b73ffffffffffffffffffffffffffffffffffffffff16610fba6117de565b73ffffffffffffffffffffffffffffffffffffffff1614611010576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611007906143d0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611036906140f5565b60006040518083038185875af1925050503d8060008114611073576040519150601f19603f3d011682016040523d82523d6000602084013e611078565b606091505b505090508061108657600080fd5b50565b61109383826124d5565b61109e838383612561565b505050565b606060006110b0836114ad565b905060008167ffffffffffffffff8111156110ce576110cd614981565b5b6040519080825280602002602001820160405280156110fc5781602001602082028036833780820191505090505b50905060005b82811015611146576111148582610eef565b82828151811061112757611126614952565b5b602002602001018181525050808061113e9061481c565b915050611102565b508092505050919050565b611159612414565b73ffffffffffffffffffffffffffffffffffffffff166111776117de565b73ffffffffffffffffffffffffffffffffffffffff16146111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c4906143d0565b60405180910390fd5b80600d8190555050565b601260009054906101000a900460ff1681565b600060146000838152602001908152602001600020549050919050565b6000611211610da1565b8210611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990614470565b60405180910390fd5b6008828154811061126657611265614952565b5b90600052602060002001549050919050565b601060009054906101000a900460ff1681565b611293612414565b73ffffffffffffffffffffffffffffffffffffffff166112b16117de565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe906143d0565b60405180910390fd5b80600b908051906020019061131d929190613659565b5050565b611329612414565b73ffffffffffffffffffffffffffffffffffffffff166113476117de565b73ffffffffffffffffffffffffffffffffffffffff161461139d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611394906143d0565b60405180910390fd5b6000601260016101000a81548160ff02191690831515021790555080601260006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590614370565b60405180910390fd5b80915050919050565b601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151590614350565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61156d612414565b73ffffffffffffffffffffffffffffffffffffffff1661158b6117de565b73ffffffffffffffffffffffffffffffffffffffff16146115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d8906143d0565b60405180910390fd5b6115eb60006125c1565b565b601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461167d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167490614290565b60405180910390fd5b42601460008381526020019081526020016000208190555050565b6116a0612414565b73ffffffffffffffffffffffffffffffffffffffff166116be6117de565b73ffffffffffffffffffffffffffffffffffffffff1614611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b906143d0565b60405180910390fd5b80600f8190555050565b611726612414565b73ffffffffffffffffffffffffffffffffffffffff166117446117de565b73ffffffffffffffffffffffffffffffffffffffff161461179a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611791906143d0565b60405180910390fd5b80601260026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611810612414565b73ffffffffffffffffffffffffffffffffffffffff1661182e6117de565b73ffffffffffffffffffffffffffffffffffffffff1614611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b906143d0565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600180546118b0906147b9565b80601f01602080910402602001604051908101604052809291908181526020018280546118dc906147b9565b80156119295780601f106118fe57610100808354040283529160200191611929565b820191906000526020600020905b81548152906001019060200180831161190c57829003601f168201915b5050505050905090565b601260009054906101000a900460ff168061195a5750601260019054906101000a900460ff165b611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090614310565b60405180910390fd5b6000811180156119ab5750600f548111155b6119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e190614490565b60405180910390fd5b600e54816119f6610da1565b611a0091906145ee565b1115611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3890614270565b60405180910390fd5b611a496117de565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a965780600d54611a899190614675565b341015611a9557600080fd5b5b601260009054906101000a900460ff1615611b7357611ab36117de565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b7257601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b68906141d0565b60405180910390fd5b5b5b60005b81811015611c035760006001611b8a610da1565b611b9491906145ee565b9050611ba03382612687565b7ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e81604051611bcf91906144b0565b60405180910390a1426014600083815260200190815260200160002081905550508080611bfb9061481c565b915050611b76565b5050565b611c19611c12612414565b83836126a5565b5050565b611c25612414565b73ffffffffffffffffffffffffffffffffffffffff16611c436117de565b73ffffffffffffffffffffffffffffffffffffffff1614611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c90906143d0565b60405180910390fd5b6000601260006101000a81548160ff02191690831515021790555080601260016101000a81548160ff02191690831515021790555050565b601260019054906101000a900460ff1681565b611cee84836124d5565b611cfa84848484612812565b50505050565b600c8054611d0d906147b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611d39906147b9565b8015611d865780601f10611d5b57610100808354040283529160200191611d86565b820191906000526020600020905b815481529060010190602001808311611d6957829003601f168201915b505050505081565b6060611d99826123a8565b611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90614410565b60405180910390fd5b60001515601060009054906101000a900460ff1615151415611e865760118054611e01906147b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2d906147b9565b8015611e7a5780601f10611e4f57610100808354040283529160200191611e7a565b820191906000526020600020905b815481529060010190602001808311611e5d57829003601f168201915b50505050509050611ee2565b6000611e90612874565b90506000815111611eb05760405180602001604052806000815250611ede565b80611eba84612906565b600c604051602001611ece939291906140c4565b6040516020818303038152906040525b9150505b919050565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e5481565b601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90614290565b60405180910390fd5b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b612016612414565b73ffffffffffffffffffffffffffffffffffffffff166120346117de565b73ffffffffffffffffffffffffffffffffffffffff161461208a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612081906143d0565b60405180910390fd5b80600c90805190602001906120a0929190613659565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612140612414565b73ffffffffffffffffffffffffffffffffffffffff1661215e6117de565b73ffffffffffffffffffffffffffffffffffffffff16146121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab906143d0565b60405180910390fd5b80601190805190602001906121ca929190613659565b5050565b6121d6612414565b73ffffffffffffffffffffffffffffffffffffffff166121f46117de565b73ffffffffffffffffffffffffffffffffffffffff161461224a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612241906143d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b190614230565b60405180910390fd5b6122c3816125c1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061239157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123a157506123a082612a67565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661248f836113d5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b620151806014600083815260200190815260200160002054426124f891906146cf565b6125029190614644565b601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055504260146000838152602001908152602001600020819055505050565b61257261256c612414565b82612ad1565b6125b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a890614450565b60405180910390fd5b6125bc838383612baf565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126a1828260405180602001604052806000815250612e0b565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270b906142d0565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128059190614193565b60405180910390a3505050565b61282361281d612414565b83612ad1565b612862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285990614450565b60405180910390fd5b61286e84848484612e66565b50505050565b6060600b8054612883906147b9565b80601f01602080910402602001604051908101604052809291908181526020018280546128af906147b9565b80156128fc5780601f106128d1576101008083540402835291602001916128fc565b820191906000526020600020905b8154815290600101906020018083116128df57829003601f168201915b5050505050905090565b6060600082141561294e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a62565b600082905060005b600082146129805780806129699061481c565b915050600a826129799190614644565b9150612956565b60008167ffffffffffffffff81111561299c5761299b614981565b5b6040519080825280601f01601f1916602001820160405280156129ce5781602001600182028036833780820191505090505b5090505b60008514612a5b576001826129e791906146cf565b9150600a856129f69190614865565b6030612a0291906145ee565b60f81b818381518110612a1857612a17614952565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a549190614644565b94506129d2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612adc826123a8565b612b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b12906142f0565b60405180910390fd5b6000612b26836113d5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b9557508373ffffffffffffffffffffffffffffffffffffffff16612b7d84610b70565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ba65750612ba581856120a4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612bcf826113d5565b73ffffffffffffffffffffffffffffffffffffffff1614612c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1c906143f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c906142b0565b60405180910390fd5b612ca0838383612ec2565b612cab60008261241c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cfb91906146cf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d5291906145ee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612e158383612fd6565b612e2260008484846131a4565b612e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5890614210565b60405180910390fd5b505050565b612e71848484612baf565b612e7d848484846131a4565b612ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb390614210565b60405180910390fd5b50505050565b612ecd83838361333b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f1057612f0b81613340565b612f4f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f4e57612f4d8382613389565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f9257612f8d816134f6565b612fd1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612fd057612fcf82826135c7565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303d90614390565b60405180910390fd5b61304f816123a8565b1561308f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308690614250565b60405180910390fd5b61309b60008383612ec2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130eb91906145ee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006131c58473ffffffffffffffffffffffffffffffffffffffff16613646565b1561332e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131ee612414565b8786866040518563ffffffff1660e01b81526004016132109493929190614125565b602060405180830381600087803b15801561322a57600080fd5b505af192505050801561325b57506040513d601f19601f820116820180604052508101906132589190613b05565b60015b6132de573d806000811461328b576040519150601f19603f3d011682016040523d82523d6000602084013e613290565b606091505b506000815114156132d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cd90614210565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613333565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613396846114ad565b6133a091906146cf565b9050600060076000848152602001908152602001600020549050818114613485576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061350a91906146cf565b905060006009600084815260200190815260200160002054905060006008838154811061353a57613539614952565b5b90600052602060002001549050806008838154811061355c5761355b614952565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806135ab576135aa614923565b5b6001900381819060005260206000200160009055905550505050565b60006135d2836114ad565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054613665906147b9565b90600052602060002090601f01602090048101928261368757600085556136ce565b82601f106136a057805160ff19168380011785556136ce565b828001600101855582156136ce579182015b828111156136cd5782518255916020019190600101906136b2565b5b5090506136db91906136df565b5090565b5b808211156136f85760008160009055506001016136e0565b5090565b600061370f61370a846144f0565b6144cb565b90508281526020810184848401111561372b5761372a6149bf565b5b613736848285614777565b509392505050565b600061375161374c84614521565b6144cb565b90508281526020810184848401111561376d5761376c6149bf565b5b613778848285614777565b509392505050565b60008135905061378f81614ff1565b92915050565b60008083601f8401126137ab576137aa6149b5565b5b8235905067ffffffffffffffff8111156137c8576137c76149b0565b5b6020830191508360208202830111156137e4576137e36149ba565b5b9250929050565b6000813590506137fa81615008565b92915050565b60008135905061380f8161501f565b92915050565b6000815190506138248161501f565b92915050565b600082601f83011261383f5761383e6149b5565b5b813561384f8482602086016136fc565b91505092915050565b600082601f83011261386d5761386c6149b5565b5b813561387d84826020860161373e565b91505092915050565b60008135905061389581615036565b92915050565b6000602082840312156138b1576138b06149c9565b5b60006138bf84828501613780565b91505092915050565b600080604083850312156138df576138de6149c9565b5b60006138ed85828601613780565b92505060206138fe85828601613780565b9150509250929050565b600080600060608486031215613921576139206149c9565b5b600061392f86828701613780565b935050602061394086828701613780565b925050604061395186828701613886565b9150509250925092565b60008060008060808587031215613975576139746149c9565b5b600061398387828801613780565b945050602061399487828801613780565b93505060406139a587828801613886565b925050606085013567ffffffffffffffff8111156139c6576139c56149c4565b5b6139d28782880161382a565b91505092959194509250565b600080604083850312156139f5576139f46149c9565b5b6000613a0385828601613780565b9250506020613a14858286016137eb565b9150509250929050565b60008060408385031215613a3557613a346149c9565b5b6000613a4385828601613780565b9250506020613a5485828601613886565b9150509250929050565b60008060208385031215613a7557613a746149c9565b5b600083013567ffffffffffffffff811115613a9357613a926149c4565b5b613a9f85828601613795565b92509250509250929050565b600060208284031215613ac157613ac06149c9565b5b6000613acf848285016137eb565b91505092915050565b600060208284031215613aee57613aed6149c9565b5b6000613afc84828501613800565b91505092915050565b600060208284031215613b1b57613b1a6149c9565b5b6000613b2984828501613815565b91505092915050565b600060208284031215613b4857613b476149c9565b5b600082013567ffffffffffffffff811115613b6657613b656149c4565b5b613b7284828501613858565b91505092915050565b600060208284031215613b9157613b906149c9565b5b6000613b9f84828501613886565b91505092915050565b6000613bb483836140a6565b60208301905092915050565b613bc981614703565b82525050565b6000613bda82614577565b613be481856145a5565b9350613bef83614552565b8060005b83811015613c20578151613c078882613ba8565b9750613c1283614598565b925050600181019050613bf3565b5085935050505092915050565b613c3681614715565b82525050565b6000613c4782614582565b613c5181856145b6565b9350613c61818560208601614786565b613c6a816149ce565b840191505092915050565b6000613c808261458d565b613c8a81856145d2565b9350613c9a818560208601614786565b613ca3816149ce565b840191505092915050565b6000613cb98261458d565b613cc381856145e3565b9350613cd3818560208601614786565b80840191505092915050565b60008154613cec816147b9565b613cf681866145e3565b94506001821660008114613d115760018114613d2257613d55565b60ff19831686528186019350613d55565b613d2b85614562565b60005b83811015613d4d57815481890152600182019150602081019050613d2e565b838801955050505b50505092915050565b6000613d6b6010836145d2565b9150613d76826149df565b602082019050919050565b6000613d8e602b836145d2565b9150613d9982614a08565b604082019050919050565b6000613db16032836145d2565b9150613dbc82614a57565b604082019050919050565b6000613dd46026836145d2565b9150613ddf82614aa6565b604082019050919050565b6000613df7601c836145d2565b9150613e0282614af5565b602082019050919050565b6000613e1a6029836145d2565b9150613e2582614b1e565b604082019050919050565b6000613e3d602e836145d2565b9150613e4882614b6d565b604082019050919050565b6000613e606024836145d2565b9150613e6b82614bbc565b604082019050919050565b6000613e836019836145d2565b9150613e8e82614c0b565b602082019050919050565b6000613ea6602c836145d2565b9150613eb182614c34565b604082019050919050565b6000613ec96010836145d2565b9150613ed482614c83565b602082019050919050565b6000613eec6038836145d2565b9150613ef782614cac565b604082019050919050565b6000613f0f602a836145d2565b9150613f1a82614cfb565b604082019050919050565b6000613f326029836145d2565b9150613f3d82614d4a565b604082019050919050565b6000613f556020836145d2565b9150613f6082614d99565b602082019050919050565b6000613f78602c836145d2565b9150613f8382614dc2565b604082019050919050565b6000613f9b6020836145d2565b9150613fa682614e11565b602082019050919050565b6000613fbe6029836145d2565b9150613fc982614e3a565b604082019050919050565b6000613fe1602f836145d2565b9150613fec82614e89565b604082019050919050565b60006140046021836145d2565b915061400f82614ed8565b604082019050919050565b60006140276000836145c7565b915061403282614f27565b600082019050919050565b600061404a6031836145d2565b915061405582614f2a565b604082019050919050565b600061406d602c836145d2565b915061407882614f79565b604082019050919050565b60006140906015836145d2565b915061409b82614fc8565b602082019050919050565b6140af8161476d565b82525050565b6140be8161476d565b82525050565b60006140d08286613cae565b91506140dc8285613cae565b91506140e88284613cdf565b9150819050949350505050565b60006141008261401a565b9150819050919050565b600060208201905061411f6000830184613bc0565b92915050565b600060808201905061413a6000830187613bc0565b6141476020830186613bc0565b61415460408301856140b5565b81810360608301526141668184613c3c565b905095945050505050565b6000602082019050818103600083015261418b8184613bcf565b905092915050565b60006020820190506141a86000830184613c2d565b92915050565b600060208201905081810360008301526141c88184613c75565b905092915050565b600060208201905081810360008301526141e981613d5e565b9050919050565b6000602082019050818103600083015261420981613d81565b9050919050565b6000602082019050818103600083015261422981613da4565b9050919050565b6000602082019050818103600083015261424981613dc7565b9050919050565b6000602082019050818103600083015261426981613dea565b9050919050565b6000602082019050818103600083015261428981613e0d565b9050919050565b600060208201905081810360008301526142a981613e30565b9050919050565b600060208201905081810360008301526142c981613e53565b9050919050565b600060208201905081810360008301526142e981613e76565b9050919050565b6000602082019050818103600083015261430981613e99565b9050919050565b6000602082019050818103600083015261432981613ebc565b9050919050565b6000602082019050818103600083015261434981613edf565b9050919050565b6000602082019050818103600083015261436981613f02565b9050919050565b6000602082019050818103600083015261438981613f25565b9050919050565b600060208201905081810360008301526143a981613f48565b9050919050565b600060208201905081810360008301526143c981613f6b565b9050919050565b600060208201905081810360008301526143e981613f8e565b9050919050565b6000602082019050818103600083015261440981613fb1565b9050919050565b6000602082019050818103600083015261442981613fd4565b9050919050565b6000602082019050818103600083015261444981613ff7565b9050919050565b600060208201905081810360008301526144698161403d565b9050919050565b6000602082019050818103600083015261448981614060565b9050919050565b600060208201905081810360008301526144a981614083565b9050919050565b60006020820190506144c560008301846140b5565b92915050565b60006144d56144e6565b90506144e182826147eb565b919050565b6000604051905090565b600067ffffffffffffffff82111561450b5761450a614981565b5b614514826149ce565b9050602081019050919050565b600067ffffffffffffffff82111561453c5761453b614981565b5b614545826149ce565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006145f98261476d565b91506146048361476d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561463957614638614896565b5b828201905092915050565b600061464f8261476d565b915061465a8361476d565b92508261466a576146696148c5565b5b828204905092915050565b60006146808261476d565b915061468b8361476d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146c4576146c3614896565b5b828202905092915050565b60006146da8261476d565b91506146e58361476d565b9250828210156146f8576146f7614896565b5b828203905092915050565b600061470e8261474d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156147a4578082015181840152602081019050614789565b838111156147b3576000848401525b50505050565b600060028204905060018216806147d157607f821691505b602082108114156147e5576147e46148f4565b5b50919050565b6147f4826149ce565b810181811067ffffffffffffffff8211171561481357614812614981565b5b80604052505050565b60006148278261476d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561485a57614859614896565b5b600182019050919050565b60006148708261476d565b915061487b8361476d565b92508261488b5761488a6148c5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f74206f6e2077686974656c69737400000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74696e672074686174206d616e7920776f756c6420657863656564206d60008201527f617820737570706c790000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e206f6e6c792063616c6c61626c6520627920486f6e6f757260008201527f546f6b656e20636f6e7472616374000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206e6f74206c69766500000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e636f7272656374206d696e7420616d6f756e740000000000000000000000600082015250565b614ffa81614703565b811461500557600080fd5b50565b61501181614715565b811461501c57600080fd5b50565b61502881614721565b811461503357600080fd5b50565b61503f8161476d565b811461504a57600080fd5b5056fea2646970667358221220e46cb8c4ba9cc38c381229ea5f073dfdb31f149145165adaabab526539b158d364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a526f6e696e204361747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000252430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5673367a5543777066765142533375617264584e6434486961574a514b4d44704e42354e3534796b317341752f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d52373652737772373637683953627854553551476334716e6a63363147584b3279676f734c733362383347652f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102725760003560e01c80636ac0aec31161014f578063b423fe67116100c1578063d5abeb011161007a578063d5abeb0114610958578063d8aa7f8814610983578063da3ef23f146109ac578063e985e9c5146109d5578063f2c4ce1e14610a12578063f2fde38b14610a3b57610272565b8063b423fe6714610836578063b6c693e51461085f578063b88d4fde1461088a578063c6682862146108b3578063c87b56dd146108de578063d04bc8be1461091b57610272565b80638c900976116101135780638c900976146107495780638da5cb5b14610772578063940cd05b1461079d57806395d89b41146107c6578063a0712d68146107f1578063a22cb4651461080d57610272565b80636ac0aec31461067857806370a08231146106a3578063715018a6146106e05780637d3dc939146106f75780637f00c7a61461072057610272565b80633ccfd60b116101e85780634755b725116101ac5780634755b725146105445780634f6ccce71461058157806351830227146105be57806355f804b3146105e95780635e326b92146106125780636352211e1461063b57610272565b80633ccfd60b1461048057806342842e0e1461048a578063438b6300146104b357806344a0d68a146104f0578063464bd6401461051957610272565b806313faede61161023a57806313faede61461037057806318160ddd1461039b578063239c70ae146103c657806323b872dd146103f15780632bf043041461041a5780632f745c591461044357610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063081c8c441461031c578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613ad8565b610a64565b6040516102ab9190614193565b60405180910390f35b3480156102c057600080fd5b506102c9610ade565b6040516102d691906141ae565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613b7b565b610b70565b604051610313919061410a565b60405180910390f35b34801561032857600080fd5b50610331610bf5565b60405161033e91906141ae565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613a1e565b610c83565b005b34801561037c57600080fd5b50610385610d9b565b60405161039291906144b0565b60405180910390f35b3480156103a757600080fd5b506103b0610da1565b6040516103bd91906144b0565b60405180910390f35b3480156103d257600080fd5b506103db610dae565b6040516103e891906144b0565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190613908565b610db4565b005b34801561042657600080fd5b50610441600480360381019061043c9190613a5e565b610dce565b005b34801561044f57600080fd5b5061046a60048036038101906104659190613a1e565b610eef565b60405161047791906144b0565b60405180910390f35b610488610f94565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613908565b611089565b005b3480156104bf57600080fd5b506104da60048036038101906104d5919061389b565b6110a3565b6040516104e79190614171565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190613b7b565b611151565b005b34801561052557600080fd5b5061052e6111d7565b60405161053b9190614193565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190613b7b565b6111ea565b60405161057891906144b0565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613b7b565b611207565b6040516105b591906144b0565b60405180910390f35b3480156105ca57600080fd5b506105d3611278565b6040516105e09190614193565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b9190613b32565b61128b565b005b34801561061e57600080fd5b5061063960048036038101906106349190613aab565b611321565b005b34801561064757600080fd5b50610662600480360381019061065d9190613b7b565b6113d5565b60405161066f919061410a565b60405180910390f35b34801561068457600080fd5b5061068d611487565b60405161069a919061410a565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c5919061389b565b6114ad565b6040516106d791906144b0565b60405180910390f35b3480156106ec57600080fd5b506106f5611565565b005b34801561070357600080fd5b5061071e60048036038101906107199190613b7b565b6115ed565b005b34801561072c57600080fd5b5061074760048036038101906107429190613b7b565b611698565b005b34801561075557600080fd5b50610770600480360381019061076b919061389b565b61171e565b005b34801561077e57600080fd5b506107876117de565b604051610794919061410a565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613aab565b611808565b005b3480156107d257600080fd5b506107db6118a1565b6040516107e891906141ae565b60405180910390f35b61080b60048036038101906108069190613b7b565b611933565b005b34801561081957600080fd5b50610834600480360381019061082f91906139de565b611c07565b005b34801561084257600080fd5b5061085d60048036038101906108589190613aab565b611c1d565b005b34801561086b57600080fd5b50610874611cd1565b6040516108819190614193565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac919061395b565b611ce4565b005b3480156108bf57600080fd5b506108c8611d00565b6040516108d591906141ae565b60405180910390f35b3480156108ea57600080fd5b5061090560048036038101906109009190613b7b565b611d8e565b60405161091291906141ae565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d919061389b565b611ee7565b60405161094f91906144b0565b60405180910390f35b34801561096457600080fd5b5061096d611f30565b60405161097a91906144b0565b60405180910390f35b34801561098f57600080fd5b506109aa60048036038101906109a5919061389b565b611f36565b005b3480156109b857600080fd5b506109d360048036038101906109ce9190613b32565b61200e565b005b3480156109e157600080fd5b506109fc60048036038101906109f791906138c8565b6120a4565b604051610a099190614193565b60405180910390f35b348015610a1e57600080fd5b50610a396004803603810190610a349190613b32565b612138565b005b348015610a4757600080fd5b50610a626004803603810190610a5d919061389b565b6121ce565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad75750610ad6826122c6565b5b9050919050565b606060008054610aed906147b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b19906147b9565b8015610b665780601f10610b3b57610100808354040283529160200191610b66565b820191906000526020600020905b815481529060010190602001808311610b4957829003601f168201915b5050505050905090565b6000610b7b826123a8565b610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb1906143b0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610c02906147b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2e906147b9565b8015610c7b5780601f10610c5057610100808354040283529160200191610c7b565b820191906000526020600020905b815481529060010190602001808311610c5e57829003601f168201915b505050505081565b6000610c8e826113d5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf690614430565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1e612414565b73ffffffffffffffffffffffffffffffffffffffff161480610d4d5750610d4c81610d47612414565b6120a4565b5b610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390614330565b60405180910390fd5b610d96838361241c565b505050565b600d5481565b6000600880549050905090565b600f5481565b610dbe83826124d5565b610dc9838383612561565b505050565b610dd6612414565b73ffffffffffffffffffffffffffffffffffffffff16610df46117de565b73ffffffffffffffffffffffffffffffffffffffff1614610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e41906143d0565b60405180910390fd5b60005b82829050811015610eea57600160136000858585818110610e7157610e70614952565b5b9050602002016020810190610e86919061389b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ee29061481c565b915050610e4d565b505050565b6000610efa836114ad565b8210610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f32906141f0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f9c612414565b73ffffffffffffffffffffffffffffffffffffffff16610fba6117de565b73ffffffffffffffffffffffffffffffffffffffff1614611010576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611007906143d0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611036906140f5565b60006040518083038185875af1925050503d8060008114611073576040519150601f19603f3d011682016040523d82523d6000602084013e611078565b606091505b505090508061108657600080fd5b50565b61109383826124d5565b61109e838383612561565b505050565b606060006110b0836114ad565b905060008167ffffffffffffffff8111156110ce576110cd614981565b5b6040519080825280602002602001820160405280156110fc5781602001602082028036833780820191505090505b50905060005b82811015611146576111148582610eef565b82828151811061112757611126614952565b5b602002602001018181525050808061113e9061481c565b915050611102565b508092505050919050565b611159612414565b73ffffffffffffffffffffffffffffffffffffffff166111776117de565b73ffffffffffffffffffffffffffffffffffffffff16146111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c4906143d0565b60405180910390fd5b80600d8190555050565b601260009054906101000a900460ff1681565b600060146000838152602001908152602001600020549050919050565b6000611211610da1565b8210611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990614470565b60405180910390fd5b6008828154811061126657611265614952565b5b90600052602060002001549050919050565b601060009054906101000a900460ff1681565b611293612414565b73ffffffffffffffffffffffffffffffffffffffff166112b16117de565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe906143d0565b60405180910390fd5b80600b908051906020019061131d929190613659565b5050565b611329612414565b73ffffffffffffffffffffffffffffffffffffffff166113476117de565b73ffffffffffffffffffffffffffffffffffffffff161461139d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611394906143d0565b60405180910390fd5b6000601260016101000a81548160ff02191690831515021790555080601260006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590614370565b60405180910390fd5b80915050919050565b601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151590614350565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61156d612414565b73ffffffffffffffffffffffffffffffffffffffff1661158b6117de565b73ffffffffffffffffffffffffffffffffffffffff16146115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d8906143d0565b60405180910390fd5b6115eb60006125c1565b565b601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461167d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167490614290565b60405180910390fd5b42601460008381526020019081526020016000208190555050565b6116a0612414565b73ffffffffffffffffffffffffffffffffffffffff166116be6117de565b73ffffffffffffffffffffffffffffffffffffffff1614611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b906143d0565b60405180910390fd5b80600f8190555050565b611726612414565b73ffffffffffffffffffffffffffffffffffffffff166117446117de565b73ffffffffffffffffffffffffffffffffffffffff161461179a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611791906143d0565b60405180910390fd5b80601260026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611810612414565b73ffffffffffffffffffffffffffffffffffffffff1661182e6117de565b73ffffffffffffffffffffffffffffffffffffffff1614611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b906143d0565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600180546118b0906147b9565b80601f01602080910402602001604051908101604052809291908181526020018280546118dc906147b9565b80156119295780601f106118fe57610100808354040283529160200191611929565b820191906000526020600020905b81548152906001019060200180831161190c57829003601f168201915b5050505050905090565b601260009054906101000a900460ff168061195a5750601260019054906101000a900460ff165b611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090614310565b60405180910390fd5b6000811180156119ab5750600f548111155b6119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e190614490565b60405180910390fd5b600e54816119f6610da1565b611a0091906145ee565b1115611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3890614270565b60405180910390fd5b611a496117de565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a965780600d54611a899190614675565b341015611a9557600080fd5b5b601260009054906101000a900460ff1615611b7357611ab36117de565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b7257601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b68906141d0565b60405180910390fd5b5b5b60005b81811015611c035760006001611b8a610da1565b611b9491906145ee565b9050611ba03382612687565b7ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e81604051611bcf91906144b0565b60405180910390a1426014600083815260200190815260200160002081905550508080611bfb9061481c565b915050611b76565b5050565b611c19611c12612414565b83836126a5565b5050565b611c25612414565b73ffffffffffffffffffffffffffffffffffffffff16611c436117de565b73ffffffffffffffffffffffffffffffffffffffff1614611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c90906143d0565b60405180910390fd5b6000601260006101000a81548160ff02191690831515021790555080601260016101000a81548160ff02191690831515021790555050565b601260019054906101000a900460ff1681565b611cee84836124d5565b611cfa84848484612812565b50505050565b600c8054611d0d906147b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611d39906147b9565b8015611d865780601f10611d5b57610100808354040283529160200191611d86565b820191906000526020600020905b815481529060010190602001808311611d6957829003601f168201915b505050505081565b6060611d99826123a8565b611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90614410565b60405180910390fd5b60001515601060009054906101000a900460ff1615151415611e865760118054611e01906147b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2d906147b9565b8015611e7a5780601f10611e4f57610100808354040283529160200191611e7a565b820191906000526020600020905b815481529060010190602001808311611e5d57829003601f168201915b50505050509050611ee2565b6000611e90612874565b90506000815111611eb05760405180602001604052806000815250611ede565b80611eba84612906565b600c604051602001611ece939291906140c4565b6040516020818303038152906040525b9150505b919050565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e5481565b601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90614290565b60405180910390fd5b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b612016612414565b73ffffffffffffffffffffffffffffffffffffffff166120346117de565b73ffffffffffffffffffffffffffffffffffffffff161461208a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612081906143d0565b60405180910390fd5b80600c90805190602001906120a0929190613659565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612140612414565b73ffffffffffffffffffffffffffffffffffffffff1661215e6117de565b73ffffffffffffffffffffffffffffffffffffffff16146121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab906143d0565b60405180910390fd5b80601190805190602001906121ca929190613659565b5050565b6121d6612414565b73ffffffffffffffffffffffffffffffffffffffff166121f46117de565b73ffffffffffffffffffffffffffffffffffffffff161461224a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612241906143d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b190614230565b60405180910390fd5b6122c3816125c1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061239157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123a157506123a082612a67565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661248f836113d5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b620151806014600083815260200190815260200160002054426124f891906146cf565b6125029190614644565b601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055504260146000838152602001908152602001600020819055505050565b61257261256c612414565b82612ad1565b6125b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a890614450565b60405180910390fd5b6125bc838383612baf565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126a1828260405180602001604052806000815250612e0b565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270b906142d0565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128059190614193565b60405180910390a3505050565b61282361281d612414565b83612ad1565b612862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285990614450565b60405180910390fd5b61286e84848484612e66565b50505050565b6060600b8054612883906147b9565b80601f01602080910402602001604051908101604052809291908181526020018280546128af906147b9565b80156128fc5780601f106128d1576101008083540402835291602001916128fc565b820191906000526020600020905b8154815290600101906020018083116128df57829003601f168201915b5050505050905090565b6060600082141561294e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a62565b600082905060005b600082146129805780806129699061481c565b915050600a826129799190614644565b9150612956565b60008167ffffffffffffffff81111561299c5761299b614981565b5b6040519080825280601f01601f1916602001820160405280156129ce5781602001600182028036833780820191505090505b5090505b60008514612a5b576001826129e791906146cf565b9150600a856129f69190614865565b6030612a0291906145ee565b60f81b818381518110612a1857612a17614952565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a549190614644565b94506129d2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612adc826123a8565b612b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b12906142f0565b60405180910390fd5b6000612b26836113d5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b9557508373ffffffffffffffffffffffffffffffffffffffff16612b7d84610b70565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ba65750612ba581856120a4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612bcf826113d5565b73ffffffffffffffffffffffffffffffffffffffff1614612c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1c906143f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c906142b0565b60405180910390fd5b612ca0838383612ec2565b612cab60008261241c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cfb91906146cf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d5291906145ee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612e158383612fd6565b612e2260008484846131a4565b612e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5890614210565b60405180910390fd5b505050565b612e71848484612baf565b612e7d848484846131a4565b612ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb390614210565b60405180910390fd5b50505050565b612ecd83838361333b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f1057612f0b81613340565b612f4f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f4e57612f4d8382613389565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f9257612f8d816134f6565b612fd1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612fd057612fcf82826135c7565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303d90614390565b60405180910390fd5b61304f816123a8565b1561308f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308690614250565b60405180910390fd5b61309b60008383612ec2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130eb91906145ee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006131c58473ffffffffffffffffffffffffffffffffffffffff16613646565b1561332e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131ee612414565b8786866040518563ffffffff1660e01b81526004016132109493929190614125565b602060405180830381600087803b15801561322a57600080fd5b505af192505050801561325b57506040513d601f19601f820116820180604052508101906132589190613b05565b60015b6132de573d806000811461328b576040519150601f19603f3d011682016040523d82523d6000602084013e613290565b606091505b506000815114156132d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cd90614210565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613333565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613396846114ad565b6133a091906146cf565b9050600060076000848152602001908152602001600020549050818114613485576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061350a91906146cf565b905060006009600084815260200190815260200160002054905060006008838154811061353a57613539614952565b5b90600052602060002001549050806008838154811061355c5761355b614952565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806135ab576135aa614923565b5b6001900381819060005260206000200160009055905550505050565b60006135d2836114ad565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054613665906147b9565b90600052602060002090601f01602090048101928261368757600085556136ce565b82601f106136a057805160ff19168380011785556136ce565b828001600101855582156136ce579182015b828111156136cd5782518255916020019190600101906136b2565b5b5090506136db91906136df565b5090565b5b808211156136f85760008160009055506001016136e0565b5090565b600061370f61370a846144f0565b6144cb565b90508281526020810184848401111561372b5761372a6149bf565b5b613736848285614777565b509392505050565b600061375161374c84614521565b6144cb565b90508281526020810184848401111561376d5761376c6149bf565b5b613778848285614777565b509392505050565b60008135905061378f81614ff1565b92915050565b60008083601f8401126137ab576137aa6149b5565b5b8235905067ffffffffffffffff8111156137c8576137c76149b0565b5b6020830191508360208202830111156137e4576137e36149ba565b5b9250929050565b6000813590506137fa81615008565b92915050565b60008135905061380f8161501f565b92915050565b6000815190506138248161501f565b92915050565b600082601f83011261383f5761383e6149b5565b5b813561384f8482602086016136fc565b91505092915050565b600082601f83011261386d5761386c6149b5565b5b813561387d84826020860161373e565b91505092915050565b60008135905061389581615036565b92915050565b6000602082840312156138b1576138b06149c9565b5b60006138bf84828501613780565b91505092915050565b600080604083850312156138df576138de6149c9565b5b60006138ed85828601613780565b92505060206138fe85828601613780565b9150509250929050565b600080600060608486031215613921576139206149c9565b5b600061392f86828701613780565b935050602061394086828701613780565b925050604061395186828701613886565b9150509250925092565b60008060008060808587031215613975576139746149c9565b5b600061398387828801613780565b945050602061399487828801613780565b93505060406139a587828801613886565b925050606085013567ffffffffffffffff8111156139c6576139c56149c4565b5b6139d28782880161382a565b91505092959194509250565b600080604083850312156139f5576139f46149c9565b5b6000613a0385828601613780565b9250506020613a14858286016137eb565b9150509250929050565b60008060408385031215613a3557613a346149c9565b5b6000613a4385828601613780565b9250506020613a5485828601613886565b9150509250929050565b60008060208385031215613a7557613a746149c9565b5b600083013567ffffffffffffffff811115613a9357613a926149c4565b5b613a9f85828601613795565b92509250509250929050565b600060208284031215613ac157613ac06149c9565b5b6000613acf848285016137eb565b91505092915050565b600060208284031215613aee57613aed6149c9565b5b6000613afc84828501613800565b91505092915050565b600060208284031215613b1b57613b1a6149c9565b5b6000613b2984828501613815565b91505092915050565b600060208284031215613b4857613b476149c9565b5b600082013567ffffffffffffffff811115613b6657613b656149c4565b5b613b7284828501613858565b91505092915050565b600060208284031215613b9157613b906149c9565b5b6000613b9f84828501613886565b91505092915050565b6000613bb483836140a6565b60208301905092915050565b613bc981614703565b82525050565b6000613bda82614577565b613be481856145a5565b9350613bef83614552565b8060005b83811015613c20578151613c078882613ba8565b9750613c1283614598565b925050600181019050613bf3565b5085935050505092915050565b613c3681614715565b82525050565b6000613c4782614582565b613c5181856145b6565b9350613c61818560208601614786565b613c6a816149ce565b840191505092915050565b6000613c808261458d565b613c8a81856145d2565b9350613c9a818560208601614786565b613ca3816149ce565b840191505092915050565b6000613cb98261458d565b613cc381856145e3565b9350613cd3818560208601614786565b80840191505092915050565b60008154613cec816147b9565b613cf681866145e3565b94506001821660008114613d115760018114613d2257613d55565b60ff19831686528186019350613d55565b613d2b85614562565b60005b83811015613d4d57815481890152600182019150602081019050613d2e565b838801955050505b50505092915050565b6000613d6b6010836145d2565b9150613d76826149df565b602082019050919050565b6000613d8e602b836145d2565b9150613d9982614a08565b604082019050919050565b6000613db16032836145d2565b9150613dbc82614a57565b604082019050919050565b6000613dd46026836145d2565b9150613ddf82614aa6565b604082019050919050565b6000613df7601c836145d2565b9150613e0282614af5565b602082019050919050565b6000613e1a6029836145d2565b9150613e2582614b1e565b604082019050919050565b6000613e3d602e836145d2565b9150613e4882614b6d565b604082019050919050565b6000613e606024836145d2565b9150613e6b82614bbc565b604082019050919050565b6000613e836019836145d2565b9150613e8e82614c0b565b602082019050919050565b6000613ea6602c836145d2565b9150613eb182614c34565b604082019050919050565b6000613ec96010836145d2565b9150613ed482614c83565b602082019050919050565b6000613eec6038836145d2565b9150613ef782614cac565b604082019050919050565b6000613f0f602a836145d2565b9150613f1a82614cfb565b604082019050919050565b6000613f326029836145d2565b9150613f3d82614d4a565b604082019050919050565b6000613f556020836145d2565b9150613f6082614d99565b602082019050919050565b6000613f78602c836145d2565b9150613f8382614dc2565b604082019050919050565b6000613f9b6020836145d2565b9150613fa682614e11565b602082019050919050565b6000613fbe6029836145d2565b9150613fc982614e3a565b604082019050919050565b6000613fe1602f836145d2565b9150613fec82614e89565b604082019050919050565b60006140046021836145d2565b915061400f82614ed8565b604082019050919050565b60006140276000836145c7565b915061403282614f27565b600082019050919050565b600061404a6031836145d2565b915061405582614f2a565b604082019050919050565b600061406d602c836145d2565b915061407882614f79565b604082019050919050565b60006140906015836145d2565b915061409b82614fc8565b602082019050919050565b6140af8161476d565b82525050565b6140be8161476d565b82525050565b60006140d08286613cae565b91506140dc8285613cae565b91506140e88284613cdf565b9150819050949350505050565b60006141008261401a565b9150819050919050565b600060208201905061411f6000830184613bc0565b92915050565b600060808201905061413a6000830187613bc0565b6141476020830186613bc0565b61415460408301856140b5565b81810360608301526141668184613c3c565b905095945050505050565b6000602082019050818103600083015261418b8184613bcf565b905092915050565b60006020820190506141a86000830184613c2d565b92915050565b600060208201905081810360008301526141c88184613c75565b905092915050565b600060208201905081810360008301526141e981613d5e565b9050919050565b6000602082019050818103600083015261420981613d81565b9050919050565b6000602082019050818103600083015261422981613da4565b9050919050565b6000602082019050818103600083015261424981613dc7565b9050919050565b6000602082019050818103600083015261426981613dea565b9050919050565b6000602082019050818103600083015261428981613e0d565b9050919050565b600060208201905081810360008301526142a981613e30565b9050919050565b600060208201905081810360008301526142c981613e53565b9050919050565b600060208201905081810360008301526142e981613e76565b9050919050565b6000602082019050818103600083015261430981613e99565b9050919050565b6000602082019050818103600083015261432981613ebc565b9050919050565b6000602082019050818103600083015261434981613edf565b9050919050565b6000602082019050818103600083015261436981613f02565b9050919050565b6000602082019050818103600083015261438981613f25565b9050919050565b600060208201905081810360008301526143a981613f48565b9050919050565b600060208201905081810360008301526143c981613f6b565b9050919050565b600060208201905081810360008301526143e981613f8e565b9050919050565b6000602082019050818103600083015261440981613fb1565b9050919050565b6000602082019050818103600083015261442981613fd4565b9050919050565b6000602082019050818103600083015261444981613ff7565b9050919050565b600060208201905081810360008301526144698161403d565b9050919050565b6000602082019050818103600083015261448981614060565b9050919050565b600060208201905081810360008301526144a981614083565b9050919050565b60006020820190506144c560008301846140b5565b92915050565b60006144d56144e6565b90506144e182826147eb565b919050565b6000604051905090565b600067ffffffffffffffff82111561450b5761450a614981565b5b614514826149ce565b9050602081019050919050565b600067ffffffffffffffff82111561453c5761453b614981565b5b614545826149ce565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006145f98261476d565b91506146048361476d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561463957614638614896565b5b828201905092915050565b600061464f8261476d565b915061465a8361476d565b92508261466a576146696148c5565b5b828204905092915050565b60006146808261476d565b915061468b8361476d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146c4576146c3614896565b5b828202905092915050565b60006146da8261476d565b91506146e58361476d565b9250828210156146f8576146f7614896565b5b828203905092915050565b600061470e8261474d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156147a4578082015181840152602081019050614789565b838111156147b3576000848401525b50505050565b600060028204905060018216806147d157607f821691505b602082108114156147e5576147e46148f4565b5b50919050565b6147f4826149ce565b810181811067ffffffffffffffff8211171561481357614812614981565b5b80604052505050565b60006148278261476d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561485a57614859614896565b5b600182019050919050565b60006148708261476d565b915061487b8361476d565b92508261488b5761488a6148c5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f74206f6e2077686974656c69737400000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74696e672074686174206d616e7920776f756c6420657863656564206d60008201527f617820737570706c790000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e206f6e6c792063616c6c61626c6520627920486f6e6f757260008201527f546f6b656e20636f6e7472616374000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206e6f74206c69766500000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e636f7272656374206d696e7420616d6f756e740000000000000000000000600082015250565b614ffa81614703565b811461500557600080fd5b50565b61501181614715565b811461501c57600080fd5b50565b61502881614721565b811461503357600080fd5b50565b61503f8161476d565b811461504a57600080fd5b5056fea2646970667358221220e46cb8c4ba9cc38c381229ea5f073dfdb31f149145165adaabab526539b158d364736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a526f6e696e204361747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000252430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5673367a5543777066765142533375617264584e6434486961574a514b4d44704e42354e3534796b317341752f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d52373652737772373637683953627854553551476334716e6a63363147584b3279676f734c733362383347652f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Ronin Cats
Arg [1] : _symbol (string): RC
Arg [2] : _initBaseURI (string): ipfs://QmVs6zUCwpfvQBS3uardXNd4HiaWJQKMDpNB5N54yk1sAu/
Arg [3] : _initNotRevealedUri (string): ipfs://QmR76Rswr767h9SbxTU5QGc4qnjc61GXK2ygosLs3b83Ge/hidden.json
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 526f6e696e204361747300000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 5243000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d5673367a5543777066765142533375617264584e643448
Arg [10] : 6961574a514b4d44704e42354e3534796b317341752f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [12] : 697066733a2f2f516d5237365273777237363768395362785455355147633471
Arg [13] : 6e6a63363147584b3279676f734c733362383347652f68696464656e2e6a736f
Arg [14] : 6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
44626:5790:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38266:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25760:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27319:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44918:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26842:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44775:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38906:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44848:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47420:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50231:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38574:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49776:158;;;:::i;:::-;;47593:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47054:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48948:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44953:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46813:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39096:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44885:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49284:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49516:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25454:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45018:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25184:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;46416:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49034:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49940:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48848:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25929:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45636:774;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27612:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49644:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44983:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47770:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44733:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48199:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46935:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44812:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46619:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49388:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27838:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49158:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38266:224;38368:4;38407:35;38392:50;;;:11;:50;;;;:90;;;;38446:36;38470:11;38446:23;:36::i;:::-;38392:90;38385:97;;38266:224;;;:::o;25760:100::-;25814:13;25847:5;25840:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25760:100;:::o;27319:221::-;27395:7;27423:16;27431:7;27423;:16::i;:::-;27415:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27508:15;:24;27524:7;27508:24;;;;;;;;;;;;;;;;;;;;;27501:31;;27319:221;;;:::o;44918:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26842:411::-;26923:13;26939:23;26954:7;26939:14;:23::i;:::-;26923:39;;26987:5;26981:11;;:2;:11;;;;26973:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27081:5;27065:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27090:37;27107:5;27114:12;:10;:12::i;:::-;27090:16;:37::i;:::-;27065:62;27043:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27224:21;27233:2;27237:7;27224:8;:21::i;:::-;26912:341;26842:411;;:::o;44775:32::-;;;;:::o;38906:113::-;38967:7;38994:10;:17;;;;38987:24;;38906:113;:::o;44848:32::-;;;;:::o;47420:167::-;47508:28;47522:4;47528:7;47508:13;:28::i;:::-;47543:38;47563:4;47569:2;47573:7;47543:19;:38::i;:::-;47420:167;;;:::o;50231:182::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50321:6:::1;50316:92;50333:10;;:17;;50331:1;:19;50316:92;;;50395:4;50368:9;:24;50378:10;;50389:1;50378:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;50368:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;50352:3;;;;;:::i;:::-;;;;50316:92;;;;50231:182:::0;;:::o;38574:256::-;38671:7;38707:23;38724:5;38707:16;:23::i;:::-;38699:5;:31;38691:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38796:12;:19;38809:5;38796:19;;;;;;;;;;;;;;;:26;38816:5;38796:26;;;;;;;;;;;;38789:33;;38574:256;;;;:::o;49776:158::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49829:12:::1;49855:10;49847:24;;49879:21;49847:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49828:77;;;49920:7;49912:16;;;::::0;::::1;;49821:113;49776:158::o:0;47593:171::-;47685:28;47699:4;47705:7;47685:13;:28::i;:::-;47720:38;47740:4;47746:2;47750:7;47720:19;:38::i;:::-;47593:171;;;:::o;47054:348::-;47129:16;47157:23;47183:17;47193:6;47183:9;:17::i;:::-;47157:43;;47207:25;47249:15;47235:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47207:58;;47277:9;47272:103;47292:15;47288:1;:19;47272:103;;;47337:30;47357:6;47365:1;47337:19;:30::i;:::-;47323:8;47332:1;47323:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;47309:3;;;;;:::i;:::-;;;;47272:103;;;;47388:8;47381:15;;;;47054:348;;;:::o;48948:80::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49014:8:::1;49007:4;:15;;;;48948:80:::0;:::o;44953:25::-;;;;;;;;;;;;;:::o;46813:114::-;46877:4;46897:14;:24;46912:8;46897:24;;;;;;;;;;;;46890:31;;46813:114;;;:::o;39096:233::-;39171:7;39207:30;:28;:30::i;:::-;39199:5;:38;39191:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;39304:10;39315:5;39304:17;;;;;;;;:::i;:::-;;;;;;;;;;39297:24;;39096:233;;;:::o;44885:28::-;;;;;;;;;;;;;:::o;49284:98::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49365:11:::1;49355:7;:21;;;;;;;;;;;;:::i;:::-;;49284:98:::0;:::o;49516:122::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49598:5:::1;49579:16;;:24;;;;;;;;;;;;;;;;;;49626:6;49610:13;;:22;;;;;;;;;;;;;;;;;;49516:122:::0;:::o;25454:239::-;25526:7;25546:13;25562:7;:16;25570:7;25562:16;;;;;;;;;;;;;;;;;;;;;25546:32;;25614:1;25597:19;;:5;:19;;;;25589:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25680:5;25673:12;;;25454:239;;;:::o;45018:26::-;;;;;;;;;;;;;:::o;25184:208::-;25256:7;25301:1;25284:19;;:5;:19;;;;25276:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25368:9;:16;25378:5;25368:16;;;;;;;;;;;;;;;;25361:23;;25184:208;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;46416:197::-;46496:11;;;;;;;;;;;46482:25;;:10;:25;;;46474:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;46592:15;46565:14;:24;46580:8;46565:24;;;;;;;;;;;:42;;;;46416:197;:::o;49034:116::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49127:17:::1;49111:13;:33;;;;49034:116:::0;:::o;49940:101::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50027:8:::1;50013:11;;:22;;;;;;;;;;;;;;;;;;49940:101:::0;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;48848:92::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48921:13:::1;48910:8;;:24;;;;;;;;;;;;;;;;;;48848:92:::0;:::o;25929:104::-;25985:13;26018:7;26011:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25929:104;:::o;45636:774::-;45706:13;;;;;;;;;;;:33;;;;45723:16;;;;;;;;;;;45706:33;45698:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45789:1;45775:11;:15;:47;;;;;45809:13;;45794:11;:28;;45775:47;45767:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;45894:9;;45879:11;45863:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;45855:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;45976:7;:5;:7::i;:::-;45962:21;;:10;:21;;;45958:84;;46022:11;46015:4;;:18;;;;:::i;:::-;46002:9;:31;;45994:40;;;;;;45958:84;46054:13;;;;;;;;;;;46050:133;;;46096:7;:5;:7::i;:::-;46082:21;;:10;:21;;;46078:98;;46124:9;:21;46134:10;46124:21;;;;;;;;;;;;;;;;;;;;;;;;;46116:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;46078:98;46050:133;46196:9;46191:214;46215:11;46211:1;:15;46191:214;;;46242:12;46273:1;46257:13;:11;:13::i;:::-;:17;;;;:::i;:::-;46242:32;;46283:30;46293:10;46305:7;46283:9;:30::i;:::-;46327:20;46339:7;46327:20;;;;;;:::i;:::-;;;;;;;;46382:15;46356:14;:23;46371:7;46356:23;;;;;;;;;;;:41;;;;46233:172;46228:3;;;;;:::i;:::-;;;;46191:214;;;;45636:774;:::o;27612:155::-;27707:52;27726:12;:10;:12::i;:::-;27740:8;27750;27707:18;:52::i;:::-;27612:155;;:::o;49644:125::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49726:5:::1;49710:13;;:21;;;;;;;;;;;;;;;;;;49757:6;49738:16;;:25;;;;;;;;;;;;;;;;;;49644:125:::0;:::o;44983:28::-;;;;;;;;;;;;;:::o;47770:202::-;47882:28;47896:4;47902:7;47882:13;:28::i;:::-;47917:49;47941:4;47947:2;47951:7;47960:5;47917:23;:49::i;:::-;47770:202;;;;:::o;44733:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48199:497::-;48297:13;48338:16;48346:7;48338;:16::i;:::-;48322:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;48447:5;48435:17;;:8;;;;;;;;;;;:17;;;48432:62;;;48472:14;48465:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48432:62;48502:28;48533:10;:8;:10::i;:::-;48502:41;;48588:1;48563:14;48557:28;:32;:133;;;;;;;;;;;;;;;;;48625:14;48641:18;:7;:16;:18::i;:::-;48661:13;48608:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48557:133;48550:140;;;48199:497;;;;:::o;46935:113::-;47000:4;47020:12;:22;47033:8;47020:22;;;;;;;;;;;;;;;;47013:29;;46935:113;;;:::o;44812:31::-;;;;:::o;46619:184::-;46702:11;;;;;;;;;;;46688:25;;:10;:25;;;46680:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;46796:1;46771:12;:22;46784:8;46771:22;;;;;;;;;;;;;;;:26;;;;46619:184;:::o;49388:122::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49487:17:::1;49471:13;:33;;;;;;;;;;;;:::i;:::-;;49388:122:::0;:::o;27838:164::-;27935:4;27959:18;:25;27978:5;27959:25;;;;;;;;;;;;;;;:35;27985:8;27959:35;;;;;;;;;;;;;;;;;;;;;;;;;27952:42;;27838:164;;;;:::o;49158:120::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49257:15:::1;49240:14;:32;;;;;;;;;;;;:::i;:::-;;49158:120:::0;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;24815:305::-;24917:4;24969:25;24954:40;;;:11;:40;;;;:105;;;;25026:33;25011:48;;;:11;:48;;;;24954:105;:158;;;;25076:36;25100:11;25076:23;:36::i;:::-;24954:158;24934:178;;24815:305;;;:::o;30573:127::-;30638:4;30690:1;30662:30;;:7;:16;30670:7;30662:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30655:37;;30573:127;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;34555:174::-;34657:2;34630:15;:24;34646:7;34630:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34713:7;34709:2;34675:46;;34684:23;34699:7;34684:14;:23::i;:::-;34675:46;;;;;;;;;;;;34555:174;;:::o;47978:203::-;48118:8;48089:14;:23;48104:7;48089:23;;;;;;;;;;;;48071:15;:41;;;;:::i;:::-;48069:58;;;;:::i;:::-;48048:12;:18;48061:4;48048:18;;;;;;;;;;;;;;;:79;;;;48160:15;48134:14;:23;48149:7;48134:23;;;;;;;;;;;:41;;;;47978:203;;:::o;28069:339::-;28264:41;28283:12;:10;:12::i;:::-;28297:7;28264:18;:41::i;:::-;28256:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28372:28;28382:4;28388:2;28392:7;28372:9;:28::i;:::-;28069:339;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;31557:110::-;31633:26;31643:2;31647:7;31633:26;;;;;;;;;;;;:9;:26::i;:::-;31557:110;;:::o;34871:315::-;35026:8;35017:17;;:5;:17;;;;35009:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35113:8;35075:18;:25;35094:5;35075:25;;;;;;;;;;;;;;;:35;35101:8;35075:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35159:8;35137:41;;35152:5;35137:41;;;35169:8;35137:41;;;;;;:::i;:::-;;;;;;;;34871:315;;;:::o;28735:328::-;28910:41;28929:12;:10;:12::i;:::-;28943:7;28910:18;:41::i;:::-;28902:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29016:39;29030:4;29036:2;29040:7;29049:5;29016:13;:39::i;:::-;28735:328;;;;:::o;48720:102::-;48780:13;48809:7;48802:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48720:102;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;16511:157::-;16596:4;16635:25;16620:40;;;:11;:40;;;;16613:47;;16511:157;;;:::o;30867:348::-;30960:4;30985:16;30993:7;30985;:16::i;:::-;30977:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31061:13;31077:23;31092:7;31077:14;:23::i;:::-;31061:39;;31130:5;31119:16;;:7;:16;;;:51;;;;31163:7;31139:31;;:20;31151:7;31139:11;:20::i;:::-;:31;;;31119:51;:87;;;;31174:32;31191:5;31198:7;31174:16;:32::i;:::-;31119:87;31111:96;;;30867:348;;;;:::o;33859:578::-;34018:4;33991:31;;:23;34006:7;33991:14;:23::i;:::-;:31;;;33983:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34101:1;34087:16;;:2;:16;;;;34079:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34157:39;34178:4;34184:2;34188:7;34157:20;:39::i;:::-;34261:29;34278:1;34282:7;34261:8;:29::i;:::-;34322:1;34303:9;:15;34313:4;34303:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34351:1;34334:9;:13;34344:2;34334:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34382:2;34363:7;:16;34371:7;34363:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34421:7;34417:2;34402:27;;34411:4;34402:27;;;;;;;;;;;;33859:578;;;:::o;31894:321::-;32024:18;32030:2;32034:7;32024:5;:18::i;:::-;32075:54;32106:1;32110:2;32114:7;32123:5;32075:22;:54::i;:::-;32053:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31894:321;;;:::o;29945:315::-;30102:28;30112:4;30118:2;30122:7;30102:9;:28::i;:::-;30149:48;30172:4;30178:2;30182:7;30191:5;30149:22;:48::i;:::-;30141:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29945:315;;;;:::o;39942:589::-;40086:45;40113:4;40119:2;40123:7;40086:26;:45::i;:::-;40164:1;40148:18;;:4;:18;;;40144:187;;;40183:40;40215:7;40183:31;:40::i;:::-;40144:187;;;40253:2;40245:10;;:4;:10;;;40241:90;;40272:47;40305:4;40311:7;40272:32;:47::i;:::-;40241:90;40144:187;40359:1;40345:16;;:2;:16;;;40341:183;;;40378:45;40415:7;40378:36;:45::i;:::-;40341:183;;;40451:4;40445:10;;:2;:10;;;40441:83;;40472:40;40500:2;40504:7;40472:27;:40::i;:::-;40441:83;40341:183;39942:589;;;:::o;32551:382::-;32645:1;32631:16;;:2;:16;;;;32623:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32704:16;32712:7;32704;:16::i;:::-;32703:17;32695:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32766:45;32795:1;32799:2;32803:7;32766:20;:45::i;:::-;32841:1;32824:9;:13;32834:2;32824:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32872:2;32853:7;:16;32861:7;32853:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32917:7;32913:2;32892:33;;32909:1;32892:33;;;;;;;;;;;;32551:382;;:::o;35751:799::-;35906:4;35927:15;:2;:13;;;:15::i;:::-;35923:620;;;35979:2;35963:36;;;36000:12;:10;:12::i;:::-;36014:4;36020:7;36029:5;35963:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35959:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36222:1;36205:6;:13;:18;36201:272;;;36248:60;;;;;;;;;;:::i;:::-;;;;;;;;36201:272;36423:6;36417:13;36408:6;36404:2;36400:15;36393:38;35959:529;36096:41;;;36086:51;;;:6;:51;;;;36079:58;;;;;35923:620;36527:4;36520:11;;35751:799;;;;;;;:::o;37122:126::-;;;;:::o;41254:164::-;41358:10;:17;;;;41331:15;:24;41347:7;41331:24;;;;;;;;;;;:44;;;;41386:10;41402:7;41386:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41254:164;:::o;42045:988::-;42311:22;42361:1;42336:22;42353:4;42336:16;:22::i;:::-;:26;;;;:::i;:::-;42311:51;;42373:18;42394:17;:26;42412:7;42394:26;;;;;;;;;;;;42373:47;;42541:14;42527:10;:28;42523:328;;42572:19;42594:12;:18;42607:4;42594:18;;;;;;;;;;;;;;;:34;42613:14;42594:34;;;;;;;;;;;;42572:56;;42678:11;42645:12;:18;42658:4;42645:18;;;;;;;;;;;;;;;:30;42664:10;42645:30;;;;;;;;;;;:44;;;;42795:10;42762:17;:30;42780:11;42762:30;;;;;;;;;;;:43;;;;42557:294;42523:328;42947:17;:26;42965:7;42947:26;;;;;;;;;;;42940:33;;;42991:12;:18;43004:4;42991:18;;;;;;;;;;;;;;;:34;43010:14;42991:34;;;;;;;;;;;42984:41;;;42126:907;;42045:988;;:::o;43328:1079::-;43581:22;43626:1;43606:10;:17;;;;:21;;;;:::i;:::-;43581:46;;43638:18;43659:15;:24;43675:7;43659:24;;;;;;;;;;;;43638:45;;44010:19;44032:10;44043:14;44032:26;;;;;;;;:::i;:::-;;;;;;;;;;44010:48;;44096:11;44071:10;44082;44071:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;44207:10;44176:15;:28;44192:11;44176:28;;;;;;;;;;;:41;;;;44348:15;:24;44364:7;44348:24;;;;;;;;;;;44341:31;;;44383:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43399:1008;;;43328:1079;:::o;40832:221::-;40917:14;40934:20;40951:2;40934:16;:20::i;:::-;40917:37;;40992:7;40965:12;:16;40978:2;40965:16;;;;;;;;;;;;;;;:24;40982:6;40965:24;;;;;;;;;;;:34;;;;41039:6;41010:17;:26;41028:7;41010:26;;;;;;;;;;;:35;;;;40906:147;40832:221;;:::o;6367:387::-;6427:4;6635:12;6702:7;6690:20;6682:28;;6745:1;6738:4;:8;6731:15;;;6367:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:179::-;8712:10;8733:46;8775:3;8767:6;8733:46;:::i;:::-;8811:4;8806:3;8802:14;8788:28;;8643:179;;;;:::o;8828:118::-;8915:24;8933:5;8915:24;:::i;:::-;8910:3;8903:37;8828:118;;:::o;8982:732::-;9101:3;9130:54;9178:5;9130:54;:::i;:::-;9200:86;9279:6;9274:3;9200:86;:::i;:::-;9193:93;;9310:56;9360:5;9310:56;:::i;:::-;9389:7;9420:1;9405:284;9430:6;9427:1;9424:13;9405:284;;;9506:6;9500:13;9533:63;9592:3;9577:13;9533:63;:::i;:::-;9526:70;;9619:60;9672:6;9619:60;:::i;:::-;9609:70;;9465:224;9452:1;9449;9445:9;9440:14;;9405:284;;;9409:14;9705:3;9698:10;;9106:608;;;8982:732;;;;:::o;9720:109::-;9801:21;9816:5;9801:21;:::i;:::-;9796:3;9789:34;9720:109;;:::o;9835:360::-;9921:3;9949:38;9981:5;9949:38;:::i;:::-;10003:70;10066:6;10061:3;10003:70;:::i;:::-;9996:77;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9925:270;9835:360;;;;:::o;10201:364::-;10289:3;10317:39;10350:5;10317:39;:::i;:::-;10372:71;10436:6;10431:3;10372:71;:::i;:::-;10365:78;;10452:52;10497:6;10492:3;10485:4;10478:5;10474:16;10452:52;:::i;:::-;10529:29;10551:6;10529:29;:::i;:::-;10524:3;10520:39;10513:46;;10293:272;10201:364;;;;:::o;10571:377::-;10677:3;10705:39;10738:5;10705:39;:::i;:::-;10760:89;10842:6;10837:3;10760:89;:::i;:::-;10753:96;;10858:52;10903:6;10898:3;10891:4;10884:5;10880:16;10858:52;:::i;:::-;10935:6;10930:3;10926:16;10919:23;;10681:267;10571:377;;;;:::o;10978:845::-;11081:3;11118:5;11112:12;11147:36;11173:9;11147:36;:::i;:::-;11199:89;11281:6;11276:3;11199:89;:::i;:::-;11192:96;;11319:1;11308:9;11304:17;11335:1;11330:137;;;;11481:1;11476:341;;;;11297:520;;11330:137;11414:4;11410:9;11399;11395:25;11390:3;11383:38;11450:6;11445:3;11441:16;11434:23;;11330:137;;11476:341;11543:38;11575:5;11543:38;:::i;:::-;11603:1;11617:154;11631:6;11628:1;11625:13;11617:154;;;11705:7;11699:14;11695:1;11690:3;11686:11;11679:35;11755:1;11746:7;11742:15;11731:26;;11653:4;11650:1;11646:12;11641:17;;11617:154;;;11800:6;11795:3;11791:16;11784:23;;11483:334;;11297:520;;11085:738;;10978:845;;;;:::o;11829:366::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:::-;17179:3;17200:67;17264:2;17259:3;17200:67;:::i;:::-;17193:74;;17276:93;17365:3;17276:93;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17037:366;;;:::o;17409:::-;17551:3;17572:67;17636:2;17631:3;17572:67;:::i;:::-;17565:74;;17648:93;17737:3;17648:93;:::i;:::-;17766:2;17761:3;17757:12;17750:19;;17409:366;;;:::o;17781:::-;17923:3;17944:67;18008:2;18003:3;17944:67;:::i;:::-;17937:74;;18020:93;18109:3;18020:93;:::i;:::-;18138:2;18133:3;18129:12;18122:19;;17781:366;;;:::o;18153:::-;18295:3;18316:67;18380:2;18375:3;18316:67;:::i;:::-;18309:74;;18392:93;18481:3;18392:93;:::i;:::-;18510:2;18505:3;18501:12;18494:19;;18153:366;;;:::o;18525:::-;18667:3;18688:67;18752:2;18747:3;18688:67;:::i;:::-;18681:74;;18764:93;18853:3;18764:93;:::i;:::-;18882:2;18877:3;18873:12;18866:19;;18525:366;;;:::o;18897:::-;19039:3;19060:67;19124:2;19119:3;19060:67;:::i;:::-;19053:74;;19136:93;19225:3;19136:93;:::i;:::-;19254:2;19249:3;19245:12;19238:19;;18897:366;;;:::o;19269:398::-;19428:3;19449:83;19530:1;19525:3;19449:83;:::i;:::-;19442:90;;19541:93;19630:3;19541:93;:::i;:::-;19659:1;19654:3;19650:11;19643:18;;19269:398;;;:::o;19673:366::-;19815:3;19836:67;19900:2;19895:3;19836:67;:::i;:::-;19829:74;;19912:93;20001:3;19912:93;:::i;:::-;20030:2;20025:3;20021:12;20014:19;;19673:366;;;:::o;20045:::-;20187:3;20208:67;20272:2;20267:3;20208:67;:::i;:::-;20201:74;;20284:93;20373:3;20284:93;:::i;:::-;20402:2;20397:3;20393:12;20386:19;;20045:366;;;:::o;20417:::-;20559:3;20580:67;20644:2;20639:3;20580:67;:::i;:::-;20573:74;;20656:93;20745:3;20656:93;:::i;:::-;20774:2;20769:3;20765:12;20758:19;;20417:366;;;:::o;20789:108::-;20866:24;20884:5;20866:24;:::i;:::-;20861:3;20854:37;20789:108;;:::o;20903:118::-;20990:24;21008:5;20990:24;:::i;:::-;20985:3;20978:37;20903:118;;:::o;21027:589::-;21252:3;21274:95;21365:3;21356:6;21274:95;:::i;:::-;21267:102;;21386:95;21477:3;21468:6;21386:95;:::i;:::-;21379:102;;21498:92;21586:3;21577:6;21498:92;:::i;:::-;21491:99;;21607:3;21600:10;;21027:589;;;;;;:::o;21622:379::-;21806:3;21828:147;21971:3;21828:147;:::i;:::-;21821:154;;21992:3;21985:10;;21622:379;;;:::o;22007:222::-;22100:4;22138:2;22127:9;22123:18;22115:26;;22151:71;22219:1;22208:9;22204:17;22195:6;22151:71;:::i;:::-;22007:222;;;;:::o;22235:640::-;22430:4;22468:3;22457:9;22453:19;22445:27;;22482:71;22550:1;22539:9;22535:17;22526:6;22482:71;:::i;:::-;22563:72;22631:2;22620:9;22616:18;22607:6;22563:72;:::i;:::-;22645;22713:2;22702:9;22698:18;22689:6;22645:72;:::i;:::-;22764:9;22758:4;22754:20;22749:2;22738:9;22734:18;22727:48;22792:76;22863:4;22854:6;22792:76;:::i;:::-;22784:84;;22235:640;;;;;;;:::o;22881:373::-;23024:4;23062:2;23051:9;23047:18;23039:26;;23111:9;23105:4;23101:20;23097:1;23086:9;23082:17;23075:47;23139:108;23242:4;23233:6;23139:108;:::i;:::-;23131:116;;22881:373;;;;:::o;23260:210::-;23347:4;23385:2;23374:9;23370:18;23362:26;;23398:65;23460:1;23449:9;23445:17;23436:6;23398:65;:::i;:::-;23260:210;;;;:::o;23476:313::-;23589:4;23627:2;23616:9;23612:18;23604:26;;23676:9;23670:4;23666:20;23662:1;23651:9;23647:17;23640:47;23704:78;23777:4;23768:6;23704:78;:::i;:::-;23696:86;;23476:313;;;;:::o;23795:419::-;23961:4;23999:2;23988:9;23984:18;23976:26;;24048:9;24042:4;24038:20;24034:1;24023:9;24019:17;24012:47;24076:131;24202:4;24076:131;:::i;:::-;24068:139;;23795:419;;;:::o;24220:::-;24386:4;24424:2;24413:9;24409:18;24401:26;;24473:9;24467:4;24463:20;24459:1;24448:9;24444:17;24437:47;24501:131;24627:4;24501:131;:::i;:::-;24493:139;;24220:419;;;:::o;24645:::-;24811:4;24849:2;24838:9;24834:18;24826:26;;24898:9;24892:4;24888:20;24884:1;24873:9;24869:17;24862:47;24926:131;25052:4;24926:131;:::i;:::-;24918:139;;24645:419;;;:::o;25070:::-;25236:4;25274:2;25263:9;25259:18;25251:26;;25323:9;25317:4;25313:20;25309:1;25298:9;25294:17;25287:47;25351:131;25477:4;25351:131;:::i;:::-;25343:139;;25070:419;;;:::o;25495:::-;25661:4;25699:2;25688:9;25684:18;25676:26;;25748:9;25742:4;25738:20;25734:1;25723:9;25719:17;25712:47;25776:131;25902:4;25776:131;:::i;:::-;25768:139;;25495:419;;;:::o;25920:::-;26086:4;26124:2;26113:9;26109:18;26101:26;;26173:9;26167:4;26163:20;26159:1;26148:9;26144:17;26137:47;26201:131;26327:4;26201:131;:::i;:::-;26193:139;;25920:419;;;:::o;26345:::-;26511:4;26549:2;26538:9;26534:18;26526:26;;26598:9;26592:4;26588:20;26584:1;26573:9;26569:17;26562:47;26626:131;26752:4;26626:131;:::i;:::-;26618:139;;26345:419;;;:::o;26770:::-;26936:4;26974:2;26963:9;26959:18;26951:26;;27023:9;27017:4;27013:20;27009:1;26998:9;26994:17;26987:47;27051:131;27177:4;27051:131;:::i;:::-;27043:139;;26770:419;;;:::o;27195:::-;27361:4;27399:2;27388:9;27384:18;27376:26;;27448:9;27442:4;27438:20;27434:1;27423:9;27419:17;27412:47;27476:131;27602:4;27476:131;:::i;:::-;27468:139;;27195:419;;;:::o;27620:::-;27786:4;27824:2;27813:9;27809:18;27801:26;;27873:9;27867:4;27863:20;27859:1;27848:9;27844:17;27837:47;27901:131;28027:4;27901:131;:::i;:::-;27893:139;;27620:419;;;:::o;28045:::-;28211:4;28249:2;28238:9;28234:18;28226:26;;28298:9;28292:4;28288:20;28284:1;28273:9;28269:17;28262:47;28326:131;28452:4;28326:131;:::i;:::-;28318:139;;28045:419;;;:::o;28470:::-;28636:4;28674:2;28663:9;28659:18;28651:26;;28723:9;28717:4;28713:20;28709:1;28698:9;28694:17;28687:47;28751:131;28877:4;28751:131;:::i;:::-;28743:139;;28470:419;;;:::o;28895:::-;29061:4;29099:2;29088:9;29084:18;29076:26;;29148:9;29142:4;29138:20;29134:1;29123:9;29119:17;29112:47;29176:131;29302:4;29176:131;:::i;:::-;29168:139;;28895:419;;;:::o;29320:::-;29486:4;29524:2;29513:9;29509:18;29501:26;;29573:9;29567:4;29563:20;29559:1;29548:9;29544:17;29537:47;29601:131;29727:4;29601:131;:::i;:::-;29593:139;;29320:419;;;:::o;29745:::-;29911:4;29949:2;29938:9;29934:18;29926:26;;29998:9;29992:4;29988:20;29984:1;29973:9;29969:17;29962:47;30026:131;30152:4;30026:131;:::i;:::-;30018:139;;29745:419;;;:::o;30170:::-;30336:4;30374:2;30363:9;30359:18;30351:26;;30423:9;30417:4;30413:20;30409:1;30398:9;30394:17;30387:47;30451:131;30577:4;30451:131;:::i;:::-;30443:139;;30170:419;;;:::o;30595:::-;30761:4;30799:2;30788:9;30784:18;30776:26;;30848:9;30842:4;30838:20;30834:1;30823:9;30819:17;30812:47;30876:131;31002:4;30876:131;:::i;:::-;30868:139;;30595:419;;;:::o;31020:::-;31186:4;31224:2;31213:9;31209:18;31201:26;;31273:9;31267:4;31263:20;31259:1;31248:9;31244:17;31237:47;31301:131;31427:4;31301:131;:::i;:::-;31293:139;;31020:419;;;:::o;31445:::-;31611:4;31649:2;31638:9;31634:18;31626:26;;31698:9;31692:4;31688:20;31684:1;31673:9;31669:17;31662:47;31726:131;31852:4;31726:131;:::i;:::-;31718:139;;31445:419;;;:::o;31870:::-;32036:4;32074:2;32063:9;32059:18;32051:26;;32123:9;32117:4;32113:20;32109:1;32098:9;32094:17;32087:47;32151:131;32277:4;32151:131;:::i;:::-;32143:139;;31870:419;;;:::o;32295:::-;32461:4;32499:2;32488:9;32484:18;32476:26;;32548:9;32542:4;32538:20;32534:1;32523:9;32519:17;32512:47;32576:131;32702:4;32576:131;:::i;:::-;32568:139;;32295:419;;;:::o;32720:::-;32886:4;32924:2;32913:9;32909:18;32901:26;;32973:9;32967:4;32963:20;32959:1;32948:9;32944:17;32937:47;33001:131;33127:4;33001:131;:::i;:::-;32993:139;;32720:419;;;:::o;33145:::-;33311:4;33349:2;33338:9;33334:18;33326:26;;33398:9;33392:4;33388:20;33384:1;33373:9;33369:17;33362:47;33426:131;33552:4;33426:131;:::i;:::-;33418:139;;33145:419;;;:::o;33570:222::-;33663:4;33701:2;33690:9;33686:18;33678:26;;33714:71;33782:1;33771:9;33767:17;33758:6;33714:71;:::i;:::-;33570:222;;;;:::o;33798:129::-;33832:6;33859:20;;:::i;:::-;33849:30;;33888:33;33916:4;33908:6;33888:33;:::i;:::-;33798:129;;;:::o;33933:75::-;33966:6;33999:2;33993:9;33983:19;;33933:75;:::o;34014:307::-;34075:4;34165:18;34157:6;34154:30;34151:56;;;34187:18;;:::i;:::-;34151:56;34225:29;34247:6;34225:29;:::i;:::-;34217:37;;34309:4;34303;34299:15;34291:23;;34014:307;;;:::o;34327:308::-;34389:4;34479:18;34471:6;34468:30;34465:56;;;34501:18;;:::i;:::-;34465:56;34539:29;34561:6;34539:29;:::i;:::-;34531:37;;34623:4;34617;34613:15;34605:23;;34327:308;;;:::o;34641:132::-;34708:4;34731:3;34723:11;;34761:4;34756:3;34752:14;34744:22;;34641:132;;;:::o;34779:141::-;34828:4;34851:3;34843:11;;34874:3;34871:1;34864:14;34908:4;34905:1;34895:18;34887:26;;34779:141;;;:::o;34926:114::-;34993:6;35027:5;35021:12;35011:22;;34926:114;;;:::o;35046:98::-;35097:6;35131:5;35125:12;35115:22;;35046:98;;;:::o;35150:99::-;35202:6;35236:5;35230:12;35220:22;;35150:99;;;:::o;35255:113::-;35325:4;35357;35352:3;35348:14;35340:22;;35255:113;;;:::o;35374:184::-;35473:11;35507:6;35502:3;35495:19;35547:4;35542:3;35538:14;35523:29;;35374:184;;;;:::o;35564:168::-;35647:11;35681:6;35676:3;35669:19;35721:4;35716:3;35712:14;35697:29;;35564:168;;;;:::o;35738:147::-;35839:11;35876:3;35861:18;;35738:147;;;;:::o;35891:169::-;35975:11;36009:6;36004:3;35997:19;36049:4;36044:3;36040:14;36025:29;;35891:169;;;;:::o;36066:148::-;36168:11;36205:3;36190:18;;36066:148;;;;:::o;36220:305::-;36260:3;36279:20;36297:1;36279:20;:::i;:::-;36274:25;;36313:20;36331:1;36313:20;:::i;:::-;36308:25;;36467:1;36399:66;36395:74;36392:1;36389:81;36386:107;;;36473:18;;:::i;:::-;36386:107;36517:1;36514;36510:9;36503:16;;36220:305;;;;:::o;36531:185::-;36571:1;36588:20;36606:1;36588:20;:::i;:::-;36583:25;;36622:20;36640:1;36622:20;:::i;:::-;36617:25;;36661:1;36651:35;;36666:18;;:::i;:::-;36651:35;36708:1;36705;36701:9;36696:14;;36531:185;;;;:::o;36722:348::-;36762:7;36785:20;36803:1;36785:20;:::i;:::-;36780:25;;36819:20;36837:1;36819:20;:::i;:::-;36814:25;;37007:1;36939:66;36935:74;36932:1;36929:81;36924:1;36917:9;36910:17;36906:105;36903:131;;;37014:18;;:::i;:::-;36903:131;37062:1;37059;37055:9;37044:20;;36722:348;;;;:::o;37076:191::-;37116:4;37136:20;37154:1;37136:20;:::i;:::-;37131:25;;37170:20;37188:1;37170:20;:::i;:::-;37165:25;;37209:1;37206;37203:8;37200:34;;;37214:18;;:::i;:::-;37200:34;37259:1;37256;37252:9;37244:17;;37076:191;;;;:::o;37273:96::-;37310:7;37339:24;37357:5;37339:24;:::i;:::-;37328:35;;37273:96;;;:::o;37375:90::-;37409:7;37452:5;37445:13;37438:21;37427:32;;37375:90;;;:::o;37471:149::-;37507:7;37547:66;37540:5;37536:78;37525:89;;37471:149;;;:::o;37626:126::-;37663:7;37703:42;37696:5;37692:54;37681:65;;37626:126;;;:::o;37758:77::-;37795:7;37824:5;37813:16;;37758:77;;;:::o;37841:154::-;37925:6;37920:3;37915;37902:30;37987:1;37978:6;37973:3;37969:16;37962:27;37841:154;;;:::o;38001:307::-;38069:1;38079:113;38093:6;38090:1;38087:13;38079:113;;;38178:1;38173:3;38169:11;38163:18;38159:1;38154:3;38150:11;38143:39;38115:2;38112:1;38108:10;38103:15;;38079:113;;;38210:6;38207:1;38204:13;38201:101;;;38290:1;38281:6;38276:3;38272:16;38265:27;38201:101;38050:258;38001:307;;;:::o;38314:320::-;38358:6;38395:1;38389:4;38385:12;38375:22;;38442:1;38436:4;38432:12;38463:18;38453:81;;38519:4;38511:6;38507:17;38497:27;;38453:81;38581:2;38573:6;38570:14;38550:18;38547:38;38544:84;;;38600:18;;:::i;:::-;38544:84;38365:269;38314:320;;;:::o;38640:281::-;38723:27;38745:4;38723:27;:::i;:::-;38715:6;38711:40;38853:6;38841:10;38838:22;38817:18;38805:10;38802:34;38799:62;38796:88;;;38864:18;;:::i;:::-;38796:88;38904:10;38900:2;38893:22;38683:238;38640:281;;:::o;38927:233::-;38966:3;38989:24;39007:5;38989:24;:::i;:::-;38980:33;;39035:66;39028:5;39025:77;39022:103;;;39105:18;;:::i;:::-;39022:103;39152:1;39145:5;39141:13;39134:20;;38927:233;;;:::o;39166:176::-;39198:1;39215:20;39233:1;39215:20;:::i;:::-;39210:25;;39249:20;39267:1;39249:20;:::i;:::-;39244:25;;39288:1;39278:35;;39293:18;;:::i;:::-;39278:35;39334:1;39331;39327:9;39322:14;;39166:176;;;;:::o;39348:180::-;39396:77;39393:1;39386:88;39493:4;39490:1;39483:15;39517:4;39514:1;39507:15;39534:180;39582:77;39579:1;39572:88;39679:4;39676:1;39669:15;39703:4;39700:1;39693:15;39720:180;39768:77;39765:1;39758:88;39865:4;39862:1;39855:15;39889:4;39886:1;39879:15;39906:180;39954:77;39951:1;39944:88;40051:4;40048:1;40041:15;40075:4;40072:1;40065:15;40092:180;40140:77;40137:1;40130:88;40237:4;40234:1;40227:15;40261:4;40258:1;40251:15;40278:180;40326:77;40323:1;40316:88;40423:4;40420:1;40413:15;40447:4;40444:1;40437:15;40464:117;40573:1;40570;40563:12;40587:117;40696:1;40693;40686:12;40710:117;40819:1;40816;40809:12;40833:117;40942:1;40939;40932:12;40956:117;41065:1;41062;41055:12;41079:117;41188:1;41185;41178:12;41202:102;41243:6;41294:2;41290:7;41285:2;41278:5;41274:14;41270:28;41260:38;;41202:102;;;:::o;41310:166::-;41450:18;41446:1;41438:6;41434:14;41427:42;41310:166;:::o;41482:230::-;41622:34;41618:1;41610:6;41606:14;41599:58;41691:13;41686:2;41678:6;41674:15;41667:38;41482:230;:::o;41718:237::-;41858:34;41854:1;41846:6;41842:14;41835:58;41927:20;41922:2;41914:6;41910:15;41903:45;41718:237;:::o;41961:225::-;42101:34;42097:1;42089:6;42085:14;42078:58;42170:8;42165:2;42157:6;42153:15;42146:33;41961:225;:::o;42192:178::-;42332:30;42328:1;42320:6;42316:14;42309:54;42192:178;:::o;42376:228::-;42516:34;42512:1;42504:6;42500:14;42493:58;42585:11;42580:2;42572:6;42568:15;42561:36;42376:228;:::o;42610:233::-;42750:34;42746:1;42738:6;42734:14;42727:58;42819:16;42814:2;42806:6;42802:15;42795:41;42610:233;:::o;42849:223::-;42989:34;42985:1;42977:6;42973:14;42966:58;43058:6;43053:2;43045:6;43041:15;43034:31;42849:223;:::o;43078:175::-;43218:27;43214:1;43206:6;43202:14;43195:51;43078:175;:::o;43259:231::-;43399:34;43395:1;43387:6;43383:14;43376:58;43468:14;43463:2;43455:6;43451:15;43444:39;43259:231;:::o;43496:166::-;43636:18;43632:1;43624:6;43620:14;43613:42;43496:166;:::o;43668:243::-;43808:34;43804:1;43796:6;43792:14;43785:58;43877:26;43872:2;43864:6;43860:15;43853:51;43668:243;:::o;43917:229::-;44057:34;44053:1;44045:6;44041:14;44034:58;44126:12;44121:2;44113:6;44109:15;44102:37;43917:229;:::o;44152:228::-;44292:34;44288:1;44280:6;44276:14;44269:58;44361:11;44356:2;44348:6;44344:15;44337:36;44152:228;:::o;44386:182::-;44526:34;44522:1;44514:6;44510:14;44503:58;44386:182;:::o;44574:231::-;44714:34;44710:1;44702:6;44698:14;44691:58;44783:14;44778:2;44770:6;44766:15;44759:39;44574:231;:::o;44811:182::-;44951:34;44947:1;44939:6;44935:14;44928:58;44811:182;:::o;44999:228::-;45139:34;45135:1;45127:6;45123:14;45116:58;45208:11;45203:2;45195:6;45191:15;45184:36;44999:228;:::o;45233:234::-;45373:34;45369:1;45361:6;45357:14;45350:58;45442:17;45437:2;45429:6;45425:15;45418:42;45233:234;:::o;45473:220::-;45613:34;45609:1;45601:6;45597:14;45590:58;45682:3;45677:2;45669:6;45665:15;45658:28;45473:220;:::o;45699:114::-;;:::o;45819:236::-;45959:34;45955:1;45947:6;45943:14;45936:58;46028:19;46023:2;46015:6;46011:15;46004:44;45819:236;:::o;46061:231::-;46201:34;46197:1;46189:6;46185:14;46178:58;46270:14;46265:2;46257:6;46253:15;46246:39;46061:231;:::o;46298:171::-;46438:23;46434:1;46426:6;46422:14;46415:47;46298:171;:::o;46475:122::-;46548:24;46566:5;46548:24;:::i;:::-;46541:5;46538:35;46528:63;;46587:1;46584;46577:12;46528:63;46475:122;:::o;46603:116::-;46673:21;46688:5;46673:21;:::i;:::-;46666:5;46663:32;46653:60;;46709:1;46706;46699:12;46653:60;46603:116;:::o;46725:120::-;46797:23;46814:5;46797:23;:::i;:::-;46790:5;46787:34;46777:62;;46835:1;46832;46825:12;46777:62;46725:120;:::o;46851:122::-;46924:24;46942:5;46924:24;:::i;:::-;46917:5;46914:35;46904:63;;46963:1;46960;46953:12;46904:63;46851:122;:::o
Swarm Source
ipfs://e46cb8c4ba9cc38c381229ea5f073dfdb31f149145165adaabab526539b158d3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.