ERC-721
Overview
Max Total Supply
397 AW
Holders
167
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 AWLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AbsurdWorld
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-16 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) // ______ __ __ __ __ ___ __ ///\ _ \/\ \ /\ \/\ \ __/\ \ /\_ \ /\ \ //\ \ \L\ \ \ \____ ____ __ __ _ __ \_\ \ \ \/\ \ \ \ ___ _ __\//\ \ \_\ \ // \ \ __ \ \ '__`\ /',__\/\ \/\ \/\`'__\/'_` \ \ \ \ \ \ \ / __`\/\`'__\\ \ \ /'_` \ // \ \ \/\ \ \ \L\ \/\__, `\ \ \_\ \ \ \//\ \L\ \ \ \_/ \_\ \/\ \L\ \ \ \/ \_\ \_/\ \L\ \ // \ \_\ \_\ \_,__/\/\____/\ \____/\ \_\\ \___,_\ `\___x___/\ \____/\ \_\ /\____\ \___,_\ // \/_/\/_/\/___/ \/___/ \/___/ \/_/ \/__,_ /'\/__//__/ \/___/ \/_/ \/____/\/__,_ / pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (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); /** * @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 (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/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: 915absurdworld.sol // Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721 pragma solidity ^0.8.0; contract AbsurdWorld is ERC721Enumerable, Ownable { using Strings for uint256; bool public _isSaleActive = false; bool public _revealed = false; // Constants uint256 public constant MAX_SUPPLY = 6666; uint256 public mintPrice = 0 ether; uint256 public maxBalance = 100; uint256 public maxMint = 2; string baseURI; string public notRevealedUri; string public baseExtension = ".json"; mapping(uint256 => string) private _tokenURIs; constructor(string memory initBaseURI, string memory initNotRevealedUri) ERC721("AbsurdWorld", "AW") { setBaseURI(initBaseURI); setNotRevealedURI(initNotRevealedUri); } function mintAW(uint256 tokenQuantity) public payable { require( totalSupply() + tokenQuantity <= MAX_SUPPLY, "Sale would exceed max supply" ); require(_isSaleActive, "Sale must be active to mint Absurd World"); require( balanceOf(msg.sender) + tokenQuantity <= maxBalance, "Sale would exceed max balance" ); require( tokenQuantity * mintPrice <= msg.value, "Not enough ether sent" ); require(tokenQuantity <= maxMint, "Can only mint 2 tokens at a time"); _mintAW(tokenQuantity); } function _mintAW(uint256 tokenQuantity) internal { for (uint256 i = 0; i < tokenQuantity; i++) { uint256 mintIndex = totalSupply(); if (totalSupply() < MAX_SUPPLY) { _safeMint(msg.sender, mintIndex); } } } 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 _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString(), baseExtension)); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } //only owner function flipSaleActive() public onlyOwner { _isSaleActive = !_isSaleActive; } function flipReveal() public onlyOwner { _revealed = !_revealed; } function setMintPrice(uint256 _mintPrice) public onlyOwner { mintPrice = _mintPrice; } 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 setMaxBalance(uint256 _maxBalance) public onlyOwner { maxBalance = _maxBalance; } function setMaxMint(uint256 _maxMint) public onlyOwner { maxMint = _maxMint; } function withdraw(address to) public onlyOwner { uint256 balance = address(this).balance; payable(to).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"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":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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintAW","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBalance","type":"uint256"}],"name":"setMaxBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff0219169083151502179055506000600b556064600c556002600d556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250601090805190602001906200009692919062000395565b50348015620000a457600080fd5b506040516200484a3803806200484a8339818101604052810190620000ca9190620004c3565b6040518060400160405280600b81526020017f416273757264576f726c640000000000000000000000000000000000000000008152506040518060400160405280600281526020017f415700000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200014e92919062000395565b5080600190805190602001906200016792919062000395565b5050506200018a6200017e620001b460201b60201c565b620001bc60201b60201c565b6200019b826200028260201b60201c565b620001ac81620002ae60201b60201c565b50506200074f565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000292620002da60201b60201c565b80600e9080519060200190620002aa92919062000395565b5050565b620002be620002da60201b60201c565b80600f9080519060200190620002d692919062000395565b5050565b620002ea620001b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003106200036b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000360906200056f565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003a39062000637565b90600052602060002090601f016020900481019282620003c7576000855562000413565b82601f10620003e257805160ff191683800117855562000413565b8280016001018555821562000413579182015b8281111562000412578251825591602001919060010190620003f5565b5b50905062000422919062000426565b5090565b5b808211156200044157600081600090555060010162000427565b5090565b60006200045c6200045684620005ba565b62000591565b9050828152602081018484840111156200047b576200047a62000706565b5b6200048884828562000601565b509392505050565b600082601f830112620004a857620004a762000701565b5b8151620004ba84826020860162000445565b91505092915050565b60008060408385031215620004dd57620004dc62000710565b5b600083015167ffffffffffffffff811115620004fe57620004fd6200070b565b5b6200050c8582860162000490565b925050602083015167ffffffffffffffff81111562000530576200052f6200070b565b5b6200053e8582860162000490565b9150509250929050565b600062000557602083620005f0565b9150620005648262000726565b602082019050919050565b600060208201905081810360008301526200058a8162000548565b9050919050565b60006200059d620005b0565b9050620005ab82826200066d565b919050565b6000604051905090565b600067ffffffffffffffff821115620005d857620005d7620006d2565b5b620005e38262000715565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200062157808201518184015260208101905062000604565b8381111562000631576000848401525b50505050565b600060028204905060018216806200065057607f821691505b60208210811415620006675762000666620006a3565b5b50919050565b620006788262000715565b810181811067ffffffffffffffff821117156200069a5762000699620006d2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6140eb806200075f6000396000f3fe60806040526004361061021a5760003560e01c80637080d6fc11610123578063a4d210a5116100ab578063de8b51e11161006f578063de8b51e1146107b2578063e985e9c5146107c9578063f2c4ce1e14610806578063f2fde38b1461082f578063f4a0a528146108585761021a565b8063a4d210a5146106dc578063b88d4fde146106f8578063c668286214610721578063c87b56dd1461074c578063da3ef23f146107895761021a565b80637501f741116100f25780637501f741146106095780638da5cb5b1461063457806395d89b411461065f5780639d51d9b71461068a578063a22cb465146106b35761021a565b80637080d6fc1461055f57806370a082311461058a578063715018a6146105c757806373ad468a146105de5761021a565b80633b84d9c6116101a6578063547520fe11610175578063547520fe1461047a57806355f804b3146104a35780636352211e146104cc5780636817c76c146105095780636ebeac85146105345761021a565b80633b84d9c6146103d457806342842e0e146103eb5780634f6ccce71461041457806351cff8d9146104515761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806318160ddd1461031857806323b872dd146103435780632f745c591461036c57806332cb6b0c146103a95761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063081c8c44146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612dbc565b610881565b6040516102539190613376565b60405180910390f35b34801561026857600080fd5b506102716108fb565b60405161027e9190613391565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612e5f565b61098d565b6040516102bb919061330f565b60405180910390f35b3480156102d057600080fd5b506102d96109d3565b6040516102e69190613391565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190612d7c565b610a61565b005b34801561032457600080fd5b5061032d610b79565b60405161033a9190613653565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190612c66565b610b86565b005b34801561037857600080fd5b50610393600480360381019061038e9190612d7c565b610be6565b6040516103a09190613653565b60405180910390f35b3480156103b557600080fd5b506103be610c8b565b6040516103cb9190613653565b60405180910390f35b3480156103e057600080fd5b506103e9610c91565b005b3480156103f757600080fd5b50610412600480360381019061040d9190612c66565b610cc5565b005b34801561042057600080fd5b5061043b60048036038101906104369190612e5f565b610ce5565b6040516104489190613653565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190612bf9565b610d56565b005b34801561048657600080fd5b506104a1600480360381019061049c9190612e5f565b610dae565b005b3480156104af57600080fd5b506104ca60048036038101906104c59190612e16565b610dc0565b005b3480156104d857600080fd5b506104f360048036038101906104ee9190612e5f565b610de2565b604051610500919061330f565b60405180910390f35b34801561051557600080fd5b5061051e610e94565b60405161052b9190613653565b60405180910390f35b34801561054057600080fd5b50610549610e9a565b6040516105569190613376565b60405180910390f35b34801561056b57600080fd5b50610574610ead565b6040516105819190613376565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190612bf9565b610ec0565b6040516105be9190613653565b60405180910390f35b3480156105d357600080fd5b506105dc610f78565b005b3480156105ea57600080fd5b506105f3610f8c565b6040516106009190613653565b60405180910390f35b34801561061557600080fd5b5061061e610f92565b60405161062b9190613653565b60405180910390f35b34801561064057600080fd5b50610649610f98565b604051610656919061330f565b60405180910390f35b34801561066b57600080fd5b50610674610fc2565b6040516106819190613391565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac9190612e5f565b611054565b005b3480156106bf57600080fd5b506106da60048036038101906106d59190612d3c565b611066565b005b6106f660048036038101906106f19190612e5f565b61107c565b005b34801561070457600080fd5b5061071f600480360381019061071a9190612cb9565b61121b565b005b34801561072d57600080fd5b5061073661127d565b6040516107439190613391565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e9190612e5f565b61130b565b6040516107809190613391565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190612e16565b61152f565b005b3480156107be57600080fd5b506107c7611551565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190612c26565b611585565b6040516107fd9190613376565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190612e16565b611619565b005b34801561083b57600080fd5b5061085660048036038101906108519190612bf9565b61163b565b005b34801561086457600080fd5b5061087f600480360381019061087a9190612e5f565b6116bf565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457506108f3826116d1565b5b9050919050565b60606000805461090a90613918565b80601f016020809104026020016040519081016040528092919081815260200182805461093690613918565b80156109835780601f1061095857610100808354040283529160200191610983565b820191906000526020600020905b81548152906001019060200180831161096657829003601f168201915b5050505050905090565b6000610998826117b3565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f80546109e090613918565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0c90613918565b8015610a595780601f10610a2e57610100808354040283529160200191610a59565b820191906000526020600020905b815481529060010190602001808311610a3c57829003601f168201915b505050505081565b6000610a6c82610de2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad4906135d3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610afc6117fe565b73ffffffffffffffffffffffffffffffffffffffff161480610b2b5750610b2a81610b256117fe565b611585565b5b610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6190613533565b60405180910390fd5b610b748383611806565b505050565b6000600880549050905090565b610b97610b916117fe565b826118bf565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90613633565b60405180910390fd5b610be1838383611954565b505050565b6000610bf183610ec0565b8210610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c29906133b3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611a0a81565b610c99611bbb565b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b610ce08383836040518060200160405280600081525061121b565b505050565b6000610cef610b79565b8210610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d27906135f3565b60405180910390fd5b60088281548110610d4457610d43613ab1565b5b90600052602060002001549050919050565b610d5e611bbb565b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610da9573d6000803e3d6000fd5b505050565b610db6611bbb565b80600d8190555050565b610dc8611bbb565b80600e9080519060200190610dde929190612a0d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e82906135b3565b60405180910390fd5b80915050919050565b600b5481565b600a60159054906101000a900460ff1681565b600a60149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f28906134f3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f80611bbb565b610f8a6000611c39565b565b600c5481565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610fd190613918565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffd90613918565b801561104a5780601f1061101f5761010080835404028352916020019161104a565b820191906000526020600020905b81548152906001019060200180831161102d57829003601f168201915b5050505050905090565b61105c611bbb565b80600c8190555050565b6110786110716117fe565b8383611cff565b5050565b611a0a81611088610b79565b611092919061374d565b11156110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90613453565b60405180910390fd5b600a60149054906101000a900460ff16611122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611119906134d3565b60405180910390fd5b600c548161112f33610ec0565b611139919061374d565b111561117a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611171906134b3565b60405180910390fd5b34600b548261118991906137d4565b11156111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190613613565b60405180910390fd5b600d5481111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690613513565b60405180910390fd5b61121881611e6c565b50565b61122c6112266117fe565b836118bf565b61126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290613633565b60405180910390fd5b61127784848484611eb7565b50505050565b6010805461128a90613918565b80601f01602080910402602001604051908101604052809291908181526020018280546112b690613918565b80156113035780601f106112d857610100808354040283529160200191611303565b820191906000526020600020905b8154815290600101906020018083116112e657829003601f168201915b505050505081565b606061131682611f13565b611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90613593565b60405180910390fd5b60001515600a60159054906101000a900460ff161515141561140357600f805461137e90613918565b80601f01602080910402602001604051908101604052809291908181526020018280546113aa90613918565b80156113f75780601f106113cc576101008083540402835291602001916113f7565b820191906000526020600020905b8154815290600101906020018083116113da57829003601f168201915b5050505050905061152a565b600060116000848152602001908152602001600020805461142390613918565b80601f016020809104026020016040519081016040528092919081815260200182805461144f90613918565b801561149c5780601f106114715761010080835404028352916020019161149c565b820191906000526020600020905b81548152906001019060200180831161147f57829003601f168201915b5050505050905060006114ad611f7f565b90506000815114156114c357819250505061152a565b6000825111156114f85780826040516020016114e09291906132ba565b6040516020818303038152906040529250505061152a565b8061150285612011565b6010604051602001611516939291906132de565b604051602081830303815290604052925050505b919050565b611537611bbb565b806010908051906020019061154d929190612a0d565b5050565b611559611bbb565b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611621611bbb565b80600f9080519060200190611637929190612a0d565b5050565b611643611bbb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa906133f3565b60405180910390fd5b6116bc81611c39565b50565b6116c7611bbb565b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061179c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806117ac57506117ab82612172565b5b9050919050565b6117bc81611f13565b6117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f2906135b3565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661187983610de2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806118cb83610de2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061190d575061190c8185611585565b5b8061194b57508373ffffffffffffffffffffffffffffffffffffffff166119338461098d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661197482610de2565b73ffffffffffffffffffffffffffffffffffffffff16146119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190613413565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3190613473565b60405180910390fd5b611a458383836121dc565b611a50600082611806565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aa0919061382e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611af7919061374d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bb68383836122f0565b505050565b611bc36117fe565b73ffffffffffffffffffffffffffffffffffffffff16611be1610f98565b73ffffffffffffffffffffffffffffffffffffffff1614611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e90613573565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6590613493565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e5f9190613376565b60405180910390a3505050565b60005b81811015611eb3576000611e81610b79565b9050611a0a611e8e610b79565b1015611e9f57611e9e33826122f5565b5b508080611eab9061397b565b915050611e6f565b5050565b611ec2848484611954565b611ece84848484612313565b611f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f04906133d3565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600e8054611f8e90613918565b80601f0160208091040260200160405190810160405280929190818152602001828054611fba90613918565b80156120075780601f10611fdc57610100808354040283529160200191612007565b820191906000526020600020905b815481529060010190602001808311611fea57829003601f168201915b5050505050905090565b60606000821415612059576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061216d565b600082905060005b6000821461208b5780806120749061397b565b915050600a8261208491906137a3565b9150612061565b60008167ffffffffffffffff8111156120a7576120a6613ae0565b5b6040519080825280601f01601f1916602001820160405280156120d95781602001600182028036833780820191505090505b5090505b60008514612166576001826120f2919061382e565b9150600a8561210191906139c4565b603061210d919061374d565b60f81b81838151811061212357612122613ab1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561215f91906137a3565b94506120dd565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121e78383836124aa565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561222a57612225816124af565b612269565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122685761226783826124f8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ac576122a781612665565b6122eb565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122ea576122e98282612736565b5b5b505050565b505050565b61230f8282604051806020016040528060008152506127b5565b5050565b60006123348473ffffffffffffffffffffffffffffffffffffffff16612810565b1561249d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261235d6117fe565b8786866040518563ffffffff1660e01b815260040161237f949392919061332a565b602060405180830381600087803b15801561239957600080fd5b505af19250505080156123ca57506040513d601f19601f820116820180604052508101906123c79190612de9565b60015b61244d573d80600081146123fa576040519150601f19603f3d011682016040523d82523d6000602084013e6123ff565b606091505b50600081511415612445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243c906133d3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124a2565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161250584610ec0565b61250f919061382e565b90506000600760008481526020019081526020016000205490508181146125f4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612679919061382e565b90506000600960008481526020019081526020016000205490506000600883815481106126a9576126a8613ab1565b5b9060005260206000200154905080600883815481106126cb576126ca613ab1565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061271a57612719613a82565b5b6001900381819060005260206000200160009055905550505050565b600061274183610ec0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6127bf8383612833565b6127cc6000848484612313565b61280b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612802906133d3565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289a90613553565b60405180910390fd5b6128ac81611f13565b156128ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e390613433565b60405180910390fd5b6128f8600083836121dc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612948919061374d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a09600083836122f0565b5050565b828054612a1990613918565b90600052602060002090601f016020900481019282612a3b5760008555612a82565b82601f10612a5457805160ff1916838001178555612a82565b82800160010185558215612a82579182015b82811115612a81578251825591602001919060010190612a66565b5b509050612a8f9190612a93565b5090565b5b80821115612aac576000816000905550600101612a94565b5090565b6000612ac3612abe84613693565b61366e565b905082815260208101848484011115612adf57612ade613b14565b5b612aea8482856138d6565b509392505050565b6000612b05612b00846136c4565b61366e565b905082815260208101848484011115612b2157612b20613b14565b5b612b2c8482856138d6565b509392505050565b600081359050612b4381614059565b92915050565b600081359050612b5881614070565b92915050565b600081359050612b6d81614087565b92915050565b600081519050612b8281614087565b92915050565b600082601f830112612b9d57612b9c613b0f565b5b8135612bad848260208601612ab0565b91505092915050565b600082601f830112612bcb57612bca613b0f565b5b8135612bdb848260208601612af2565b91505092915050565b600081359050612bf38161409e565b92915050565b600060208284031215612c0f57612c0e613b1e565b5b6000612c1d84828501612b34565b91505092915050565b60008060408385031215612c3d57612c3c613b1e565b5b6000612c4b85828601612b34565b9250506020612c5c85828601612b34565b9150509250929050565b600080600060608486031215612c7f57612c7e613b1e565b5b6000612c8d86828701612b34565b9350506020612c9e86828701612b34565b9250506040612caf86828701612be4565b9150509250925092565b60008060008060808587031215612cd357612cd2613b1e565b5b6000612ce187828801612b34565b9450506020612cf287828801612b34565b9350506040612d0387828801612be4565b925050606085013567ffffffffffffffff811115612d2457612d23613b19565b5b612d3087828801612b88565b91505092959194509250565b60008060408385031215612d5357612d52613b1e565b5b6000612d6185828601612b34565b9250506020612d7285828601612b49565b9150509250929050565b60008060408385031215612d9357612d92613b1e565b5b6000612da185828601612b34565b9250506020612db285828601612be4565b9150509250929050565b600060208284031215612dd257612dd1613b1e565b5b6000612de084828501612b5e565b91505092915050565b600060208284031215612dff57612dfe613b1e565b5b6000612e0d84828501612b73565b91505092915050565b600060208284031215612e2c57612e2b613b1e565b5b600082013567ffffffffffffffff811115612e4a57612e49613b19565b5b612e5684828501612bb6565b91505092915050565b600060208284031215612e7557612e74613b1e565b5b6000612e8384828501612be4565b91505092915050565b612e9581613862565b82525050565b612ea481613874565b82525050565b6000612eb58261370a565b612ebf8185613720565b9350612ecf8185602086016138e5565b612ed881613b23565b840191505092915050565b6000612eee82613715565b612ef88185613731565b9350612f088185602086016138e5565b612f1181613b23565b840191505092915050565b6000612f2782613715565b612f318185613742565b9350612f418185602086016138e5565b80840191505092915050565b60008154612f5a81613918565b612f648186613742565b94506001821660008114612f7f5760018114612f9057612fc3565b60ff19831686528186019350612fc3565b612f99856136f5565b60005b83811015612fbb57815481890152600182019150602081019050612f9c565b838801955050505b50505092915050565b6000612fd9602b83613731565b9150612fe482613b34565b604082019050919050565b6000612ffc603283613731565b915061300782613b83565b604082019050919050565b600061301f602683613731565b915061302a82613bd2565b604082019050919050565b6000613042602583613731565b915061304d82613c21565b604082019050919050565b6000613065601c83613731565b915061307082613c70565b602082019050919050565b6000613088601c83613731565b915061309382613c99565b602082019050919050565b60006130ab602483613731565b91506130b682613cc2565b604082019050919050565b60006130ce601983613731565b91506130d982613d11565b602082019050919050565b60006130f1601d83613731565b91506130fc82613d3a565b602082019050919050565b6000613114602883613731565b915061311f82613d63565b604082019050919050565b6000613137602983613731565b915061314282613db2565b604082019050919050565b600061315a602083613731565b915061316582613e01565b602082019050919050565b600061317d603e83613731565b915061318882613e2a565b604082019050919050565b60006131a0602083613731565b91506131ab82613e79565b602082019050919050565b60006131c3602083613731565b91506131ce82613ea2565b602082019050919050565b60006131e6602f83613731565b91506131f182613ecb565b604082019050919050565b6000613209601883613731565b915061321482613f1a565b602082019050919050565b600061322c602183613731565b915061323782613f43565b604082019050919050565b600061324f602c83613731565b915061325a82613f92565b604082019050919050565b6000613272601583613731565b915061327d82613fe1565b602082019050919050565b6000613295602e83613731565b91506132a08261400a565b604082019050919050565b6132b4816138cc565b82525050565b60006132c68285612f1c565b91506132d28284612f1c565b91508190509392505050565b60006132ea8286612f1c565b91506132f68285612f1c565b91506133028284612f4d565b9150819050949350505050565b60006020820190506133246000830184612e8c565b92915050565b600060808201905061333f6000830187612e8c565b61334c6020830186612e8c565b61335960408301856132ab565b818103606083015261336b8184612eaa565b905095945050505050565b600060208201905061338b6000830184612e9b565b92915050565b600060208201905081810360008301526133ab8184612ee3565b905092915050565b600060208201905081810360008301526133cc81612fcc565b9050919050565b600060208201905081810360008301526133ec81612fef565b9050919050565b6000602082019050818103600083015261340c81613012565b9050919050565b6000602082019050818103600083015261342c81613035565b9050919050565b6000602082019050818103600083015261344c81613058565b9050919050565b6000602082019050818103600083015261346c8161307b565b9050919050565b6000602082019050818103600083015261348c8161309e565b9050919050565b600060208201905081810360008301526134ac816130c1565b9050919050565b600060208201905081810360008301526134cc816130e4565b9050919050565b600060208201905081810360008301526134ec81613107565b9050919050565b6000602082019050818103600083015261350c8161312a565b9050919050565b6000602082019050818103600083015261352c8161314d565b9050919050565b6000602082019050818103600083015261354c81613170565b9050919050565b6000602082019050818103600083015261356c81613193565b9050919050565b6000602082019050818103600083015261358c816131b6565b9050919050565b600060208201905081810360008301526135ac816131d9565b9050919050565b600060208201905081810360008301526135cc816131fc565b9050919050565b600060208201905081810360008301526135ec8161321f565b9050919050565b6000602082019050818103600083015261360c81613242565b9050919050565b6000602082019050818103600083015261362c81613265565b9050919050565b6000602082019050818103600083015261364c81613288565b9050919050565b600060208201905061366860008301846132ab565b92915050565b6000613678613689565b9050613684828261394a565b919050565b6000604051905090565b600067ffffffffffffffff8211156136ae576136ad613ae0565b5b6136b782613b23565b9050602081019050919050565b600067ffffffffffffffff8211156136df576136de613ae0565b5b6136e882613b23565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613758826138cc565b9150613763836138cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613798576137976139f5565b5b828201905092915050565b60006137ae826138cc565b91506137b9836138cc565b9250826137c9576137c8613a24565b5b828204905092915050565b60006137df826138cc565b91506137ea836138cc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613823576138226139f5565b5b828202905092915050565b6000613839826138cc565b9150613844836138cc565b925082821015613857576138566139f5565b5b828203905092915050565b600061386d826138ac565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139035780820151818401526020810190506138e8565b83811115613912576000848401525b50505050565b6000600282049050600182168061393057607f821691505b6020821081141561394457613943613a53565b5b50919050565b61395382613b23565b810181811067ffffffffffffffff8211171561397257613971613ae0565b5b80604052505050565b6000613986826138cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139b9576139b86139f5565b5b600182019050919050565b60006139cf826138cc565b91506139da836138cc565b9250826139ea576139e9613a24565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c6520776f756c6420657863656564206d617820737570706c7900000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c6520776f756c6420657863656564206d61782062616c616e6365000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74204162737560008201527f726420576f726c64000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74203220746f6b656e7320617420612074696d65600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61406281613862565b811461406d57600080fd5b50565b61407981613874565b811461408457600080fd5b50565b61409081613880565b811461409b57600080fd5b50565b6140a7816138cc565b81146140b257600080fd5b5056fea2646970667358221220d59f3fa88e78d009bbc5035200188c270399d3f2f3f58c00e83d47d43ab453c464736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80637080d6fc11610123578063a4d210a5116100ab578063de8b51e11161006f578063de8b51e1146107b2578063e985e9c5146107c9578063f2c4ce1e14610806578063f2fde38b1461082f578063f4a0a528146108585761021a565b8063a4d210a5146106dc578063b88d4fde146106f8578063c668286214610721578063c87b56dd1461074c578063da3ef23f146107895761021a565b80637501f741116100f25780637501f741146106095780638da5cb5b1461063457806395d89b411461065f5780639d51d9b71461068a578063a22cb465146106b35761021a565b80637080d6fc1461055f57806370a082311461058a578063715018a6146105c757806373ad468a146105de5761021a565b80633b84d9c6116101a6578063547520fe11610175578063547520fe1461047a57806355f804b3146104a35780636352211e146104cc5780636817c76c146105095780636ebeac85146105345761021a565b80633b84d9c6146103d457806342842e0e146103eb5780634f6ccce71461041457806351cff8d9146104515761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806318160ddd1461031857806323b872dd146103435780632f745c591461036c57806332cb6b0c146103a95761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063081c8c44146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612dbc565b610881565b6040516102539190613376565b60405180910390f35b34801561026857600080fd5b506102716108fb565b60405161027e9190613391565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612e5f565b61098d565b6040516102bb919061330f565b60405180910390f35b3480156102d057600080fd5b506102d96109d3565b6040516102e69190613391565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190612d7c565b610a61565b005b34801561032457600080fd5b5061032d610b79565b60405161033a9190613653565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190612c66565b610b86565b005b34801561037857600080fd5b50610393600480360381019061038e9190612d7c565b610be6565b6040516103a09190613653565b60405180910390f35b3480156103b557600080fd5b506103be610c8b565b6040516103cb9190613653565b60405180910390f35b3480156103e057600080fd5b506103e9610c91565b005b3480156103f757600080fd5b50610412600480360381019061040d9190612c66565b610cc5565b005b34801561042057600080fd5b5061043b60048036038101906104369190612e5f565b610ce5565b6040516104489190613653565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190612bf9565b610d56565b005b34801561048657600080fd5b506104a1600480360381019061049c9190612e5f565b610dae565b005b3480156104af57600080fd5b506104ca60048036038101906104c59190612e16565b610dc0565b005b3480156104d857600080fd5b506104f360048036038101906104ee9190612e5f565b610de2565b604051610500919061330f565b60405180910390f35b34801561051557600080fd5b5061051e610e94565b60405161052b9190613653565b60405180910390f35b34801561054057600080fd5b50610549610e9a565b6040516105569190613376565b60405180910390f35b34801561056b57600080fd5b50610574610ead565b6040516105819190613376565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190612bf9565b610ec0565b6040516105be9190613653565b60405180910390f35b3480156105d357600080fd5b506105dc610f78565b005b3480156105ea57600080fd5b506105f3610f8c565b6040516106009190613653565b60405180910390f35b34801561061557600080fd5b5061061e610f92565b60405161062b9190613653565b60405180910390f35b34801561064057600080fd5b50610649610f98565b604051610656919061330f565b60405180910390f35b34801561066b57600080fd5b50610674610fc2565b6040516106819190613391565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac9190612e5f565b611054565b005b3480156106bf57600080fd5b506106da60048036038101906106d59190612d3c565b611066565b005b6106f660048036038101906106f19190612e5f565b61107c565b005b34801561070457600080fd5b5061071f600480360381019061071a9190612cb9565b61121b565b005b34801561072d57600080fd5b5061073661127d565b6040516107439190613391565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e9190612e5f565b61130b565b6040516107809190613391565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190612e16565b61152f565b005b3480156107be57600080fd5b506107c7611551565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190612c26565b611585565b6040516107fd9190613376565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190612e16565b611619565b005b34801561083b57600080fd5b5061085660048036038101906108519190612bf9565b61163b565b005b34801561086457600080fd5b5061087f600480360381019061087a9190612e5f565b6116bf565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457506108f3826116d1565b5b9050919050565b60606000805461090a90613918565b80601f016020809104026020016040519081016040528092919081815260200182805461093690613918565b80156109835780601f1061095857610100808354040283529160200191610983565b820191906000526020600020905b81548152906001019060200180831161096657829003601f168201915b5050505050905090565b6000610998826117b3565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f80546109e090613918565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0c90613918565b8015610a595780601f10610a2e57610100808354040283529160200191610a59565b820191906000526020600020905b815481529060010190602001808311610a3c57829003601f168201915b505050505081565b6000610a6c82610de2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad4906135d3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610afc6117fe565b73ffffffffffffffffffffffffffffffffffffffff161480610b2b5750610b2a81610b256117fe565b611585565b5b610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6190613533565b60405180910390fd5b610b748383611806565b505050565b6000600880549050905090565b610b97610b916117fe565b826118bf565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90613633565b60405180910390fd5b610be1838383611954565b505050565b6000610bf183610ec0565b8210610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c29906133b3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611a0a81565b610c99611bbb565b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b610ce08383836040518060200160405280600081525061121b565b505050565b6000610cef610b79565b8210610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d27906135f3565b60405180910390fd5b60088281548110610d4457610d43613ab1565b5b90600052602060002001549050919050565b610d5e611bbb565b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610da9573d6000803e3d6000fd5b505050565b610db6611bbb565b80600d8190555050565b610dc8611bbb565b80600e9080519060200190610dde929190612a0d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e82906135b3565b60405180910390fd5b80915050919050565b600b5481565b600a60159054906101000a900460ff1681565b600a60149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f28906134f3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f80611bbb565b610f8a6000611c39565b565b600c5481565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610fd190613918565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffd90613918565b801561104a5780601f1061101f5761010080835404028352916020019161104a565b820191906000526020600020905b81548152906001019060200180831161102d57829003601f168201915b5050505050905090565b61105c611bbb565b80600c8190555050565b6110786110716117fe565b8383611cff565b5050565b611a0a81611088610b79565b611092919061374d565b11156110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90613453565b60405180910390fd5b600a60149054906101000a900460ff16611122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611119906134d3565b60405180910390fd5b600c548161112f33610ec0565b611139919061374d565b111561117a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611171906134b3565b60405180910390fd5b34600b548261118991906137d4565b11156111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190613613565b60405180910390fd5b600d5481111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690613513565b60405180910390fd5b61121881611e6c565b50565b61122c6112266117fe565b836118bf565b61126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290613633565b60405180910390fd5b61127784848484611eb7565b50505050565b6010805461128a90613918565b80601f01602080910402602001604051908101604052809291908181526020018280546112b690613918565b80156113035780601f106112d857610100808354040283529160200191611303565b820191906000526020600020905b8154815290600101906020018083116112e657829003601f168201915b505050505081565b606061131682611f13565b611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90613593565b60405180910390fd5b60001515600a60159054906101000a900460ff161515141561140357600f805461137e90613918565b80601f01602080910402602001604051908101604052809291908181526020018280546113aa90613918565b80156113f75780601f106113cc576101008083540402835291602001916113f7565b820191906000526020600020905b8154815290600101906020018083116113da57829003601f168201915b5050505050905061152a565b600060116000848152602001908152602001600020805461142390613918565b80601f016020809104026020016040519081016040528092919081815260200182805461144f90613918565b801561149c5780601f106114715761010080835404028352916020019161149c565b820191906000526020600020905b81548152906001019060200180831161147f57829003601f168201915b5050505050905060006114ad611f7f565b90506000815114156114c357819250505061152a565b6000825111156114f85780826040516020016114e09291906132ba565b6040516020818303038152906040529250505061152a565b8061150285612011565b6010604051602001611516939291906132de565b604051602081830303815290604052925050505b919050565b611537611bbb565b806010908051906020019061154d929190612a0d565b5050565b611559611bbb565b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611621611bbb565b80600f9080519060200190611637929190612a0d565b5050565b611643611bbb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa906133f3565b60405180910390fd5b6116bc81611c39565b50565b6116c7611bbb565b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061179c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806117ac57506117ab82612172565b5b9050919050565b6117bc81611f13565b6117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f2906135b3565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661187983610de2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806118cb83610de2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061190d575061190c8185611585565b5b8061194b57508373ffffffffffffffffffffffffffffffffffffffff166119338461098d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661197482610de2565b73ffffffffffffffffffffffffffffffffffffffff16146119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190613413565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3190613473565b60405180910390fd5b611a458383836121dc565b611a50600082611806565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aa0919061382e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611af7919061374d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bb68383836122f0565b505050565b611bc36117fe565b73ffffffffffffffffffffffffffffffffffffffff16611be1610f98565b73ffffffffffffffffffffffffffffffffffffffff1614611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e90613573565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6590613493565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e5f9190613376565b60405180910390a3505050565b60005b81811015611eb3576000611e81610b79565b9050611a0a611e8e610b79565b1015611e9f57611e9e33826122f5565b5b508080611eab9061397b565b915050611e6f565b5050565b611ec2848484611954565b611ece84848484612313565b611f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f04906133d3565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600e8054611f8e90613918565b80601f0160208091040260200160405190810160405280929190818152602001828054611fba90613918565b80156120075780601f10611fdc57610100808354040283529160200191612007565b820191906000526020600020905b815481529060010190602001808311611fea57829003601f168201915b5050505050905090565b60606000821415612059576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061216d565b600082905060005b6000821461208b5780806120749061397b565b915050600a8261208491906137a3565b9150612061565b60008167ffffffffffffffff8111156120a7576120a6613ae0565b5b6040519080825280601f01601f1916602001820160405280156120d95781602001600182028036833780820191505090505b5090505b60008514612166576001826120f2919061382e565b9150600a8561210191906139c4565b603061210d919061374d565b60f81b81838151811061212357612122613ab1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561215f91906137a3565b94506120dd565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121e78383836124aa565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561222a57612225816124af565b612269565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122685761226783826124f8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ac576122a781612665565b6122eb565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122ea576122e98282612736565b5b5b505050565b505050565b61230f8282604051806020016040528060008152506127b5565b5050565b60006123348473ffffffffffffffffffffffffffffffffffffffff16612810565b1561249d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261235d6117fe565b8786866040518563ffffffff1660e01b815260040161237f949392919061332a565b602060405180830381600087803b15801561239957600080fd5b505af19250505080156123ca57506040513d601f19601f820116820180604052508101906123c79190612de9565b60015b61244d573d80600081146123fa576040519150601f19603f3d011682016040523d82523d6000602084013e6123ff565b606091505b50600081511415612445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243c906133d3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124a2565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161250584610ec0565b61250f919061382e565b90506000600760008481526020019081526020016000205490508181146125f4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612679919061382e565b90506000600960008481526020019081526020016000205490506000600883815481106126a9576126a8613ab1565b5b9060005260206000200154905080600883815481106126cb576126ca613ab1565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061271a57612719613a82565b5b6001900381819060005260206000200160009055905550505050565b600061274183610ec0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6127bf8383612833565b6127cc6000848484612313565b61280b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612802906133d3565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289a90613553565b60405180910390fd5b6128ac81611f13565b156128ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e390613433565b60405180910390fd5b6128f8600083836121dc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612948919061374d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a09600083836122f0565b5050565b828054612a1990613918565b90600052602060002090601f016020900481019282612a3b5760008555612a82565b82601f10612a5457805160ff1916838001178555612a82565b82800160010185558215612a82579182015b82811115612a81578251825591602001919060010190612a66565b5b509050612a8f9190612a93565b5090565b5b80821115612aac576000816000905550600101612a94565b5090565b6000612ac3612abe84613693565b61366e565b905082815260208101848484011115612adf57612ade613b14565b5b612aea8482856138d6565b509392505050565b6000612b05612b00846136c4565b61366e565b905082815260208101848484011115612b2157612b20613b14565b5b612b2c8482856138d6565b509392505050565b600081359050612b4381614059565b92915050565b600081359050612b5881614070565b92915050565b600081359050612b6d81614087565b92915050565b600081519050612b8281614087565b92915050565b600082601f830112612b9d57612b9c613b0f565b5b8135612bad848260208601612ab0565b91505092915050565b600082601f830112612bcb57612bca613b0f565b5b8135612bdb848260208601612af2565b91505092915050565b600081359050612bf38161409e565b92915050565b600060208284031215612c0f57612c0e613b1e565b5b6000612c1d84828501612b34565b91505092915050565b60008060408385031215612c3d57612c3c613b1e565b5b6000612c4b85828601612b34565b9250506020612c5c85828601612b34565b9150509250929050565b600080600060608486031215612c7f57612c7e613b1e565b5b6000612c8d86828701612b34565b9350506020612c9e86828701612b34565b9250506040612caf86828701612be4565b9150509250925092565b60008060008060808587031215612cd357612cd2613b1e565b5b6000612ce187828801612b34565b9450506020612cf287828801612b34565b9350506040612d0387828801612be4565b925050606085013567ffffffffffffffff811115612d2457612d23613b19565b5b612d3087828801612b88565b91505092959194509250565b60008060408385031215612d5357612d52613b1e565b5b6000612d6185828601612b34565b9250506020612d7285828601612b49565b9150509250929050565b60008060408385031215612d9357612d92613b1e565b5b6000612da185828601612b34565b9250506020612db285828601612be4565b9150509250929050565b600060208284031215612dd257612dd1613b1e565b5b6000612de084828501612b5e565b91505092915050565b600060208284031215612dff57612dfe613b1e565b5b6000612e0d84828501612b73565b91505092915050565b600060208284031215612e2c57612e2b613b1e565b5b600082013567ffffffffffffffff811115612e4a57612e49613b19565b5b612e5684828501612bb6565b91505092915050565b600060208284031215612e7557612e74613b1e565b5b6000612e8384828501612be4565b91505092915050565b612e9581613862565b82525050565b612ea481613874565b82525050565b6000612eb58261370a565b612ebf8185613720565b9350612ecf8185602086016138e5565b612ed881613b23565b840191505092915050565b6000612eee82613715565b612ef88185613731565b9350612f088185602086016138e5565b612f1181613b23565b840191505092915050565b6000612f2782613715565b612f318185613742565b9350612f418185602086016138e5565b80840191505092915050565b60008154612f5a81613918565b612f648186613742565b94506001821660008114612f7f5760018114612f9057612fc3565b60ff19831686528186019350612fc3565b612f99856136f5565b60005b83811015612fbb57815481890152600182019150602081019050612f9c565b838801955050505b50505092915050565b6000612fd9602b83613731565b9150612fe482613b34565b604082019050919050565b6000612ffc603283613731565b915061300782613b83565b604082019050919050565b600061301f602683613731565b915061302a82613bd2565b604082019050919050565b6000613042602583613731565b915061304d82613c21565b604082019050919050565b6000613065601c83613731565b915061307082613c70565b602082019050919050565b6000613088601c83613731565b915061309382613c99565b602082019050919050565b60006130ab602483613731565b91506130b682613cc2565b604082019050919050565b60006130ce601983613731565b91506130d982613d11565b602082019050919050565b60006130f1601d83613731565b91506130fc82613d3a565b602082019050919050565b6000613114602883613731565b915061311f82613d63565b604082019050919050565b6000613137602983613731565b915061314282613db2565b604082019050919050565b600061315a602083613731565b915061316582613e01565b602082019050919050565b600061317d603e83613731565b915061318882613e2a565b604082019050919050565b60006131a0602083613731565b91506131ab82613e79565b602082019050919050565b60006131c3602083613731565b91506131ce82613ea2565b602082019050919050565b60006131e6602f83613731565b91506131f182613ecb565b604082019050919050565b6000613209601883613731565b915061321482613f1a565b602082019050919050565b600061322c602183613731565b915061323782613f43565b604082019050919050565b600061324f602c83613731565b915061325a82613f92565b604082019050919050565b6000613272601583613731565b915061327d82613fe1565b602082019050919050565b6000613295602e83613731565b91506132a08261400a565b604082019050919050565b6132b4816138cc565b82525050565b60006132c68285612f1c565b91506132d28284612f1c565b91508190509392505050565b60006132ea8286612f1c565b91506132f68285612f1c565b91506133028284612f4d565b9150819050949350505050565b60006020820190506133246000830184612e8c565b92915050565b600060808201905061333f6000830187612e8c565b61334c6020830186612e8c565b61335960408301856132ab565b818103606083015261336b8184612eaa565b905095945050505050565b600060208201905061338b6000830184612e9b565b92915050565b600060208201905081810360008301526133ab8184612ee3565b905092915050565b600060208201905081810360008301526133cc81612fcc565b9050919050565b600060208201905081810360008301526133ec81612fef565b9050919050565b6000602082019050818103600083015261340c81613012565b9050919050565b6000602082019050818103600083015261342c81613035565b9050919050565b6000602082019050818103600083015261344c81613058565b9050919050565b6000602082019050818103600083015261346c8161307b565b9050919050565b6000602082019050818103600083015261348c8161309e565b9050919050565b600060208201905081810360008301526134ac816130c1565b9050919050565b600060208201905081810360008301526134cc816130e4565b9050919050565b600060208201905081810360008301526134ec81613107565b9050919050565b6000602082019050818103600083015261350c8161312a565b9050919050565b6000602082019050818103600083015261352c8161314d565b9050919050565b6000602082019050818103600083015261354c81613170565b9050919050565b6000602082019050818103600083015261356c81613193565b9050919050565b6000602082019050818103600083015261358c816131b6565b9050919050565b600060208201905081810360008301526135ac816131d9565b9050919050565b600060208201905081810360008301526135cc816131fc565b9050919050565b600060208201905081810360008301526135ec8161321f565b9050919050565b6000602082019050818103600083015261360c81613242565b9050919050565b6000602082019050818103600083015261362c81613265565b9050919050565b6000602082019050818103600083015261364c81613288565b9050919050565b600060208201905061366860008301846132ab565b92915050565b6000613678613689565b9050613684828261394a565b919050565b6000604051905090565b600067ffffffffffffffff8211156136ae576136ad613ae0565b5b6136b782613b23565b9050602081019050919050565b600067ffffffffffffffff8211156136df576136de613ae0565b5b6136e882613b23565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613758826138cc565b9150613763836138cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613798576137976139f5565b5b828201905092915050565b60006137ae826138cc565b91506137b9836138cc565b9250826137c9576137c8613a24565b5b828204905092915050565b60006137df826138cc565b91506137ea836138cc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613823576138226139f5565b5b828202905092915050565b6000613839826138cc565b9150613844836138cc565b925082821015613857576138566139f5565b5b828203905092915050565b600061386d826138ac565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139035780820151818401526020810190506138e8565b83811115613912576000848401525b50505050565b6000600282049050600182168061393057607f821691505b6020821081141561394457613943613a53565b5b50919050565b61395382613b23565b810181811067ffffffffffffffff8211171561397257613971613ae0565b5b80604052505050565b6000613986826138cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139b9576139b86139f5565b5b600182019050919050565b60006139cf826138cc565b91506139da836138cc565b9250826139ea576139e9613a24565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c6520776f756c6420657863656564206d617820737570706c7900000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c6520776f756c6420657863656564206d61782062616c616e6365000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74204162737560008201527f726420576f726c64000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74203220746f6b656e7320617420612074696d65600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61406281613862565b811461406d57600080fd5b50565b61407981613874565b811461408457600080fd5b50565b61409081613880565b811461409b57600080fd5b50565b6140a7816138cc565b81146140b257600080fd5b5056fea2646970667358221220d59f3fa88e78d009bbc5035200188c270399d3f2f3f58c00e83d47d43ab453c464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initBaseURI (string):
Arg [1] : initNotRevealedUri (string):
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46951:3883:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40664:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27398:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28911:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47327:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28428:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41304:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29611:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40972:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47142:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49873:80;;;;;;;;;;;;;:::i;:::-;;30018:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41494:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50686:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50586:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50203:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27109:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47190:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47083:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47042:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26840:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5927:103;;;;;;;;;;;;;:::i;:::-;;47231:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47271:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5279:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27567:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29154:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47675:647;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30274:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47362:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48622:992;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50315:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49773:92;;;;;;;;;;;;;:::i;:::-;;29380:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50069:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6185:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49961:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40664:224;40766:4;40805:35;40790:50;;;:11;:50;;;;:90;;;;40844:36;40868:11;40844:23;:36::i;:::-;40790:90;40783:97;;40664:224;;;:::o;27398:100::-;27452:13;27485:5;27478:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27398:100;:::o;28911:171::-;28987:7;29007:23;29022:7;29007:14;:23::i;:::-;29050:15;:24;29066:7;29050:24;;;;;;;;;;;;;;;;;;;;;29043:31;;28911:171;;;:::o;47327:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28428:417::-;28509:13;28525:23;28540:7;28525:14;:23::i;:::-;28509:39;;28573:5;28567:11;;:2;:11;;;;28559:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28667:5;28651:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28676:37;28693:5;28700:12;:10;:12::i;:::-;28676:16;:37::i;:::-;28651:62;28629:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;28816:21;28825:2;28829:7;28816:8;:21::i;:::-;28498:347;28428:417;;:::o;41304:113::-;41365:7;41392:10;:17;;;;41385:24;;41304:113;:::o;29611:336::-;29806:41;29825:12;:10;:12::i;:::-;29839:7;29806:18;:41::i;:::-;29798:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29911:28;29921:4;29927:2;29931:7;29911:9;:28::i;:::-;29611:336;;;:::o;40972:256::-;41069:7;41105:23;41122:5;41105:16;:23::i;:::-;41097:5;:31;41089:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;41194:12;:19;41207:5;41194:19;;;;;;;;;;;;;;;:26;41214:5;41194:26;;;;;;;;;;;;41187:33;;40972:256;;;;:::o;47142:41::-;47179:4;47142:41;:::o;49873:80::-;5165:13;:11;:13::i;:::-;49936:9:::1;;;;;;;;;;;49935:10;49923:9;;:22;;;;;;;;;;;;;;;;;;49873:80::o:0;30018:185::-;30156:39;30173:4;30179:2;30183:7;30156:39;;;;;;;;;;;;:16;:39::i;:::-;30018:185;;;:::o;41494:233::-;41569:7;41605:30;:28;:30::i;:::-;41597:5;:38;41589:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;41702:10;41713:5;41702:17;;;;;;;;:::i;:::-;;;;;;;;;;41695:24;;41494:233;;;:::o;50686:145::-;5165:13;:11;:13::i;:::-;50744:15:::1;50762:21;50744:39;;50802:2;50794:20;;:29;50815:7;50794:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;50733:98;50686:145:::0;:::o;50586:92::-;5165:13;:11;:13::i;:::-;50662:8:::1;50652:7;:18;;;;50586:92:::0;:::o;50203:104::-;5165:13;:11;:13::i;:::-;50288:11:::1;50278:7;:21;;;;;;;;;;;;:::i;:::-;;50203:104:::0;:::o;27109:222::-;27181:7;27201:13;27217:7;:16;27225:7;27217:16;;;;;;;;;;;;;;;;;;;;;27201:32;;27269:1;27252:19;;:5;:19;;;;27244:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;27318:5;27311:12;;;27109:222;;;:::o;47190:34::-;;;;:::o;47083:29::-;;;;;;;;;;;;;:::o;47042:33::-;;;;;;;;;;;;;:::o;26840:207::-;26912:7;26957:1;26940:19;;:5;:19;;;;26932:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27023:9;:16;27033:5;27023:16;;;;;;;;;;;;;;;;27016:23;;26840:207;;;:::o;5927:103::-;5165:13;:11;:13::i;:::-;5992:30:::1;6019:1;5992:18;:30::i;:::-;5927:103::o:0;47231:31::-;;;;:::o;47271:26::-;;;;:::o;5279:87::-;5325:7;5352:6;;;;;;;;;;;5345:13;;5279:87;:::o;27567:104::-;27623:13;27656:7;27649:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27567:104;:::o;50474:::-;5165:13;:11;:13::i;:::-;50559:11:::1;50546:10;:24;;;;50474:104:::0;:::o;29154:155::-;29249:52;29268:12;:10;:12::i;:::-;29282:8;29292;29249:18;:52::i;:::-;29154:155;;:::o;47675:647::-;47179:4;47778:13;47762;:11;:13::i;:::-;:29;;;;:::i;:::-;:43;;47740:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;47880:13;;;;;;;;;;;47872:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48012:10;;47995:13;47971:21;47981:10;47971:9;:21::i;:::-;:37;;;;:::i;:::-;:51;;47949:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;48141:9;48128;;48112:13;:25;;;;:::i;:::-;:38;;48090:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;48235:7;;48218:13;:24;;48210:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;48292:22;48300:13;48292:7;:22::i;:::-;47675:647;:::o;30274:323::-;30448:41;30467:12;:10;:12::i;:::-;30481:7;30448:18;:41::i;:::-;30440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30551:38;30565:4;30571:2;30575:7;30584:4;30551:13;:38::i;:::-;30274:323;;;;:::o;47362:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48622:992::-;48740:13;48793:16;48801:7;48793;:16::i;:::-;48771:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;48914:5;48901:18;;:9;;;;;;;;;;;:18;;;48897:72;;;48943:14;48936:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48897:72;48981:23;49007:10;:19;49018:7;49007:19;;;;;;;;;;;48981:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49037:18;49058:10;:8;:10::i;:::-;49037:31;;49166:1;49150:4;49144:18;:23;49140:72;;;49191:9;49184:16;;;;;;49140:72;49342:1;49322:9;49316:23;:27;49312:108;;;49391:4;49397:9;49374:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49360:48;;;;;;49312:108;49565:4;49571:18;:7;:16;:18::i;:::-;49591:13;49548:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49521:85;;;;48622:992;;;;:::o;50315:151::-;5165:13;:11;:13::i;:::-;50441:17:::1;50425:13;:33;;;;;;;;;;;;:::i;:::-;;50315:151:::0;:::o;49773:92::-;5165:13;:11;:13::i;:::-;49844::::1;;;;;;;;;;;49843:14;49827:13;;:30;;;;;;;;;;;;;;;;;;49773:92::o:0;29380:164::-;29477:4;29501:18;:25;29520:5;29501:25;;;;;;;;;;;;;;;:35;29527:8;29501:35;;;;;;;;;;;;;;;;;;;;;;;;;29494:42;;29380:164;;;;:::o;50069:126::-;5165:13;:11;:13::i;:::-;50172:15:::1;50155:14;:32;;;;;;;;;;;;:::i;:::-;;50069:126:::0;:::o;6185:201::-;5165:13;:11;:13::i;:::-;6294:1:::1;6274:22;;:8;:22;;;;6266:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6350:28;6369:8;6350:18;:28::i;:::-;6185:201:::0;:::o;49961:100::-;5165:13;:11;:13::i;:::-;50043:10:::1;50031:9;:22;;;;49961:100:::0;:::o;26471:305::-;26573:4;26625:25;26610:40;;;:11;:40;;;;:105;;;;26682:33;26667:48;;;:11;:48;;;;26610:105;:158;;;;26732:36;26756:11;26732:23;:36::i;:::-;26610:158;26590:178;;26471:305;;;:::o;36886:135::-;36968:16;36976:7;36968;:16::i;:::-;36960:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36886:135;:::o;3830:98::-;3883:7;3910:10;3903:17;;3830:98;:::o;36165:174::-;36267:2;36240:15;:24;36256:7;36240:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36323:7;36319:2;36285:46;;36294:23;36309:7;36294:14;:23::i;:::-;36285:46;;;;;;;;;;;;36165:174;;:::o;32398:264::-;32491:4;32508:13;32524:23;32539:7;32524:14;:23::i;:::-;32508:39;;32577:5;32566:16;;:7;:16;;;:52;;;;32586:32;32603:5;32610:7;32586:16;:32::i;:::-;32566:52;:87;;;;32646:7;32622:31;;:20;32634:7;32622:11;:20::i;:::-;:31;;;32566:87;32558:96;;;32398:264;;;;:::o;35421:625::-;35580:4;35553:31;;:23;35568:7;35553:14;:23::i;:::-;:31;;;35545:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35659:1;35645:16;;:2;:16;;;;35637:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35715:39;35736:4;35742:2;35746:7;35715:20;:39::i;:::-;35819:29;35836:1;35840:7;35819:8;:29::i;:::-;35880:1;35861:9;:15;35871:4;35861:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35909:1;35892:9;:13;35902:2;35892:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35940:2;35921:7;:16;35929:7;35921:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35979:7;35975:2;35960:27;;35969:4;35960:27;;;;;;;;;;;;36000:38;36020:4;36026:2;36030:7;36000:19;:38::i;:::-;35421:625;;;:::o;5444:132::-;5519:12;:10;:12::i;:::-;5508:23;;:7;:5;:7::i;:::-;:23;;;5500:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5444:132::o;6546:191::-;6620:16;6639:6;;;;;;;;;;;6620:25;;6665:8;6656:6;;:17;;;;;;;;;;;;;;;;;;6720:8;6689:40;;6710:8;6689:40;;;;;;;;;;;;6609:128;6546:191;:::o;36482:315::-;36637:8;36628:17;;:5;:17;;;;36620:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36724:8;36686:18;:25;36705:5;36686:25;;;;;;;;;;;;;;;:35;36712:8;36686:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36770:8;36748:41;;36763:5;36748:41;;;36780:8;36748:41;;;;;;:::i;:::-;;;;;;;;36482:315;;;:::o;48330:284::-;48395:9;48390:217;48414:13;48410:1;:17;48390:217;;;48449:17;48469:13;:11;:13::i;:::-;48449:33;;47179:4;48501:13;:11;:13::i;:::-;:26;48497:99;;;48548:32;48558:10;48570:9;48548;:32::i;:::-;48497:99;48434:173;48429:3;;;;;:::i;:::-;;;;48390:217;;;;48330:284;:::o;31478:313::-;31634:28;31644:4;31650:2;31654:7;31634:9;:28::i;:::-;31681:47;31704:4;31710:2;31714:7;31723:4;31681:22;:47::i;:::-;31673:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31478:313;;;;:::o;32104:127::-;32169:4;32221:1;32193:30;;:7;:16;32201:7;32193:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32186:37;;32104:127;;;:::o;49639:108::-;49699:13;49732:7;49725:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49639:108;:::o;1084:723::-;1140:13;1370:1;1361:5;:10;1357:53;;;1388:10;;;;;;;;;;;;;;;;;;;;;1357:53;1420:12;1435:5;1420:20;;1451:14;1476:78;1491:1;1483:4;:9;1476:78;;1509:8;;;;;:::i;:::-;;;;1540:2;1532:10;;;;;:::i;:::-;;;1476:78;;;1564:19;1596:6;1586:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1564:39;;1614:154;1630:1;1621:5;:10;1614:154;;1658:1;1648:11;;;;;:::i;:::-;;;1725:2;1717:5;:10;;;;:::i;:::-;1704:2;:24;;;;:::i;:::-;1691:39;;1674:6;1681;1674:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1754:2;1745:11;;;;;:::i;:::-;;;1614:154;;;1792:6;1778:21;;;;;1084:723;;;;:::o;18133:157::-;18218:4;18257:25;18242:40;;;:11;:40;;;;18235:47;;18133:157;;;:::o;42340:589::-;42484:45;42511:4;42517:2;42521:7;42484:26;:45::i;:::-;42562:1;42546:18;;:4;:18;;;42542:187;;;42581:40;42613:7;42581:31;:40::i;:::-;42542:187;;;42651:2;42643:10;;:4;:10;;;42639:90;;42670:47;42703:4;42709:7;42670:32;:47::i;:::-;42639:90;42542:187;42757:1;42743:16;;:2;:16;;;42739:183;;;42776:45;42813:7;42776:36;:45::i;:::-;42739:183;;;42849:4;42843:10;;:2;:10;;;42839:83;;42870:40;42898:2;42902:7;42870:27;:40::i;:::-;42839:83;42739:183;42340:589;;;:::o;39521:125::-;;;;:::o;33004:110::-;33080:26;33090:2;33094:7;33080:26;;;;;;;;;;;;:9;:26::i;:::-;33004:110;;:::o;37585:853::-;37739:4;37760:15;:2;:13;;;:15::i;:::-;37756:675;;;37812:2;37796:36;;;37833:12;:10;:12::i;:::-;37847:4;37853:7;37862:4;37796:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37792:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38054:1;38037:6;:13;:18;38033:328;;;38080:60;;;;;;;;;;:::i;:::-;;;;;;;;38033:328;38311:6;38305:13;38296:6;38292:2;38288:15;38281:38;37792:584;37928:41;;;37918:51;;;:6;:51;;;;37911:58;;;;;37756:675;38415:4;38408:11;;37585:853;;;;;;;:::o;39010:126::-;;;;:::o;43652:164::-;43756:10;:17;;;;43729:15;:24;43745:7;43729:24;;;;;;;;;;;:44;;;;43784:10;43800:7;43784:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43652:164;:::o;44443:988::-;44709:22;44759:1;44734:22;44751:4;44734:16;:22::i;:::-;:26;;;;:::i;:::-;44709:51;;44771:18;44792:17;:26;44810:7;44792:26;;;;;;;;;;;;44771:47;;44939:14;44925:10;:28;44921:328;;44970:19;44992:12;:18;45005:4;44992:18;;;;;;;;;;;;;;;:34;45011:14;44992:34;;;;;;;;;;;;44970:56;;45076:11;45043:12;:18;45056:4;45043:18;;;;;;;;;;;;;;;:30;45062:10;45043:30;;;;;;;;;;;:44;;;;45193:10;45160:17;:30;45178:11;45160:30;;;;;;;;;;;:43;;;;44955:294;44921:328;45345:17;:26;45363:7;45345:26;;;;;;;;;;;45338:33;;;45389:12;:18;45402:4;45389:18;;;;;;;;;;;;;;;:34;45408:14;45389:34;;;;;;;;;;;45382:41;;;44524:907;;44443:988;;:::o;45726:1079::-;45979:22;46024:1;46004:10;:17;;;;:21;;;;:::i;:::-;45979:46;;46036:18;46057:15;:24;46073:7;46057:24;;;;;;;;;;;;46036:45;;46408:19;46430:10;46441:14;46430:26;;;;;;;;:::i;:::-;;;;;;;;;;46408:48;;46494:11;46469:10;46480;46469:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46605:10;46574:15;:28;46590:11;46574:28;;;;;;;;;;;:41;;;;46746:15;:24;46762:7;46746:24;;;;;;;;;;;46739:31;;;46781:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45797:1008;;;45726:1079;:::o;43230:221::-;43315:14;43332:20;43349:2;43332:16;:20::i;:::-;43315:37;;43390:7;43363:12;:16;43376:2;43363:16;;;;;;;;;;;;;;;:24;43380:6;43363:24;;;;;;;;;;;:34;;;;43437:6;43408:17;:26;43426:7;43408:26;;;;;;;;;;;:35;;;;43304:147;43230:221;;:::o;33341:319::-;33470:18;33476:2;33480:7;33470:5;:18::i;:::-;33521:53;33552:1;33556:2;33560:7;33569:4;33521:22;:53::i;:::-;33499:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;33341:319;;;:::o;7977:326::-;8037:4;8294:1;8272:7;:19;;;:23;8265:30;;7977:326;;;:::o;33996:439::-;34090:1;34076:16;;:2;:16;;;;34068:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34149:16;34157:7;34149;:16::i;:::-;34148:17;34140:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34211:45;34240:1;34244:2;34248:7;34211:20;:45::i;:::-;34286:1;34269:9;:13;34279:2;34269:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34317:2;34298:7;:16;34306:7;34298:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34362:7;34358:2;34337:33;;34354:1;34337:33;;;;;;;;;;;;34383:44;34411:1;34415:2;34419:7;34383:19;:44::i;:::-;33996:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:::-;11765:3;11786:67;11850:2;11845:3;11786:67;:::i;:::-;11779:74;;11862:93;11951:3;11862:93;:::i;:::-;11980:2;11975:3;11971:12;11964:19;;11623:366;;;:::o;11995:::-;12137:3;12158:67;12222:2;12217:3;12158:67;:::i;:::-;12151:74;;12234:93;12323:3;12234:93;:::i;:::-;12352:2;12347:3;12343:12;12336:19;;11995:366;;;:::o;12367:::-;12509:3;12530:67;12594:2;12589:3;12530:67;:::i;:::-;12523:74;;12606:93;12695:3;12606:93;:::i;:::-;12724:2;12719:3;12715:12;12708:19;;12367:366;;;:::o;12739:::-;12881:3;12902:67;12966:2;12961:3;12902:67;:::i;:::-;12895:74;;12978:93;13067:3;12978:93;:::i;:::-;13096:2;13091:3;13087:12;13080:19;;12739:366;;;:::o;13111:::-;13253:3;13274:67;13338:2;13333:3;13274:67;:::i;:::-;13267:74;;13350:93;13439:3;13350:93;:::i;:::-;13468:2;13463:3;13459:12;13452:19;;13111:366;;;:::o;13483:::-;13625:3;13646:67;13710:2;13705:3;13646:67;:::i;:::-;13639:74;;13722:93;13811:3;13722:93;:::i;:::-;13840:2;13835:3;13831:12;13824:19;;13483:366;;;:::o;13855:::-;13997:3;14018:67;14082:2;14077:3;14018:67;:::i;:::-;14011:74;;14094:93;14183:3;14094:93;:::i;:::-;14212:2;14207:3;14203:12;14196:19;;13855:366;;;:::o;14227:::-;14369:3;14390:67;14454:2;14449:3;14390:67;:::i;:::-;14383:74;;14466:93;14555:3;14466:93;:::i;:::-;14584:2;14579:3;14575:12;14568:19;;14227:366;;;:::o;14599:::-;14741:3;14762:67;14826:2;14821:3;14762:67;:::i;:::-;14755:74;;14838:93;14927:3;14838:93;:::i;:::-;14956:2;14951:3;14947:12;14940:19;;14599:366;;;:::o;14971:::-;15113:3;15134:67;15198:2;15193:3;15134:67;:::i;:::-;15127:74;;15210:93;15299:3;15210:93;:::i;:::-;15328:2;15323:3;15319:12;15312:19;;14971:366;;;:::o;15343:::-;15485:3;15506:67;15570:2;15565:3;15506:67;:::i;:::-;15499:74;;15582:93;15671:3;15582:93;:::i;:::-;15700:2;15695:3;15691:12;15684:19;;15343:366;;;:::o;15715:::-;15857:3;15878:67;15942:2;15937:3;15878:67;:::i;:::-;15871:74;;15954:93;16043:3;15954:93;:::i;:::-;16072:2;16067:3;16063:12;16056:19;;15715:366;;;:::o;16087:::-;16229:3;16250:67;16314:2;16309:3;16250:67;:::i;:::-;16243:74;;16326:93;16415:3;16326:93;:::i;:::-;16444:2;16439:3;16435:12;16428:19;;16087:366;;;:::o;16459:::-;16601:3;16622:67;16686:2;16681:3;16622:67;:::i;:::-;16615:74;;16698:93;16787:3;16698:93;:::i;:::-;16816:2;16811:3;16807:12;16800:19;;16459:366;;;:::o;16831:::-;16973:3;16994:67;17058:2;17053:3;16994:67;:::i;:::-;16987:74;;17070:93;17159:3;17070:93;:::i;:::-;17188:2;17183:3;17179:12;17172:19;;16831:366;;;:::o;17203:118::-;17290:24;17308:5;17290:24;:::i;:::-;17285:3;17278:37;17203:118;;:::o;17327:435::-;17507:3;17529:95;17620:3;17611:6;17529:95;:::i;:::-;17522:102;;17641:95;17732:3;17723:6;17641:95;:::i;:::-;17634:102;;17753:3;17746:10;;17327:435;;;;;:::o;17768:589::-;17993:3;18015:95;18106:3;18097:6;18015:95;:::i;:::-;18008:102;;18127:95;18218:3;18209:6;18127:95;:::i;:::-;18120:102;;18239:92;18327:3;18318:6;18239:92;:::i;:::-;18232:99;;18348:3;18341:10;;17768:589;;;;;;:::o;18363:222::-;18456:4;18494:2;18483:9;18479:18;18471:26;;18507:71;18575:1;18564:9;18560:17;18551:6;18507:71;:::i;:::-;18363:222;;;;:::o;18591:640::-;18786:4;18824:3;18813:9;18809:19;18801:27;;18838:71;18906:1;18895:9;18891:17;18882:6;18838:71;:::i;:::-;18919:72;18987:2;18976:9;18972:18;18963:6;18919:72;:::i;:::-;19001;19069:2;19058:9;19054:18;19045:6;19001:72;:::i;:::-;19120:9;19114:4;19110:20;19105:2;19094:9;19090:18;19083:48;19148:76;19219:4;19210:6;19148:76;:::i;:::-;19140:84;;18591:640;;;;;;;:::o;19237:210::-;19324:4;19362:2;19351:9;19347:18;19339:26;;19375:65;19437:1;19426:9;19422:17;19413:6;19375:65;:::i;:::-;19237:210;;;;:::o;19453:313::-;19566:4;19604:2;19593:9;19589:18;19581:26;;19653:9;19647:4;19643:20;19639:1;19628:9;19624:17;19617:47;19681:78;19754:4;19745:6;19681:78;:::i;:::-;19673:86;;19453:313;;;;:::o;19772:419::-;19938:4;19976:2;19965:9;19961:18;19953:26;;20025:9;20019:4;20015:20;20011:1;20000:9;19996:17;19989:47;20053:131;20179:4;20053:131;:::i;:::-;20045:139;;19772:419;;;:::o;20197:::-;20363:4;20401:2;20390:9;20386:18;20378:26;;20450:9;20444:4;20440:20;20436:1;20425:9;20421:17;20414:47;20478:131;20604:4;20478:131;:::i;:::-;20470:139;;20197:419;;;:::o;20622:::-;20788:4;20826:2;20815:9;20811:18;20803:26;;20875:9;20869:4;20865:20;20861:1;20850:9;20846:17;20839:47;20903:131;21029:4;20903:131;:::i;:::-;20895:139;;20622:419;;;:::o;21047:::-;21213:4;21251:2;21240:9;21236:18;21228:26;;21300:9;21294:4;21290:20;21286:1;21275:9;21271:17;21264:47;21328:131;21454:4;21328:131;:::i;:::-;21320:139;;21047:419;;;:::o;21472:::-;21638:4;21676:2;21665:9;21661:18;21653:26;;21725:9;21719:4;21715:20;21711:1;21700:9;21696:17;21689:47;21753:131;21879:4;21753:131;:::i;:::-;21745:139;;21472:419;;;:::o;21897:::-;22063:4;22101:2;22090:9;22086:18;22078:26;;22150:9;22144:4;22140:20;22136:1;22125:9;22121:17;22114:47;22178:131;22304:4;22178:131;:::i;:::-;22170:139;;21897:419;;;:::o;22322:::-;22488:4;22526:2;22515:9;22511:18;22503:26;;22575:9;22569:4;22565:20;22561:1;22550:9;22546:17;22539:47;22603:131;22729:4;22603:131;:::i;:::-;22595:139;;22322:419;;;:::o;22747:::-;22913:4;22951:2;22940:9;22936:18;22928:26;;23000:9;22994:4;22990:20;22986:1;22975:9;22971:17;22964:47;23028:131;23154:4;23028:131;:::i;:::-;23020:139;;22747:419;;;:::o;23172:::-;23338:4;23376:2;23365:9;23361:18;23353:26;;23425:9;23419:4;23415:20;23411:1;23400:9;23396:17;23389:47;23453:131;23579:4;23453:131;:::i;:::-;23445:139;;23172:419;;;:::o;23597:::-;23763:4;23801:2;23790:9;23786:18;23778:26;;23850:9;23844:4;23840:20;23836:1;23825:9;23821:17;23814:47;23878:131;24004:4;23878:131;:::i;:::-;23870:139;;23597:419;;;:::o;24022:::-;24188:4;24226:2;24215:9;24211:18;24203:26;;24275:9;24269:4;24265:20;24261:1;24250:9;24246:17;24239:47;24303:131;24429:4;24303:131;:::i;:::-;24295:139;;24022:419;;;:::o;24447:::-;24613:4;24651:2;24640:9;24636:18;24628:26;;24700:9;24694:4;24690:20;24686:1;24675:9;24671:17;24664:47;24728:131;24854:4;24728:131;:::i;:::-;24720:139;;24447:419;;;:::o;24872:::-;25038:4;25076:2;25065:9;25061:18;25053:26;;25125:9;25119:4;25115:20;25111:1;25100:9;25096:17;25089:47;25153:131;25279:4;25153:131;:::i;:::-;25145:139;;24872:419;;;:::o;25297:::-;25463:4;25501:2;25490:9;25486:18;25478:26;;25550:9;25544:4;25540:20;25536:1;25525:9;25521:17;25514:47;25578:131;25704:4;25578:131;:::i;:::-;25570:139;;25297:419;;;:::o;25722:::-;25888:4;25926:2;25915:9;25911:18;25903:26;;25975:9;25969:4;25965:20;25961:1;25950:9;25946:17;25939:47;26003:131;26129:4;26003:131;:::i;:::-;25995:139;;25722:419;;;:::o;26147:::-;26313:4;26351:2;26340:9;26336:18;26328:26;;26400:9;26394:4;26390:20;26386:1;26375:9;26371:17;26364:47;26428:131;26554:4;26428:131;:::i;:::-;26420:139;;26147:419;;;:::o;26572:::-;26738:4;26776:2;26765:9;26761:18;26753:26;;26825:9;26819:4;26815:20;26811:1;26800:9;26796:17;26789:47;26853:131;26979:4;26853:131;:::i;:::-;26845:139;;26572:419;;;:::o;26997:::-;27163:4;27201:2;27190:9;27186:18;27178:26;;27250:9;27244:4;27240:20;27236:1;27225:9;27221:17;27214:47;27278:131;27404:4;27278:131;:::i;:::-;27270:139;;26997:419;;;:::o;27422:::-;27588:4;27626:2;27615:9;27611:18;27603:26;;27675:9;27669:4;27665:20;27661:1;27650:9;27646:17;27639:47;27703:131;27829:4;27703:131;:::i;:::-;27695:139;;27422:419;;;:::o;27847:::-;28013:4;28051:2;28040:9;28036:18;28028:26;;28100:9;28094:4;28090:20;28086:1;28075:9;28071:17;28064:47;28128:131;28254:4;28128:131;:::i;:::-;28120:139;;27847:419;;;:::o;28272:::-;28438:4;28476:2;28465:9;28461:18;28453:26;;28525:9;28519:4;28515:20;28511:1;28500:9;28496:17;28489:47;28553:131;28679:4;28553:131;:::i;:::-;28545:139;;28272:419;;;:::o;28697:222::-;28790:4;28828:2;28817:9;28813:18;28805:26;;28841:71;28909:1;28898:9;28894:17;28885:6;28841:71;:::i;:::-;28697:222;;;;:::o;28925:129::-;28959:6;28986:20;;:::i;:::-;28976:30;;29015:33;29043:4;29035:6;29015:33;:::i;:::-;28925:129;;;:::o;29060:75::-;29093:6;29126:2;29120:9;29110:19;;29060:75;:::o;29141:307::-;29202:4;29292:18;29284:6;29281:30;29278:56;;;29314:18;;:::i;:::-;29278:56;29352:29;29374:6;29352:29;:::i;:::-;29344:37;;29436:4;29430;29426:15;29418:23;;29141:307;;;:::o;29454:308::-;29516:4;29606:18;29598:6;29595:30;29592:56;;;29628:18;;:::i;:::-;29592:56;29666:29;29688:6;29666:29;:::i;:::-;29658:37;;29750:4;29744;29740:15;29732:23;;29454:308;;;:::o;29768:141::-;29817:4;29840:3;29832:11;;29863:3;29860:1;29853:14;29897:4;29894:1;29884:18;29876:26;;29768:141;;;:::o;29915:98::-;29966:6;30000:5;29994:12;29984:22;;29915:98;;;:::o;30019:99::-;30071:6;30105:5;30099:12;30089:22;;30019:99;;;:::o;30124:168::-;30207:11;30241:6;30236:3;30229:19;30281:4;30276:3;30272:14;30257:29;;30124:168;;;;:::o;30298:169::-;30382:11;30416:6;30411:3;30404:19;30456:4;30451:3;30447:14;30432:29;;30298:169;;;;:::o;30473:148::-;30575:11;30612:3;30597:18;;30473:148;;;;:::o;30627:305::-;30667:3;30686:20;30704:1;30686:20;:::i;:::-;30681:25;;30720:20;30738:1;30720:20;:::i;:::-;30715:25;;30874:1;30806:66;30802:74;30799:1;30796:81;30793:107;;;30880:18;;:::i;:::-;30793:107;30924:1;30921;30917:9;30910:16;;30627:305;;;;:::o;30938:185::-;30978:1;30995:20;31013:1;30995:20;:::i;:::-;30990:25;;31029:20;31047:1;31029:20;:::i;:::-;31024:25;;31068:1;31058:35;;31073:18;;:::i;:::-;31058:35;31115:1;31112;31108:9;31103:14;;30938:185;;;;:::o;31129:348::-;31169:7;31192:20;31210:1;31192:20;:::i;:::-;31187:25;;31226:20;31244:1;31226:20;:::i;:::-;31221:25;;31414:1;31346:66;31342:74;31339:1;31336:81;31331:1;31324:9;31317:17;31313:105;31310:131;;;31421:18;;:::i;:::-;31310:131;31469:1;31466;31462:9;31451:20;;31129:348;;;;:::o;31483:191::-;31523:4;31543:20;31561:1;31543:20;:::i;:::-;31538:25;;31577:20;31595:1;31577:20;:::i;:::-;31572:25;;31616:1;31613;31610:8;31607:34;;;31621:18;;:::i;:::-;31607:34;31666:1;31663;31659:9;31651:17;;31483:191;;;;:::o;31680:96::-;31717:7;31746:24;31764:5;31746:24;:::i;:::-;31735:35;;31680:96;;;:::o;31782:90::-;31816:7;31859:5;31852:13;31845:21;31834:32;;31782:90;;;:::o;31878:149::-;31914:7;31954:66;31947:5;31943:78;31932:89;;31878:149;;;:::o;32033:126::-;32070:7;32110:42;32103:5;32099:54;32088:65;;32033:126;;;:::o;32165:77::-;32202:7;32231:5;32220:16;;32165:77;;;:::o;32248:154::-;32332:6;32327:3;32322;32309:30;32394:1;32385:6;32380:3;32376:16;32369:27;32248:154;;;:::o;32408:307::-;32476:1;32486:113;32500:6;32497:1;32494:13;32486:113;;;32585:1;32580:3;32576:11;32570:18;32566:1;32561:3;32557:11;32550:39;32522:2;32519:1;32515:10;32510:15;;32486:113;;;32617:6;32614:1;32611:13;32608:101;;;32697:1;32688:6;32683:3;32679:16;32672:27;32608:101;32457:258;32408:307;;;:::o;32721:320::-;32765:6;32802:1;32796:4;32792:12;32782:22;;32849:1;32843:4;32839:12;32870:18;32860:81;;32926:4;32918:6;32914:17;32904:27;;32860:81;32988:2;32980:6;32977:14;32957:18;32954:38;32951:84;;;33007:18;;:::i;:::-;32951:84;32772:269;32721:320;;;:::o;33047:281::-;33130:27;33152:4;33130:27;:::i;:::-;33122:6;33118:40;33260:6;33248:10;33245:22;33224:18;33212:10;33209:34;33206:62;33203:88;;;33271:18;;:::i;:::-;33203:88;33311:10;33307:2;33300:22;33090:238;33047:281;;:::o;33334:233::-;33373:3;33396:24;33414:5;33396:24;:::i;:::-;33387:33;;33442:66;33435:5;33432:77;33429:103;;;33512:18;;:::i;:::-;33429:103;33559:1;33552:5;33548:13;33541:20;;33334:233;;;:::o;33573:176::-;33605:1;33622:20;33640:1;33622:20;:::i;:::-;33617:25;;33656:20;33674:1;33656:20;:::i;:::-;33651:25;;33695:1;33685:35;;33700:18;;:::i;:::-;33685:35;33741:1;33738;33734:9;33729:14;;33573:176;;;;:::o;33755:180::-;33803:77;33800:1;33793:88;33900:4;33897:1;33890:15;33924:4;33921:1;33914:15;33941:180;33989:77;33986:1;33979:88;34086:4;34083:1;34076:15;34110:4;34107:1;34100:15;34127:180;34175:77;34172:1;34165:88;34272:4;34269:1;34262:15;34296:4;34293:1;34286:15;34313:180;34361:77;34358:1;34351:88;34458:4;34455:1;34448:15;34482:4;34479:1;34472:15;34499:180;34547:77;34544:1;34537:88;34644:4;34641:1;34634:15;34668:4;34665:1;34658:15;34685:180;34733:77;34730:1;34723:88;34830:4;34827:1;34820:15;34854:4;34851:1;34844:15;34871:117;34980:1;34977;34970:12;34994:117;35103:1;35100;35093:12;35117:117;35226:1;35223;35216:12;35240:117;35349:1;35346;35339:12;35363:102;35404:6;35455:2;35451:7;35446:2;35439:5;35435:14;35431:28;35421:38;;35363:102;;;:::o;35471:230::-;35611:34;35607:1;35599:6;35595:14;35588:58;35680:13;35675:2;35667:6;35663:15;35656:38;35471:230;:::o;35707:237::-;35847:34;35843:1;35835:6;35831:14;35824:58;35916:20;35911:2;35903:6;35899:15;35892:45;35707:237;:::o;35950:225::-;36090:34;36086:1;36078:6;36074:14;36067:58;36159:8;36154:2;36146:6;36142:15;36135:33;35950:225;:::o;36181:224::-;36321:34;36317:1;36309:6;36305:14;36298:58;36390:7;36385:2;36377:6;36373:15;36366:32;36181:224;:::o;36411:178::-;36551:30;36547:1;36539:6;36535:14;36528:54;36411:178;:::o;36595:::-;36735:30;36731:1;36723:6;36719:14;36712:54;36595:178;:::o;36779:223::-;36919:34;36915:1;36907:6;36903:14;36896:58;36988:6;36983:2;36975:6;36971:15;36964:31;36779:223;:::o;37008:175::-;37148:27;37144:1;37136:6;37132:14;37125:51;37008:175;:::o;37189:179::-;37329:31;37325:1;37317:6;37313:14;37306:55;37189:179;:::o;37374:227::-;37514:34;37510:1;37502:6;37498:14;37491:58;37583:10;37578:2;37570:6;37566:15;37559:35;37374:227;:::o;37607:228::-;37747:34;37743:1;37735:6;37731:14;37724:58;37816:11;37811:2;37803:6;37799:15;37792:36;37607:228;:::o;37841:182::-;37981:34;37977:1;37969:6;37965:14;37958:58;37841:182;:::o;38029:249::-;38169:34;38165:1;38157:6;38153:14;38146:58;38238:32;38233:2;38225:6;38221:15;38214:57;38029:249;:::o;38284:182::-;38424:34;38420:1;38412:6;38408:14;38401:58;38284:182;:::o;38472:::-;38612:34;38608:1;38600:6;38596:14;38589:58;38472:182;:::o;38660:234::-;38800:34;38796:1;38788:6;38784:14;38777:58;38869:17;38864:2;38856:6;38852:15;38845:42;38660:234;:::o;38900:174::-;39040:26;39036:1;39028:6;39024:14;39017:50;38900:174;:::o;39080:220::-;39220:34;39216:1;39208:6;39204:14;39197:58;39289:3;39284:2;39276:6;39272:15;39265:28;39080:220;:::o;39306:231::-;39446:34;39442:1;39434:6;39430:14;39423:58;39515:14;39510:2;39502:6;39498:15;39491:39;39306:231;:::o;39543:171::-;39683:23;39679:1;39671:6;39667:14;39660:47;39543:171;:::o;39720:233::-;39860:34;39856:1;39848:6;39844:14;39837:58;39929:16;39924:2;39916:6;39912:15;39905:41;39720:233;:::o;39959:122::-;40032:24;40050:5;40032:24;:::i;:::-;40025:5;40022:35;40012:63;;40071:1;40068;40061:12;40012:63;39959:122;:::o;40087:116::-;40157:21;40172:5;40157:21;:::i;:::-;40150:5;40147:32;40137:60;;40193:1;40190;40183:12;40137:60;40087:116;:::o;40209:120::-;40281:23;40298:5;40281:23;:::i;:::-;40274:5;40271:34;40261:62;;40319:1;40316;40309:12;40261:62;40209:120;:::o;40335:122::-;40408:24;40426:5;40408:24;:::i;:::-;40401:5;40398:35;40388:63;;40447:1;40444;40437:12;40388:63;40335:122;:::o
Swarm Source
ipfs://d59f3fa88e78d009bbc5035200188c270399d3f2f3f58c00e83d47d43ab453c4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.