Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 Legends Of Shangu
Holders
224
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 Legends Of ShanguLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LegendsOfShangu
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-02 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.9; /** * @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); } // import "../../utils/introspection/IERC165.sol"; /** * @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; } /** * @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); } // import "../IERC721.sol"; /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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-Limit 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; } } /** * @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); } } // import "./IERC165.sol"; /** * @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; } } /*import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol";*/ /** * @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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 ) external virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev 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 {} } /** * @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; } } // import "../utils/Context.sol"; /** * @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() { _setOwner(_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() external virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } contract LegendsOfShangu is ERC721, Ownable, ReentrancyGuard{ using Counters for Counters.Counter; Counters.Counter _tokenIdTracker; mapping(uint256 => string) public _tokenURIs; //returns uris for particular token id mapping(uint256 => address) public minter; //returs minter of a token id mapping(address => uint256[]) public mintedByUser; uint256 public constant awakeningLimit = 2623; uint256 public constant whitelistOneLimit = 2000; uint256 public constant whitelistTwoLimit = 1000; uint256 public constant publicSaleLimit = 7400; uint256 public constant awakeningUserLimit = 24; uint256 public constant whitelistOneUserLimit = 12; uint256 public constant whitelistTwoUserLimit = 12; uint256 public constant publicSaleUserLimit = 12; uint256 public constant awakeningPrice = 0.08 ether; uint256 public constant whitelistOnePrice = 0.1 ether; uint256 public constant whitelistTwoPrice = 0.12 ether; uint256 public publicSalePrice; bool public publicSalePriceSet; uint256 public constant awakeningStart = 1643851800; uint256 public constant whitelistOneStart = 1644017400; uint256 public constant whitelistTwoStart = 1644197400; uint256 public constant publicSaleStart = 1644283800; uint256 public constant awakeningEnd= 1643862600; uint256 public constant whitelistOneEnd = 1644028200; uint256 public constant whitelistTwoEnd = 1644211800; uint256 public constant teamLimit = 377; mapping(address => uint256) public userAwakeningLimit; mapping(address => uint256) public userWhitelistOneLimit; mapping(address => uint256) public userWhitelistTwoLimit; mapping(address => uint256) public userPublicSaleLimit; mapping(uint256 => bool) public revealed; mapping(address => bool) public awakeningWhitelisted; mapping(address => bool) public whitelistOneWhitelisted; mapping(address => bool) public whitelistTwoWhitelisted; string public baseUri = "https://legendsofshangu.mypinata.cloud/ipfs/QmXZEctx31jg9hQEx9ukeK13YG5SQrBZDjgs8GV83AoBPt"; uint256 public awakeningSold; uint256 public whitelistOneSold; uint256 public whitelistTwoSold; uint256 public publicSaleSold; uint256 public TeamWalletMinted; uint256 public totalSale; address public TeamWallet1; address public TeamWallet2; address public TeamWallet3; address public TeamWallet4; address public TeamWallet5; address public TeamWallet6; address public TeamWallet7; address public TeamWallet8; constructor(string memory NAME, string memory SYMBOL, address _teamWallet1, address _teamWallet2, address _teamWallet3, address _teamWallet4 , address _teamWallet5, address _teamWallet6, address _teamWallet7, address _teamWallet8 ) ERC721(NAME,SYMBOL) { TeamWallet1 = _teamWallet1; TeamWallet2 = _teamWallet2; TeamWallet3 = _teamWallet3; TeamWallet4 = _teamWallet4; TeamWallet5 = _teamWallet5; TeamWallet6 = _teamWallet6; TeamWallet7 = _teamWallet7; TeamWallet8 = _teamWallet8; } event Minted (uint256 _NftId, string msg); event BatchMint(uint256 _totalNft, string msg); event Revealed(); event PriceSet(uint256 price); event AwakeningWhitelist(); event WhitelistOneWhitelist(); event WhitelistTwoWhitelist(); function _mintNft(address creator) private returns (uint256) { uint256 NftId = _tokenIdTracker.current(); _safeMint(creator, NftId); mintedByUser[creator].push(NftId); minter[NftId] = creator; _setTokenURI(NftId, baseUri); _tokenIdTracker.increment(); emit Minted (NftId,"successfully minted"); return (NftId); } // function to mint multiple nfts function awakeningMint( uint256 numberOfNfts) external payable nonReentrant returns(bool) { require(block.timestamp> awakeningStart && block.timestamp< awakeningEnd,"Sale Not Started"); require(awakeningWhitelisted[msg.sender]==true,"User not whitelisted"); awakeningSold = awakeningSold + numberOfNfts; require(awakeningSold<= awakeningLimit,"Awakening Sale Limit Exceeded"); require(msg.value >= numberOfNfts*awakeningPrice, "Please Enter Correct Amount"); payable(address(this)).transfer(msg.value); awakeningMint(msg.sender, numberOfNfts); totalSale = totalSale+numberOfNfts; emit BatchMint(numberOfNfts," Awakening Minted successfully"); return(true); } function whitelistOneMint( uint256 numberOfNfts) external payable nonReentrant returns(bool) { require(block.timestamp> whitelistOneStart && block.timestamp< whitelistOneEnd,"Sale not started"); require(whitelistOneWhitelisted[msg.sender]==true,"User not whitelisted"); whitelistOneSold = whitelistOneSold + numberOfNfts; require(whitelistOneSold<= whitelistOneLimit,"Whitelist One Sale Limit Exceeded"); require(msg.value >= numberOfNfts*whitelistOnePrice, "Please Enter Correct Amount"); payable(address(this)).transfer(msg.value); whitelistOneMint(msg.sender, numberOfNfts); totalSale = totalSale+numberOfNfts; emit BatchMint(numberOfNfts," Whitelist One Minted successfully"); return(true); } function whitelistTwoMint( uint256 numberOfNfts) external payable nonReentrant returns(bool) { require(block.timestamp> whitelistTwoStart && block.timestamp< whitelistTwoEnd,"Sale not started"); require(whitelistTwoWhitelisted[msg.sender]==true,"User not whitelisted"); whitelistTwoSold = whitelistTwoSold + numberOfNfts; require(whitelistTwoSold<= whitelistTwoLimit,"Whitelist Two Sale Limit Exceeded"); require(msg.value >= numberOfNfts*whitelistTwoPrice, "Please Enter Correct Amount"); payable(address(this)).transfer(msg.value); whitelistTwoMint(msg.sender, numberOfNfts); totalSale = totalSale+numberOfNfts; emit BatchMint(numberOfNfts,"Whitelist Two Minted successfully"); return(true); } function publicSaleMint( uint256 numberOfNfts) external payable nonReentrant returns(bool) { require(block.timestamp> publicSaleStart,"Sale not started"); require(publicSalePriceSet == true,"Price not set"); totalSale = totalSale+numberOfNfts; require(totalSale<= publicSaleLimit,"Total Supply Reached"); require(msg.value >= numberOfNfts*publicSalePrice, "Please Enter Correct Amount"); payable(address(this)).transfer(msg.value); publicSaleMint(msg.sender, numberOfNfts); emit BatchMint(numberOfNfts,"Public Sale Minted successfully"); return(true); } function withdrawAmount() external payable onlyOwner{ uint256 amount = address(this).balance; payable(TeamWallet1).transfer((amount)*32/100); payable(TeamWallet2).transfer((amount)*25/100); payable(TeamWallet3).transfer((amount)*25/100); payable(TeamWallet4).transfer((amount)*5/100); payable(TeamWallet5).transfer((amount)*3/100); payable(TeamWallet6).transfer((amount)*1/100); payable(TeamWallet7).transfer((amount)*1/100); payable(TeamWallet8).transfer((amount)*8/100); } function awakeningMint(address creator, uint256 numberOfNfts) private{ userAwakeningLimit[creator] = userAwakeningLimit[creator] + numberOfNfts; require(userAwakeningLimit[creator]<= awakeningUserLimit,"Minting Limit Exceeded"); for(uint256 i = 0; i< numberOfNfts; i++){ _mintNft(creator); } } function whitelistOneMint(address creator, uint256 numberOfNfts) private{ userWhitelistOneLimit[creator] = userWhitelistOneLimit[creator] + numberOfNfts; require(userWhitelistOneLimit[creator]<= whitelistOneUserLimit,"Minting Limit Exceeded"); for(uint256 i = 0; i< numberOfNfts; i++){ _mintNft(creator); } } function whitelistTwoMint(address creator, uint256 numberOfNfts) private{ userWhitelistTwoLimit[creator] = userWhitelistTwoLimit[creator] + numberOfNfts; require(userWhitelistTwoLimit[creator]<= whitelistTwoUserLimit,"Minting Limit Exceeded"); for(uint256 i = 0; i< numberOfNfts; i++){ _mintNft(creator); } } function publicSaleMint(address creator, uint256 numberOfNfts) private{ userPublicSaleLimit[creator] = userPublicSaleLimit[creator] + numberOfNfts; require(userPublicSaleLimit[creator]<= publicSaleUserLimit,"Minting Limit Exceeded"); for(uint256 i = 0; i< numberOfNfts; i++){ _mintNft(creator); } } function whitelistUsersForAwakening(address[] memory user) external onlyOwner{ address[] memory _user = user; uint256 length = _user.length; for(uint256 i=0; i<length;i++){ awakeningWhitelisted[_user[i]] = true; } emit AwakeningWhitelist(); } function whitelistUsersForWhitelistOne(address[] memory user) external onlyOwner{ address[] memory _user = user; uint256 length = _user.length; for(uint256 i=0; i<length;i++){ whitelistOneWhitelisted[_user[i]] = true; } emit WhitelistOneWhitelist(); } function whitelistUsersForWhitelistTwo(address[] memory user) external onlyOwner{ address[] memory _user = user; uint256 length = _user.length; for(uint256 i=0; i<length;i++){ whitelistTwoWhitelisted[_user[i]] = true; } emit WhitelistTwoWhitelist(); } function setPublicSalePrice(uint256 price) external onlyOwner{ require(price >0,"Price should be greater than 0"); publicSalePrice = price; publicSalePriceSet = true; emit PriceSet(price); } // returns minter of a token function minterOfToken(uint256 tokenId) external view returns (address _minter){ return(minter[tokenId]); } // sets uri for a token function _setTokenURI(uint256 tokenId, string memory _tokenURI) private { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } // sets uri for a token function revealNFTs(uint256[] memory tokenId, string[] memory _tokenURI) external onlyOwner { require(tokenId.length == _tokenURI.length,"Invalid Input"); uint256 entry = tokenId.length; for(uint256 i= 0; i<entry ; i++){ require(revealed[tokenId[i]]==false,"Already revealed"); revealed[tokenId[i]]= true; _setTokenURI(tokenId[i],_tokenURI[i]); } emit Revealed(); } // returns the total amount of NFTs minted function getTokenCounter() external view returns (uint256 tracker){ return(_tokenIdTracker.current()); } function teamMint(uint256 numberOfNfts) external onlyOwner{ TeamWalletMinted = TeamWalletMinted + numberOfNfts; require(TeamWalletMinted <= teamLimit, " Mint limit exceeded"); for(uint256 i=0; i< numberOfNfts; i++){ _mintNft(msg.sender); } } function getNFTMintedByUser(address user) external view returns (uint256[] memory ids){ return(mintedByUser[user]); } // returns uri of a particular token function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; return _tokenURI; } function ownerOfTokenId(address user) external view returns(uint256[] memory ids){ uint256 count = 0; for(uint256 i=0; i<_tokenIdTracker.current();i++){ if(ownerOf(i)== user){ count++; } } uint256[] memory tokenIds = new uint256[](count); uint256 counter = 0; for(uint256 i=0; i<_tokenIdTracker.current();i++){ if(ownerOf(i)== user){ tokenIds[counter] = i; counter++; } } return(tokenIds); } receive() external payable {} fallback() external payable {} }
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":"address","name":"_teamWallet1","type":"address"},{"internalType":"address","name":"_teamWallet2","type":"address"},{"internalType":"address","name":"_teamWallet3","type":"address"},{"internalType":"address","name":"_teamWallet4","type":"address"},{"internalType":"address","name":"_teamWallet5","type":"address"},{"internalType":"address","name":"_teamWallet6","type":"address"},{"internalType":"address","name":"_teamWallet7","type":"address"},{"internalType":"address","name":"_teamWallet8","type":"address"}],"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":[],"name":"AwakeningWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_totalNft","type":"uint256"},{"indexed":false,"internalType":"string","name":"msg","type":"string"}],"name":"BatchMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_NftId","type":"uint256"},{"indexed":false,"internalType":"string","name":"msg","type":"string"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"PriceSet","type":"event"},{"anonymous":false,"inputs":[],"name":"Revealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[],"name":"WhitelistOneWhitelist","type":"event"},{"anonymous":false,"inputs":[],"name":"WhitelistTwoWhitelist","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"TeamWallet1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TeamWallet2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TeamWallet3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TeamWallet4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TeamWallet5","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TeamWallet6","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TeamWallet7","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TeamWallet8","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TeamWalletMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_tokenURIs","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"awakeningEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"awakeningLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"awakeningMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"awakeningPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"awakeningSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"awakeningStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"awakeningUserLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"awakeningWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNFTMintedByUser","outputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenCounter","outputs":[{"internalType":"uint256","name":"tracker","type":"uint256"}],"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":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintedByUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"minterOfToken","outputs":[{"internalType":"address","name":"_minter","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"ownerOfTokenId","outputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"publicSaleMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePriceSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleUserLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"},{"internalType":"string[]","name":"_tokenURI","type":"string[]"}],"name":"revealNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicSalePrice","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":[],"name":"teamLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSale","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":"","type":"address"}],"name":"userAwakeningLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userPublicSaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userWhitelistOneLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userWhitelistTwoLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistOneEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistOneLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"whitelistOneMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistOnePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistOneSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistOneStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistOneUserLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistOneWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistTwoEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistTwoLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"whitelistTwoMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistTwoPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistTwoSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistTwoStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistTwoUserLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistTwoWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"user","type":"address[]"}],"name":"whitelistUsersForAwakening","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"user","type":"address[]"}],"name":"whitelistUsersForWhitelistOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"user","type":"address[]"}],"name":"whitelistUsersForWhitelistTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAmount","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
610100604052605a60808181529062003dd760a03980516200002a9160169160209091019062000197565b503480156200003857600080fd5b5060405162003e3138038062003e318339810160408190526200005b9162000327565b89518a908a906200007490600090602085019062000197565b5080516200008a90600190602084019062000197565b505050620000a7620000a16200014160201b60201c565b62000145565b6001600755601d80546001600160a01b03199081166001600160a01b039a8b1617909155601e80548216988a1698909817909755601f8054881696891696909617909555602080548716948816949094179093556021805486169287169290921790915560228054851691861691909117905560238054841691851691909117905560248054909216921691909117905550620004659050565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a59062000428565b90600052602060002090601f016020900481019282620001c9576000855562000214565b82601f10620001e457805160ff191683800117855562000214565b8280016001018555821562000214579182015b8281111562000214578251825591602001919060010190620001f7565b506200022292915062000226565b5090565b5b8082111562000222576000815560010162000227565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200026557600080fd5b81516001600160401b03808211156200028257620002826200023d565b604051601f8301601f19908116603f01168101908282118183101715620002ad57620002ad6200023d565b81604052838152602092508683858801011115620002ca57600080fd5b600091505b83821015620002ee5785820183015181830184015290820190620002cf565b83821115620003005760008385830101525b9695505050505050565b80516001600160a01b03811681146200032257600080fd5b919050565b6000806000806000806000806000806101408b8d0312156200034857600080fd5b8a516001600160401b03808211156200036057600080fd5b6200036e8e838f0162000253565b9b5060208d01519150808211156200038557600080fd5b50620003948d828e0162000253565b995050620003a560408c016200030a565b9750620003b560608c016200030a565b9650620003c560808c016200030a565b9550620003d560a08c016200030a565b9450620003e560c08c016200030a565b9350620003f560e08c016200030a565b9250620004066101008c016200030a565b9150620004176101208c016200030a565b90509295989b9194979a5092959850565b600181811c908216806200043d57607f821691505b602082108114156200045f57634e487b7160e01b600052602260045260246000fd5b50919050565b61396280620004756000396000f3fe6080604052600436106104315760003560e01c806370a0823111610227578063ac8d856c1161012d578063e3713694116100b0578063f2fde38b11610077578063f2fde38b14610ce7578063f5cebc4d14610d07578063fb15b9f214610d1f578063fe9c228114610d3f578063ff84395614610d5f57005b8063e371369414610c5c578063e8dfc3751461057c578063e985e9c514610c72578063ea4ce23914610cbb578063ed7fca4d14610cd157005b8063b88d4fde116100f4578063b88d4fde14610bc6578063c87b56dd14610be6578063ca97316114610c06578063d7d09a9714610c26578063dfc25f9714610c3c57005b8063ac8d856c14610b21578063b08d188614610b57578063b26c748314610b73578063b3ab66b014610b93578063b608d15e14610ba657005b806388717f2d116101b557806395d89b411161017c57806395d89b4114610aa55780639abc832014610aba5780639b6860c814610acf578063a22cb46514610ae5578063a36fac4814610b0557005b806388717f2d14610a0e5780638c62b60c14610a2e5780638da5cb5b14610a4457806390e4c99c14610a62578063923a3ff114610a8f57005b8063791a2519116101f9578063791a2519146109415780637ced40061461096157806380ffb21d1461099157806382d27f3e146109b15780638476c740146109e157005b806370a08231146108d257806371316ac8146108f2578063715018a61461090c578063744bb1cb1461092157005b806342842e0e1161033757806361b6158f116102ba5780636cf335ef116102815780636cf335ef1461085c5780636e02007d1461086f5780636e3de87c146108845780636ea669ff1461089a5780636ff59799146108b257005b806361b6158f146107c55780636352211e146107d8578063643ce525146107f857806364bbd7dd1461080e57806369220c461461082657005b806356853b99116102fe57806356853b991461071a578063583be4931461074757806358f4ffbf146107675780635e62462a1461077f57806361a2bc011461079557005b806342842e0e146106bc57806342fb05c4146106dc57806350426c601461057c578063516533db146106f2578063534844a21461071257005b806316137640116103bf5780632fbba115116103865780632fbba1151461061257806330d9555c1461063257806331c8ec661461065f5780633360caa01461068c578063386d38df146106a457005b806316137640146105915780631a15e70b146105b157806323b872dd146105c95780632ea6155c146105e95780632f8182a2146105ff57005b8063095ea7b311610403578063095ea7b3146104f95780630bb78ec1146105195780630d7e8b47146105395780630ee01b7e1461055c5780630f8de8991461057c57005b806301ffc9a71461043a57806304ee005f1461046f57806306fdde031461049f578063081812fc146104c157005b3661043857005b005b34801561044657600080fd5b5061045a610455366004613081565b610d7b565b60405190151581526020015b60405180910390f35b34801561047b57600080fd5b5061045a61048a3660046130c1565b60146020526000908152604090205460ff1681565b3480156104ab57600080fd5b506104b4610dcd565b6040516104669190613129565b3480156104cd57600080fd5b506104e16104dc36600461313c565b610e5f565b6040516001600160a01b039091168152602001610466565b34801561050557600080fd5b50610438610514366004613155565b610ef9565b34801561052557600080fd5b506104b461053436600461313c565b61100f565b34801561054557600080fd5b5061054e601881565b604051908152602001610466565b34801561056857600080fd5b506104386105773660046131ea565b6110a9565b34801561058857600080fd5b5061054e600c81565b34801561059d57600080fd5b506020546104e1906001600160a01b031681565b3480156105bd57600080fd5b5061054e636200ae5881565b3480156105d557600080fd5b506104386105e4366004613287565b61116c565b3480156105f557600080fd5b5061054e610a3f81565b61045a61060d36600461313c565b61119d565b34801561061e57600080fd5b5061043861062d36600461313c565b611396565b34801561063e57600080fd5b5061065261064d3660046130c1565b611446565b60405161046691906132c3565b34801561066b57600080fd5b5061054e61067a3660046130c1565b60106020526000908152604090205481565b34801561069857600080fd5b5061054e636201c79881565b3480156106b057600080fd5b5061054e6361fdb6f881565b3480156106c857600080fd5b506104386106d7366004613287565b6114b2565b3480156106e857600080fd5b5061054e6107d081565b3480156106fe57600080fd5b50601e546104e1906001600160a01b031681565b6104386114cd565b34801561072657600080fd5b5061054e6107353660046130c1565b60116020526000908152604090205481565b34801561075357600080fd5b506104386107623660046133ff565b611770565b34801561077357600080fd5b5061054e636200761881565b34801561078b57600080fd5b5061054e601b5481565b3480156107a157600080fd5b5061045a6107b036600461313c565b60126020526000908152604090205460ff1681565b61045a6107d336600461313c565b61191e565b3480156107e457600080fd5b506104e16107f336600461313c565b611af5565b34801561080457600080fd5b5061054e61017981565b34801561081a57600080fd5b5061054e6361fb5a4881565b34801561083257600080fd5b506104e161084136600461313c565b6000908152600a60205260409020546001600160a01b031690565b61045a61086a36600461313c565b611b6c565b34801561087b57600080fd5b5061054e611d42565b34801561089057600080fd5b5061054e611ce881565b3480156108a657600080fd5b5061054e6361fb301881565b3480156108be57600080fd5b506021546104e1906001600160a01b031681565b3480156108de57600080fd5b5061054e6108ed3660046130c1565b611d52565b3480156108fe57600080fd5b50600d5461045a9060ff1681565b34801561091857600080fd5b50610438611dd9565b34801561092d57600080fd5b506023546104e1906001600160a01b031681565b34801561094d57600080fd5b5061043861095c36600461313c565b611e0f565b34801561096d57600080fd5b5061045a61097c3660046130c1565b60136020526000908152604090205460ff1681565b34801561099d57600080fd5b50601d546104e1906001600160a01b031681565b3480156109bd57600080fd5b5061045a6109cc3660046130c1565b60156020526000908152604090205460ff1681565b3480156109ed57600080fd5b5061054e6109fc3660046130c1565b600f6020526000908152604090205481565b348015610a1a57600080fd5b50610652610a293660046130c1565b611ed8565b348015610a3a57600080fd5b5061054e60175481565b348015610a5057600080fd5b506006546001600160a01b03166104e1565b348015610a6e57600080fd5b5061054e610a7d3660046130c1565b600e6020526000908152604090205481565b348015610a9b57600080fd5b5061054e601a5481565b348015610ab157600080fd5b506104b4611fea565b348015610ac657600080fd5b506104b4611ff9565b348015610adb57600080fd5b5061054e600c5481565b348015610af157600080fd5b50610438610b003660046134b8565b612006565b348015610b1157600080fd5b5061054e6701aa535d3d0c000081565b348015610b2d57600080fd5b506104e1610b3c36600461313c565b600a602052600090815260409020546001600160a01b031681565b348015610b6357600080fd5b5061054e67011c37937e08000081565b348015610b7f57600080fd5b506024546104e1906001600160a01b031681565b61045a610ba136600461313c565b6120cb565b348015610bb257600080fd5b50610438610bc13660046131ea565b612271565b348015610bd257600080fd5b50610438610be13660046134f4565b612335565b348015610bf257600080fd5b506104b4610c0136600461313c565b61236d565b348015610c1257600080fd5b5061054e610c21366004613155565b612443565b348015610c3257600080fd5b5061054e60185481565b348015610c4857600080fd5b506022546104e1906001600160a01b031681565b348015610c6857600080fd5b5061054e6103e881565b348015610c7e57600080fd5b5061045a610c8d366004613570565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610cc757600080fd5b5061054e601c5481565b348015610cdd57600080fd5b5061054e60195481565b348015610cf357600080fd5b50610438610d023660046130c1565b612474565b348015610d1357600080fd5b5061054e6361fde12881565b348015610d2b57600080fd5b50601f546104e1906001600160a01b031681565b348015610d4b57600080fd5b50610438610d5a3660046131ea565b61250f565b348015610d6b57600080fd5b5061054e67016345785d8a000081565b60006001600160e01b031982166380ac58cd60e01b1480610dac57506001600160e01b03198216635b5e139f60e01b145b80610dc757506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610ddc906135a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e08906135a3565b8015610e555780601f10610e2a57610100808354040283529160200191610e55565b820191906000526020600020905b815481529060010190602001808311610e3857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610edd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610f0482611af5565b9050806001600160a01b0316836001600160a01b03161415610f725760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ed4565b336001600160a01b0382161480610f8e5750610f8e8133610c8d565b6110005760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ed4565b61100a83836125d3565b505050565b60096020526000908152604090208054611028906135a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611054906135a3565b80156110a15780601f10611076576101008083540402835291602001916110a1565b820191906000526020600020905b81548152906001019060200180831161108457829003601f168201915b505050505081565b6006546001600160a01b031633146110d35760405162461bcd60e51b8152600401610ed4906135de565b8051819060005b8181101561113e576001601460008584815181106110fa576110fa613613565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806111368161363f565b9150506110da565b506040517e42fca14fcbc180f3c259258798a031ce0452ce40d0b45ebe60cb3ecc9dd7a590600090a1505050565b6111763382612641565b6111925760405162461bcd60e51b8152600401610ed49061365a565b61100a838383612738565b6000600260075414156111c25760405162461bcd60e51b8152600401610ed4906136ab565b60026007556361fb3018421180156111dd57506361fb5a4842105b61121c5760405162461bcd60e51b815260206004820152601060248201526f14d85b1948139bdd0814dd185c9d195960821b6044820152606401610ed4565b3360009081526013602052604090205460ff1615156001146112505760405162461bcd60e51b8152600401610ed4906136e2565b8160175461125e9190613710565b6017819055610a3f10156112b45760405162461bcd60e51b815260206004820152601d60248201527f4177616b656e696e672053616c65204c696d69742045786365656465640000006044820152606401610ed4565b6112c667011c37937e08000083613728565b3410156112e55760405162461bcd60e51b8152600401610ed490613747565b60405130903480156108fc02916000818181858888f19350505050158015611311573d6000803e3d6000fd5b5061131c33836128d8565b81601c5461132a9190613710565b601c5560405160008051602061390d8339815191529061138290848152604060208201819052601e908201527f204177616b656e696e67204d696e746564207375636365737366756c6c790000606082015260800190565b60405180910390a150600180600755919050565b6006546001600160a01b031633146113c05760405162461bcd60e51b8152600401610ed4906135de565b80601b546113ce9190613710565b601b819055610179101561141b5760405162461bcd60e51b815260206004820152601460248201527308135a5b9d081b1a5b5a5d08195e18d95959195960621b6044820152606401610ed4565b60005b818110156114425761142f3361295e565b508061143a8161363f565b91505061141e565b5050565b6001600160a01b0381166000908152600b60209081526040918290208054835181840281018401909452808452606093928301828280156114a657602002820191906000526020600020905b815481526020019060010190808311611492575b50505050509050919050565b61100a83838360405180602001604052806000815250612335565b6006546001600160a01b031633146114f75760405162461bcd60e51b8152600401610ed4906135de565b601d5447906001600160a01b03166108fc6064611515846020613728565b61151f919061377e565b6040518115909202916000818181858888f19350505050158015611547573d6000803e3d6000fd5b50601e546001600160a01b03166108fc6064611564846019613728565b61156e919061377e565b6040518115909202916000818181858888f19350505050158015611596573d6000803e3d6000fd5b50601f546001600160a01b03166108fc60646115b3846019613728565b6115bd919061377e565b6040518115909202916000818181858888f193505050501580156115e5573d6000803e3d6000fd5b506020546001600160a01b03166108fc6064611602846005613728565b61160c919061377e565b6040518115909202916000818181858888f19350505050158015611634573d6000803e3d6000fd5b506021546001600160a01b03166108fc6064611651846003613728565b61165b919061377e565b6040518115909202916000818181858888f19350505050158015611683573d6000803e3d6000fd5b506022546001600160a01b03166108fc60646116a0846001613728565b6116aa919061377e565b6040518115909202916000818181858888f193505050501580156116d2573d6000803e3d6000fd5b506023546001600160a01b03166108fc60646116ef846001613728565b6116f9919061377e565b6040518115909202916000818181858888f19350505050158015611721573d6000803e3d6000fd5b506024546001600160a01b03166108fc606461173e846008613728565b611748919061377e565b6040518115909202916000818181858888f19350505050158015611442573d6000803e3d6000fd5b6006546001600160a01b0316331461179a5760405162461bcd60e51b8152600401610ed4906135de565b80518251146117db5760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a5908125b9c1d5d609a1b6044820152606401610ed4565b815160005b818110156118ef57601260008583815181106117fe576117fe613613565b60209081029190910181015182528101919091526040016000205460ff161561185c5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481c995d99585b195960821b6044820152606401610ed4565b60016012600086848151811061187457611874613613565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506118dd8482815181106118b6576118b6613613565b60200260200101518483815181106118d0576118d0613613565b6020026020010151612acc565b806118e78161363f565b9150506117e0565b506040517fe2a7169cedebe39671840370ae19ca4fc41be6191d4c77f174f189a4d8cd08c890600090a1505050565b6000600260075414156119435760405162461bcd60e51b8152600401610ed4906136ab565b60026007556361fdb6f84211801561195e57506361fde12842105b61197a5760405162461bcd60e51b8152600401610ed4906137a0565b3360009081526014602052604090205460ff1615156001146119ae5760405162461bcd60e51b8152600401610ed4906136e2565b816018546119bc9190613710565b60188190556107d01015611a1c5760405162461bcd60e51b815260206004820152602160248201527f57686974656c697374204f6e652053616c65204c696d697420457863656564656044820152601960fa1b6064820152608401610ed4565b611a2e67016345785d8a000083613728565b341015611a4d5760405162461bcd60e51b8152600401610ed490613747565b60405130903480156108fc02916000818181858888f19350505050158015611a79573d6000803e3d6000fd5b50611a843383612b1f565b81601c54611a929190613710565b601c5560405160008051602061390d83398151915290611382908481526040602082018190526022908201527f2057686974656c697374204f6e65204d696e746564207375636365737366756c6060820152616c7960f01b608082015260a00190565b6000818152600260205260408120546001600160a01b031680610dc75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ed4565b600060026007541415611b915760405162461bcd60e51b8152600401610ed4906136ab565b6002600755636200761842118015611bac5750636200ae5842105b611bc85760405162461bcd60e51b8152600401610ed4906137a0565b3360009081526015602052604090205460ff161515600114611bfc5760405162461bcd60e51b8152600401610ed4906136e2565b81601954611c0a9190613710565b60198190556103e81015611c6a5760405162461bcd60e51b815260206004820152602160248201527f57686974656c6973742054776f2053616c65204c696d697420457863656564656044820152601960fa1b6064820152608401610ed4565b611c7c6701aa535d3d0c000083613728565b341015611c9b5760405162461bcd60e51b8152600401610ed490613747565b60405130903480156108fc02916000818181858888f19350505050158015611cc7573d6000803e3d6000fd5b50611cd23383612ba5565b81601c54611ce09190613710565b601c5560405160008051602061390d83398151915290611382908481526040602082018190526021908201527f57686974656c6973742054776f204d696e746564207375636365737366756c6c6060820152607960f81b608082015260a00190565b6000611d4d60085490565b905090565b60006001600160a01b038216611dbd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ed4565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314611e035760405162461bcd60e51b8152600401610ed4906135de565b611e0d6000612c2b565b565b6006546001600160a01b03163314611e395760405162461bcd60e51b8152600401610ed4906135de565b60008111611e895760405162461bcd60e51b815260206004820152601e60248201527f50726963652073686f756c642062652067726561746572207468616e203000006044820152606401610ed4565b600c819055600d805460ff191660011790556040517f6bfd5e75539a9d2626425a2e2922675256b219fe546d63dad56011759b9a2f6690611ecd9083815260200190565b60405180910390a150565b60606000805b600854811015611f2a57836001600160a01b0316611efb82611af5565b6001600160a01b03161415611f185781611f148161363f565b9250505b80611f228161363f565b915050611ede565b5060008167ffffffffffffffff811115611f4657611f4661317f565b604051908082528060200260200182016040528015611f6f578160200160208202803683370190505b5090506000805b600854811015611fe057856001600160a01b0316611f9382611af5565b6001600160a01b03161415611fce5780838381518110611fb557611fb5613613565b602090810291909101015281611fca8161363f565b9250505b80611fd88161363f565b915050611f76565b5090949350505050565b606060018054610ddc906135a3565b60168054611028906135a3565b6001600160a01b03821633141561205f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ed4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000600260075414156120f05760405162461bcd60e51b8152600401610ed4906136ab565b6002600755636201c79842116121185760405162461bcd60e51b8152600401610ed4906137a0565b600d5460ff16151560011461215f5760405162461bcd60e51b815260206004820152600d60248201526c141c9a58d9481b9bdd081cd95d609a1b6044820152606401610ed4565b81601c5461216d9190613710565b601c819055611ce810156121ba5760405162461bcd60e51b8152602060048201526014602482015273151bdd185b0814dd5c1c1b1e4814995858da195960621b6044820152606401610ed4565b600c546121c79083613728565b3410156121e65760405162461bcd60e51b8152600401610ed490613747565b60405130903480156108fc02916000818181858888f19350505050158015612212573d6000803e3d6000fd5b5061221d3383612c7d565b60008051602061390d83398151915282604051611382918152604060208201819052601f908201527f5075626c69632053616c65204d696e746564207375636365737366756c6c7900606082015260800190565b6006546001600160a01b0316331461229b5760405162461bcd60e51b8152600401610ed4906135de565b8051819060005b81811015612306576001601360008584815181106122c2576122c2613613565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806122fe8161363f565b9150506122a2565b506040517fd879e29af7955e418977db73aa78fbfcfc65803905a36e456a42fede25108d7290600090a1505050565b61233f3383612641565b61235b5760405162461bcd60e51b8152600401610ed49061365a565b61236784848484612d03565b50505050565b6000818152600260205260409020546060906001600160a01b03166123a45760405162461bcd60e51b8152600401610ed4906137ca565b600082815260096020526040812080546123bd906135a3565b80601f01602080910402602001604051908101604052809291908181526020018280546123e9906135a3565b80156124365780601f1061240b57610100808354040283529160200191612436565b820191906000526020600020905b81548152906001019060200180831161241957829003601f168201915b5093979650505050505050565b600b602052816000526040600020818154811061245f57600080fd5b90600052602060002001600091509150505481565b6006546001600160a01b0316331461249e5760405162461bcd60e51b8152600401610ed4906135de565b6001600160a01b0381166125035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ed4565b61250c81612c2b565b50565b6006546001600160a01b031633146125395760405162461bcd60e51b8152600401610ed4906135de565b8051819060005b818110156125a45760016015600085848151811061256057612560613613565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061259c8161363f565b915050612540565b506040517f4501258ae443c0e487965cc1991fd271aaaaaeec4d0d4ad1e3e789fa9703407990600090a1505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061260882611af5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166126ba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ed4565b60006126c583611af5565b9050806001600160a01b0316846001600160a01b031614806127005750836001600160a01b03166126f584610e5f565b6001600160a01b0316145b8061273057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661274b82611af5565b6001600160a01b0316146127b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ed4565b6001600160a01b0382166128155760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ed4565b6128206000826125d3565b6001600160a01b0383166000908152600360205260408120805460019290612849908490613819565b90915550506001600160a01b0382166000908152600360205260408120805460019290612877908490613710565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166000908152600e60205260409020546128fc908290613710565b6001600160a01b0383166000908152600e60205260409020819055601810156129375760405162461bcd60e51b8152600401610ed490613830565b60005b8181101561100a5761294b8361295e565b50806129568161363f565b91505061293a565b60008061296a60085490565b90506129768382612d36565b6001600160a01b0383166000818152600b60209081526040808320805460018101825590845282842001859055848352600a909152902080546001600160a01b031916909117905560168054612a549183916129d1906135a3565b80601f01602080910402602001604051908101604052809291908181526020018280546129fd906135a3565b8015612a4a5780601f10612a1f57610100808354040283529160200191612a4a565b820191906000526020600020905b815481529060010190602001808311612a2d57829003601f168201915b5050505050612acc565b612a62600880546001019055565b7fadef11a3979b8ceb0573eb6ef0678134a09c23a0d94e5ea47cd18ac3a9fc019481604051612abe918152604060208201819052601390820152721cdd58d8d95cdcd99d5b1b1e481b5a5b9d1959606a1b606082015260800190565b60405180910390a192915050565b6000828152600260205260409020546001600160a01b0316612b005760405162461bcd60e51b8152600401610ed4906137ca565b6000828152600960209081526040909120825161100a92840190612fd2565b6001600160a01b0382166000908152600f6020526040902054612b43908290613710565b6001600160a01b0383166000908152600f60205260409020819055600c1015612b7e5760405162461bcd60e51b8152600401610ed490613830565b60005b8181101561100a57612b928361295e565b5080612b9d8161363f565b915050612b81565b6001600160a01b038216600090815260106020526040902054612bc9908290613710565b6001600160a01b0383166000908152601060205260409020819055600c1015612c045760405162461bcd60e51b8152600401610ed490613830565b60005b8181101561100a57612c188361295e565b5080612c238161363f565b915050612c07565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260116020526040902054612ca1908290613710565b6001600160a01b0383166000908152601160205260409020819055600c1015612cdc5760405162461bcd60e51b8152600401610ed490613830565b60005b8181101561100a57612cf08361295e565b5080612cfb8161363f565b915050612cdf565b612d0e848484612738565b612d1a84848484612d50565b6123675760405162461bcd60e51b8152600401610ed490613860565b611442828260405180602001604052806000815250612e5d565b60006001600160a01b0384163b15612e5257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d949033908990889088906004016138b2565b602060405180830381600087803b158015612dae57600080fd5b505af1925050508015612dde575060408051601f3d908101601f19168201909252612ddb918101906138ef565b60015b612e38573d808015612e0c576040519150601f19603f3d011682016040523d82523d6000602084013e612e11565b606091505b508051612e305760405162461bcd60e51b8152600401610ed490613860565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612730565b506001949350505050565b612e678383612e90565b612e746000848484612d50565b61100a5760405162461bcd60e51b8152600401610ed490613860565b6001600160a01b038216612ee65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ed4565b6000818152600260205260409020546001600160a01b031615612f4b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ed4565b6001600160a01b0382166000908152600360205260408120805460019290612f74908490613710565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612fde906135a3565b90600052602060002090601f0160209004810192826130005760008555613046565b82601f1061301957805160ff1916838001178555613046565b82800160010185558215613046579182015b8281111561304657825182559160200191906001019061302b565b50613052929150613056565b5090565b5b808211156130525760008155600101613057565b6001600160e01b03198116811461250c57600080fd5b60006020828403121561309357600080fd5b813561309e8161306b565b9392505050565b80356001600160a01b03811681146130bc57600080fd5b919050565b6000602082840312156130d357600080fd5b61309e826130a5565b6000815180845260005b81811015613102576020818501810151868301820152016130e6565b81811115613114576000602083870101525b50601f01601f19169290920160200192915050565b60208152600061309e60208301846130dc565b60006020828403121561314e57600080fd5b5035919050565b6000806040838503121561316857600080fd5b613171836130a5565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156131be576131be61317f565b604052919050565b600067ffffffffffffffff8211156131e0576131e061317f565b5060051b60200190565b600060208083850312156131fd57600080fd5b823567ffffffffffffffff81111561321457600080fd5b8301601f8101851361322557600080fd5b8035613238613233826131c6565b613195565b81815260059190911b8201830190838101908783111561325757600080fd5b928401925b8284101561327c5761326d846130a5565b8252928401929084019061325c565b979650505050505050565b60008060006060848603121561329c57600080fd5b6132a5846130a5565b92506132b3602085016130a5565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156132fb578351835292840192918401916001016132df565b50909695505050505050565b600067ffffffffffffffff8311156133215761332161317f565b613334601f8401601f1916602001613195565b905082815283838301111561334857600080fd5b828260208301376000602084830101529392505050565b600082601f83011261337057600080fd5b81356020613380613233836131c6565b82815260059290921b8401810191818101908684111561339f57600080fd5b8286015b848110156133f457803567ffffffffffffffff8111156133c35760008081fd5b8701603f810189136133d55760008081fd5b6133e6898683013560408401613307565b8452509183019183016133a3565b509695505050505050565b6000806040838503121561341257600080fd5b823567ffffffffffffffff8082111561342a57600080fd5b818501915085601f83011261343e57600080fd5b8135602061344e613233836131c6565b82815260059290921b8401810191818101908984111561346d57600080fd5b948201945b8386101561348b57853582529482019490820190613472565b965050860135925050808211156134a157600080fd5b506134ae8582860161335f565b9150509250929050565b600080604083850312156134cb57600080fd5b6134d4836130a5565b9150602083013580151581146134e957600080fd5b809150509250929050565b6000806000806080858703121561350a57600080fd5b613513856130a5565b9350613521602086016130a5565b925060408501359150606085013567ffffffffffffffff81111561354457600080fd5b8501601f8101871361355557600080fd5b61356487823560208401613307565b91505092959194509250565b6000806040838503121561358357600080fd5b61358c836130a5565b915061359a602084016130a5565b90509250929050565b600181811c908216806135b757607f821691505b602082108114156135d857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561365357613653613629565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b602080825260149082015273155cd95c881b9bdd081dda1a5d195b1a5cdd195960621b604082015260600190565b6000821982111561372357613723613629565b500190565b600081600019048311821515161561374257613742613629565b500290565b6020808252601b908201527f506c6561736520456e74657220436f727265637420416d6f756e740000000000604082015260600190565b60008261379b57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526010908201526f14d85b19481b9bdd081cdd185c9d195960821b604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60008282101561382b5761382b613629565b500390565b602080825260169082015275135a5b9d1a5b99c8131a5b5a5d08115e18d95959195960521b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906138e5908301846130dc565b9695505050505050565b60006020828403121561390157600080fd5b815161309e8161306b56fe2fb3709b89922f0819ed59aed0ab45d4179f98f9b2e7c85539149d8dc49f4f8aa2646970667358221220b85669c9aa6b1adae3035a254751a45294191647b1363b3aedf24945340c816464736f6c6343000809003368747470733a2f2f6c6567656e64736f667368616e67752e6d7970696e6174612e636c6f75642f697066732f516d585a4563747833316a67396851457839756b654b3133594735535172425a446a67733847563833416f42507400000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000fb354a82d53f53d1fc81a7e1202ee5b993b1a75a000000000000000000000000a82929a3c4e4034cee6fc84028b99f9af7468bd8000000000000000000000000ae9bacac06f0d6adc9ed0fd1eaf3817a391a7653000000000000000000000000d12f1ae18584104992d7ce3dda444bd458bd3467000000000000000000000000d888c97c97563a2ae84cb63c27efdf9a34d9fcf4000000000000000000000000725c486b8dc85f57a2d873897e88a29afc20eda9000000000000000000000000a510446aa3ea1116a80225326112467204b0a63c000000000000000000000000c4af9dd29ebb97d66901184d515078aa97fd5bf900000000000000000000000000000000000000000000000000000000000000114c6567656e6473204f66205368616e677500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000114c6567656e6473204f66205368616e6775000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106104315760003560e01c806370a0823111610227578063ac8d856c1161012d578063e3713694116100b0578063f2fde38b11610077578063f2fde38b14610ce7578063f5cebc4d14610d07578063fb15b9f214610d1f578063fe9c228114610d3f578063ff84395614610d5f57005b8063e371369414610c5c578063e8dfc3751461057c578063e985e9c514610c72578063ea4ce23914610cbb578063ed7fca4d14610cd157005b8063b88d4fde116100f4578063b88d4fde14610bc6578063c87b56dd14610be6578063ca97316114610c06578063d7d09a9714610c26578063dfc25f9714610c3c57005b8063ac8d856c14610b21578063b08d188614610b57578063b26c748314610b73578063b3ab66b014610b93578063b608d15e14610ba657005b806388717f2d116101b557806395d89b411161017c57806395d89b4114610aa55780639abc832014610aba5780639b6860c814610acf578063a22cb46514610ae5578063a36fac4814610b0557005b806388717f2d14610a0e5780638c62b60c14610a2e5780638da5cb5b14610a4457806390e4c99c14610a62578063923a3ff114610a8f57005b8063791a2519116101f9578063791a2519146109415780637ced40061461096157806380ffb21d1461099157806382d27f3e146109b15780638476c740146109e157005b806370a08231146108d257806371316ac8146108f2578063715018a61461090c578063744bb1cb1461092157005b806342842e0e1161033757806361b6158f116102ba5780636cf335ef116102815780636cf335ef1461085c5780636e02007d1461086f5780636e3de87c146108845780636ea669ff1461089a5780636ff59799146108b257005b806361b6158f146107c55780636352211e146107d8578063643ce525146107f857806364bbd7dd1461080e57806369220c461461082657005b806356853b99116102fe57806356853b991461071a578063583be4931461074757806358f4ffbf146107675780635e62462a1461077f57806361a2bc011461079557005b806342842e0e146106bc57806342fb05c4146106dc57806350426c601461057c578063516533db146106f2578063534844a21461071257005b806316137640116103bf5780632fbba115116103865780632fbba1151461061257806330d9555c1461063257806331c8ec661461065f5780633360caa01461068c578063386d38df146106a457005b806316137640146105915780631a15e70b146105b157806323b872dd146105c95780632ea6155c146105e95780632f8182a2146105ff57005b8063095ea7b311610403578063095ea7b3146104f95780630bb78ec1146105195780630d7e8b47146105395780630ee01b7e1461055c5780630f8de8991461057c57005b806301ffc9a71461043a57806304ee005f1461046f57806306fdde031461049f578063081812fc146104c157005b3661043857005b005b34801561044657600080fd5b5061045a610455366004613081565b610d7b565b60405190151581526020015b60405180910390f35b34801561047b57600080fd5b5061045a61048a3660046130c1565b60146020526000908152604090205460ff1681565b3480156104ab57600080fd5b506104b4610dcd565b6040516104669190613129565b3480156104cd57600080fd5b506104e16104dc36600461313c565b610e5f565b6040516001600160a01b039091168152602001610466565b34801561050557600080fd5b50610438610514366004613155565b610ef9565b34801561052557600080fd5b506104b461053436600461313c565b61100f565b34801561054557600080fd5b5061054e601881565b604051908152602001610466565b34801561056857600080fd5b506104386105773660046131ea565b6110a9565b34801561058857600080fd5b5061054e600c81565b34801561059d57600080fd5b506020546104e1906001600160a01b031681565b3480156105bd57600080fd5b5061054e636200ae5881565b3480156105d557600080fd5b506104386105e4366004613287565b61116c565b3480156105f557600080fd5b5061054e610a3f81565b61045a61060d36600461313c565b61119d565b34801561061e57600080fd5b5061043861062d36600461313c565b611396565b34801561063e57600080fd5b5061065261064d3660046130c1565b611446565b60405161046691906132c3565b34801561066b57600080fd5b5061054e61067a3660046130c1565b60106020526000908152604090205481565b34801561069857600080fd5b5061054e636201c79881565b3480156106b057600080fd5b5061054e6361fdb6f881565b3480156106c857600080fd5b506104386106d7366004613287565b6114b2565b3480156106e857600080fd5b5061054e6107d081565b3480156106fe57600080fd5b50601e546104e1906001600160a01b031681565b6104386114cd565b34801561072657600080fd5b5061054e6107353660046130c1565b60116020526000908152604090205481565b34801561075357600080fd5b506104386107623660046133ff565b611770565b34801561077357600080fd5b5061054e636200761881565b34801561078b57600080fd5b5061054e601b5481565b3480156107a157600080fd5b5061045a6107b036600461313c565b60126020526000908152604090205460ff1681565b61045a6107d336600461313c565b61191e565b3480156107e457600080fd5b506104e16107f336600461313c565b611af5565b34801561080457600080fd5b5061054e61017981565b34801561081a57600080fd5b5061054e6361fb5a4881565b34801561083257600080fd5b506104e161084136600461313c565b6000908152600a60205260409020546001600160a01b031690565b61045a61086a36600461313c565b611b6c565b34801561087b57600080fd5b5061054e611d42565b34801561089057600080fd5b5061054e611ce881565b3480156108a657600080fd5b5061054e6361fb301881565b3480156108be57600080fd5b506021546104e1906001600160a01b031681565b3480156108de57600080fd5b5061054e6108ed3660046130c1565b611d52565b3480156108fe57600080fd5b50600d5461045a9060ff1681565b34801561091857600080fd5b50610438611dd9565b34801561092d57600080fd5b506023546104e1906001600160a01b031681565b34801561094d57600080fd5b5061043861095c36600461313c565b611e0f565b34801561096d57600080fd5b5061045a61097c3660046130c1565b60136020526000908152604090205460ff1681565b34801561099d57600080fd5b50601d546104e1906001600160a01b031681565b3480156109bd57600080fd5b5061045a6109cc3660046130c1565b60156020526000908152604090205460ff1681565b3480156109ed57600080fd5b5061054e6109fc3660046130c1565b600f6020526000908152604090205481565b348015610a1a57600080fd5b50610652610a293660046130c1565b611ed8565b348015610a3a57600080fd5b5061054e60175481565b348015610a5057600080fd5b506006546001600160a01b03166104e1565b348015610a6e57600080fd5b5061054e610a7d3660046130c1565b600e6020526000908152604090205481565b348015610a9b57600080fd5b5061054e601a5481565b348015610ab157600080fd5b506104b4611fea565b348015610ac657600080fd5b506104b4611ff9565b348015610adb57600080fd5b5061054e600c5481565b348015610af157600080fd5b50610438610b003660046134b8565b612006565b348015610b1157600080fd5b5061054e6701aa535d3d0c000081565b348015610b2d57600080fd5b506104e1610b3c36600461313c565b600a602052600090815260409020546001600160a01b031681565b348015610b6357600080fd5b5061054e67011c37937e08000081565b348015610b7f57600080fd5b506024546104e1906001600160a01b031681565b61045a610ba136600461313c565b6120cb565b348015610bb257600080fd5b50610438610bc13660046131ea565b612271565b348015610bd257600080fd5b50610438610be13660046134f4565b612335565b348015610bf257600080fd5b506104b4610c0136600461313c565b61236d565b348015610c1257600080fd5b5061054e610c21366004613155565b612443565b348015610c3257600080fd5b5061054e60185481565b348015610c4857600080fd5b506022546104e1906001600160a01b031681565b348015610c6857600080fd5b5061054e6103e881565b348015610c7e57600080fd5b5061045a610c8d366004613570565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610cc757600080fd5b5061054e601c5481565b348015610cdd57600080fd5b5061054e60195481565b348015610cf357600080fd5b50610438610d023660046130c1565b612474565b348015610d1357600080fd5b5061054e6361fde12881565b348015610d2b57600080fd5b50601f546104e1906001600160a01b031681565b348015610d4b57600080fd5b50610438610d5a3660046131ea565b61250f565b348015610d6b57600080fd5b5061054e67016345785d8a000081565b60006001600160e01b031982166380ac58cd60e01b1480610dac57506001600160e01b03198216635b5e139f60e01b145b80610dc757506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610ddc906135a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e08906135a3565b8015610e555780601f10610e2a57610100808354040283529160200191610e55565b820191906000526020600020905b815481529060010190602001808311610e3857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610edd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610f0482611af5565b9050806001600160a01b0316836001600160a01b03161415610f725760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ed4565b336001600160a01b0382161480610f8e5750610f8e8133610c8d565b6110005760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ed4565b61100a83836125d3565b505050565b60096020526000908152604090208054611028906135a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611054906135a3565b80156110a15780601f10611076576101008083540402835291602001916110a1565b820191906000526020600020905b81548152906001019060200180831161108457829003601f168201915b505050505081565b6006546001600160a01b031633146110d35760405162461bcd60e51b8152600401610ed4906135de565b8051819060005b8181101561113e576001601460008584815181106110fa576110fa613613565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806111368161363f565b9150506110da565b506040517e42fca14fcbc180f3c259258798a031ce0452ce40d0b45ebe60cb3ecc9dd7a590600090a1505050565b6111763382612641565b6111925760405162461bcd60e51b8152600401610ed49061365a565b61100a838383612738565b6000600260075414156111c25760405162461bcd60e51b8152600401610ed4906136ab565b60026007556361fb3018421180156111dd57506361fb5a4842105b61121c5760405162461bcd60e51b815260206004820152601060248201526f14d85b1948139bdd0814dd185c9d195960821b6044820152606401610ed4565b3360009081526013602052604090205460ff1615156001146112505760405162461bcd60e51b8152600401610ed4906136e2565b8160175461125e9190613710565b6017819055610a3f10156112b45760405162461bcd60e51b815260206004820152601d60248201527f4177616b656e696e672053616c65204c696d69742045786365656465640000006044820152606401610ed4565b6112c667011c37937e08000083613728565b3410156112e55760405162461bcd60e51b8152600401610ed490613747565b60405130903480156108fc02916000818181858888f19350505050158015611311573d6000803e3d6000fd5b5061131c33836128d8565b81601c5461132a9190613710565b601c5560405160008051602061390d8339815191529061138290848152604060208201819052601e908201527f204177616b656e696e67204d696e746564207375636365737366756c6c790000606082015260800190565b60405180910390a150600180600755919050565b6006546001600160a01b031633146113c05760405162461bcd60e51b8152600401610ed4906135de565b80601b546113ce9190613710565b601b819055610179101561141b5760405162461bcd60e51b815260206004820152601460248201527308135a5b9d081b1a5b5a5d08195e18d95959195960621b6044820152606401610ed4565b60005b818110156114425761142f3361295e565b508061143a8161363f565b91505061141e565b5050565b6001600160a01b0381166000908152600b60209081526040918290208054835181840281018401909452808452606093928301828280156114a657602002820191906000526020600020905b815481526020019060010190808311611492575b50505050509050919050565b61100a83838360405180602001604052806000815250612335565b6006546001600160a01b031633146114f75760405162461bcd60e51b8152600401610ed4906135de565b601d5447906001600160a01b03166108fc6064611515846020613728565b61151f919061377e565b6040518115909202916000818181858888f19350505050158015611547573d6000803e3d6000fd5b50601e546001600160a01b03166108fc6064611564846019613728565b61156e919061377e565b6040518115909202916000818181858888f19350505050158015611596573d6000803e3d6000fd5b50601f546001600160a01b03166108fc60646115b3846019613728565b6115bd919061377e565b6040518115909202916000818181858888f193505050501580156115e5573d6000803e3d6000fd5b506020546001600160a01b03166108fc6064611602846005613728565b61160c919061377e565b6040518115909202916000818181858888f19350505050158015611634573d6000803e3d6000fd5b506021546001600160a01b03166108fc6064611651846003613728565b61165b919061377e565b6040518115909202916000818181858888f19350505050158015611683573d6000803e3d6000fd5b506022546001600160a01b03166108fc60646116a0846001613728565b6116aa919061377e565b6040518115909202916000818181858888f193505050501580156116d2573d6000803e3d6000fd5b506023546001600160a01b03166108fc60646116ef846001613728565b6116f9919061377e565b6040518115909202916000818181858888f19350505050158015611721573d6000803e3d6000fd5b506024546001600160a01b03166108fc606461173e846008613728565b611748919061377e565b6040518115909202916000818181858888f19350505050158015611442573d6000803e3d6000fd5b6006546001600160a01b0316331461179a5760405162461bcd60e51b8152600401610ed4906135de565b80518251146117db5760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a5908125b9c1d5d609a1b6044820152606401610ed4565b815160005b818110156118ef57601260008583815181106117fe576117fe613613565b60209081029190910181015182528101919091526040016000205460ff161561185c5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481c995d99585b195960821b6044820152606401610ed4565b60016012600086848151811061187457611874613613565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506118dd8482815181106118b6576118b6613613565b60200260200101518483815181106118d0576118d0613613565b6020026020010151612acc565b806118e78161363f565b9150506117e0565b506040517fe2a7169cedebe39671840370ae19ca4fc41be6191d4c77f174f189a4d8cd08c890600090a1505050565b6000600260075414156119435760405162461bcd60e51b8152600401610ed4906136ab565b60026007556361fdb6f84211801561195e57506361fde12842105b61197a5760405162461bcd60e51b8152600401610ed4906137a0565b3360009081526014602052604090205460ff1615156001146119ae5760405162461bcd60e51b8152600401610ed4906136e2565b816018546119bc9190613710565b60188190556107d01015611a1c5760405162461bcd60e51b815260206004820152602160248201527f57686974656c697374204f6e652053616c65204c696d697420457863656564656044820152601960fa1b6064820152608401610ed4565b611a2e67016345785d8a000083613728565b341015611a4d5760405162461bcd60e51b8152600401610ed490613747565b60405130903480156108fc02916000818181858888f19350505050158015611a79573d6000803e3d6000fd5b50611a843383612b1f565b81601c54611a929190613710565b601c5560405160008051602061390d83398151915290611382908481526040602082018190526022908201527f2057686974656c697374204f6e65204d696e746564207375636365737366756c6060820152616c7960f01b608082015260a00190565b6000818152600260205260408120546001600160a01b031680610dc75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ed4565b600060026007541415611b915760405162461bcd60e51b8152600401610ed4906136ab565b6002600755636200761842118015611bac5750636200ae5842105b611bc85760405162461bcd60e51b8152600401610ed4906137a0565b3360009081526015602052604090205460ff161515600114611bfc5760405162461bcd60e51b8152600401610ed4906136e2565b81601954611c0a9190613710565b60198190556103e81015611c6a5760405162461bcd60e51b815260206004820152602160248201527f57686974656c6973742054776f2053616c65204c696d697420457863656564656044820152601960fa1b6064820152608401610ed4565b611c7c6701aa535d3d0c000083613728565b341015611c9b5760405162461bcd60e51b8152600401610ed490613747565b60405130903480156108fc02916000818181858888f19350505050158015611cc7573d6000803e3d6000fd5b50611cd23383612ba5565b81601c54611ce09190613710565b601c5560405160008051602061390d83398151915290611382908481526040602082018190526021908201527f57686974656c6973742054776f204d696e746564207375636365737366756c6c6060820152607960f81b608082015260a00190565b6000611d4d60085490565b905090565b60006001600160a01b038216611dbd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ed4565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314611e035760405162461bcd60e51b8152600401610ed4906135de565b611e0d6000612c2b565b565b6006546001600160a01b03163314611e395760405162461bcd60e51b8152600401610ed4906135de565b60008111611e895760405162461bcd60e51b815260206004820152601e60248201527f50726963652073686f756c642062652067726561746572207468616e203000006044820152606401610ed4565b600c819055600d805460ff191660011790556040517f6bfd5e75539a9d2626425a2e2922675256b219fe546d63dad56011759b9a2f6690611ecd9083815260200190565b60405180910390a150565b60606000805b600854811015611f2a57836001600160a01b0316611efb82611af5565b6001600160a01b03161415611f185781611f148161363f565b9250505b80611f228161363f565b915050611ede565b5060008167ffffffffffffffff811115611f4657611f4661317f565b604051908082528060200260200182016040528015611f6f578160200160208202803683370190505b5090506000805b600854811015611fe057856001600160a01b0316611f9382611af5565b6001600160a01b03161415611fce5780838381518110611fb557611fb5613613565b602090810291909101015281611fca8161363f565b9250505b80611fd88161363f565b915050611f76565b5090949350505050565b606060018054610ddc906135a3565b60168054611028906135a3565b6001600160a01b03821633141561205f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ed4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000600260075414156120f05760405162461bcd60e51b8152600401610ed4906136ab565b6002600755636201c79842116121185760405162461bcd60e51b8152600401610ed4906137a0565b600d5460ff16151560011461215f5760405162461bcd60e51b815260206004820152600d60248201526c141c9a58d9481b9bdd081cd95d609a1b6044820152606401610ed4565b81601c5461216d9190613710565b601c819055611ce810156121ba5760405162461bcd60e51b8152602060048201526014602482015273151bdd185b0814dd5c1c1b1e4814995858da195960621b6044820152606401610ed4565b600c546121c79083613728565b3410156121e65760405162461bcd60e51b8152600401610ed490613747565b60405130903480156108fc02916000818181858888f19350505050158015612212573d6000803e3d6000fd5b5061221d3383612c7d565b60008051602061390d83398151915282604051611382918152604060208201819052601f908201527f5075626c69632053616c65204d696e746564207375636365737366756c6c7900606082015260800190565b6006546001600160a01b0316331461229b5760405162461bcd60e51b8152600401610ed4906135de565b8051819060005b81811015612306576001601360008584815181106122c2576122c2613613565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806122fe8161363f565b9150506122a2565b506040517fd879e29af7955e418977db73aa78fbfcfc65803905a36e456a42fede25108d7290600090a1505050565b61233f3383612641565b61235b5760405162461bcd60e51b8152600401610ed49061365a565b61236784848484612d03565b50505050565b6000818152600260205260409020546060906001600160a01b03166123a45760405162461bcd60e51b8152600401610ed4906137ca565b600082815260096020526040812080546123bd906135a3565b80601f01602080910402602001604051908101604052809291908181526020018280546123e9906135a3565b80156124365780601f1061240b57610100808354040283529160200191612436565b820191906000526020600020905b81548152906001019060200180831161241957829003601f168201915b5093979650505050505050565b600b602052816000526040600020818154811061245f57600080fd5b90600052602060002001600091509150505481565b6006546001600160a01b0316331461249e5760405162461bcd60e51b8152600401610ed4906135de565b6001600160a01b0381166125035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ed4565b61250c81612c2b565b50565b6006546001600160a01b031633146125395760405162461bcd60e51b8152600401610ed4906135de565b8051819060005b818110156125a45760016015600085848151811061256057612560613613565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061259c8161363f565b915050612540565b506040517f4501258ae443c0e487965cc1991fd271aaaaaeec4d0d4ad1e3e789fa9703407990600090a1505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061260882611af5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166126ba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ed4565b60006126c583611af5565b9050806001600160a01b0316846001600160a01b031614806127005750836001600160a01b03166126f584610e5f565b6001600160a01b0316145b8061273057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661274b82611af5565b6001600160a01b0316146127b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ed4565b6001600160a01b0382166128155760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ed4565b6128206000826125d3565b6001600160a01b0383166000908152600360205260408120805460019290612849908490613819565b90915550506001600160a01b0382166000908152600360205260408120805460019290612877908490613710565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166000908152600e60205260409020546128fc908290613710565b6001600160a01b0383166000908152600e60205260409020819055601810156129375760405162461bcd60e51b8152600401610ed490613830565b60005b8181101561100a5761294b8361295e565b50806129568161363f565b91505061293a565b60008061296a60085490565b90506129768382612d36565b6001600160a01b0383166000818152600b60209081526040808320805460018101825590845282842001859055848352600a909152902080546001600160a01b031916909117905560168054612a549183916129d1906135a3565b80601f01602080910402602001604051908101604052809291908181526020018280546129fd906135a3565b8015612a4a5780601f10612a1f57610100808354040283529160200191612a4a565b820191906000526020600020905b815481529060010190602001808311612a2d57829003601f168201915b5050505050612acc565b612a62600880546001019055565b7fadef11a3979b8ceb0573eb6ef0678134a09c23a0d94e5ea47cd18ac3a9fc019481604051612abe918152604060208201819052601390820152721cdd58d8d95cdcd99d5b1b1e481b5a5b9d1959606a1b606082015260800190565b60405180910390a192915050565b6000828152600260205260409020546001600160a01b0316612b005760405162461bcd60e51b8152600401610ed4906137ca565b6000828152600960209081526040909120825161100a92840190612fd2565b6001600160a01b0382166000908152600f6020526040902054612b43908290613710565b6001600160a01b0383166000908152600f60205260409020819055600c1015612b7e5760405162461bcd60e51b8152600401610ed490613830565b60005b8181101561100a57612b928361295e565b5080612b9d8161363f565b915050612b81565b6001600160a01b038216600090815260106020526040902054612bc9908290613710565b6001600160a01b0383166000908152601060205260409020819055600c1015612c045760405162461bcd60e51b8152600401610ed490613830565b60005b8181101561100a57612c188361295e565b5080612c238161363f565b915050612c07565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260116020526040902054612ca1908290613710565b6001600160a01b0383166000908152601160205260409020819055600c1015612cdc5760405162461bcd60e51b8152600401610ed490613830565b60005b8181101561100a57612cf08361295e565b5080612cfb8161363f565b915050612cdf565b612d0e848484612738565b612d1a84848484612d50565b6123675760405162461bcd60e51b8152600401610ed490613860565b611442828260405180602001604052806000815250612e5d565b60006001600160a01b0384163b15612e5257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d949033908990889088906004016138b2565b602060405180830381600087803b158015612dae57600080fd5b505af1925050508015612dde575060408051601f3d908101601f19168201909252612ddb918101906138ef565b60015b612e38573d808015612e0c576040519150601f19603f3d011682016040523d82523d6000602084013e612e11565b606091505b508051612e305760405162461bcd60e51b8152600401610ed490613860565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612730565b506001949350505050565b612e678383612e90565b612e746000848484612d50565b61100a5760405162461bcd60e51b8152600401610ed490613860565b6001600160a01b038216612ee65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ed4565b6000818152600260205260409020546001600160a01b031615612f4b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ed4565b6001600160a01b0382166000908152600360205260408120805460019290612f74908490613710565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612fde906135a3565b90600052602060002090601f0160209004810192826130005760008555613046565b82601f1061301957805160ff1916838001178555613046565b82800160010185558215613046579182015b8281111561304657825182559160200191906001019061302b565b50613052929150613056565b5090565b5b808211156130525760008155600101613057565b6001600160e01b03198116811461250c57600080fd5b60006020828403121561309357600080fd5b813561309e8161306b565b9392505050565b80356001600160a01b03811681146130bc57600080fd5b919050565b6000602082840312156130d357600080fd5b61309e826130a5565b6000815180845260005b81811015613102576020818501810151868301820152016130e6565b81811115613114576000602083870101525b50601f01601f19169290920160200192915050565b60208152600061309e60208301846130dc565b60006020828403121561314e57600080fd5b5035919050565b6000806040838503121561316857600080fd5b613171836130a5565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156131be576131be61317f565b604052919050565b600067ffffffffffffffff8211156131e0576131e061317f565b5060051b60200190565b600060208083850312156131fd57600080fd5b823567ffffffffffffffff81111561321457600080fd5b8301601f8101851361322557600080fd5b8035613238613233826131c6565b613195565b81815260059190911b8201830190838101908783111561325757600080fd5b928401925b8284101561327c5761326d846130a5565b8252928401929084019061325c565b979650505050505050565b60008060006060848603121561329c57600080fd5b6132a5846130a5565b92506132b3602085016130a5565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156132fb578351835292840192918401916001016132df565b50909695505050505050565b600067ffffffffffffffff8311156133215761332161317f565b613334601f8401601f1916602001613195565b905082815283838301111561334857600080fd5b828260208301376000602084830101529392505050565b600082601f83011261337057600080fd5b81356020613380613233836131c6565b82815260059290921b8401810191818101908684111561339f57600080fd5b8286015b848110156133f457803567ffffffffffffffff8111156133c35760008081fd5b8701603f810189136133d55760008081fd5b6133e6898683013560408401613307565b8452509183019183016133a3565b509695505050505050565b6000806040838503121561341257600080fd5b823567ffffffffffffffff8082111561342a57600080fd5b818501915085601f83011261343e57600080fd5b8135602061344e613233836131c6565b82815260059290921b8401810191818101908984111561346d57600080fd5b948201945b8386101561348b57853582529482019490820190613472565b965050860135925050808211156134a157600080fd5b506134ae8582860161335f565b9150509250929050565b600080604083850312156134cb57600080fd5b6134d4836130a5565b9150602083013580151581146134e957600080fd5b809150509250929050565b6000806000806080858703121561350a57600080fd5b613513856130a5565b9350613521602086016130a5565b925060408501359150606085013567ffffffffffffffff81111561354457600080fd5b8501601f8101871361355557600080fd5b61356487823560208401613307565b91505092959194509250565b6000806040838503121561358357600080fd5b61358c836130a5565b915061359a602084016130a5565b90509250929050565b600181811c908216806135b757607f821691505b602082108114156135d857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561365357613653613629565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b602080825260149082015273155cd95c881b9bdd081dda1a5d195b1a5cdd195960621b604082015260600190565b6000821982111561372357613723613629565b500190565b600081600019048311821515161561374257613742613629565b500290565b6020808252601b908201527f506c6561736520456e74657220436f727265637420416d6f756e740000000000604082015260600190565b60008261379b57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526010908201526f14d85b19481b9bdd081cdd185c9d195960821b604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60008282101561382b5761382b613629565b500390565b602080825260169082015275135a5b9d1a5b99c8131a5b5a5d08115e18d95959195960521b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906138e5908301846130dc565b9695505050505050565b60006020828403121561390157600080fd5b815161309e8161306b56fe2fb3709b89922f0819ed59aed0ab45d4179f98f9b2e7c85539149d8dc49f4f8aa2646970667358221220b85669c9aa6b1adae3035a254751a45294191647b1363b3aedf24945340c816464736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000fb354a82d53f53d1fc81a7e1202ee5b993b1a75a000000000000000000000000a82929a3c4e4034cee6fc84028b99f9af7468bd8000000000000000000000000ae9bacac06f0d6adc9ed0fd1eaf3817a391a7653000000000000000000000000d12f1ae18584104992d7ce3dda444bd458bd3467000000000000000000000000d888c97c97563a2ae84cb63c27efdf9a34d9fcf4000000000000000000000000725c486b8dc85f57a2d873897e88a29afc20eda9000000000000000000000000a510446aa3ea1116a80225326112467204b0a63c000000000000000000000000c4af9dd29ebb97d66901184d515078aa97fd5bf900000000000000000000000000000000000000000000000000000000000000114c6567656e6473204f66205368616e677500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000114c6567656e6473204f66205368616e6775000000000000000000000000000000
-----Decoded View---------------
Arg [0] : NAME (string): Legends Of Shangu
Arg [1] : SYMBOL (string): Legends Of Shangu
Arg [2] : _teamWallet1 (address): 0xfb354A82D53f53D1Fc81a7e1202eE5B993b1a75A
Arg [3] : _teamWallet2 (address): 0xa82929A3c4e4034cEe6fC84028b99F9Af7468Bd8
Arg [4] : _teamWallet3 (address): 0xaE9baCAc06f0d6Adc9Ed0FD1EAF3817A391a7653
Arg [5] : _teamWallet4 (address): 0xd12F1ae18584104992D7ce3DDa444Bd458Bd3467
Arg [6] : _teamWallet5 (address): 0xD888C97C97563A2ae84cb63C27efdF9a34D9fcF4
Arg [7] : _teamWallet6 (address): 0x725C486B8dC85f57A2d873897e88A29afC20eda9
Arg [8] : _teamWallet7 (address): 0xa510446AA3Ea1116A80225326112467204B0a63C
Arg [9] : _teamWallet8 (address): 0xc4Af9dd29Ebb97d66901184D515078AA97FD5Bf9
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 000000000000000000000000fb354a82d53f53d1fc81a7e1202ee5b993b1a75a
Arg [3] : 000000000000000000000000a82929a3c4e4034cee6fc84028b99f9af7468bd8
Arg [4] : 000000000000000000000000ae9bacac06f0d6adc9ed0fd1eaf3817a391a7653
Arg [5] : 000000000000000000000000d12f1ae18584104992d7ce3dda444bd458bd3467
Arg [6] : 000000000000000000000000d888c97c97563a2ae84cb63c27efdf9a34d9fcf4
Arg [7] : 000000000000000000000000725c486b8dc85f57a2d873897e88a29afc20eda9
Arg [8] : 000000000000000000000000a510446aa3ea1116a80225326112467204b0a63c
Arg [9] : 000000000000000000000000c4af9dd29ebb97d66901184d515078aa97fd5bf9
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [11] : 4c6567656e6473204f66205368616e6775000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [13] : 4c6567656e6473204f66205368616e6775000000000000000000000000000000
Deployed Bytecode Sourcemap
37766:12611:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20249:305;;;;;;;;;;-1:-1:-1;20249:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;20249:305:0;;;;;;;;39644:55;;;;;;;;;;-1:-1:-1;39644:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21194:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22753:221::-;;;;;;;;;;-1:-1:-1;22753:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2012:32:1;;;1994:51;;1982:2;1967:18;22753:221:0;1848:203:1;22276:411:0;;;;;;;;;;-1:-1:-1;22276:411:0;;;;;:::i;:::-;;:::i;37916:44::-;;;;;;;;;;-1:-1:-1;37916:44:0;;;;;:::i;:::-;;:::i;38357:47::-;;;;;;;;;;;;38402:2;38357:47;;;;;2461:25:1;;;2449:2;2434:18;38357:47:0;2315:177:1;47052:317:0;;;;;;;;;;-1:-1:-1;47052:317:0;;;;;:::i;:::-;;:::i;38468:50::-;;;;;;;;;;;;38516:2;38468:50;;40206:26;;;;;;;;;;-1:-1:-1;40206:26:0;;;;-1:-1:-1;;;;;40206:26:0;;;39186:52;;;;;;;;;;;;39228:10;39186:52;;23643:339;;;;;;;;;;-1:-1:-1;23643:339:0;;;;;:::i;:::-;;:::i;38142:45::-;;;;;;;;;;;;38183:4;38142:45;;41666:755;;;;;;:::i;:::-;;:::i;49032:291::-;;;;;;;;;;-1:-1:-1;49032:291:0;;;;;:::i;:::-;;:::i;49336:123::-;;;;;;;;;;-1:-1:-1;49336:123:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39414:56::-;;;;;;;;;;-1:-1:-1;39414:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;39013:52;;;;;;;;;;;;39055:10;39013:52;;38891:54;;;;;;;;;;;;38935:10;38891:54;;24053:187;;;;;;;;;;-1:-1:-1;24053:187:0;;;;;:::i;:::-;;:::i;38194:48::-;;;;;;;;;;;;38238:4;38194:48;;40140:26;;;;;;;;;;-1:-1:-1;40140:26:0;;;;-1:-1:-1;;;;;40140:26:0;;;44679:562;;;:::i;39477:54::-;;;;;;;;;;-1:-1:-1;39477:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;48392:461;;;;;;;;;;-1:-1:-1;48392:461:0;;;;;:::i;:::-;;:::i;38952:54::-;;;;;;;;;;;;38996:10;38952:54;;40038:31;;;;;;;;;;;;;;;;39538:40;;;;;;;;;;-1:-1:-1;39538:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;42427:798;;;;;;:::i;:::-;;:::i;20888:239::-;;;;;;;;;;-1:-1:-1;20888:239:0;;;;;:::i;:::-;;:::i;39245:39::-;;;;;;;;;;;;39281:3;39245:39;;39072:48;;;;;;;;;;;;39110:10;39072:48;;47969:121;;;;;;;;;;-1:-1:-1;47969:121:0;;;;;:::i;:::-;48032:15;48066;;;:6;:15;;;;;;-1:-1:-1;;;;;48066:15:0;;47969:121;43231:788;;;;;;:::i;:::-;;:::i;48906:118::-;;;;;;;;;;;;;:::i;38304:46::-;;;;;;;;;;;;38346:4;38304:46;;38833:51;;;;;;;;;;;;38874:10;38833:51;;40239:26;;;;;;;;;;-1:-1:-1;40239:26:0;;;;-1:-1:-1;;;;;40239:26:0;;;20618:208;;;;;;;;;;-1:-1:-1;20618:208:0;;;;;:::i;:::-;;:::i;38796:30::-;;;;;;;;;;-1:-1:-1;38796:30:0;;;;;;;;35302:96;;;;;;;;;;;;;:::i;40305:26::-;;;;;;;;;;-1:-1:-1;40305:26:0;;;;-1:-1:-1;;;;;40305:26:0;;;47703:219;;;;;;;;;;-1:-1:-1;47703:219:0;;;;;:::i;:::-;;:::i;39585:52::-;;;;;;;;;;-1:-1:-1;39585:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;40107:26;;;;;;;;;;-1:-1:-1;40107:26:0;;;;-1:-1:-1;;;;;40107:26:0;;;39706:55;;;;;;;;;;-1:-1:-1;39706:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39351:56;;;;;;;;;;-1:-1:-1;39351:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;49813:483;;;;;;;;;;-1:-1:-1;49813:483:0;;;;;:::i;:::-;;:::i;39891:28::-;;;;;;;;;;;;;;;;34651:87;;;;;;;;;;-1:-1:-1;34724:6:0;;-1:-1:-1;;;;;34724:6:0;34651:87;;39291:53;;;;;;;;;;-1:-1:-1;39291:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;40002:29;;;;;;;;;;;;;;;;21363:104;;;;;;;;;;;;;:::i;39768:116::-;;;;;;;;;;;;;:::i;38759:30::-;;;;;;;;;;;;;;;;23046:295;;;;;;;;;;-1:-1:-1;23046:295:0;;;;;:::i;:::-;;:::i;38698:54::-;;;;;;;;;;;;38742:10;38698:54;;38006:41;;;;;;;;;;-1:-1:-1;38006:41:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;38006:41:0;;;38580:51;;;;;;;;;;;;38621:10;38580:51;;40338:26;;;;;;;;;;-1:-1:-1;40338:26:0;;;;-1:-1:-1;;;;;40338:26:0;;;44025:646;;;;;;:::i;:::-;;:::i;46735:309::-;;;;;;;;;;-1:-1:-1;46735:309:0;;;;;:::i;:::-;;:::i;24311:328::-;;;;;;;;;;-1:-1:-1;24311:328:0;;;;;:::i;:::-;;:::i;49508:301::-;;;;;;;;;;-1:-1:-1;49508:301:0;;;;;:::i;:::-;;:::i;38086:49::-;;;;;;;;;;-1:-1:-1;38086:49:0;;;;;:::i;:::-;;:::i;39926:31::-;;;;;;;;;;;;;;;;40272:26;;;;;;;;;;-1:-1:-1;40272:26:0;;;;-1:-1:-1;;;;;40272:26:0;;;38249:48;;;;;;;;;;;;38293:4;38249:48;;23412:164;;;;;;;;;;-1:-1:-1;23412:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23533:25:0;;;23509:4;23533:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23412:164;40076:24;;;;;;;;;;;;;;;;39964:31;;;;;;;;;;;;;;;;35553:192;;;;;;;;;;-1:-1:-1;35553:192:0;;;;;:::i;:::-;;:::i;39127:52::-;;;;;;;;;;;;39169:10;39127:52;;40173:26;;;;;;;;;;-1:-1:-1;40173:26:0;;;;-1:-1:-1;;;;;40173:26:0;;;47378:317;;;;;;;;;;-1:-1:-1;47378:317:0;;;;;:::i;:::-;;:::i;38638:53::-;;;;;;;;;;;;38682:9;38638:53;;20249:305;20351:4;-1:-1:-1;;;;;;20388:40:0;;-1:-1:-1;;;20388:40:0;;:105;;-1:-1:-1;;;;;;;20445:48:0;;-1:-1:-1;;;20445:48:0;20388:105;:158;;;-1:-1:-1;;;;;;;;;;18698:40:0;;;20510:36;20368:178;20249:305;-1:-1:-1;;20249:305:0:o;21194:100::-;21248:13;21281:5;21274:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21194:100;:::o;22753:221::-;22829:7;26238:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26238:16:0;22849:73;;;;-1:-1:-1;;;22849:73:0;;9505:2:1;22849:73:0;;;9487:21:1;9544:2;9524:18;;;9517:30;9583:34;9563:18;;;9556:62;-1:-1:-1;;;9634:18:1;;;9627:42;9686:19;;22849:73:0;;;;;;;;;-1:-1:-1;22942:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22942:24:0;;22753:221::o;22276:411::-;22357:13;22373:23;22388:7;22373:14;:23::i;:::-;22357:39;;22421:5;-1:-1:-1;;;;;22415:11:0;:2;-1:-1:-1;;;;;22415:11:0;;;22407:57;;;;-1:-1:-1;;;22407:57:0;;9918:2:1;22407:57:0;;;9900:21:1;9957:2;9937:18;;;9930:30;9996:34;9976:18;;;9969:62;-1:-1:-1;;;10047:18:1;;;10040:31;10088:19;;22407:57:0;9716:397:1;22407:57:0;15738:10;-1:-1:-1;;;;;22499:21:0;;;;:62;;-1:-1:-1;22524:37:0;22541:5;15738:10;23412:164;:::i;22524:37::-;22477:168;;;;-1:-1:-1;;;22477:168:0;;10320:2:1;22477:168:0;;;10302:21:1;10359:2;10339:18;;;10332:30;10398:34;10378:18;;;10371:62;10469:26;10449:18;;;10442:54;10513:19;;22477:168:0;10118:420:1;22477:168:0;22658:21;22667:2;22671:7;22658:8;:21::i;:::-;22346:341;22276:411;;:::o;37916:44::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47052:317::-;34724:6;;-1:-1:-1;;;;;34724:6:0;15738:10;34871:23;34863:68;;;;-1:-1:-1;;;34863:68:0;;;;;;;:::i;:::-;47200:12;;47168:4;;47143:22:::1;47224:99;47243:6;47241:1;:8;47224:99;;;47306:4;47270:23;:33;47294:5;47300:1;47294:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;47270:33:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;47270:33:0;:40;;-1:-1:-1;;47270:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47250:3;::::1;::::0;::::1;:::i;:::-;;;;47224:99;;;-1:-1:-1::0;47338:23:0::1;::::0;::::1;::::0;;;::::1;47132:237;;47052:317:::0;:::o;23643:339::-;23838:41;15738:10;23871:7;23838:18;:41::i;:::-;23830:103;;;;-1:-1:-1;;;23830:103:0;;;;;;;:::i;:::-;23946:28;23956:4;23962:2;23966:7;23946:9;:28::i;41666:755::-;41750:4;36817:1;37415:7;;:19;;37407:63;;;;-1:-1:-1;;;37407:63:0;;;;;;;:::i;:::-;36817:1;37548:7;:18;38874:10:::1;41771:15;:31;:64:::0;::::1;;;;39110:10;41806:15;:29;41771:64;41763:92;;;::::0;-1:-1:-1;;;41763:92:0;;12288:2:1;41763:92:0::1;::::0;::::1;12270:21:1::0;12327:2;12307:18;;;12300:30;-1:-1:-1;;;12346:18:1;;;12339:46;12402:18;;41763:92:0::1;12086:340:1::0;41763:92:0::1;41895:10;41874:32;::::0;;;:20:::1;:32;::::0;;;;;::::1;;:38;;:32:::0;:38:::1;41866:70;;;;-1:-1:-1::0;;;41866:70:0::1;;;;;;;:::i;:::-;41979:12;41963:13;;:28;;;;:::i;:::-;41947:13;:44:::0;;;38183:4:::1;-1:-1:-1::0;42010:30:0::1;42002:71;;;::::0;-1:-1:-1;;;42002:71:0;;13115:2:1;42002:71:0::1;::::0;::::1;13097:21:1::0;13154:2;13134:18;;;13127:30;13193:31;13173:18;;;13166:59;13242:18;;42002:71:0::1;12913:353:1::0;42002:71:0::1;42105:27;38621:10;42105:12:::0;:27:::1;:::i;:::-;42092:9;:40;;42084:80;;;;-1:-1:-1::0;;;42084:80:0::1;;;;;;;:::i;:::-;42175:42;::::0;42191:4:::1;::::0;42207:9:::1;42175:42:::0;::::1;;;::::0;::::1;::::0;;;42207:9;42191:4;42175:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;42228:39;42242:10;42254:12;42228:13;:39::i;:::-;42300:12;42290:9;;:22;;;;:::i;:::-;42278:9;:34:::0;42328:56:::1;::::0;-1:-1:-1;;;;;;;;;;;42328:56:0;::::1;::::0;42338:12;14012:25:1;;14073:2;14068;14053:18;;14046:30;;;14112:2;14092:18;;;14085:30;14151:32;14146:2;14131:18;;14124:60;14216:3;14201:19;;13800:426;42328:56:0::1;;;;;;;;-1:-1:-1::0;42402:4:0::1;36773:1:::0;37727:7;:22;41666:755;;-1:-1:-1;41666:755:0:o;49032:291::-;34724:6;;-1:-1:-1;;;;;34724:6:0;15738:10;34871:23;34863:68;;;;-1:-1:-1;;;34863:68:0;;;;;;;:::i;:::-;49139:12:::1;49120:16;;:31;;;;:::i;:::-;49101:16;:50:::0;;;39281:3:::1;-1:-1:-1::0;49170:29:0::1;49162:62;;;::::0;-1:-1:-1;;;49162:62:0;;14433:2:1;49162:62:0::1;::::0;::::1;14415:21:1::0;14472:2;14452:18;;;14445:30;-1:-1:-1;;;14491:18:1;;;14484:50;14551:18;;49162:62:0::1;14231:344:1::0;49162:62:0::1;49239:9;49235:81;49255:12;49252:1;:15;49235:81;;;49284:20;49293:10;49284:8;:20::i;:::-;-1:-1:-1::0;49269:3:0;::::1;::::0;::::1;:::i;:::-;;;;49235:81;;;;49032:291:::0;:::o;49336:123::-;-1:-1:-1;;;;;49436:18:0;;;;;;:12;:18;;;;;;;;;49429:26;;;;;;;;;;;;;;;;;49401:20;;49429:26;;;49436:18;49429:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49336:123;;;:::o;24053:187::-;24193:39;24210:4;24216:2;24220:7;24193:39;;;;;;;;;;;;:16;:39::i;44679:562::-;34724:6;;-1:-1:-1;;;;;34724:6:0;15738:10;34871:23;34863:68;;;;-1:-1:-1;;;34863:68:0;;;;;;;:::i;:::-;44799:11:::1;::::0;44759:21:::1;::::0;-1:-1:-1;;;;;44799:11:0::1;44791:46;44833:3;44821:11;44759:21:::0;44830:2:::1;44821:11;:::i;:::-;:15;;;;:::i;:::-;44791:46;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;44856:11:0::1;::::0;-1:-1:-1;;;;;44856:11:0::1;44848:46;44890:3;44878:11;44879:6:::0;44887:2:::1;44878:11;:::i;:::-;:15;;;;:::i;:::-;44848:46;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;44913:11:0::1;::::0;-1:-1:-1;;;;;44913:11:0::1;44905:46;44947:3;44935:11;44936:6:::0;44944:2:::1;44935:11;:::i;:::-;:15;;;;:::i;:::-;44905:46;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;44970:11:0::1;::::0;-1:-1:-1;;;;;44970:11:0::1;44962:45;45003:3;44992:10;44993:6:::0;45001:1:::1;44992:10;:::i;:::-;:14;;;;:::i;:::-;44962:45;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;45026:11:0::1;::::0;-1:-1:-1;;;;;45026:11:0::1;45018:45;45059:3;45048:10;45049:6:::0;45057:1:::1;45048:10;:::i;:::-;:14;;;;:::i;:::-;45018:45;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;45082:11:0::1;::::0;-1:-1:-1;;;;;45082:11:0::1;45074:45;45115:3;45104:10;45105:6:::0;45082:11;45104:10:::1;:::i;:::-;:14;;;;:::i;:::-;45074:45;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;45138:11:0::1;::::0;-1:-1:-1;;;;;45138:11:0::1;45130:45;45171:3;45160:10;45161:6:::0;45138:11;45160:10:::1;:::i;:::-;:14;;;;:::i;:::-;45130:45;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;45194:11:0::1;::::0;-1:-1:-1;;;;;45194:11:0::1;45186:45;45227:3;45216:10;45217:6:::0;45225:1:::1;45216:10;:::i;:::-;:14;;;;:::i;:::-;45186:45;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;48392:461:::0;34724:6;;-1:-1:-1;;;;;34724:6:0;15738:10;34871:23;34863:68;;;;-1:-1:-1;;;34863:68:0;;;;;;;:::i;:::-;48538:9:::1;:16;48520:7;:14;:34;48512:59;;;::::0;-1:-1:-1;;;48512:59:0;;15004:2:1;48512:59:0::1;::::0;::::1;14986:21:1::0;15043:2;15023:18;;;15016:30;-1:-1:-1;;;15062:18:1;;;15055:43;15115:18;;48512:59:0::1;14802:337:1::0;48512:59:0::1;48598:14:::0;;48582:13:::1;48623:195;48643:5;48641:1;:7;48623:195;;;48674:8;:20;48683:7;48691:1;48683:10;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;48674:20;;;::::1;::::0;;;;;;-1:-1:-1;48674:20:0;;::::1;;:27;48666:55;;;::::0;-1:-1:-1;;;48666:55:0;;15346:2:1;48666:55:0::1;::::0;::::1;15328:21:1::0;15385:2;15365:18;;;15358:30;-1:-1:-1;;;15404:18:1;;;15397:46;15460:18;;48666:55:0::1;15144:340:1::0;48666:55:0::1;48754:4;48732:8;:20;48741:7;48749:1;48741:10;;;;;;;;:::i;:::-;;;;;;;48732:20;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;48769:37;48782:7;48790:1;48782:10;;;;;;;;:::i;:::-;;;;;;;48793:9;48803:1;48793:12;;;;;;;;:::i;:::-;;;;;;;48769;:37::i;:::-;48651:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48623:195;;;-1:-1:-1::0;48835:10:0::1;::::0;::::1;::::0;;;::::1;48508:345;48392:461:::0;;:::o;42427:798::-;42514:4;36817:1;37415:7;;:19;;37407:63;;;;-1:-1:-1;;;37407:63:0;;;;;;;:::i;:::-;36817:1;37548:7;:18;38935:10:::1;42535:15;:34;:70:::0;::::1;;;;39169:10;42573:15;:32;42535:70;42527:98;;;;-1:-1:-1::0;;;42527:98:0::1;;;;;;;:::i;:::-;42668:10;42644:35;::::0;;;:23:::1;:35;::::0;;;;;::::1;;:41;;:35:::0;:41:::1;42636:73;;;;-1:-1:-1::0;;;42636:73:0::1;;;;;;;:::i;:::-;42758:12;42739:16;;:31;;;;:::i;:::-;42720:16;:50:::0;;;38238:4:::1;-1:-1:-1::0;42789:36:0::1;42781:81;;;::::0;-1:-1:-1;;;42781:81:0;;16036:2:1;42781:81:0::1;::::0;::::1;16018:21:1::0;16075:2;16055:18;;;16048:30;16114:34;16094:18;;;16087:62;-1:-1:-1;;;16165:18:1;;;16158:31;16206:19;;42781:81:0::1;15834:397:1::0;42781:81:0::1;42894:30;38682:9;42894:12:::0;:30:::1;:::i;:::-;42881:9;:43;;42873:83;;;;-1:-1:-1::0;;;42873:83:0::1;;;;;;;:::i;:::-;42967:42;::::0;42983:4:::1;::::0;42999:9:::1;42967:42:::0;::::1;;;::::0;::::1;::::0;;;42999:9;42983:4;42967:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43020;43037:10;43049:12;43020:16;:42::i;:::-;43095:12;43085:9;;:22;;;;:::i;:::-;43073:9;:34:::0;43125:60:::1;::::0;-1:-1:-1;;;;;;;;;;;43125:60:0;::::1;::::0;43135:12;16448:25:1;;16509:2;16504;16489:18;;16482:30;;;16548:2;16528:18;;;16521:30;16587:34;16582:2;16567:18;;16560:62;-1:-1:-1;;;16653:3:1;16638:19;;16631:33;16696:3;16681:19;;16236:470;20888:239:0;20960:7;20996:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20996:16:0;21031:19;21023:73;;;;-1:-1:-1;;;21023:73:0;;16913:2:1;21023:73:0;;;16895:21:1;16952:2;16932:18;;;16925:30;16991:34;16971:18;;;16964:62;-1:-1:-1;;;17042:18:1;;;17035:39;17091:19;;21023:73:0;16711:405:1;43231:788:0;43318:4;36817:1;37415:7;;:19;;37407:63;;;;-1:-1:-1;;;37407:63:0;;;;;;;:::i;:::-;36817:1;37548:7;:18;38996:10:::1;43339:15;:34;:70:::0;::::1;;;;39228:10;43377:15;:32;43339:70;43331:98;;;;-1:-1:-1::0;;;43331:98:0::1;;;;;;;:::i;:::-;43472:10;43448:35;::::0;;;:23:::1;:35;::::0;;;;;::::1;;:41;;:35:::0;:41:::1;43440:73;;;;-1:-1:-1::0;;;43440:73:0::1;;;;;;;:::i;:::-;43562:12;43543:16;;:31;;;;:::i;:::-;43524:16;:50:::0;;;38293:4:::1;-1:-1:-1::0;43593:36:0::1;43585:81;;;::::0;-1:-1:-1;;;43585:81:0;;17323:2:1;43585:81:0::1;::::0;::::1;17305:21:1::0;17362:2;17342:18;;;17335:30;17401:34;17381:18;;;17374:62;-1:-1:-1;;;17452:18:1;;;17445:31;17493:19;;43585:81:0::1;17121:397:1::0;43585:81:0::1;43698:30;38742:10;43698:12:::0;:30:::1;:::i;:::-;43685:9;:43;;43677:83;;;;-1:-1:-1::0;;;43677:83:0::1;;;;;;;:::i;:::-;43771:42;::::0;43787:4:::1;::::0;43803:9:::1;43771:42:::0;::::1;;;::::0;::::1;::::0;;;43803:9;43787:4;43771:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43824;43841:10;43853:12;43824:16;:42::i;:::-;43899:12;43889:9;;:22;;;;:::i;:::-;43877:9;:34:::0;43927:59:::1;::::0;-1:-1:-1;;;;;;;;;;;43927:59:0;::::1;::::0;43937:12;17735:25:1;;17796:2;17791;17776:18;;17769:30;;;17835:2;17815:18;;;17808:30;17874:34;17869:2;17854:18;;17847:62;-1:-1:-1;;;17940:3:1;17925:19;;17918:32;17982:3;17967:19;;17523:469;48906:118:0;48956:15;48990:25;:15;33203:14;;33111:114;48990:25;48983:33;;48906:118;:::o;20618:208::-;20690:7;-1:-1:-1;;;;;20718:19:0;;20710:74;;;;-1:-1:-1;;;20710:74:0;;18199:2:1;20710:74:0;;;18181:21:1;18238:2;18218:18;;;18211:30;18277:34;18257:18;;;18250:62;-1:-1:-1;;;18328:18:1;;;18321:40;18378:19;;20710:74:0;17997:406:1;20710:74:0;-1:-1:-1;;;;;;20802:16:0;;;;;:9;:16;;;;;;;20618:208::o;35302:96::-;34724:6;;-1:-1:-1;;;;;34724:6:0;15738:10;34871:23;34863:68;;;;-1:-1:-1;;;34863:68:0;;;;;;;:::i;:::-;35369:21:::1;35387:1;35369:9;:21::i;:::-;35302:96::o:0;47703:219::-;34724:6;;-1:-1:-1;;;;;34724:6:0;15738:10;34871:23;34863:68;;;;-1:-1:-1;;;34863:68:0;;;;;;;:::i;:::-;47787:1:::1;47780:5;:8;47772:50;;;::::0;-1:-1:-1;;;47772:50:0;;18610:2:1;47772:50:0::1;::::0;::::1;18592:21:1::0;18649:2;18629:18;;;18622:30;18688:32;18668:18;;;18661:60;18738:18;;47772:50:0::1;18408:354:1::0;47772:50:0::1;47830:15;:23:::0;;;47861:18:::1;:25:::0;;-1:-1:-1;;47861:25:0::1;47882:4;47861:25;::::0;;47899:15:::1;::::0;::::1;::::0;::::1;::::0;47848:5;2461:25:1;;2449:2;2434:18;;2315:177;47899:15:0::1;;;;;;;;47703:219:::0;:::o;49813:483::-;49873:20;49899:13;49925:9;49921:116;49940:15;33203:14;49938:1;:27;49921:116;;;49995:4;-1:-1:-1;;;;;49982:17:0;:10;49990:1;49982:7;:10::i;:::-;-1:-1:-1;;;;;49982:17:0;;49979:51;;;50013:7;;;;:::i;:::-;;;;49979:51;49966:3;;;;:::i;:::-;;;;49921:116;;;;50041:25;50083:5;50069:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50069:20:0;;50041:48;;50094:15;50123:9;50119:152;50138:15;33203:14;50136:1;:27;50119:152;;;50193:4;-1:-1:-1;;;;;50180:17:0;:10;50188:1;50180:7;:10::i;:::-;-1:-1:-1;;;;;50180:17:0;;50177:87;;;50231:1;50211:8;50220:7;50211:17;;;;;;;;:::i;:::-;;;;;;;;;;:21;50245:9;;;;:::i;:::-;;;;50177:87;50164:3;;;;:::i;:::-;;;;50119:152;;;-1:-1:-1;50283:8:0;;49813:483;-1:-1:-1;;;;49813:483:0:o;21363:104::-;21419:13;21452:7;21445:14;;;;;:::i;39768:116::-;;;;;;;:::i;23046:295::-;-1:-1:-1;;;;;23149:24:0;;15738:10;23149:24;;23141:62;;;;-1:-1:-1;;;23141:62:0;;18969:2:1;23141:62:0;;;18951:21:1;19008:2;18988:18;;;18981:30;19047:27;19027:18;;;19020:55;19092:18;;23141:62:0;18767:349:1;23141:62:0;15738:10;23216:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23216:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23216:53:0;;;;;;;;;;23285:48;;540:41:1;;;23216:42:0;;15738:10;23285:48;;513:18:1;23285:48:0;;;;;;;23046:295;;:::o;44025:646::-;44110:4;36817:1;37415:7;;:19;;37407:63;;;;-1:-1:-1;;;37407:63:0;;;;;;;:::i;:::-;36817:1;37548:7;:18;39055:10:::1;44135:15;:32;44127:60;;;;-1:-1:-1::0;;;44127:60:0::1;;;;;;;:::i;:::-;44207:18;::::0;::::1;;:26;;:18:::0;:26:::1;44199:51;;;::::0;-1:-1:-1;;;44199:51:0;;19323:2:1;44199:51:0::1;::::0;::::1;19305:21:1::0;19362:2;19342:18;;;19335:30;-1:-1:-1;;;19381:18:1;;;19374:43;19434:18;;44199:51:0::1;19121:337:1::0;44199:51:0::1;44283:12;44273:9;;:22;;;;:::i;:::-;44261:9;:34:::0;;;38346:4:::1;-1:-1:-1::0;44314:27:0::1;44306:59;;;::::0;-1:-1:-1;;;44306:59:0;;19665:2:1;44306:59:0::1;::::0;::::1;19647:21:1::0;19704:2;19684:18;;;19677:30;-1:-1:-1;;;19723:18:1;;;19716:50;19783:18;;44306:59:0::1;19463:344:1::0;44306:59:0::1;44410:15;::::0;44397:28:::1;::::0;:12;:28:::1;:::i;:::-;44384:9;:41;;44376:81;;;;-1:-1:-1::0;;;44376:81:0::1;;;;;;;:::i;:::-;44468:42;::::0;44484:4:::1;::::0;44500:9:::1;44468:42:::0;::::1;;;::::0;::::1;::::0;;;44500:9;44484:4;44468:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44521:40;44536:10;44548:12;44521:14;:40::i;:::-;-1:-1:-1::0;;;;;;;;;;;44588:12:0::1;44578:57;;;;20024:25:1::0;;20085:2;20080;20065:18;;20058:30;;;20124:2;20104:18;;;20097:30;20163:33;20158:2;20143:18;;20136:61;20229:3;20214:19;;19812:427;46735:309:0;34724:6;;-1:-1:-1;;;;;34724:6:0;15738:10;34871:23;34863:68;;;;-1:-1:-1;;;34863:68:0;;;;;;;:::i;:::-;46880:12;;46848:4;;46823:22:::1;46904:97;46923:6;46921:1;:8;46904:97;;;46984:4;46951:20;:30;46972:5;46978:1;46972:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;46951:30:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;46951:30:0;:37;;-1:-1:-1;;46951:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46930:3;::::1;::::0;::::1;:::i;:::-;;;;46904:97;;;-1:-1:-1::0;47016:20:0::1;::::0;::::1;::::0;;;::::1;46812:232;;46735:309:::0;:::o;24311:328::-;24486:41;15738:10;24519:7;24486:18;:41::i;:::-;24478:103;;;;-1:-1:-1;;;24478:103:0;;;;;;;:::i;:::-;24592:39;24606:4;24612:2;24616:7;24625:5;24592:13;:39::i;:::-;24311:328;;;;:::o;49508:301::-;26214:4;26238:16;;;:7;:16;;;;;;49609:13;;-1:-1:-1;;;;;26238:16:0;49640:76;;;;-1:-1:-1;;;49640:76:0;;;;;;;:::i;:::-;49727:23;49753:19;;;:10;:19;;;;;49727:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49727:45:0;;49508:301;-1:-1:-1;;;;;;;49508:301:0:o;38086:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35553:192::-;34724:6;;-1:-1:-1;;;;;34724:6:0;15738:10;34871:23;34863:68;;;;-1:-1:-1;;;34863:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35642:22:0;::::1;35634:73;;;::::0;-1:-1:-1;;;35634:73:0;;20862:2:1;35634:73:0::1;::::0;::::1;20844:21:1::0;20901:2;20881:18;;;20874:30;20940:34;20920:18;;;20913:62;-1:-1:-1;;;20991:18:1;;;20984:36;21037:19;;35634:73:0::1;20660:402:1::0;35634:73:0::1;35718:19;35728:8;35718:9;:19::i;:::-;35553:192:::0;:::o;47378:317::-;34724:6;;-1:-1:-1;;;;;34724:6:0;15738:10;34871:23;34863:68;;;;-1:-1:-1;;;34863:68:0;;;;;;;:::i;:::-;47526:12;;47494:4;;47469:22:::1;47550:99;47569:6;47567:1;:8;47550:99;;;47632:4;47596:23;:33;47620:5;47626:1;47620:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;47596:33:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;47596:33:0;:40;;-1:-1:-1;;47596:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47576:3;::::1;::::0;::::1;:::i;:::-;;;;47550:99;;;-1:-1:-1::0;47664:23:0::1;::::0;::::1;::::0;;;::::1;47458:237;;47378:317:::0;:::o;30131:174::-;30206:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30206:29:0;-1:-1:-1;;;;;30206:29:0;;;;;;;;:24;;30260:23;30206:24;30260:14;:23::i;:::-;-1:-1:-1;;;;;30251:46:0;;;;;;;;;;;30131:174;;:::o;26443:348::-;26536:4;26238:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26238:16:0;26553:73;;;;-1:-1:-1;;;26553:73:0;;21269:2:1;26553:73:0;;;21251:21:1;21308:2;21288:18;;;21281:30;21347:34;21327:18;;;21320:62;-1:-1:-1;;;21398:18:1;;;21391:42;21450:19;;26553:73:0;21067:408:1;26553:73:0;26637:13;26653:23;26668:7;26653:14;:23::i;:::-;26637:39;;26706:5;-1:-1:-1;;;;;26695:16:0;:7;-1:-1:-1;;;;;26695:16:0;;:51;;;;26739:7;-1:-1:-1;;;;;26715:31:0;:20;26727:7;26715:11;:20::i;:::-;-1:-1:-1;;;;;26715:31:0;;26695:51;:87;;;-1:-1:-1;;;;;;23533:25:0;;;23509:4;23533:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26750:32;26687:96;26443:348;-1:-1:-1;;;;26443:348:0:o;29435:578::-;29594:4;-1:-1:-1;;;;;29567:31:0;:23;29582:7;29567:14;:23::i;:::-;-1:-1:-1;;;;;29567:31:0;;29559:85;;;;-1:-1:-1;;;29559:85:0;;21682:2:1;29559:85:0;;;21664:21:1;21721:2;21701:18;;;21694:30;21760:34;21740:18;;;21733:62;-1:-1:-1;;;21811:18:1;;;21804:39;21860:19;;29559:85:0;21480:405:1;29559:85:0;-1:-1:-1;;;;;29663:16:0;;29655:65;;;;-1:-1:-1;;;29655:65:0;;22092:2:1;29655:65:0;;;22074:21:1;22131:2;22111:18;;;22104:30;22170:34;22150:18;;;22143:62;-1:-1:-1;;;22221:18:1;;;22214:34;22265:19;;29655:65:0;21890:400:1;29655:65:0;29837:29;29854:1;29858:7;29837:8;:29::i;:::-;-1:-1:-1;;;;;29879:15:0;;;;;;:9;:15;;;;;:20;;29898:1;;29879:15;:20;;29898:1;;29879:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29910:13:0;;;;;;:9;:13;;;;;:18;;29927:1;;29910:13;:18;;29927:1;;29910:18;:::i;:::-;;;;-1:-1:-1;;29939:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29939:21:0;-1:-1:-1;;;;;29939:21:0;;;;;;;;;29978:27;;29939:16;;29978:27;;;;;;;29435:578;;;:::o;45250:353::-;-1:-1:-1;;;;;45360:27:0;;;;;;:18;:27;;;;;;:42;;45390:12;;45360:42;:::i;:::-;-1:-1:-1;;;;;45330:27:0;;;;;;:18;:27;;;;;:72;;;38402:2;-1:-1:-1;45421:48:0;45413:82;;;;-1:-1:-1;;;45413:82:0;;;;;;;:::i;:::-;45510:9;45506:80;45528:12;45525:1;:15;45506:80;;;45557:17;45566:7;45557:8;:17::i;:::-;-1:-1:-1;45542:3:0;;;;:::i;:::-;;;;45506:80;;41195:426;41259:7;41286:13;41302:25;:15;33203:14;;33111:114;41302:25;41286:41;;41339:25;41349:7;41358:5;41339:9;:25::i;:::-;-1:-1:-1;;;;;41375:21:0;;;;;;:12;:21;;;;;;;;:33;;;;;;;;;;;;;;;;;41419:13;;;:6;:13;;;;;:23;;-1:-1:-1;;;;;;41419:23:0;;;;;;41473:7;41453:28;;;;41402:5;;41453:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:28::i;:::-;41492:27;:15;33322:19;;33340:1;33322:19;;;33233:127;41492:27;41535:36;41543:5;41535:36;;;;22988:25:1;;23049:2;23044;23029:18;;23022:30;;;23088:2;23068:18;;;23061:30;-1:-1:-1;;;23122:2:1;23107:18;;23100:49;23181:3;23166:19;;22776:415;41535:36:0;;;;;;;;41606:5;41195:426;-1:-1:-1;;41195:426:0:o;48125:230::-;26214:4;26238:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26238:16:0;48229:76;;;;-1:-1:-1;;;48229:76:0;;;;;;;:::i;:::-;48316:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;45611:369::-;-1:-1:-1;;;;;45727:30:0;;;;;;:21;:30;;;;;;:45;;45760:12;;45727:45;:::i;:::-;-1:-1:-1;;;;;45694:30:0;;;;;;:21;:30;;;;;:78;;;38459:2;-1:-1:-1;45791:54:0;45783:88;;;;-1:-1:-1;;;45783:88:0;;;;;;;:::i;:::-;45887:9;45883:80;45905:12;45902:1;:15;45883:80;;;45934:17;45943:7;45934:8;:17::i;:::-;-1:-1:-1;45919:3:0;;;;:::i;:::-;;;;45883:80;;45988:369;-1:-1:-1;;;;;46104:30:0;;;;;;:21;:30;;;;;;:45;;46137:12;;46104:45;:::i;:::-;-1:-1:-1;;;;;46071:30:0;;;;;;:21;:30;;;;;:78;;;38516:2;-1:-1:-1;46168:54:0;46160:88;;;;-1:-1:-1;;;46160:88:0;;;;;;;:::i;:::-;46264:9;46260:80;46282:12;46279:1;:15;46260:80;;;46311:17;46320:7;46311:8;:17::i;:::-;-1:-1:-1;46296:3:0;;;;:::i;:::-;;;;46260:80;;35753:173;35828:6;;;-1:-1:-1;;;;;35845:17:0;;;-1:-1:-1;;;;;;35845:17:0;;;;;;;35878:40;;35828:6;;;35845:17;35828:6;;35878:40;;35809:16;;35878:40;35798:128;35753:173;:::o;46365:362::-;-1:-1:-1;;;;;46477:28:0;;;;;;:19;:28;;;;;;:43;;46508:12;;46477:43;:::i;:::-;-1:-1:-1;;;;;46446:28:0;;;;;;:19;:28;;;;;:74;;;38571:2;-1:-1:-1;46539:50:0;46531:84;;;;-1:-1:-1;;;46531:84:0;;;;;;;:::i;:::-;46632:9;46628:80;46650:12;46647:1;:15;46628:80;;;46679:17;46688:7;46679:8;:17::i;:::-;-1:-1:-1;46664:3:0;;;;:::i;:::-;;;;46628:80;;25521:315;25678:28;25688:4;25694:2;25698:7;25678:9;:28::i;:::-;25725:48;25748:4;25754:2;25758:7;25767:5;25725:22;:48::i;:::-;25717:111;;;;-1:-1:-1;;;25717:111:0;;;;;;;:::i;27133:110::-;27209:26;27219:2;27223:7;27209:26;;;;;;;;;;;;:9;:26::i;30870:799::-;31025:4;-1:-1:-1;;;;;31046:13:0;;8111:20;8159:8;31042:620;;31082:72;;-1:-1:-1;;;31082:72:0;;-1:-1:-1;;;;;31082:36:0;;;;;:72;;15738:10;;31133:4;;31139:7;;31148:5;;31082:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31082:72:0;;;;;;;;-1:-1:-1;;31082:72:0;;;;;;;;;;;;:::i;:::-;;;31078:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31324:13:0;;31320:272;;31367:60;;-1:-1:-1;;;31367:60:0;;;;;;;:::i;31320:272::-;31542:6;31536:13;31527:6;31523:2;31519:15;31512:38;31078:529;-1:-1:-1;;;;;;31205:51:0;-1:-1:-1;;;31205:51:0;;-1:-1:-1;31198:58:0;;31042:620;-1:-1:-1;31646:4:0;30870:799;;;;;;:::o;27470:321::-;27600:18;27606:2;27610:7;27600:5;:18::i;:::-;27651:54;27682:1;27686:2;27690:7;27699:5;27651:22;:54::i;:::-;27629:154;;;;-1:-1:-1;;;27629:154:0;;;;;;;:::i;28127:382::-;-1:-1:-1;;;;;28207:16:0;;28199:61;;;;-1:-1:-1;;;28199:61:0;;24565:2:1;28199:61:0;;;24547:21:1;;;24584:18;;;24577:30;24643:34;24623:18;;;24616:62;24695:18;;28199:61:0;24363:356:1;28199:61:0;26214:4;26238:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26238:16:0;:30;28271:58;;;;-1:-1:-1;;;28271:58:0;;24926:2:1;28271:58:0;;;24908:21:1;24965:2;24945:18;;;24938:30;25004;24984:18;;;24977:58;25052:18;;28271:58:0;24724:352:1;28271:58:0;-1:-1:-1;;;;;28400:13:0;;;;;;:9;:13;;;;;:18;;28417:1;;28400:13;:18;;28417:1;;28400:18;:::i;:::-;;;;-1:-1:-1;;28429:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28429:21:0;-1:-1:-1;;;;;28429:21:0;;;;;;;;28468:33;;28429:16;;;28468:33;;28429:16;;28468:33;28127:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:186::-;829:6;882:2;870:9;861:7;857:23;853:32;850:52;;;898:1;895;888:12;850:52;921:29;940:9;921:29;:::i;961:472::-;1003:3;1041:5;1035:12;1068:6;1063:3;1056:19;1093:1;1103:162;1117:6;1114:1;1111:13;1103:162;;;1179:4;1235:13;;;1231:22;;1225:29;1207:11;;;1203:20;;1196:59;1132:12;1103:162;;;1283:6;1280:1;1277:13;1274:87;;;1349:1;1342:4;1333:6;1328:3;1324:16;1320:27;1313:38;1274:87;-1:-1:-1;1415:2:1;1394:15;-1:-1:-1;;1390:29:1;1381:39;;;;1422:4;1377:50;;961:472;-1:-1:-1;;961:472:1:o;1438:220::-;1587:2;1576:9;1569:21;1550:4;1607:45;1648:2;1637:9;1633:18;1625:6;1607:45;:::i;1663:180::-;1722:6;1775:2;1763:9;1754:7;1750:23;1746:32;1743:52;;;1791:1;1788;1781:12;1743:52;-1:-1:-1;1814:23:1;;1663:180;-1:-1:-1;1663:180:1:o;2056:254::-;2124:6;2132;2185:2;2173:9;2164:7;2160:23;2156:32;2153:52;;;2201:1;2198;2191:12;2153:52;2224:29;2243:9;2224:29;:::i;:::-;2214:39;2300:2;2285:18;;;;2272:32;;-1:-1:-1;;;2056:254:1:o;2497:127::-;2558:10;2553:3;2549:20;2546:1;2539:31;2589:4;2586:1;2579:15;2613:4;2610:1;2603:15;2629:275;2700:2;2694:9;2765:2;2746:13;;-1:-1:-1;;2742:27:1;2730:40;;2800:18;2785:34;;2821:22;;;2782:62;2779:88;;;2847:18;;:::i;:::-;2883:2;2876:22;2629:275;;-1:-1:-1;2629:275:1:o;2909:183::-;2969:4;3002:18;2994:6;2991:30;2988:56;;;3024:18;;:::i;:::-;-1:-1:-1;3069:1:1;3065:14;3081:4;3061:25;;2909:183::o;3097:897::-;3181:6;3212:2;3255;3243:9;3234:7;3230:23;3226:32;3223:52;;;3271:1;3268;3261:12;3223:52;3311:9;3298:23;3344:18;3336:6;3333:30;3330:50;;;3376:1;3373;3366:12;3330:50;3399:22;;3452:4;3444:13;;3440:27;-1:-1:-1;3430:55:1;;3481:1;3478;3471:12;3430:55;3517:2;3504:16;3540:60;3556:43;3596:2;3556:43;:::i;:::-;3540:60;:::i;:::-;3634:15;;;3716:1;3712:10;;;;3704:19;;3700:28;;;3665:12;;;;3740:19;;;3737:39;;;3772:1;3769;3762:12;3737:39;3796:11;;;;3816:148;3832:6;3827:3;3824:15;3816:148;;;3898:23;3917:3;3898:23;:::i;:::-;3886:36;;3849:12;;;;3942;;;;3816:148;;;3983:5;3097:897;-1:-1:-1;;;;;;;3097:897:1:o;3999:328::-;4076:6;4084;4092;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4184:29;4203:9;4184:29;:::i;:::-;4174:39;;4232:38;4266:2;4255:9;4251:18;4232:38;:::i;:::-;4222:48;;4317:2;4306:9;4302:18;4289:32;4279:42;;3999:328;;;;;:::o;4332:632::-;4503:2;4555:21;;;4625:13;;4528:18;;;4647:22;;;4474:4;;4503:2;4726:15;;;;4700:2;4685:18;;;4474:4;4769:169;4783:6;4780:1;4777:13;4769:169;;;4844:13;;4832:26;;4913:15;;;;4878:12;;;;4805:1;4798:9;4769:169;;;-1:-1:-1;4955:3:1;;4332:632;-1:-1:-1;;;;;;4332:632:1:o;4969:407::-;5034:5;5068:18;5060:6;5057:30;5054:56;;;5090:18;;:::i;:::-;5128:57;5173:2;5152:15;;-1:-1:-1;;5148:29:1;5179:4;5144:40;5128:57;:::i;:::-;5119:66;;5208:6;5201:5;5194:21;5248:3;5239:6;5234:3;5230:16;5227:25;5224:45;;;5265:1;5262;5255:12;5224:45;5314:6;5309:3;5302:4;5295:5;5291:16;5278:43;5368:1;5361:4;5352:6;5345:5;5341:18;5337:29;5330:40;4969:407;;;;;:::o;5381:1089::-;5434:5;5487:3;5480:4;5472:6;5468:17;5464:27;5454:55;;5505:1;5502;5495:12;5454:55;5541:6;5528:20;5567:4;5591:60;5607:43;5647:2;5607:43;:::i;5591:60::-;5685:15;;;5771:1;5767:10;;;;5755:23;;5751:32;;;5716:12;;;;5795:15;;;5792:35;;;5823:1;5820;5813:12;5792:35;5859:2;5851:6;5847:15;5871:570;5887:6;5882:3;5879:15;5871:570;;;5973:3;5960:17;6009:18;5996:11;5993:35;5990:125;;;6069:1;6098:2;6094;6087:14;5990:125;6138:24;;6197:2;6189:11;;6185:21;-1:-1:-1;6175:119:1;;6248:1;6277:2;6273;6266:14;6175:119;6319:79;6394:3;6388:2;6384;6380:11;6367:25;6362:2;6358;6354:11;6319:79;:::i;:::-;6307:92;;-1:-1:-1;6419:12:1;;;;5904;;5871:570;;;-1:-1:-1;6459:5:1;5381:1089;-1:-1:-1;;;;;;5381:1089:1:o;6475:1149::-;6603:6;6611;6664:2;6652:9;6643:7;6639:23;6635:32;6632:52;;;6680:1;6677;6670:12;6632:52;6720:9;6707:23;6749:18;6790:2;6782:6;6779:14;6776:34;;;6806:1;6803;6796:12;6776:34;6844:6;6833:9;6829:22;6819:32;;6889:7;6882:4;6878:2;6874:13;6870:27;6860:55;;6911:1;6908;6901:12;6860:55;6947:2;6934:16;6969:4;6993:60;7009:43;7049:2;7009:43;:::i;6993:60::-;7087:15;;;7169:1;7165:10;;;;7157:19;;7153:28;;;7118:12;;;;7193:19;;;7190:39;;;7225:1;7222;7215:12;7190:39;7249:11;;;;7269:142;7285:6;7280:3;7277:15;7269:142;;;7351:17;;7339:30;;7302:12;;;;7389;;;;7269:142;;;7430:5;-1:-1:-1;;7473:18:1;;7460:32;;-1:-1:-1;;7504:16:1;;;7501:36;;;7533:1;7530;7523:12;7501:36;;7556:62;7610:7;7599:8;7588:9;7584:24;7556:62;:::i;:::-;7546:72;;;6475:1149;;;;;:::o;7629:347::-;7694:6;7702;7755:2;7743:9;7734:7;7730:23;7726:32;7723:52;;;7771:1;7768;7761:12;7723:52;7794:29;7813:9;7794:29;:::i;:::-;7784:39;;7873:2;7862:9;7858:18;7845:32;7920:5;7913:13;7906:21;7899:5;7896:32;7886:60;;7942:1;7939;7932:12;7886:60;7965:5;7955:15;;;7629:347;;;;;:::o;7981:667::-;8076:6;8084;8092;8100;8153:3;8141:9;8132:7;8128:23;8124:33;8121:53;;;8170:1;8167;8160:12;8121:53;8193:29;8212:9;8193:29;:::i;:::-;8183:39;;8241:38;8275:2;8264:9;8260:18;8241:38;:::i;:::-;8231:48;;8326:2;8315:9;8311:18;8298:32;8288:42;;8381:2;8370:9;8366:18;8353:32;8408:18;8400:6;8397:30;8394:50;;;8440:1;8437;8430:12;8394:50;8463:22;;8516:4;8508:13;;8504:27;-1:-1:-1;8494:55:1;;8545:1;8542;8535:12;8494:55;8568:74;8634:7;8629:2;8616:16;8611:2;8607;8603:11;8568:74;:::i;:::-;8558:84;;;7981:667;;;;;;;:::o;8653:260::-;8721:6;8729;8782:2;8770:9;8761:7;8757:23;8753:32;8750:52;;;8798:1;8795;8788:12;8750:52;8821:29;8840:9;8821:29;:::i;:::-;8811:39;;8869:38;8903:2;8892:9;8888:18;8869:38;:::i;:::-;8859:48;;8653:260;;;;;:::o;8918:380::-;8997:1;8993:12;;;;9040;;;9061:61;;9115:4;9107:6;9103:17;9093:27;;9061:61;9168:2;9160:6;9157:14;9137:18;9134:38;9131:161;;;9214:10;9209:3;9205:20;9202:1;9195:31;9249:4;9246:1;9239:15;9277:4;9274:1;9267:15;9131:161;;8918:380;;;:::o;10543:356::-;10745:2;10727:21;;;10764:18;;;10757:30;10823:34;10818:2;10803:18;;10796:62;10890:2;10875:18;;10543:356::o;10904:127::-;10965:10;10960:3;10956:20;10953:1;10946:31;10996:4;10993:1;10986:15;11020:4;11017:1;11010:15;11036:127;11097:10;11092:3;11088:20;11085:1;11078:31;11128:4;11125:1;11118:15;11152:4;11149:1;11142:15;11168:135;11207:3;-1:-1:-1;;11228:17:1;;11225:43;;;11248:18;;:::i;:::-;-1:-1:-1;11295:1:1;11284:13;;11168:135::o;11308:413::-;11510:2;11492:21;;;11549:2;11529:18;;;11522:30;11588:34;11583:2;11568:18;;11561:62;-1:-1:-1;;;11654:2:1;11639:18;;11632:47;11711:3;11696:19;;11308:413::o;11726:355::-;11928:2;11910:21;;;11967:2;11947:18;;;11940:30;12006:33;12001:2;11986:18;;11979:61;12072:2;12057:18;;11726:355::o;12431:344::-;12633:2;12615:21;;;12672:2;12652:18;;;12645:30;-1:-1:-1;;;12706:2:1;12691:18;;12684:50;12766:2;12751:18;;12431:344::o;12780:128::-;12820:3;12851:1;12847:6;12844:1;12841:13;12838:39;;;12857:18;;:::i;:::-;-1:-1:-1;12893:9:1;;12780:128::o;13271:168::-;13311:7;13377:1;13373;13369:6;13365:14;13362:1;13359:21;13354:1;13347:9;13340:17;13336:45;13333:71;;;13384:18;;:::i;:::-;-1:-1:-1;13424:9:1;;13271:168::o;13444:351::-;13646:2;13628:21;;;13685:2;13665:18;;;13658:30;13724:29;13719:2;13704:18;;13697:57;13786:2;13771:18;;13444:351::o;14580:217::-;14620:1;14646;14636:132;;14690:10;14685:3;14681:20;14678:1;14671:31;14725:4;14722:1;14715:15;14753:4;14750:1;14743:15;14636:132;-1:-1:-1;14782:9:1;;14580:217::o;15489:340::-;15691:2;15673:21;;;15730:2;15710:18;;;15703:30;-1:-1:-1;;;15764:2:1;15749:18;;15742:46;15820:2;15805:18;;15489:340::o;20244:411::-;20446:2;20428:21;;;20485:2;20465:18;;;20458:30;20524:34;20519:2;20504:18;;20497:62;-1:-1:-1;;;20590:2:1;20575:18;;20568:45;20645:3;20630:19;;20244:411::o;22295:125::-;22335:4;22363:1;22360;22357:8;22354:34;;;22368:18;;:::i;:::-;-1:-1:-1;22405:9:1;;22295:125::o;22425:346::-;22627:2;22609:21;;;22666:2;22646:18;;;22639:30;-1:-1:-1;;;22700:2:1;22685:18;;22678:52;22762:2;22747:18;;22425:346::o;23196:414::-;23398:2;23380:21;;;23437:2;23417:18;;;23410:30;23476:34;23471:2;23456:18;;23449:62;-1:-1:-1;;;23542:2:1;23527:18;;23520:48;23600:3;23585:19;;23196:414::o;23615:489::-;-1:-1:-1;;;;;23884:15:1;;;23866:34;;23936:15;;23931:2;23916:18;;23909:43;23983:2;23968:18;;23961:34;;;24031:3;24026:2;24011:18;;24004:31;;;23809:4;;24052:46;;24078:19;;24070:6;24052:46;:::i;:::-;24044:54;23615:489;-1:-1:-1;;;;;;23615:489:1:o;24109:249::-;24178:6;24231:2;24219:9;24210:7;24206:23;24202:32;24199:52;;;24247:1;24244;24237:12;24199:52;24279:9;24273:16;24298:30;24322:5;24298:30;:::i
Swarm Source
ipfs://b85669c9aa6b1adae3035a254751a45294191647b1363b3aedf24945340c8164
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.