ERC-721
Overview
Max Total Supply
103 MIR
Holders
41
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MIRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MiladyRaveMaker
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-06 */ // File: @openzeppelin/contracts/utils/Counters.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/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.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/LowGas.sol pragma solidity >=0.7.0 <0.9.0; contract MiladyRaveMaker is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; //other token nft contract //Milady contract = 0x5Af0D9827E0c53E4799BB226655A1de152A425a5 address public contract1 = 0x5Af0D9827E0c53E4799BB226655A1de152A425a5; uint256 public criteria1 = 1; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = .06 ether; uint256 public discount = .03 ether; uint256 public maxSupply = 5000; uint256 public maxMintAmountPerTx = 100; uint256 public MaxgiveawayAmountperTx = 30; uint256 public giveawaylimit = 5000; uint256 public givedAway = 0; bool public paused = false; bool public revealed = true; bool public onlyWhitelisted = true; address[] public whitelistedAddresses; struct GivedAwayFree { bool claimedFree; } mapping(address => GivedAwayFree) public givedAwayFree; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } modifier mintCompliance(uint256 _mintAmount) { require( _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!" ); require( supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!" ); _; } modifier giveawayCompliance(uint256 _giveawayAmount) { require( _giveawayAmount > 0 && _giveawayAmount <= MaxgiveawayAmountperTx, "Invalid giveaway amount!" ); require( supply.current() + _giveawayAmount <= maxSupply, "Max supply exceeded!" ); _; } function totalSupply() public view returns (uint256) { return supply.current(); } function giveaway(uint256 _giveawayAmount) public payable giveawayCompliance(_giveawayAmount) { //if user owns any token from different contract if (givedAway >= 5000) { require(msg.value >= cost * _giveawayAmount, "Insufficient funds!"); _mintLoop(msg.sender, _giveawayAmount); } else { if (isWhitelisted(msg.sender)) { //check if user has already claimed free token if (givedAwayFree[msg.sender].claimedFree == true) { // if user has already claimed free token, then he can't mint for free, and has to pay require( msg.value >= discount * _giveawayAmount, "Insufficient funds!" ); _giveawayLoop(msg.sender, _giveawayAmount); } else { // if user has not claimed free token, then he can mint for free require(isWhitelisted(msg.sender), "user is not whitelisted"); _giveawayLoop(msg.sender, _giveawayAmount); givedAwayFree[msg.sender].claimedFree = true; givedAway++; } } else { // if user does not own any token from different contract, then he cannot mint for free require(msg.value >= cost * _giveawayAmount, "Insufficient funds!"); _giveawayLoop(msg.sender, _giveawayAmount); } } } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); // check if other user is whitelisted if(isWhitelisted(msg.sender)) { //if user has equal to or greater than criteria one //whitelisted users pay the discount amount require( msg.value >= discount * _mintAmount, "Insufficient funds!" ); _mintLoop(msg.sender, _mintAmount); } //if not whitelisted pay the full amount else { require(msg.value >= cost * _mintAmount, "Insufficient funds!"); _mintLoop(msg.sender, _mintAmount); } } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _mintLoop(_receiver, _mintAmount); } function walletOfOwnerOfOtherContract( address _owner, address contractAddress ) public view returns (uint256 otherTokenAmount) { uint256 ownerTokenCount = ERC721(contractAddress).balanceOf(_owner); return ownerTokenCount; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while ( ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply ) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function setcontract1(address _contract1) public onlyOwner returns(address){ return contract1 = _contract1; } function setcriteria1(uint256 _criteria1) public onlyOwner { criteria1 = _criteria1; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setdiscount(uint256 _discount) public onlyOwner { discount = _discount; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setMaxgiveawayAmountPerTx(uint256 _maxgiveawayAmountPerTx) public onlyOwner { MaxgiveawayAmountperTx = _maxgiveawayAmountPerTx; } function setgiveawaylimit(uint256 _giveawaylimit) public onlyOwner { giveawaylimit = _giveawaylimit; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } function _giveawayLoop(address _receiver, uint256 _giveawayAmount) internal { for (uint256 i = 0; i < _giveawayAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); givedAway++; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"MaxgiveawayAmountperTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contract1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"criteria1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_giveawayAmount","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"giveawaylimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"givedAway","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"givedAwayFree","outputs":[{"internalType":"bool","name":"claimedFree","type":"bool"}],"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxgiveawayAmountPerTx","type":"uint256"}],"name":"setMaxgiveawayAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract1","type":"address"}],"name":"setcontract1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_criteria1","type":"uint256"}],"name":"setcriteria1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_discount","type":"uint256"}],"name":"setdiscount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_giveawaylimit","type":"uint256"}],"name":"setgiveawaylimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"contractAddress","type":"address"}],"name":"walletOfOwnerOfOtherContract","outputs":[{"internalType":"uint256","name":"otherTokenAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600880546001600160a01b031916735af0d9827e0c53e4799bb226655a1de152a425a5179055600160095560c06040526005608081905264173539b7b760d91b60a09081526200005391600b91906200024a565b5066d529ae9e860000600d55666a94d74f430000600e55611388600f8190556064601055601e60115560125560006013556014805462ffffff191662010100179055348015620000a257600080fd5b50604051620030d6380380620030d6833981016040819052620000c591620003a7565b835184908490620000de9060009060208501906200024a565b508051620000f49060019060208401906200024a565b505050620001116200010b6200013160201b60201c565b62000135565b6200011c8262000187565b6200012781620001ef565b50505050620004b3565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001d65760405162461bcd60e51b81526020600482018190526024820152600080516020620030b683398151915260448201526064015b60405180910390fd5b8051620001eb90600a9060208401906200024a565b5050565b6006546001600160a01b031633146200023a5760405162461bcd60e51b81526020600482018190526024820152600080516020620030b68339815191526044820152606401620001cd565b8051620001eb90600c9060208401905b828054620002589062000460565b90600052602060002090601f0160209004810192826200027c5760008555620002c7565b82601f106200029757805160ff1916838001178555620002c7565b82800160010185558215620002c7579182015b82811115620002c7578251825591602001919060010190620002aa565b50620002d5929150620002d9565b5090565b5b80821115620002d55760008155600101620002da565b600082601f8301126200030257600080fd5b81516001600160401b03808211156200031f576200031f6200049d565b604051601f8301601f19908116603f011681019082821181831017156200034a576200034a6200049d565b816040528381526020925086838588010111156200036757600080fd5b600091505b838210156200038b57858201830151818301840152908201906200036c565b838211156200039d5760008385830101525b9695505050505050565b60008060008060808587031215620003be57600080fd5b84516001600160401b0380821115620003d657600080fd5b620003e488838901620002f0565b95506020870151915080821115620003fb57600080fd5b6200040988838901620002f0565b945060408701519150808211156200042057600080fd5b6200042e88838901620002f0565b935060608701519150808211156200044557600080fd5b506200045487828801620002f0565b91505092959194509250565b600181811c908216806200047557607f821691505b602082108114156200049757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612bf380620004c36000396000f3fe6080604052600436106103505760003560e01c8063715018a6116101c6578063b88d4fde116100f7578063e0a8085311610095578063edec5f271161006f578063edec5f271461097a578063efbd73f41461099a578063f2c4ce1e146109ba578063f2fde38b146109da57600080fd5b8063e0a80853146108f1578063e4b2e9be14610911578063e985e9c51461093157600080fd5b8063c87b56dd116100d1578063c87b56dd14610885578063d33c9467146108a5578063d5abeb01146108bb578063da3ef23f146108d157600080fd5b8063b88d4fde14610830578063ba4e5c4914610850578063c66828621461087057600080fd5b8063997ac88a11610164578063a0712d681161013e578063a0712d68146107bd578063a22cb465146107d0578063a3a3073d146107f0578063b071401b1461081057600080fd5b8063997ac88a1461077157806399a3143d146107875780639c70b5121461079d57600080fd5b80637efa655b116101a05780637efa655b146107085780638da5cb5b1461072857806394354fd01461074657806395d89b411461075c57600080fd5b8063715018a6146106c057806374c90c89146106d5578063799b31e8146106f557600080fd5b80633af32abf116102a0578063518302271161023e5780636352211e116102185780636352211e146106555780636b6f4a9d146106755780636c0360eb1461068b57806370a08231146106a057600080fd5b806351830227146105fc57806355f804b31461061b5780635c975abb1461063b57600080fd5b806342842e0e1161027a57806342842e0e1461056f578063438b63001461058f57806344a0d68a146105bc5780634c62d88c146105dc57600080fd5b80633af32abf1461051a5780633c9527641461053a5780633ccfd60b1461055a57600080fd5b806313faede61161030d57806318160ddd116102e757806318160ddd146104af578063183fc569146104c457806323b872dd146104da5780633052c345146104fa57600080fd5b806313faede61461044b57806316c38b3c1461046f578063172683251461048f57600080fd5b806301ffc9a71461035557806305db2b221461038a57806306fdde03146103ba578063081812fc146103dc578063081c8c4414610414578063095ea7b314610429575b600080fd5b34801561036157600080fd5b506103756103703660046126f5565b6109fa565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103756103a536600461250b565b60166020526000908152604090205460ff1681565b3480156103c657600080fd5b506103cf610a4c565b604051610381919061293e565b3480156103e857600080fd5b506103fc6103f7366004612778565b610ade565b6040516001600160a01b039091168152602001610381565b34801561042057600080fd5b506103cf610b78565b34801561043557600080fd5b5061044961044436600461263b565b610c06565b005b34801561045757600080fd5b50610461600d5481565b604051908152602001610381565b34801561047b57600080fd5b5061044961048a3660046126da565b610d1c565b34801561049b57600080fd5b506104496104aa366004612778565b610d59565b3480156104bb57600080fd5b50610461610d88565b3480156104d057600080fd5b5061046160135481565b3480156104e657600080fd5b506104496104f5366004612559565b610d98565b34801561050657600080fd5b50610449610515366004612778565b610dc9565b34801561052657600080fd5b5061037561053536600461250b565b610df8565b34801561054657600080fd5b506104496105553660046126da565b610e62565b34801561056657600080fd5b50610449610ea8565b34801561057b57600080fd5b5061044961058a366004612559565b610f46565b34801561059b57600080fd5b506105af6105aa36600461250b565b610f61565b60405161038191906128fa565b3480156105c857600080fd5b506104496105d7366004612778565b611042565b3480156105e857600080fd5b506008546103fc906001600160a01b031681565b34801561060857600080fd5b5060145461037590610100900460ff1681565b34801561062757600080fd5b5061044961063636600461272f565b611071565b34801561064757600080fd5b506014546103759060ff1681565b34801561066157600080fd5b506103fc610670366004612778565b6110b2565b34801561068157600080fd5b50610461600e5481565b34801561069757600080fd5b506103cf611129565b3480156106ac57600080fd5b506104616106bb36600461250b565b611136565b3480156106cc57600080fd5b506104496111bd565b3480156106e157600080fd5b506103fc6106f036600461250b565b6111f3565b610449610703366004612778565b611243565b34801561071457600080fd5b50610461610723366004612526565b611465565b34801561073457600080fd5b506006546001600160a01b03166103fc565b34801561075257600080fd5b5061046160105481565b34801561076857600080fd5b506103cf6114eb565b34801561077d57600080fd5b5061046160095481565b34801561079357600080fd5b5061046160115481565b3480156107a957600080fd5b506014546103759062010000900460ff1681565b6104496107cb366004612778565b6114fa565b3480156107dc57600080fd5b506104496107eb366004612611565b611602565b3480156107fc57600080fd5b5061044961080b366004612778565b61160d565b34801561081c57600080fd5b5061044961082b366004612778565b61163c565b34801561083c57600080fd5b5061044961084b366004612595565b61166b565b34801561085c57600080fd5b506103fc61086b366004612778565b6116a3565b34801561087c57600080fd5b506103cf6116cd565b34801561089157600080fd5b506103cf6108a0366004612778565b6116da565b3480156108b157600080fd5b5061046160125481565b3480156108c757600080fd5b50610461600f5481565b3480156108dd57600080fd5b506104496108ec36600461272f565b611859565b3480156108fd57600080fd5b5061044961090c3660046126da565b611896565b34801561091d57600080fd5b5061044961092c366004612778565b6118da565b34801561093d57600080fd5b5061037561094c366004612526565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561098657600080fd5b50610449610995366004612665565b611909565b3480156109a657600080fd5b506104496109b53660046127aa565b61194b565b3480156109c657600080fd5b506104496109d536600461272f565b611a0a565b3480156109e657600080fd5b506104496109f536600461250b565b611a47565b60006001600160e01b031982166380ac58cd60e01b1480610a2b57506001600160e01b03198216635b5e139f60e01b145b80610a4657506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610a5b90612ae5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8790612ae5565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b5c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600c8054610b8590612ae5565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb190612ae5565b8015610bfe5780601f10610bd357610100808354040283529160200191610bfe565b820191906000526020600020905b815481529060010190602001808311610be157829003601f168201915b505050505081565b6000610c11826110b2565b9050806001600160a01b0316836001600160a01b03161415610c7f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b53565b336001600160a01b0382161480610c9b5750610c9b813361094c565b610d0d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b53565b610d178383611adf565b505050565b6006546001600160a01b03163314610d465760405162461bcd60e51b8152600401610b53906129a3565b6014805460ff1916911515919091179055565b6006546001600160a01b03163314610d835760405162461bcd60e51b8152600401610b53906129a3565b600e55565b6000610d9360075490565b905090565b610da23382611b4d565b610dbe5760405162461bcd60e51b8152600401610b5390612a06565b610d17838383611c40565b6006546001600160a01b03163314610df35760405162461bcd60e51b8152600401610b53906129a3565b601255565b6000805b601554811015610e5957826001600160a01b031660158281548110610e2357610e23612b7b565b6000918252602090912001546001600160a01b03161415610e475750600192915050565b80610e5181612b20565b915050610dfc565b50600092915050565b6006546001600160a01b03163314610e8c5760405162461bcd60e51b8152600401610b53906129a3565b60148054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610ed25760405162461bcd60e51b8152600401610b53906129a3565b6000610ee66006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f30576040519150601f19603f3d011682016040523d82523d6000602084013e610f35565b606091505b5050905080610f4357600080fd5b50565b610d178383836040518060200160405280600081525061166b565b60606000610f6e83611136565b905060008167ffffffffffffffff811115610f8b57610f8b612b91565b604051908082528060200260200182016040528015610fb4578160200160208202803683370190505b509050600160005b8381108015610fcd5750600f548211155b15611038576000610fdd836110b2565b9050866001600160a01b0316816001600160a01b03161415611025578284838151811061100c5761100c612b7b565b60209081029190910101528161102181612b20565b9250505b8261102f81612b20565b93505050610fbc565b5090949350505050565b6006546001600160a01b0316331461106c5760405162461bcd60e51b8152600401610b53906129a3565b600d55565b6006546001600160a01b0316331461109b5760405162461bcd60e51b8152600401610b53906129a3565b80516110ae90600a906020840190612364565b5050565b6000818152600260205260408120546001600160a01b031680610a465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b53565b600a8054610b8590612ae5565b60006001600160a01b0382166111a15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b53565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111e75760405162461bcd60e51b8152600401610b53906129a3565b6111f16000611ddc565b565b6006546000906001600160a01b031633146112205760405162461bcd60e51b8152600401610b53906129a3565b50600880546001600160a01b0319166001600160a01b038316179055805b919050565b8060008111801561125657506011548111155b6112a25760405162461bcd60e51b815260206004820152601860248201527f496e76616c696420676976656177617920616d6f756e742100000000000000006044820152606401610b53565b600f54816112af60075490565b6112b99190612a57565b11156112d75760405162461bcd60e51b8152600401610b53906129d8565b6113886013541061133f5781600d546112f09190612a83565b3410156113355760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610b53565b6110ae3383611e2e565b61134833610df8565b15611457573360009081526016602052604090205460ff161515600114156113c75781600e546113789190612a83565b3410156113bd5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610b53565b6110ae3383611e6b565b6113d033610df8565b61141c5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b53565b6114263383611e6b565b336000908152601660205260408120805460ff19166001179055601380549161144e83612b20565b91905055505050565b81600d546113789190612a83565b6040516370a0823160e01b81526001600160a01b03838116600483015260009182918416906370a082319060240160206040518083038186803b1580156114ab57600080fd5b505afa1580156114bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e39190612791565b949350505050565b606060018054610a5b90612ae5565b8060008111801561150d57506010548111155b6115505760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610b53565b600f548161155d60075490565b6115679190612a57565b11156115855760405162461bcd60e51b8152600401610b53906129d8565b60145460ff16156115d85760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610b53565b6115e133610df8565b156115f45781600e546112f09190612a83565b81600d546112f09190612a83565b6110ae338383611eb9565b6006546001600160a01b031633146116375760405162461bcd60e51b8152600401610b53906129a3565b600955565b6006546001600160a01b031633146116665760405162461bcd60e51b8152600401610b53906129a3565b601055565b6116753383611b4d565b6116915760405162461bcd60e51b8152600401610b5390612a06565b61169d84848484611f88565b50505050565b601581815481106116b357600080fd5b6000918252602090912001546001600160a01b0316905081565b600b8054610b8590612ae5565b6000818152600260205260409020546060906001600160a01b03166117595760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b53565b601454610100900460ff166117fa57600c805461177590612ae5565b80601f01602080910402602001604051908101604052809291908181526020018280546117a190612ae5565b80156117ee5780601f106117c3576101008083540402835291602001916117ee565b820191906000526020600020905b8154815290600101906020018083116117d157829003601f168201915b50505050509050919050565b6000611804611fbb565b905060008151116118245760405180602001604052806000815250611852565b8061182e84611fca565b600b604051602001611842939291906127f9565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146118835760405162461bcd60e51b8152600401610b53906129a3565b80516110ae90600b906020840190612364565b6006546001600160a01b031633146118c05760405162461bcd60e51b8152600401610b53906129a3565b601480549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146119045760405162461bcd60e51b8152600401610b53906129a3565b601155565b6006546001600160a01b031633146119335760405162461bcd60e51b8152600401610b53906129a3565b61193f601560006123e8565b610d1760158383612406565b8160008111801561195e57506010548111155b6119a15760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610b53565b600f54816119ae60075490565b6119b89190612a57565b11156119d65760405162461bcd60e51b8152600401610b53906129d8565b6006546001600160a01b03163314611a005760405162461bcd60e51b8152600401610b53906129a3565b610d178284611e2e565b6006546001600160a01b03163314611a345760405162461bcd60e51b8152600401610b53906129a3565b80516110ae90600c906020840190612364565b6006546001600160a01b03163314611a715760405162461bcd60e51b8152600401610b53906129a3565b6001600160a01b038116611ad65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b53565b610f4381611ddc565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b14826110b2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bc65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b53565b6000611bd1836110b2565b9050806001600160a01b0316846001600160a01b03161480611c0c5750836001600160a01b0316611c0184610ade565b6001600160a01b0316145b806114e357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166114e3565b826001600160a01b0316611c53826110b2565b6001600160a01b031614611cb75760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610b53565b6001600160a01b038216611d195760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b53565b611d24600082611adf565b6001600160a01b0383166000908152600360205260408120805460019290611d4d908490612aa2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d7b908490612a57565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610d1757611e47600780546001019055565b611e5983611e5460075490565b6120c8565b80611e6381612b20565b915050611e31565b60005b81811015610d1757611e84600780546001019055565b611e9183611e5460075490565b60138054906000611ea183612b20565b91905055508080611eb190612b20565b915050611e6e565b816001600160a01b0316836001600160a01b03161415611f1b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b53565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f93848484611c40565b611f9f848484846120e2565b61169d5760405162461bcd60e51b8152600401610b5390612951565b6060600a8054610a5b90612ae5565b606081611fee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612018578061200281612b20565b91506120119050600a83612a6f565b9150611ff2565b60008167ffffffffffffffff81111561203357612033612b91565b6040519080825280601f01601f19166020018201604052801561205d576020820181803683370190505b5090505b84156114e357612072600183612aa2565b915061207f600a86612b3b565b61208a906030612a57565b60f81b81838151811061209f5761209f612b7b565b60200101906001600160f81b031916908160001a9053506120c1600a86612a6f565b9450612061565b6110ae8282604051806020016040528060008152506121ef565b60006001600160a01b0384163b156121e457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121269033908990889088906004016128bd565b602060405180830381600087803b15801561214057600080fd5b505af1925050508015612170575060408051601f3d908101601f1916820190925261216d91810190612712565b60015b6121ca573d80801561219e576040519150601f19603f3d011682016040523d82523d6000602084013e6121a3565b606091505b5080516121c25760405162461bcd60e51b8152600401610b5390612951565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114e3565b506001949350505050565b6121f98383612222565b61220660008484846120e2565b610d175760405162461bcd60e51b8152600401610b5390612951565b6001600160a01b0382166122785760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b53565b6000818152600260205260409020546001600160a01b0316156122dd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b53565b6001600160a01b0382166000908152600360205260408120805460019290612306908490612a57565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461237090612ae5565b90600052602060002090601f01602090048101928261239257600085556123d8565b82601f106123ab57805160ff19168380011785556123d8565b828001600101855582156123d8579182015b828111156123d85782518255916020019190600101906123bd565b506123e4929150612459565b5090565b5080546000825590600052602060002090810190610f439190612459565b8280548282559060005260206000209081019282156123d8579160200282015b828111156123d85781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612426565b5b808211156123e4576000815560010161245a565b600067ffffffffffffffff8084111561248957612489612b91565b604051601f8501601f19908116603f011681019082821181831017156124b1576124b1612b91565b816040528093508581528686860111156124ca57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461123e57600080fd5b8035801515811461123e57600080fd5b60006020828403121561251d57600080fd5b611852826124e4565b6000806040838503121561253957600080fd5b612542836124e4565b9150612550602084016124e4565b90509250929050565b60008060006060848603121561256e57600080fd5b612577846124e4565b9250612585602085016124e4565b9150604084013590509250925092565b600080600080608085870312156125ab57600080fd5b6125b4856124e4565b93506125c2602086016124e4565b925060408501359150606085013567ffffffffffffffff8111156125e557600080fd5b8501601f810187136125f657600080fd5b6126058782356020840161246e565b91505092959194509250565b6000806040838503121561262457600080fd5b61262d836124e4565b9150612550602084016124fb565b6000806040838503121561264e57600080fd5b612657836124e4565b946020939093013593505050565b6000806020838503121561267857600080fd5b823567ffffffffffffffff8082111561269057600080fd5b818501915085601f8301126126a457600080fd5b8135818111156126b357600080fd5b8660208260051b85010111156126c857600080fd5b60209290920196919550909350505050565b6000602082840312156126ec57600080fd5b611852826124fb565b60006020828403121561270757600080fd5b813561185281612ba7565b60006020828403121561272457600080fd5b815161185281612ba7565b60006020828403121561274157600080fd5b813567ffffffffffffffff81111561275857600080fd5b8201601f8101841361276957600080fd5b6114e38482356020840161246e565b60006020828403121561278a57600080fd5b5035919050565b6000602082840312156127a357600080fd5b5051919050565b600080604083850312156127bd57600080fd5b82359150612550602084016124e4565b600081518084526127e5816020860160208601612ab9565b601f01601f19169290920160200192915050565b60008451602061280c8285838a01612ab9565b85519184019161281f8184848a01612ab9565b8554920191600090600181811c908083168061283c57607f831692505b85831081141561285a57634e487b7160e01b85526022600452602485fd5b80801561286e576001811461287f576128ac565b60ff198516885283880195506128ac565b60008b81526020902060005b858110156128a45781548a82015290840190880161288b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128f0908301846127cd565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561293257835183529284019291840191600101612916565b50909695505050505050565b60208152600061185260208301846127cd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612a6a57612a6a612b4f565b500190565b600082612a7e57612a7e612b65565b500490565b6000816000190483118215151615612a9d57612a9d612b4f565b500290565b600082821015612ab457612ab4612b4f565b500390565b60005b83811015612ad4578181015183820152602001612abc565b8381111561169d5750506000910152565b600181811c90821680612af957607f821691505b60208210811415612b1a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b3457612b34612b4f565b5060010190565b600082612b4a57612b4a612b65565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f4357600080fdfea26469706673582212206787cf3a4c5d6f4a590e56986cd8bf9741904c566db1e328e0efb7b3950d02e464736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a4d696c616479526176650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d495200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54466944676d543459636d6552366b636747584343777a4848397a7334336e79635433534553524e696865502f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54466944676d543459636d6552366b636747584343777a4848397a7334336e79635433534553524e696865502f00000000000000000000
Deployed Bytecode
0x6080604052600436106103505760003560e01c8063715018a6116101c6578063b88d4fde116100f7578063e0a8085311610095578063edec5f271161006f578063edec5f271461097a578063efbd73f41461099a578063f2c4ce1e146109ba578063f2fde38b146109da57600080fd5b8063e0a80853146108f1578063e4b2e9be14610911578063e985e9c51461093157600080fd5b8063c87b56dd116100d1578063c87b56dd14610885578063d33c9467146108a5578063d5abeb01146108bb578063da3ef23f146108d157600080fd5b8063b88d4fde14610830578063ba4e5c4914610850578063c66828621461087057600080fd5b8063997ac88a11610164578063a0712d681161013e578063a0712d68146107bd578063a22cb465146107d0578063a3a3073d146107f0578063b071401b1461081057600080fd5b8063997ac88a1461077157806399a3143d146107875780639c70b5121461079d57600080fd5b80637efa655b116101a05780637efa655b146107085780638da5cb5b1461072857806394354fd01461074657806395d89b411461075c57600080fd5b8063715018a6146106c057806374c90c89146106d5578063799b31e8146106f557600080fd5b80633af32abf116102a0578063518302271161023e5780636352211e116102185780636352211e146106555780636b6f4a9d146106755780636c0360eb1461068b57806370a08231146106a057600080fd5b806351830227146105fc57806355f804b31461061b5780635c975abb1461063b57600080fd5b806342842e0e1161027a57806342842e0e1461056f578063438b63001461058f57806344a0d68a146105bc5780634c62d88c146105dc57600080fd5b80633af32abf1461051a5780633c9527641461053a5780633ccfd60b1461055a57600080fd5b806313faede61161030d57806318160ddd116102e757806318160ddd146104af578063183fc569146104c457806323b872dd146104da5780633052c345146104fa57600080fd5b806313faede61461044b57806316c38b3c1461046f578063172683251461048f57600080fd5b806301ffc9a71461035557806305db2b221461038a57806306fdde03146103ba578063081812fc146103dc578063081c8c4414610414578063095ea7b314610429575b600080fd5b34801561036157600080fd5b506103756103703660046126f5565b6109fa565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103756103a536600461250b565b60166020526000908152604090205460ff1681565b3480156103c657600080fd5b506103cf610a4c565b604051610381919061293e565b3480156103e857600080fd5b506103fc6103f7366004612778565b610ade565b6040516001600160a01b039091168152602001610381565b34801561042057600080fd5b506103cf610b78565b34801561043557600080fd5b5061044961044436600461263b565b610c06565b005b34801561045757600080fd5b50610461600d5481565b604051908152602001610381565b34801561047b57600080fd5b5061044961048a3660046126da565b610d1c565b34801561049b57600080fd5b506104496104aa366004612778565b610d59565b3480156104bb57600080fd5b50610461610d88565b3480156104d057600080fd5b5061046160135481565b3480156104e657600080fd5b506104496104f5366004612559565b610d98565b34801561050657600080fd5b50610449610515366004612778565b610dc9565b34801561052657600080fd5b5061037561053536600461250b565b610df8565b34801561054657600080fd5b506104496105553660046126da565b610e62565b34801561056657600080fd5b50610449610ea8565b34801561057b57600080fd5b5061044961058a366004612559565b610f46565b34801561059b57600080fd5b506105af6105aa36600461250b565b610f61565b60405161038191906128fa565b3480156105c857600080fd5b506104496105d7366004612778565b611042565b3480156105e857600080fd5b506008546103fc906001600160a01b031681565b34801561060857600080fd5b5060145461037590610100900460ff1681565b34801561062757600080fd5b5061044961063636600461272f565b611071565b34801561064757600080fd5b506014546103759060ff1681565b34801561066157600080fd5b506103fc610670366004612778565b6110b2565b34801561068157600080fd5b50610461600e5481565b34801561069757600080fd5b506103cf611129565b3480156106ac57600080fd5b506104616106bb36600461250b565b611136565b3480156106cc57600080fd5b506104496111bd565b3480156106e157600080fd5b506103fc6106f036600461250b565b6111f3565b610449610703366004612778565b611243565b34801561071457600080fd5b50610461610723366004612526565b611465565b34801561073457600080fd5b506006546001600160a01b03166103fc565b34801561075257600080fd5b5061046160105481565b34801561076857600080fd5b506103cf6114eb565b34801561077d57600080fd5b5061046160095481565b34801561079357600080fd5b5061046160115481565b3480156107a957600080fd5b506014546103759062010000900460ff1681565b6104496107cb366004612778565b6114fa565b3480156107dc57600080fd5b506104496107eb366004612611565b611602565b3480156107fc57600080fd5b5061044961080b366004612778565b61160d565b34801561081c57600080fd5b5061044961082b366004612778565b61163c565b34801561083c57600080fd5b5061044961084b366004612595565b61166b565b34801561085c57600080fd5b506103fc61086b366004612778565b6116a3565b34801561087c57600080fd5b506103cf6116cd565b34801561089157600080fd5b506103cf6108a0366004612778565b6116da565b3480156108b157600080fd5b5061046160125481565b3480156108c757600080fd5b50610461600f5481565b3480156108dd57600080fd5b506104496108ec36600461272f565b611859565b3480156108fd57600080fd5b5061044961090c3660046126da565b611896565b34801561091d57600080fd5b5061044961092c366004612778565b6118da565b34801561093d57600080fd5b5061037561094c366004612526565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561098657600080fd5b50610449610995366004612665565b611909565b3480156109a657600080fd5b506104496109b53660046127aa565b61194b565b3480156109c657600080fd5b506104496109d536600461272f565b611a0a565b3480156109e657600080fd5b506104496109f536600461250b565b611a47565b60006001600160e01b031982166380ac58cd60e01b1480610a2b57506001600160e01b03198216635b5e139f60e01b145b80610a4657506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610a5b90612ae5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8790612ae5565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b5c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600c8054610b8590612ae5565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb190612ae5565b8015610bfe5780601f10610bd357610100808354040283529160200191610bfe565b820191906000526020600020905b815481529060010190602001808311610be157829003601f168201915b505050505081565b6000610c11826110b2565b9050806001600160a01b0316836001600160a01b03161415610c7f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b53565b336001600160a01b0382161480610c9b5750610c9b813361094c565b610d0d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b53565b610d178383611adf565b505050565b6006546001600160a01b03163314610d465760405162461bcd60e51b8152600401610b53906129a3565b6014805460ff1916911515919091179055565b6006546001600160a01b03163314610d835760405162461bcd60e51b8152600401610b53906129a3565b600e55565b6000610d9360075490565b905090565b610da23382611b4d565b610dbe5760405162461bcd60e51b8152600401610b5390612a06565b610d17838383611c40565b6006546001600160a01b03163314610df35760405162461bcd60e51b8152600401610b53906129a3565b601255565b6000805b601554811015610e5957826001600160a01b031660158281548110610e2357610e23612b7b565b6000918252602090912001546001600160a01b03161415610e475750600192915050565b80610e5181612b20565b915050610dfc565b50600092915050565b6006546001600160a01b03163314610e8c5760405162461bcd60e51b8152600401610b53906129a3565b60148054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610ed25760405162461bcd60e51b8152600401610b53906129a3565b6000610ee66006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f30576040519150601f19603f3d011682016040523d82523d6000602084013e610f35565b606091505b5050905080610f4357600080fd5b50565b610d178383836040518060200160405280600081525061166b565b60606000610f6e83611136565b905060008167ffffffffffffffff811115610f8b57610f8b612b91565b604051908082528060200260200182016040528015610fb4578160200160208202803683370190505b509050600160005b8381108015610fcd5750600f548211155b15611038576000610fdd836110b2565b9050866001600160a01b0316816001600160a01b03161415611025578284838151811061100c5761100c612b7b565b60209081029190910101528161102181612b20565b9250505b8261102f81612b20565b93505050610fbc565b5090949350505050565b6006546001600160a01b0316331461106c5760405162461bcd60e51b8152600401610b53906129a3565b600d55565b6006546001600160a01b0316331461109b5760405162461bcd60e51b8152600401610b53906129a3565b80516110ae90600a906020840190612364565b5050565b6000818152600260205260408120546001600160a01b031680610a465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b53565b600a8054610b8590612ae5565b60006001600160a01b0382166111a15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b53565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111e75760405162461bcd60e51b8152600401610b53906129a3565b6111f16000611ddc565b565b6006546000906001600160a01b031633146112205760405162461bcd60e51b8152600401610b53906129a3565b50600880546001600160a01b0319166001600160a01b038316179055805b919050565b8060008111801561125657506011548111155b6112a25760405162461bcd60e51b815260206004820152601860248201527f496e76616c696420676976656177617920616d6f756e742100000000000000006044820152606401610b53565b600f54816112af60075490565b6112b99190612a57565b11156112d75760405162461bcd60e51b8152600401610b53906129d8565b6113886013541061133f5781600d546112f09190612a83565b3410156113355760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610b53565b6110ae3383611e2e565b61134833610df8565b15611457573360009081526016602052604090205460ff161515600114156113c75781600e546113789190612a83565b3410156113bd5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610b53565b6110ae3383611e6b565b6113d033610df8565b61141c5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b53565b6114263383611e6b565b336000908152601660205260408120805460ff19166001179055601380549161144e83612b20565b91905055505050565b81600d546113789190612a83565b6040516370a0823160e01b81526001600160a01b03838116600483015260009182918416906370a082319060240160206040518083038186803b1580156114ab57600080fd5b505afa1580156114bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e39190612791565b949350505050565b606060018054610a5b90612ae5565b8060008111801561150d57506010548111155b6115505760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610b53565b600f548161155d60075490565b6115679190612a57565b11156115855760405162461bcd60e51b8152600401610b53906129d8565b60145460ff16156115d85760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610b53565b6115e133610df8565b156115f45781600e546112f09190612a83565b81600d546112f09190612a83565b6110ae338383611eb9565b6006546001600160a01b031633146116375760405162461bcd60e51b8152600401610b53906129a3565b600955565b6006546001600160a01b031633146116665760405162461bcd60e51b8152600401610b53906129a3565b601055565b6116753383611b4d565b6116915760405162461bcd60e51b8152600401610b5390612a06565b61169d84848484611f88565b50505050565b601581815481106116b357600080fd5b6000918252602090912001546001600160a01b0316905081565b600b8054610b8590612ae5565b6000818152600260205260409020546060906001600160a01b03166117595760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b53565b601454610100900460ff166117fa57600c805461177590612ae5565b80601f01602080910402602001604051908101604052809291908181526020018280546117a190612ae5565b80156117ee5780601f106117c3576101008083540402835291602001916117ee565b820191906000526020600020905b8154815290600101906020018083116117d157829003601f168201915b50505050509050919050565b6000611804611fbb565b905060008151116118245760405180602001604052806000815250611852565b8061182e84611fca565b600b604051602001611842939291906127f9565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146118835760405162461bcd60e51b8152600401610b53906129a3565b80516110ae90600b906020840190612364565b6006546001600160a01b031633146118c05760405162461bcd60e51b8152600401610b53906129a3565b601480549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146119045760405162461bcd60e51b8152600401610b53906129a3565b601155565b6006546001600160a01b031633146119335760405162461bcd60e51b8152600401610b53906129a3565b61193f601560006123e8565b610d1760158383612406565b8160008111801561195e57506010548111155b6119a15760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610b53565b600f54816119ae60075490565b6119b89190612a57565b11156119d65760405162461bcd60e51b8152600401610b53906129d8565b6006546001600160a01b03163314611a005760405162461bcd60e51b8152600401610b53906129a3565b610d178284611e2e565b6006546001600160a01b03163314611a345760405162461bcd60e51b8152600401610b53906129a3565b80516110ae90600c906020840190612364565b6006546001600160a01b03163314611a715760405162461bcd60e51b8152600401610b53906129a3565b6001600160a01b038116611ad65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b53565b610f4381611ddc565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b14826110b2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bc65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b53565b6000611bd1836110b2565b9050806001600160a01b0316846001600160a01b03161480611c0c5750836001600160a01b0316611c0184610ade565b6001600160a01b0316145b806114e357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166114e3565b826001600160a01b0316611c53826110b2565b6001600160a01b031614611cb75760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610b53565b6001600160a01b038216611d195760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b53565b611d24600082611adf565b6001600160a01b0383166000908152600360205260408120805460019290611d4d908490612aa2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d7b908490612a57565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610d1757611e47600780546001019055565b611e5983611e5460075490565b6120c8565b80611e6381612b20565b915050611e31565b60005b81811015610d1757611e84600780546001019055565b611e9183611e5460075490565b60138054906000611ea183612b20565b91905055508080611eb190612b20565b915050611e6e565b816001600160a01b0316836001600160a01b03161415611f1b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b53565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f93848484611c40565b611f9f848484846120e2565b61169d5760405162461bcd60e51b8152600401610b5390612951565b6060600a8054610a5b90612ae5565b606081611fee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612018578061200281612b20565b91506120119050600a83612a6f565b9150611ff2565b60008167ffffffffffffffff81111561203357612033612b91565b6040519080825280601f01601f19166020018201604052801561205d576020820181803683370190505b5090505b84156114e357612072600183612aa2565b915061207f600a86612b3b565b61208a906030612a57565b60f81b81838151811061209f5761209f612b7b565b60200101906001600160f81b031916908160001a9053506120c1600a86612a6f565b9450612061565b6110ae8282604051806020016040528060008152506121ef565b60006001600160a01b0384163b156121e457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121269033908990889088906004016128bd565b602060405180830381600087803b15801561214057600080fd5b505af1925050508015612170575060408051601f3d908101601f1916820190925261216d91810190612712565b60015b6121ca573d80801561219e576040519150601f19603f3d011682016040523d82523d6000602084013e6121a3565b606091505b5080516121c25760405162461bcd60e51b8152600401610b5390612951565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114e3565b506001949350505050565b6121f98383612222565b61220660008484846120e2565b610d175760405162461bcd60e51b8152600401610b5390612951565b6001600160a01b0382166122785760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b53565b6000818152600260205260409020546001600160a01b0316156122dd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b53565b6001600160a01b0382166000908152600360205260408120805460019290612306908490612a57565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461237090612ae5565b90600052602060002090601f01602090048101928261239257600085556123d8565b82601f106123ab57805160ff19168380011785556123d8565b828001600101855582156123d8579182015b828111156123d85782518255916020019190600101906123bd565b506123e4929150612459565b5090565b5080546000825590600052602060002090810190610f439190612459565b8280548282559060005260206000209081019282156123d8579160200282015b828111156123d85781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612426565b5b808211156123e4576000815560010161245a565b600067ffffffffffffffff8084111561248957612489612b91565b604051601f8501601f19908116603f011681019082821181831017156124b1576124b1612b91565b816040528093508581528686860111156124ca57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461123e57600080fd5b8035801515811461123e57600080fd5b60006020828403121561251d57600080fd5b611852826124e4565b6000806040838503121561253957600080fd5b612542836124e4565b9150612550602084016124e4565b90509250929050565b60008060006060848603121561256e57600080fd5b612577846124e4565b9250612585602085016124e4565b9150604084013590509250925092565b600080600080608085870312156125ab57600080fd5b6125b4856124e4565b93506125c2602086016124e4565b925060408501359150606085013567ffffffffffffffff8111156125e557600080fd5b8501601f810187136125f657600080fd5b6126058782356020840161246e565b91505092959194509250565b6000806040838503121561262457600080fd5b61262d836124e4565b9150612550602084016124fb565b6000806040838503121561264e57600080fd5b612657836124e4565b946020939093013593505050565b6000806020838503121561267857600080fd5b823567ffffffffffffffff8082111561269057600080fd5b818501915085601f8301126126a457600080fd5b8135818111156126b357600080fd5b8660208260051b85010111156126c857600080fd5b60209290920196919550909350505050565b6000602082840312156126ec57600080fd5b611852826124fb565b60006020828403121561270757600080fd5b813561185281612ba7565b60006020828403121561272457600080fd5b815161185281612ba7565b60006020828403121561274157600080fd5b813567ffffffffffffffff81111561275857600080fd5b8201601f8101841361276957600080fd5b6114e38482356020840161246e565b60006020828403121561278a57600080fd5b5035919050565b6000602082840312156127a357600080fd5b5051919050565b600080604083850312156127bd57600080fd5b82359150612550602084016124e4565b600081518084526127e5816020860160208601612ab9565b601f01601f19169290920160200192915050565b60008451602061280c8285838a01612ab9565b85519184019161281f8184848a01612ab9565b8554920191600090600181811c908083168061283c57607f831692505b85831081141561285a57634e487b7160e01b85526022600452602485fd5b80801561286e576001811461287f576128ac565b60ff198516885283880195506128ac565b60008b81526020902060005b858110156128a45781548a82015290840190880161288b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128f0908301846127cd565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561293257835183529284019291840191600101612916565b50909695505050505050565b60208152600061185260208301846127cd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612a6a57612a6a612b4f565b500190565b600082612a7e57612a7e612b65565b500490565b6000816000190483118215151615612a9d57612a9d612b4f565b500290565b600082821015612ab457612ab4612b4f565b500390565b60005b83811015612ad4578181015183820152602001612abc565b8381111561169d5750506000910152565b600181811c90821680612af957607f821691505b60208210811415612b1a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b3457612b34612b4f565b5060010190565b600082612b4a57612b4a612b65565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f4357600080fdfea26469706673582212206787cf3a4c5d6f4a590e56986cd8bf9741904c566db1e328e0efb7b3950d02e464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a4d696c616479526176650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d495200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54466944676d543459636d6552366b636747584343777a4848397a7334336e79635433534553524e696865502f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54466944676d543459636d6552366b636747584343777a4848397a7334336e79635433534553524e696865502f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): MiladyRave
Arg [1] : _symbol (string): MIR
Arg [2] : _initBaseURI (string): ipfs://QmTFiDgmT4YcmeR6kcgGXCCwzHH9zs43nycT3SESRNiheP/
Arg [3] : _initNotRevealedUri (string): ipfs://QmTFiDgmT4YcmeR6kcgGXCCwzHH9zs43nycT3SESRNiheP/
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 4d696c6164795261766500000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4d49520000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d54466944676d543459636d6552366b636747584343777a
Arg [10] : 4848397a7334336e79635433534553524e696865502f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d54466944676d543459636d6552366b636747584343777a
Arg [13] : 4848397a7334336e79635433534553524e696865502f00000000000000000000
Deployed Bytecode Sourcemap
40472:9049:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26330:355;;;;;;;;;;-1:-1:-1;26330:355:0;;;;;:::i;:::-;;:::i;:::-;;;8875:14:1;;8868:22;8850:41;;8838:2;8823:18;26330:355:0;;;;;;;;41475:54;;;;;;;;;;-1:-1:-1;41475:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27499:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29192:308::-;;;;;;;;;;-1:-1:-1;29192:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7536:32:1;;;7518:51;;7506:2;7491:18;29192:308:0;7372:203:1;40932:28:0;;;;;;;;;;;;;:::i;28715:411::-;;;;;;;;;;-1:-1:-1;28715:411:0;;;;;:::i;:::-;;:::i;:::-;;40969:31;;;;;;;;;;;;;;;;;;;17753:25:1;;;17741:2;17726:18;40969:31:0;17607:177:1;48515:83:0;;;;;;;;;;-1:-1:-1;48515:83:0;;;;;:::i;:::-;;:::i;47544:96::-;;;;;;;;;;-1:-1:-1;47544:96:0;;;;;:::i;:::-;;:::i;42610:95::-;;;;;;;;;;;;;:::i;41224:28::-;;;;;;;;;;;;;;;;30111:376;;;;;;;;;;-1:-1:-1;30111:376:0;;;;;:::i;:::-;;:::i;48004:139::-;;;;;;;;;;-1:-1:-1;48004:139:0;;;;;:::i;:::-;;:::i;46365:239::-;;;;;;;;;;-1:-1:-1;46365:239:0;;;;;:::i;:::-;;:::i;48610:95::-;;;;;;;;;;-1:-1:-1;48610:95:0;;;;;:::i;:::-;;:::i;48865:147::-;;;;;;;;;;;;;:::i;30558:185::-;;;;;;;;;;-1:-1:-1;30558:185:0;;;;;:::i;:::-;;:::i;45612:743::-;;;;;;;;;;-1:-1:-1;45612:743:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47456:80::-;;;;;;;;;;-1:-1:-1;47456:80:0;;;;;:::i;:::-;;:::i;40747:69::-;;;;;;;;;;-1:-1:-1;40747:69:0;;;;-1:-1:-1;;;;;40747:69:0;;;41292:27;;;;;;;;;;-1:-1:-1;41292:27:0;;;;;;;;;;;48149:98;;;;;;;;;;-1:-1:-1;48149:98:0;;;;;:::i;:::-;;:::i;41259:26::-;;;;;;;;;;-1:-1:-1;41259:26:0;;;;;;;;27106:326;;;;;;;;;;-1:-1:-1;27106:326:0;;;;;:::i;:::-;;:::i;41007:35::-;;;;;;;;;;;;;;;;40860:21;;;;;;;;;;;;;:::i;26749:295::-;;;;;;;;;;-1:-1:-1;26749:295:0;;;;;:::i;:::-;;:::i;6275:103::-;;;;;;;;;;;;;:::i;47115:124::-;;;;;;;;;;-1:-1:-1;47115:124:0;;;;;:::i;:::-;;:::i;42709:1599::-;;;;;;:::i;:::-;;:::i;45334:270::-;;;;;;;;;;-1:-1:-1;45334:270:0;;;;;:::i;:::-;;:::i;5624:87::-;;;;;;;;;;-1:-1:-1;5697:6:0;;-1:-1:-1;;;;;5697:6:0;5624:87;;41087:39;;;;;;;;;;;;;;;;27668:104;;;;;;;;;;;;;:::i;40823:28::-;;;;;;;;;;;;;;;;41133:42;;;;;;;;;;;;;;;;41326:34;;;;;;;;;;-1:-1:-1;41326:34:0;;;;;;;;;;;44318:807;;;;;;:::i;:::-;;:::i;29572:187::-;;;;;;;;;;-1:-1:-1;29572:187:0;;;;;:::i;:::-;;:::i;47249:100::-;;;;;;;;;;-1:-1:-1;47249:100:0;;;;;:::i;:::-;;:::i;47650:159::-;;;;;;;;;;-1:-1:-1;47650:159:0;;;;;:::i;:::-;;:::i;30814:365::-;;;;;;;;;;-1:-1:-1;30814:365:0;;;;;:::i;:::-;;:::i;41367:37::-;;;;;;;;;;-1:-1:-1;41367:37:0;;;;;:::i;:::-;;:::i;40888:::-;;;;;;;;;;;;;:::i;46610:497::-;;;;;;;;;;-1:-1:-1;46610:497:0;;;;;:::i;:::-;;:::i;41182:35::-;;;;;;;;;;;;;;;;41049:31;;;;;;;;;;;;;;;;48253:122;;;;;;;;;;-1:-1:-1;48253:122:0;;;;;:::i;:::-;;:::i;47361:87::-;;;;;;;;;;-1:-1:-1;47361:87:0;;;;;:::i;:::-;;:::i;47818:175::-;;;;;;;;;;-1:-1:-1;47818:175:0;;;;;:::i;:::-;;:::i;29830:214::-;;;;;;;;;;-1:-1:-1;29830:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;30001:25:0;;;29972:4;30001:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29830:214;48713:144;;;;;;;;;;-1:-1:-1;48713:144:0;;;;;:::i;:::-;;:::i;45133:193::-;;;;;;;;;;-1:-1:-1;45133:193:0;;;;;:::i;:::-;;:::i;48387:120::-;;;;;;;;;;-1:-1:-1;48387:120:0;;;;;:::i;:::-;;:::i;6533:238::-;;;;;;;;;;-1:-1:-1;6533:238:0;;;;;:::i;:::-;;:::i;26330:355::-;26477:4;-1:-1:-1;;;;;;26519:40:0;;-1:-1:-1;;;26519:40:0;;:105;;-1:-1:-1;;;;;;;26576:48:0;;-1:-1:-1;;;26576:48:0;26519:105;:158;;;-1:-1:-1;;;;;;;;;;19061:40:0;;;26641:36;26499:178;26330:355;-1:-1:-1;;26330:355:0:o;27499:100::-;27553:13;27586:5;27579:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27499:100;:::o;29192:308::-;29313:7;32815:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32815:16:0;29338:110;;;;-1:-1:-1;;;29338:110:0;;14045:2:1;29338:110:0;;;14027:21:1;14084:2;14064:18;;;14057:30;14123:34;14103:18;;;14096:62;-1:-1:-1;;;14174:18:1;;;14167:42;14226:19;;29338:110:0;;;;;;;;;-1:-1:-1;29468:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29468:24:0;;29192:308::o;40932:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28715:411::-;28796:13;28812:23;28827:7;28812:14;:23::i;:::-;28796:39;;28860:5;-1:-1:-1;;;;;28854:11:0;:2;-1:-1:-1;;;;;28854:11:0;;;28846:57;;;;-1:-1:-1;;;28846:57:0;;15940:2:1;28846:57:0;;;15922:21:1;15979:2;15959:18;;;15952:30;16018:34;15998:18;;;15991:62;-1:-1:-1;;;16069:18:1;;;16062:31;16110:19;;28846:57:0;15738:397:1;28846:57:0;4407:10;-1:-1:-1;;;;;28938:21:0;;;;:62;;-1:-1:-1;28963:37:0;28980:5;4407:10;29830:214;:::i;28963:37::-;28916:168;;;;-1:-1:-1;;;28916:168:0;;12438:2:1;28916:168:0;;;12420:21:1;12477:2;12457:18;;;12450:30;12516:34;12496:18;;;12489:62;12587:26;12567:18;;;12560:54;12631:19;;28916:168:0;12236:420:1;28916:168:0;29097:21;29106:2;29110:7;29097:8;:21::i;:::-;28785:341;28715:411;;:::o;48515:83::-;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;48575:6:::1;:15:::0;;-1:-1:-1;;48575:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48515:83::o;47544:96::-;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;47612:8:::1;:20:::0;47544:96::o;42610:95::-;42654:7;42681:16;:6;995:14;;903:114;42681:16;42674:23;;42610:95;:::o;30111:376::-;30320:41;4407:10;30353:7;30320:18;:41::i;:::-;30298:140;;;;-1:-1:-1;;;30298:140:0;;;;;;;:::i;:::-;30451:28;30461:4;30467:2;30471:7;30451:9;:28::i;48004:139::-;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;48105:13:::1;:30:::0;48004:139::o;46365:239::-;46424:4;;46437:143;46458:20;:27;46454:31;;46437:143;;;46532:5;-1:-1:-1;;;;;46505:32:0;:20;46526:1;46505:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;46505:23:0;:32;46501:72;;;-1:-1:-1;46559:4:0;;46365:239;-1:-1:-1;;46365:239:0:o;46501:72::-;46487:3;;;;:::i;:::-;;;;46437:143;;;-1:-1:-1;46593:5:0;;46365:239;-1:-1:-1;;46365:239:0:o;48610:95::-;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;48675:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;48675:24:0;;::::1;::::0;;;::::1;::::0;;48610:95::o;48865:147::-;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;48914:7:::1;48935;5697:6:::0;;-1:-1:-1;;;;;5697:6:0;;5624:87;48935:7:::1;-1:-1:-1::0;;;;;48927:21:0::1;48956;48927:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48913:69;;;49001:2;48993:11;;;::::0;::::1;;48902:110;48865:147::o:0;30558:185::-;30696:39;30713:4;30719:2;30723:7;30696:39;;;;;;;;;;;;:16;:39::i;45612:743::-;45699:16;45733:23;45759:17;45769:6;45759:9;:17::i;:::-;45733:43;;45787:30;45834:15;45820:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45820:30:0;-1:-1:-1;45787:63:0;-1:-1:-1;45886:1:0;45861:22;45938:377;45977:15;45959;:33;:64;;;;;46014:9;;45996:14;:27;;45959:64;45938:377;;;46050:25;46078:23;46086:14;46078:7;:23::i;:::-;46050:51;;46143:6;-1:-1:-1;;;;;46122:27:0;:17;-1:-1:-1;;;;;46122:27:0;;46118:153;;;46203:14;46170:13;46184:15;46170:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;46238:17;;;;:::i;:::-;;;;46118:153;46287:16;;;;:::i;:::-;;;;46035:280;45938:377;;;-1:-1:-1;46334:13:0;;45612:743;-1:-1:-1;;;;45612:743:0:o;47456:80::-;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;47516:4:::1;:12:::0;47456:80::o;48149:98::-;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;48220:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48149:98:::0;:::o;27106:326::-;27223:7;27264:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27264:16:0;27313:19;27291:110;;;;-1:-1:-1;;;27291:110:0;;13274:2:1;27291:110:0;;;13256:21:1;13313:2;13293:18;;;13286:30;13352:34;13332:18;;;13325:62;-1:-1:-1;;;13403:18:1;;;13396:39;13452:19;;27291:110:0;13072:405:1;40860:21:0;;;;;;;:::i;26749:295::-;26866:7;-1:-1:-1;;;;;26913:19:0;;26891:111;;;;-1:-1:-1;;;26891:111:0;;12863:2:1;26891:111:0;;;12845:21:1;12902:2;12882:18;;;12875:30;12941:34;12921:18;;;12914:62;-1:-1:-1;;;12992:18:1;;;12985:40;13042:19;;26891:111:0;12661:406:1;26891:111:0;-1:-1:-1;;;;;;27020:16:0;;;;;:9;:16;;;;;;;26749:295::o;6275:103::-;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;6340:30:::1;6367:1;6340:18;:30::i;:::-;6275:103::o:0;47115:124::-;5697:6;;47182:7;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;-1:-1:-1;47209:9:0::1;:22:::0;;-1:-1:-1;;;;;;47209:22:0::1;-1:-1:-1::0;;;;;47209:22:0;::::1;;::::0;;;5915:1:::1;47115:124:::0;;;:::o;42709:1599::-;42813:15;42354:1;42336:15;:19;:64;;;;;42378:22;;42359:15;:41;;42336:64;42316:136;;;;-1:-1:-1;;;42316:136:0;;14458:2:1;42316:136:0;;;14440:21:1;14497:2;14477:18;;;14470:30;14536:26;14516:18;;;14509:54;14580:18;;42316:136:0;14256:348:1;42316:136:0;42523:9;;42504:15;42485:16;:6;995:14;;903:114;42485:16;:34;;;;:::i;:::-;:47;;42463:117;;;;-1:-1:-1;;;42463:117:0;;;;;;;:::i;:::-;42923:4:::1;42910:9;;:17;42906:1395;;42972:15;42965:4;;:22;;;;:::i;:::-;42952:9;:35;;42944:67;;;::::0;-1:-1:-1;;;42944:67:0;;17461:2:1;42944:67:0::1;::::0;::::1;17443:21:1::0;17500:2;17480:18;;;17473:30;-1:-1:-1;;;17519:18:1;;;17512:49;17578:18;;42944:67:0::1;17259:343:1::0;42944:67:0::1;43026:38;43036:10;43048:15;43026:9;:38::i;42906:1395::-;43101:25;43115:10;43101:13;:25::i;:::-;43097:1193;;;43246:10;43232:25;::::0;;;:13:::1;:25;::::0;;;;:37;::::1;;:45;;:37:::0;:45:::1;43228:773;;;43468:15;43457:8;;:26;;;;:::i;:::-;43444:9;:39;;43410:144;;;::::0;-1:-1:-1;;;43410:144:0;;17461:2:1;43410:144:0::1;::::0;::::1;17443:21:1::0;17500:2;17480:18;;;17473:30;-1:-1:-1;;;17519:18:1;;;17512:49;17578:18;;43410:144:0::1;17259:343:1::0;43410:144:0::1;43577:42;43591:10;43603:15;43577:13;:42::i;43228:773::-;43762:25;43776:10;43762:13;:25::i;:::-;43754:61;;;::::0;-1:-1:-1;;;43754:61:0;;17109:2:1;43754:61:0::1;::::0;::::1;17091:21:1::0;17148:2;17128:18;;;17121:30;17187:25;17167:18;;;17160:53;17230:18;;43754:61:0::1;16907:347:1::0;43754:61:0::1;43838:42;43852:10;43864:15;43838:13;:42::i;:::-;43917:10;43903:25;::::0;;;:13:::1;:25;::::0;;;;:44;;-1:-1:-1;;43903:44:0::1;43943:4;43903:44;::::0;;43970:9:::1;:11:::0;;;::::1;::::0;::::1;:::i;:::-;;;;;;48220:21;48149:98:::0;:::o;43097:1193::-:1;44174:15;44167:4;;:22;;;;:::i;45334:270::-:0;45522:41;;-1:-1:-1;;;45522:41:0;;-1:-1:-1;;;;;7536:32:1;;;45522:41:0;;;7518:51:1;45459:24:0;;;;45522:33;;;;;7491:18:1;;45522:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45496:67;45334:270;-1:-1:-1;;;;45334:270:0:o;27668:104::-;27724:13;27757:7;27750:14;;;;;:::i;44318:807::-;44410:11;42014:1;42000:11;:15;:52;;;;;42034:18;;42019:11;:33;;42000:52;41978:122;;;;-1:-1:-1;;;41978:122:0;;10917:2:1;41978:122:0;;;10899:21:1;10956:2;10936:18;;;10929:30;-1:-1:-1;;;10975:18:1;;;10968:50;11035:18;;41978:122:0;10715:344:1;41978:122:0;42167:9;;42152:11;42133:16;:6;995:14;;903:114;42133:16;:30;;;;:::i;:::-;:43;;42111:113;;;;-1:-1:-1;;;42111:113:0;;;;;;;:::i;:::-;44448:6:::1;::::0;::::1;;44447:7;44439:43;;;::::0;-1:-1:-1;;;44439:43:0;;15172:2:1;44439:43:0::1;::::0;::::1;15154:21:1::0;15211:2;15191:18;;;15184:30;15250:25;15230:18;;;15223:53;15293:18;;44439:43:0::1;14970:347:1::0;44439:43:0::1;44548:25;44562:10;44548:13;:25::i;:::-;44545:573;;;44763:11;44752:8;;:22;;;;:::i;44545:573::-;45026:11;45019:4;;:18;;;;:::i;29572:187::-:0;29699:52;4407:10;29732:8;29742;29699:18;:52::i;47249:100::-;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;47319:9:::1;:22:::0;47249:100::o;47650:159::-;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;47761:18:::1;:40:::0;47650:159::o;30814:365::-;31003:41;4407:10;31036:7;31003:18;:41::i;:::-;30981:140;;;;-1:-1:-1;;;30981:140:0;;;;;;;:::i;:::-;31132:39;31146:4;31152:2;31156:7;31165:5;31132:13;:39::i;:::-;30814:365;;;;:::o;41367:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41367:37:0;;-1:-1:-1;41367:37:0;:::o;40888:::-;;;;;;;:::i;46610:497::-;32791:4;32815:16;;;:7;:16;;;;;;46708:13;;-1:-1:-1;;;;;32815:16:0;46733:97;;;;-1:-1:-1;;;46733:97:0;;15524:2:1;46733:97:0;;;15506:21:1;15563:2;15543:18;;;15536:30;15602:34;15582:18;;;15575:62;-1:-1:-1;;;15653:18:1;;;15646:45;15708:19;;46733:97:0;15322:411:1;46733:97:0;46846:8;;;;;;;46843:62;;46883:14;46876:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46610:497;;;:::o;46843:62::-;46913:28;46944:10;:8;:10::i;:::-;46913:41;;46999:1;46974:14;46968:28;:32;:133;;;;;;;;;;;;;;;;;47036:14;47052:18;:7;:16;:18::i;:::-;47072:13;47019:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46968:133;46961:140;46610:497;-1:-1:-1;;;46610:497:0:o;48253:122::-;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;48336:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;47361:87::-:0;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;47423:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;47423:17:0;;::::1;::::0;;;::::1;::::0;;47361:87::o;47818:175::-;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;47937:22:::1;:48:::0;47818:175::o;48713:144::-;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;48788:27:::1;48795:20;;48788:27;:::i;:::-;48822:29;:20;48845:6:::0;;48822:29:::1;:::i;45133:193::-:0;45237:11;42014:1;42000:11;:15;:52;;;;;42034:18;;42019:11;:33;;42000:52;41978:122;;;;-1:-1:-1;;;41978:122:0;;10917:2:1;41978:122:0;;;10899:21:1;10956:2;10936:18;;;10929:30;-1:-1:-1;;;10975:18:1;;;10968:50;11035:18;;41978:122:0;10715:344:1;41978:122:0;42167:9;;42152:11;42133:16;:6;995:14;;903:114;42133:16;:30;;;;:::i;:::-;:43;;42111:113;;;;-1:-1:-1;;;42111:113:0;;;;;;;:::i;:::-;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23:::1;5836:68;;;;-1:-1:-1::0;;;5836:68:0::1;;;;;;;:::i;:::-;45285:33:::2;45295:9;45306:11;45285:9;:33::i;48387:120::-:0;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;48469:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;6533:238::-:0;5697:6;;-1:-1:-1;;;;;5697:6:0;4407:10;5844:23;5836:68;;;;-1:-1:-1;;;5836:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6636:22:0;::::1;6614:110;;;::::0;-1:-1:-1;;;6614:110:0;;9747:2:1;6614:110:0::1;::::0;::::1;9729:21:1::0;9786:2;9766:18;;;9759:30;9825:34;9805:18;;;9798:62;-1:-1:-1;;;9876:18:1;;;9869:36;9922:19;;6614:110:0::1;9545:402:1::0;6614:110:0::1;6735:28;6754:8;6735:18;:28::i;37013:174::-:0;37088:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37088:29:0;-1:-1:-1;;;;;37088:29:0;;;;;;;;:24;;37142:23;37088:24;37142:14;:23::i;:::-;-1:-1:-1;;;;;37133:46:0;;;;;;;;;;;37013:174;;:::o;33020:452::-;33149:4;32815:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32815:16:0;33171:110;;;;-1:-1:-1;;;33171:110:0;;12025:2:1;33171:110:0;;;12007:21:1;12064:2;12044:18;;;12037:30;12103:34;12083:18;;;12076:62;-1:-1:-1;;;12154:18:1;;;12147:42;12206:19;;33171:110:0;11823:408:1;33171:110:0;33292:13;33308:23;33323:7;33308:14;:23::i;:::-;33292:39;;33361:5;-1:-1:-1;;;;;33350:16:0;:7;-1:-1:-1;;;;;33350:16:0;;:64;;;;33407:7;-1:-1:-1;;;;;33383:31:0;:20;33395:7;33383:11;:20::i;:::-;-1:-1:-1;;;;;33383:31:0;;33350:64;:113;;;-1:-1:-1;;;;;;30001:25:0;;;29972:4;30001:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33431:32;29830:214;36233:662;36406:4;-1:-1:-1;;;;;36379:31:0;:23;36394:7;36379:14;:23::i;:::-;-1:-1:-1;;;;;36379:31:0;;36357:118;;;;-1:-1:-1;;;36357:118:0;;10154:2:1;36357:118:0;;;10136:21:1;10193:2;10173:18;;;10166:30;10232:34;10212:18;;;10205:62;-1:-1:-1;;;10283:18:1;;;10276:35;10328:19;;36357:118:0;9952:401:1;36357:118:0;-1:-1:-1;;;;;36494:16:0;;36486:65;;;;-1:-1:-1;;;36486:65:0;;11266:2:1;36486:65:0;;;11248:21:1;11305:2;11285:18;;;11278:30;11344:34;11324:18;;;11317:62;-1:-1:-1;;;11395:18:1;;;11388:34;11439:19;;36486:65:0;11064:400:1;36486:65:0;36668:29;36685:1;36689:7;36668:8;:29::i;:::-;-1:-1:-1;;;;;36710:15:0;;;;;;:9;:15;;;;;:20;;36729:1;;36710:15;:20;;36729:1;;36710:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36741:13:0;;;;;;:9;:13;;;;;:18;;36758:1;;36741:13;:18;;36758:1;;36741:18;:::i;:::-;;;;-1:-1:-1;;36770:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36770:21:0;-1:-1:-1;;;;;36770:21:0;;;;;;;;;36809:27;;36770:16;;36809:27;;;;;;;28785:341;28715:411;;:::o;6931:191::-;7024:6;;;-1:-1:-1;;;;;7041:17:0;;;-1:-1:-1;;;;;;7041:17:0;;;;;;;7074:40;;7024:6;;;7041:17;7024:6;;7074:40;;7005:16;;7074:40;6994:128;6931:191;:::o;49020:226::-;49104:9;49099:140;49123:11;49119:1;:15;49099:140;;;49156:18;:6;1114:19;;1132:1;1114:19;;;1025:127;49156:18;49189:38;49199:9;49210:16;:6;995:14;;903:114;49210:16;49189:9;:38::i;:::-;49136:3;;;;:::i;:::-;;;;49099:140;;49254:264;49346:9;49341:170;49365:15;49361:1;:19;49341:170;;;49402:18;:6;1114:19;;1132:1;1114:19;;;1025:127;49402:18;49435:38;49445:9;49456:16;:6;995:14;;903:114;49435:38;49488:9;:11;;;:9;:11;;;:::i;:::-;;;;;;49382:3;;;;;:::i;:::-;;;;49341:170;;37329:315;37484:8;-1:-1:-1;;;;;37475:17:0;:5;-1:-1:-1;;;;;37475:17:0;;;37467:55;;;;-1:-1:-1;;;37467:55:0;;11671:2:1;37467:55:0;;;11653:21:1;11710:2;11690:18;;;11683:30;11749:27;11729:18;;;11722:55;11794:18;;37467:55:0;11469:349:1;37467:55:0;-1:-1:-1;;;;;37533:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37533:46:0;;;;;;;;;;37595:41;;8850::1;;;37595::0;;8823:18:1;37595:41:0;;;;;;;37329:315;;;:::o;32061:352::-;32218:28;32228:4;32234:2;32238:7;32218:9;:28::i;:::-;32279:48;32302:4;32308:2;32312:7;32321:5;32279:22;:48::i;:::-;32257:148;;;;-1:-1:-1;;;32257:148:0;;;;;;;:::i;41812:102::-;41872:13;41901:7;41894:14;;;;;:::i;1859:723::-;1915:13;2136:10;2132:53;;-1:-1:-1;;2163:10:0;;;;;;;;;;;;-1:-1:-1;;;2163:10:0;;;;;1859:723::o;2132:53::-;2210:5;2195:12;2251:78;2258:9;;2251:78;;2284:8;;;;:::i;:::-;;-1:-1:-1;2307:10:0;;-1:-1:-1;2315:2:0;2307:10;;:::i;:::-;;;2251:78;;;2339:19;2371:6;2361:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2361:17:0;;2339:39;;2389:154;2396:10;;2389:154;;2423:11;2433:1;2423:11;;:::i;:::-;;-1:-1:-1;2492:10:0;2500:2;2492:5;:10;:::i;:::-;2479:24;;:2;:24;:::i;:::-;2466:39;;2449:6;2456;2449:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2449:56:0;;;;;;;;-1:-1:-1;2520:11:0;2529:2;2520:11;;:::i;:::-;;;2389:154;;33814:110;33890:26;33900:2;33904:7;33890:26;;;;;;;;;;;;:9;:26::i;38209:980::-;38364:4;-1:-1:-1;;;;;38385:13:0;;8655:19;:23;38381:801;;38438:175;;-1:-1:-1;;;38438:175:0;;-1:-1:-1;;;;;38438:36:0;;;;;:175;;4407:10;;38532:4;;38559:7;;38589:5;;38438:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38438:175:0;;;;;;;;-1:-1:-1;;38438:175:0;;;;;;;;;;;;:::i;:::-;;;38417:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38796:13:0;;38792:320;;38839:108;;-1:-1:-1;;;38839:108:0;;;;;;;:::i;38792:320::-;39062:6;39056:13;39047:6;39043:2;39039:15;39032:38;38417:710;-1:-1:-1;;;;;;38677:51:0;-1:-1:-1;;;38677:51:0;;-1:-1:-1;38670:58:0;;38381:801;-1:-1:-1;39166:4:0;38209:980;;;;;;:::o;34151:321::-;34281:18;34287:2;34291:7;34281:5;:18::i;:::-;34332:54;34363:1;34367:2;34371:7;34380:5;34332:22;:54::i;:::-;34310:154;;;;-1:-1:-1;;;34310:154:0;;;;;;;:::i;34808:439::-;-1:-1:-1;;;;;34888:16:0;;34880:61;;;;-1:-1:-1;;;34880:61:0;;13684:2:1;34880:61:0;;;13666:21:1;;;13703:18;;;13696:30;13762:34;13742:18;;;13735:62;13814:18;;34880:61:0;13482:356:1;34880:61:0;32791:4;32815:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32815:16:0;:30;34952:58;;;;-1:-1:-1;;;34952:58:0;;10560:2:1;34952:58:0;;;10542:21:1;10599:2;10579:18;;;10572:30;10638;10618:18;;;10611:58;10686:18;;34952:58:0;10358:352:1;34952:58:0;-1:-1:-1;;;;;35081:13:0;;;;;;:9;:13;;;;;:18;;35098:1;;35081:13;:18;;35098:1;;35081:18;:::i;:::-;;;;-1:-1:-1;;35110:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35110:21:0;-1:-1:-1;;;;;35110:21:0;;;;;;;;35149:33;;35110:16;;;35149:33;;35110:16;;35149:33;48220:21:::1;48149:98:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:184::-;4990:6;5043:2;5031:9;5022:7;5018:23;5014:32;5011:52;;;5059:1;5056;5049:12;5011:52;-1:-1:-1;5082:16:1;;4920:184;-1:-1:-1;4920:184:1:o;5109:254::-;5177:6;5185;5238:2;5226:9;5217:7;5213:23;5209:32;5206:52;;;5254:1;5251;5244:12;5206:52;5290:9;5277:23;5267:33;;5319:38;5353:2;5342:9;5338:18;5319:38;:::i;5368:257::-;5409:3;5447:5;5441:12;5474:6;5469:3;5462:19;5490:63;5546:6;5539:4;5534:3;5530:14;5523:4;5516:5;5512:16;5490:63;:::i;:::-;5607:2;5586:15;-1:-1:-1;;5582:29:1;5573:39;;;;5614:4;5569:50;;5368:257;-1:-1:-1;;5368:257:1:o;5630:1527::-;5854:3;5892:6;5886:13;5918:4;5931:51;5975:6;5970:3;5965:2;5957:6;5953:15;5931:51;:::i;:::-;6045:13;;6004:16;;;;6067:55;6045:13;6004:16;6089:15;;;6067:55;:::i;:::-;6211:13;;6144:20;;;6184:1;;6271;6293:18;;;;6346;;;;6373:93;;6451:4;6441:8;6437:19;6425:31;;6373:93;6514:2;6504:8;6501:16;6481:18;6478:40;6475:167;;;-1:-1:-1;;;6541:33:1;;6597:4;6594:1;6587:15;6627:4;6548:3;6615:17;6475:167;6658:18;6685:110;;;;6809:1;6804:328;;;;6651:481;;6685:110;-1:-1:-1;;6720:24:1;;6706:39;;6765:20;;;;-1:-1:-1;6685:110:1;;6804:328;17862:1;17855:14;;;17899:4;17886:18;;6899:1;6913:169;6927:8;6924:1;6921:15;6913:169;;;7009:14;;6994:13;;;6987:37;7052:16;;;;6944:10;;6913:169;;;6917:3;;7113:8;7106:5;7102:20;7095:27;;6651:481;-1:-1:-1;7148:3:1;;5630:1527;-1:-1:-1;;;;;;;;;;;5630:1527:1:o;7580:488::-;-1:-1:-1;;;;;7849:15:1;;;7831:34;;7901:15;;7896:2;7881:18;;7874:43;7948:2;7933:18;;7926:34;;;7996:3;7991:2;7976:18;;7969:31;;;7774:4;;8017:45;;8042:19;;8034:6;8017:45;:::i;:::-;8009:53;7580:488;-1:-1:-1;;;;;;7580:488:1:o;8073:632::-;8244:2;8296:21;;;8366:13;;8269:18;;;8388:22;;;8215:4;;8244:2;8467:15;;;;8441:2;8426:18;;;8215:4;8510:169;8524:6;8521:1;8518:13;8510:169;;;8585:13;;8573:26;;8654:15;;;;8619:12;;;;8546:1;8539:9;8510:169;;;-1:-1:-1;8696:3:1;;8073:632;-1:-1:-1;;;;;;8073:632:1:o;8902:219::-;9051:2;9040:9;9033:21;9014:4;9071:44;9111:2;9100:9;9096:18;9088:6;9071:44;:::i;9126:414::-;9328:2;9310:21;;;9367:2;9347:18;;;9340:30;9406:34;9401:2;9386:18;;9379:62;-1:-1:-1;;;9472:2:1;9457:18;;9450:48;9530:3;9515:19;;9126:414::o;14609:356::-;14811:2;14793:21;;;14830:18;;;14823:30;14889:34;14884:2;14869:18;;14862:62;14956:2;14941:18;;14609:356::o;16140:344::-;16342:2;16324:21;;;16381:2;16361:18;;;16354:30;-1:-1:-1;;;16415:2:1;16400:18;;16393:50;16475:2;16460:18;;16140:344::o;16489:413::-;16691:2;16673:21;;;16730:2;16710:18;;;16703:30;16769:34;16764:2;16749:18;;16742:62;-1:-1:-1;;;16835:2:1;16820:18;;16813:47;16892:3;16877:19;;16489:413::o;17915:128::-;17955:3;17986:1;17982:6;17979:1;17976:13;17973:39;;;17992:18;;:::i;:::-;-1:-1:-1;18028:9:1;;17915:128::o;18048:120::-;18088:1;18114;18104:35;;18119:18;;:::i;:::-;-1:-1:-1;18153:9:1;;18048:120::o;18173:168::-;18213:7;18279:1;18275;18271:6;18267:14;18264:1;18261:21;18256:1;18249:9;18242:17;18238:45;18235:71;;;18286:18;;:::i;:::-;-1:-1:-1;18326:9:1;;18173:168::o;18346:125::-;18386:4;18414:1;18411;18408:8;18405:34;;;18419:18;;:::i;:::-;-1:-1:-1;18456:9:1;;18346:125::o;18476:258::-;18548:1;18558:113;18572:6;18569:1;18566:13;18558:113;;;18648:11;;;18642:18;18629:11;;;18622:39;18594:2;18587:10;18558:113;;;18689:6;18686:1;18683:13;18680:48;;;-1:-1:-1;;18724:1:1;18706:16;;18699:27;18476:258::o;18739:380::-;18818:1;18814:12;;;;18861;;;18882:61;;18936:4;18928:6;18924:17;18914:27;;18882:61;18989:2;18981:6;18978:14;18958:18;18955:38;18952:161;;;19035:10;19030:3;19026:20;19023:1;19016:31;19070:4;19067:1;19060:15;19098:4;19095:1;19088:15;18952:161;;18739:380;;;:::o;19124:135::-;19163:3;-1:-1:-1;;19184:17:1;;19181:43;;;19204:18;;:::i;:::-;-1:-1:-1;19251:1:1;19240:13;;19124:135::o;19264:112::-;19296:1;19322;19312:35;;19327:18;;:::i;:::-;-1:-1:-1;19361:9:1;;19264:112::o;19381:127::-;19442:10;19437:3;19433:20;19430:1;19423:31;19473:4;19470:1;19463:15;19497:4;19494:1;19487:15;19513:127;19574:10;19569:3;19565:20;19562:1;19555:31;19605:4;19602:1;19595:15;19629:4;19626:1;19619:15;19645:127;19706:10;19701:3;19697:20;19694:1;19687:31;19737:4;19734:1;19727:15;19761:4;19758:1;19751:15;19777:127;19838:10;19833:3;19829:20;19826:1;19819:31;19869:4;19866:1;19859:15;19893:4;19890:1;19883:15;19909:131;-1:-1:-1;;;;;;19983:32:1;;19973:43;;19963:71;;20030:1;20027;20020:12
Swarm Source
ipfs://6787cf3a4c5d6f4a590e56986cd8bf9741904c566db1e328e0efb7b3950d02e4
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.