Overview
TokenID
26
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
LoneWolfStudios
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-02 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error UnableDetermineTokenOwner(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal _currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { if (index >= totalSupply()) revert TokenIndexOutOfBounds(); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 ii) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. assert(false); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken(); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert UnableDetermineTokenOwner(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved(); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer(); } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer(); else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.0; contract LoneWolfStudios is ERC721A, Ownable{ using Strings for uint256; // Supply uint256 public constant MaxSupply = 11222; uint256 public constant SaleSupply = 10111; uint256 public constant TeamSupply = 1111; uint256 public constant AlphaBetaSupply = 1222; // Prices uint256 public PreAlphaPrice = 0.0333 ether; uint256 public Alpha1Price = 0.0555 ether; uint256 public Alpha2Price = 0.0666 ether; uint256 public PreBetaPrice = 0.0555 ether; uint256 public Beta1Price = 0.1 ether; uint256 public Beta2Price = 0.111 ether; uint256 public PrimaryB1Price = 0.155 ether; uint256 public PrimaryB2Price = 0.255 ether; uint256 public PrimaryB3Price = 0.377 ether; uint256 public PrimaryB4Price = 0.505 ether; // Max Mint uint256 public constant PreAlhaMaxMint = 5; uint256 public constant Alha1MaxMint = 10; uint256 public constant Alha2MaxMint = 25; uint256 public constant PreBetaMaxMint = 40; uint256 public constant Beta1MaxMint = 50; uint256 public constant Beta2MaxMint = 100; uint256 public constant PrimaryMaxMint = 100; mapping(address => uint256) public totalPreAlphaMint; mapping(address => uint256) public totalAlpha1Mint; mapping(address => uint256) public totalAlpha2Mint; mapping(address => uint256) public totalPreBetaMint; mapping(address => uint256) public totalBeta1Mint; mapping(address => uint256) public totalBeta2Mint; mapping(address => uint256) public totalPrimaryMint; // Reveal and unreveal CIDs string private baseTokenUri; string public placeholderTokenUri; // Phases bool public PreAlphaSale; bool public Alpha1Sale; bool public Alpha2Sale; bool public PreBetaSale; bool public Beta1Sale; bool public Beta2Sale; bool public PrimaryB1Sale; bool public PrimaryB2Sale; bool public PrimaryB3Sale; bool public PrimaryB4Sale; bool public isRevealed; address[] public whitelistedAddresses; // Name and symbol constructor() ERC721A("Lone Wolf Studios", "LWS"){ } modifier callerIsUser() { require(tx.origin == msg.sender, "Cannot be called by a contract"); _; } function PreAlphaMint(uint256 _quantity) external payable callerIsUser{ require(PreAlphaSale, "Private sale not yet active."); require(isWhitelisted(msg.sender), "user is not whitelisted"); require((totalSupply() + _quantity) <= AlphaBetaSupply, "Beyond max supply"); require(msg.value >= (PreAlphaPrice * _quantity), "Payment is below the price"); totalPreAlphaMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function Alpha1Mint(uint256 _quantity) external payable callerIsUser{ require(Alpha1Sale, "Private sale not yet active."); require(isWhitelisted(msg.sender), "user is not whitelisted"); require((totalSupply() + _quantity) <= AlphaBetaSupply, "Beyond max supply"); require(msg.value >= (Alpha1Price * _quantity), "Payment is below the price"); totalAlpha1Mint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function Alpha2Mint(uint256 _quantity) external payable callerIsUser{ require(Alpha2Sale, "Private sale not yet active."); require((totalSupply() + _quantity) <= AlphaBetaSupply, "Beyond max supply"); require(msg.value >= (Alpha2Price * _quantity), "Payment is below the price"); totalAlpha2Mint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function PreBetaMint(uint256 _quantity) external payable callerIsUser{ require(PreBetaSale, "Private sale not yet active."); require(isWhitelisted(msg.sender), "user is not whitelisted"); require((totalSupply() + _quantity) <= AlphaBetaSupply, "Beyond max supply"); require(msg.value >= (PreBetaPrice * _quantity), "Payment is below the price"); totalPreBetaMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function Beta1Mint(uint256 _quantity) external payable callerIsUser{ require(Beta1Sale, "Private sale not yet active."); require(isWhitelisted(msg.sender), "user is not whitelisted"); require((totalSupply() + _quantity) <= AlphaBetaSupply, "Beyond max supply"); require(msg.value >= (Beta1Price * _quantity), "Payment is below the price"); totalBeta1Mint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function Beta2Mint(uint256 _quantity) external payable callerIsUser{ require(Beta2Sale, "Private sale not yet active."); require((totalSupply() + _quantity) <= AlphaBetaSupply, "Beyond max supply"); require(msg.value >= (Beta2Price * _quantity), "Payment is below the price"); totalBeta2Mint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function PrimaryB1Mint(uint256 _quantity) external payable callerIsUser{ require(PrimaryB1Sale, "Private sale not yet active."); require((totalSupply() + _quantity) <= SaleSupply, "Beyond max supply"); require(msg.value >= (PrimaryB1Price * _quantity), "Payment is below the price"); totalPrimaryMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function PrimaryB2Mint(uint256 _quantity) external payable callerIsUser{ require(PrimaryB2Sale, "Private sale not yet active."); require((totalSupply() + _quantity) <= SaleSupply, "Beyond max supply"); require(msg.value >= (PrimaryB2Price * _quantity), "Payment is below the price"); totalPrimaryMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function PrimaryB3Mint(uint256 _quantity) external payable callerIsUser{ require(PrimaryB3Sale, "Private sale not yet active."); require((totalSupply() + _quantity) <= SaleSupply, "Beyond max supply"); require(msg.value >= (PrimaryB3Price * _quantity), "Payment is below the price"); totalPrimaryMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function PrimaryB4Mint(uint256 _quantity) external payable callerIsUser{ require(PrimaryB4Sale, "Private sale not yet active."); require((totalSupply() + _quantity) <= SaleSupply, "Beyond max supply"); require(msg.value >= (PrimaryB4Price * _quantity), "Payment is below the price"); totalPrimaryMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenUri; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); uint256 trueId = tokenId + 1; if(!isRevealed){ return placeholderTokenUri; } return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : ""; } function airdrop(address _to, uint _quantity) external onlyOwner { require(totalSupply() + _quantity <= MaxSupply, "Reached max Supply"); _safeMint(_to, _quantity); } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function setTokenUri(string memory _baseTokenUri) external onlyOwner{ baseTokenUri = _baseTokenUri; } function setPlaceHolderUri(string memory _placeholderTokenUri) external onlyOwner{ placeholderTokenUri = _placeholderTokenUri; } function togglePreAlphaSale() external onlyOwner{ PreAlphaSale = !PreAlphaSale; } function toggleAlpha1Sale() external onlyOwner{ Alpha1Sale = !Alpha1Sale; } function toggleAlpha2Sale() external onlyOwner{ Alpha2Sale = !Alpha2Sale; } function togglePreBetaSale() external onlyOwner{ PreBetaSale = !PreBetaSale; } function toggleBeta1Sale() external onlyOwner{ Beta1Sale = !Beta1Sale; } function toggleBeta2Sale() external onlyOwner{ Beta2Sale = !Beta2Sale; } function togglePrimaryB1Sale() external onlyOwner{ PrimaryB1Sale = !PrimaryB1Sale; } function togglePrimaryB2Sale() external onlyOwner{ PrimaryB2Sale = !PrimaryB2Sale; } function togglePrimaryB3Sale() external onlyOwner{ PrimaryB3Sale = !PrimaryB3Sale; } function togglePrimaryB4Sale() external onlyOwner{ PrimaryB4Sale = !PrimaryB4Sale; } function toggleReveal() external onlyOwner{ isRevealed = !isRevealed; } function withdraw() external onlyOwner{ payable(msg.sender).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Alha1MaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Alha2MaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"Alpha1Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Alpha1Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Alpha1Sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"Alpha2Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Alpha2Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Alpha2Sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AlphaBetaSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Beta1MaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"Beta1Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Beta1Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Beta1Sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Beta2MaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"Beta2Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Beta2Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Beta2Sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreAlhaMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"PreAlphaMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PreAlphaPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreAlphaSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreBetaMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"PreBetaMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PreBetaPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreBetaSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"PrimaryB1Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PrimaryB1Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PrimaryB1Sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"PrimaryB2Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PrimaryB2Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PrimaryB2Sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"PrimaryB3Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PrimaryB3Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PrimaryB3Sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"PrimaryB4Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PrimaryB4Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PrimaryB4Sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PrimaryMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TeamSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"name":"setPlaceHolderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","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":"toggleAlpha1Sale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleAlpha2Sale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleBeta1Sale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleBeta2Sale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePreAlphaSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePreBetaSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePrimaryB1Sale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePrimaryB2Sale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePrimaryB3Sale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePrimaryB4Sale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"ii","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalAlpha1Mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalAlpha2Mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalBeta1Mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalBeta2Mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPreAlphaMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPreBetaMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPrimaryMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266764e2c6f05400060085566c52cf4b908c00060095566ec9c58de0a8000600a5566c52cf4b908c000600b5567016345785d8a0000600c5567018a59e972118000600d55670226abadc42f8000600e55670389f12621b98000600f5567053b5f80a85280006010556707021ed30b9280006011553480156200008557600080fd5b5060408051808201825260118152704c6f6e6520576f6c662053747564696f7360781b6020808301918252835180850190945260038452624c575360e81b908401528151919291620000da9160019162000169565b508051620000f090600290602084019062000169565b5050506200010d620001076200011360201b60201c565b62000117565b6200024c565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000177906200020f565b90600052602060002090601f0160209004810192826200019b5760008555620001e6565b82601f10620001b657805160ff1916838001178555620001e6565b82800160010185558215620001e6579182015b82811115620001e6578251825591602001919060010190620001c9565b50620001f4929150620001f8565b5090565b5b80821115620001f45760008155600101620001f9565b600181811c908216806200022457607f821691505b602082108114156200024657634e487b7160e01b600052602260045260246000fd5b50919050565b6131d2806200025c6000396000f3fe6080604052600436106104c05760003560e01c806370a0823111610276578063b62460501161014f578063dfe7e7bb116100c1578063ea88395f11610085578063ea88395f14610dbc578063edec5f2714610dcf578063f2fde38b14610def578063f9b34e0a14610e0f578063fc0c69a514610e22578063fe04717414610e3557600080fd5b8063dfe7e7bb14610d28578063e48bec5614610982578063e4c241c114610d3b578063e699ced114610d5d578063e985e9c514610d7357600080fd5b8063cab6f7d811610113578063cab6f7d814610c7f578063cd409f4914610c95578063d04c6ae214610caa578063d630c04b14610ccb578063dc13352a14610ce5578063dc846d4014610cfb57600080fd5b8063b624605014610be9578063b88d4fde14610c0a578063ba4e5c4914610c2a578063c646385914610c4a578063c87b56dd14610c5f57600080fd5b80638da5cb5b116101e8578063a49448d6116101ac578063a49448d614610b45578063a63ec35f14610b5b578063a81cfec914610b70578063a84cf6c414610b86578063b0962c5314610bb3578063b36c128414610bd357600080fd5b80638da5cb5b14610ac7578063911464bb14610ae557806395d89b4114610afa5780639ff8fb5d14610b0f578063a22cb46514610b2557600080fd5b80637f372cd01161023a5780637f372cd014610a1a5780638618443114610a30578063863c837614610a5d57806389c08e6114610a7d5780638af08feb14610a925780638ba4cc3c14610aa757600080fd5b806370a0823114610997578063715018a6146109b75780637289639b146109cc5780637836489f146109e15780637cf90e12146109f757600080fd5b80633a5515cf116103a8578063542a792b1161031a5780635d29d029116102de5780635d29d029146108ee5780635e0e9e0a1461090157806360da72921461092e5780636352211e1461094f5780636cd52bf81461096f5780636fd4059a1461098257600080fd5b8063542a792b1461085757806357b32884146108845780635a75dbb4146108975780635af86ff4146108ac5780635b8ad429146108d957600080fd5b806342842e0e1161036c57806342842e0e1461079f5780634c9457ce146107bf5780634cf5f7a4146107e05780634e798616146107f55780634f6ccce71461081657806354214f691461083657600080fd5b80633a5515cf146107295780633af32abf1461073f5780633c8675411461075f5780633ccfd60b1461077557806341c6adec1461078a57600080fd5b80630f4fc1af116104415780631d5eaeb5116104055780631d5eaeb51461067457806323b872dd146106935780632b0c78fe146106b35780632ed42066146106c95780632f745c59146106f6578063348596a81461071657600080fd5b80630f4fc1af1461060c5780630f813f0d1461061f57806311e28fdf14610634578063139192461461064a57806318160ddd1461065f57600080fd5b806307f8b66d1161048857806307f8b66d14610576578063081812fc14610589578063095ea7b3146105c15780630e813968146105e15780630f2db801146105f657600080fd5b806301ffc9a7146104c557806304f5a1b3146104fa5780630675b7c61461051157806306fdde031461053157806307ad8fc914610553575b600080fd5b3480156104d157600080fd5b506104e56104e0366004612cf5565b610e4a565b60405190151581526020015b60405180910390f35b34801561050657600080fd5b5061050f610eb7565b005b34801561051d57600080fd5b5061050f61052c366004612d2f565b610efe565b34801561053d57600080fd5b50610546610f3f565b6040516104f19190612ed1565b34801561055f57600080fd5b50610568601981565b6040519081526020016104f1565b61050f610584366004612d78565b610fd1565b34801561059557600080fd5b506105a96105a4366004612d78565b6110d3565b6040516001600160a01b0390911681526020016104f1565b3480156105cd57600080fd5b5061050f6105dc366004612c56565b611119565b3480156105ed57600080fd5b5061050f6111a7565b34801561060257600080fd5b5061056861277f81565b61050f61061a366004612d78565b6111f8565b34801561062b57600080fd5b50610568600581565b34801561064057600080fd5b50610568600a5481565b34801561065657600080fd5b50610568602881565b34801561066b57600080fd5b50600054610568565b34801561068057600080fd5b50601b546104e590610100900460ff1681565b34801561069f57600080fd5b5061050f6106ae366004612b62565b6112c1565b3480156106bf57600080fd5b50610568600e5481565b3480156106d557600080fd5b506105686106e4366004612b14565b60156020526000908152604090205481565b34801561070257600080fd5b50610568610711366004612c56565b6112cc565b61050f610724366004612d78565b6113a1565b34801561073557600080fd5b50610568600c5481565b34801561074b57600080fd5b506104e561075a366004612b14565b611469565b34801561076b57600080fd5b5061056860085481565b34801561078157600080fd5b5061050f6114d3565b34801561079657600080fd5b5061050f611529565b3480156107ab57600080fd5b5061050f6107ba366004612b62565b611578565b3480156107cb57600080fd5b50601b546104e590600160301b900460ff1681565b3480156107ec57600080fd5b50610546611593565b34801561080157600080fd5b50601b546104e590600160481b900460ff1681565b34801561082257600080fd5b50610568610831366004612d78565b611621565b34801561084257600080fd5b50601b546104e590600160501b900460ff1681565b34801561086357600080fd5b50610568610872366004612b14565b60166020526000908152604090205481565b61050f610892366004612d78565b611648565b3480156108a357600080fd5b5061050f611734565b3480156108b857600080fd5b506105686108c7366004612b14565b60176020526000908152604090205481565b3480156108e557600080fd5b5061050f61177b565b61050f6108fc366004612d78565b6117c6565b34801561090d57600080fd5b5061056861091c366004612b14565b60126020526000908152604090205481565b34801561093a57600080fd5b50601b546104e590600160381b900460ff1681565b34801561095b57600080fd5b506105a961096a366004612d78565b611851565b61050f61097d366004612d78565b611863565b34801561098e57600080fd5b50610568606481565b3480156109a357600080fd5b506105686109b2366004612b14565b61192e565b3480156109c357600080fd5b5061050f61197c565b3480156109d857600080fd5b5061050f6119b2565b3480156109ed57600080fd5b50610568600d5481565b348015610a0357600080fd5b50601b546104e59065010000000000900460ff1681565b348015610a2657600080fd5b50610568600b5481565b348015610a3c57600080fd5b50610568610a4b366004612b14565b60136020526000908152604090205481565b348015610a6957600080fd5b50601b546104e59062010000900460ff1681565b348015610a8957600080fd5b50610568603281565b348015610a9e57600080fd5b5061050f6119fd565b348015610ab357600080fd5b5061050f610ac2366004612c56565b611a4c565b348015610ad357600080fd5b506007546001600160a01b03166105a9565b348015610af157600080fd5b5061050f611ada565b348015610b0657600080fd5b50610546611b28565b348015610b1b57600080fd5b5061056860105481565b348015610b3157600080fd5b5061050f610b40366004612c1a565b611b37565b348015610b5157600080fd5b50610568600f5481565b348015610b6757600080fd5b5061050f611bcd565b348015610b7c57600080fd5b5061056860115481565b348015610b9257600080fd5b50610568610ba1366004612b14565b60146020526000908152604090205481565b348015610bbf57600080fd5b5061050f610bce366004612d2f565b611c16565b348015610bdf57600080fd5b50610568612bd681565b348015610bf557600080fd5b50601b546104e5906301000000900460ff1681565b348015610c1657600080fd5b5061050f610c25366004612b9e565b611c53565b348015610c3657600080fd5b506105a9610c45366004612d78565b611c8d565b348015610c5657600080fd5b50610568600a81565b348015610c6b57600080fd5b50610546610c7a366004612d78565b611cb7565b348015610c8b57600080fd5b5061056860095481565b348015610ca157600080fd5b5061050f611e3a565b348015610cb657600080fd5b50601b546104e590600160401b900460ff1681565b348015610cd757600080fd5b50601b546104e59060ff1681565b348015610cf157600080fd5b5061056861045781565b348015610d0757600080fd5b50610568610d16366004612b14565b60186020526000908152604090205481565b61050f610d36366004612d78565b611e87565b348015610d4757600080fd5b50601b546104e590640100000000900460ff1681565b348015610d6957600080fd5b506105686104c681565b348015610d7f57600080fd5b506104e5610d8e366004612b2f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61050f610dca366004612d78565b611f75565b348015610ddb57600080fd5b5061050f610dea366004612c80565b612000565b348015610dfb57600080fd5b5061050f610e0a366004612b14565b612042565b61050f610e1d366004612d78565b6120da565b61050f610e30366004612d78565b6121c1565b348015610e4157600080fd5b5061050f61224c565b60006001600160e01b031982166380ac58cd60e01b1480610e7b57506001600160e01b03198216635b5e139f60e01b145b80610e9657506001600160e01b0319821663780e9d6360e01b145b80610eb157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b03163314610eea5760405162461bcd60e51b8152600401610ee190612f52565b60405180910390fd5b601b805460ff19811660ff90911615179055565b6007546001600160a01b03163314610f285760405162461bcd60e51b8152600401610ee190612f52565b8051610f3b90601990602084019061297c565b5050565b606060018054610f4e906130ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7a906130ae565b8015610fc75780601f10610f9c57610100808354040283529160200191610fc7565b820191906000526020600020905b815481529060010190602001808311610faa57829003601f168201915b5050505050905090565b323314610ff05760405162461bcd60e51b8152600401610ee190612fb2565b601b54640100000000900460ff1661101a5760405162461bcd60e51b8152600401610ee190612f1b565b61102333611469565b61103f5760405162461bcd60e51b8152600401610ee190612fe9565b6104c68161104c60005490565b6110569190613020565b11156110745760405162461bcd60e51b8152600401610ee190612f87565b80600c54611082919061304c565b3410156110a15760405162461bcd60e51b8152600401610ee190612ee4565b33600090815260166020526040812080548392906110c0908490613020565b909155506110d09050338261229c565b50565b60006110e0826000541190565b6110fd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061112482611851565b9050806001600160a01b0316836001600160a01b031614156111595760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061117957506111778133610d8e565b155b15611197576040516367d9dca160e11b815260040160405180910390fd5b6111a28383836122b6565b505050565b6007546001600160a01b031633146111d15760405162461bcd60e51b8152600401610ee190612f52565b601b805469ff000000000000000000198116600160481b9182900460ff1615909102179055565b3233146112175760405162461bcd60e51b8152600401610ee190612fb2565b601b54600160401b900460ff166112405760405162461bcd60e51b8152600401610ee190612f1b565b61277f8161124d60005490565b6112579190613020565b11156112755760405162461bcd60e51b8152600401610ee190612f87565b80601054611283919061304c565b3410156112a25760405162461bcd60e51b8152600401610ee190612ee4565b33600090815260186020526040812080548392906110c0908490613020565b6111a2838383612312565b60006112d78361192e565b82106112f6576040516306ed618760e11b815260040160405180910390fd5b600080549080805b8381101561138f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561135157805192505b876001600160a01b0316836001600160a01b03161415611386578684141561137f57509350610eb192505050565b6001909301925b506001016112fe565b50611398613118565b50505092915050565b3233146113c05760405162461bcd60e51b8152600401610ee190612fb2565b601b5462010000900460ff166113e85760405162461bcd60e51b8152600401610ee190612f1b565b6104c6816113f560005490565b6113ff9190613020565b111561141d5760405162461bcd60e51b8152600401610ee190612f87565b80600a5461142b919061304c565b34101561144a5760405162461bcd60e51b8152600401610ee190612ee4565b33600090815260146020526040812080548392906110c0908490613020565b6000805b601c548110156114ca57826001600160a01b0316601c82815481106114945761149461315a565b6000918252602090912001546001600160a01b031614156114b85750600192915050565b806114c2816130e9565b91505061146d565b50600092915050565b6007546001600160a01b031633146114fd5760405162461bcd60e51b8152600401610ee190612f52565b60405133904780156108fc02916000818181858888f193505050501580156110d0573d6000803e3d6000fd5b6007546001600160a01b031633146115535760405162461bcd60e51b8152600401610ee190612f52565b601b805465ff0000000000198116650100000000009182900460ff1615909102179055565b6111a283838360405180602001604052806000815250611c53565b601a80546115a0906130ae565b80601f01602080910402602001604051908101604052809291908181526020018280546115cc906130ae565b80156116195780601f106115ee57610100808354040283529160200191611619565b820191906000526020600020905b8154815290600101906020018083116115fc57829003601f168201915b505050505081565b600080548210611644576040516329c8c00760e21b815260040160405180910390fd5b5090565b3233146116675760405162461bcd60e51b8152600401610ee190612fb2565b601b54610100900460ff1661168e5760405162461bcd60e51b8152600401610ee190612f1b565b61169733611469565b6116b35760405162461bcd60e51b8152600401610ee190612fe9565b6104c6816116c060005490565b6116ca9190613020565b11156116e85760405162461bcd60e51b8152600401610ee190612f87565b806009546116f6919061304c565b3410156117155760405162461bcd60e51b8152600401610ee190612ee4565b33600090815260136020526040812080548392906110c0908490613020565b6007546001600160a01b0316331461175e5760405162461bcd60e51b8152600401610ee190612f52565b601b805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146117a55760405162461bcd60e51b8152600401610ee190612f52565b601b805460ff60501b198116600160501b9182900460ff1615909102179055565b3233146117e55760405162461bcd60e51b8152600401610ee190612fb2565b601b54600160381b900460ff1661180e5760405162461bcd60e51b8152600401610ee190612f1b565b61277f8161181b60005490565b6118259190613020565b11156118435760405162461bcd60e51b8152600401610ee190612f87565b80600f54611283919061304c565b600061185c82612531565b5192915050565b3233146118825760405162461bcd60e51b8152600401610ee190612fb2565b601b5465010000000000900460ff166118ad5760405162461bcd60e51b8152600401610ee190612f1b565b6104c6816118ba60005490565b6118c49190613020565b11156118e25760405162461bcd60e51b8152600401610ee190612f87565b80600d546118f0919061304c565b34101561190f5760405162461bcd60e51b8152600401610ee190612ee4565b33600090815260176020526040812080548392906110c0908490613020565b60006001600160a01b038216611957576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146119a65760405162461bcd60e51b8152600401610ee190612f52565b6119b060006125c6565b565b6007546001600160a01b031633146119dc5760405162461bcd60e51b8152600401610ee190612f52565b601b805463ff00000019811663010000009182900460ff1615909102179055565b6007546001600160a01b03163314611a275760405162461bcd60e51b8152600401610ee190612f52565b601b805467ff00000000000000198116600160381b9182900460ff1615909102179055565b6007546001600160a01b03163314611a765760405162461bcd60e51b8152600401610ee190612f52565b612bd681611a8360005490565b611a8d9190613020565b1115611ad05760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820537570706c7960701b6044820152606401610ee1565b610f3b828261229c565b6007546001600160a01b03163314611b045760405162461bcd60e51b8152600401610ee190612f52565b601b805466ff000000000000198116600160301b9182900460ff1615909102179055565b606060028054610f4e906130ae565b6001600160a01b038216331415611b615760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b03163314611bf75760405162461bcd60e51b8152600401610ee190612f52565b601b805462ff0000198116620100009182900460ff1615909102179055565b6007546001600160a01b03163314611c405760405162461bcd60e51b8152600401610ee190612f52565b8051610f3b90601a90602084019061297c565b611c5e848484612312565b611c6a84848484612618565b611c87576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b601c8181548110611c9d57600080fd5b6000918252602090912001546001600160a01b0316905081565b6060611cc4826000541190565b611d285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ee1565b6000611d35836001613020565b601b54909150600160501b900460ff16611ddc57601a8054611d56906130ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611d82906130ae565b8015611dcf5780601f10611da457610100808354040283529160200191611dcf565b820191906000526020600020905b815481529060010190602001808311611db257829003601f168201915b5050505050915050919050565b600060198054611deb906130ae565b905011611e075760405180602001604052806000815250611e33565b6019611e1282612727565b604051602001611e23929190612dd9565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611e645760405162461bcd60e51b8152600401610ee190612f52565b601b805464ff000000001981166401000000009182900460ff1615909102179055565b323314611ea65760405162461bcd60e51b8152600401610ee190612fb2565b601b546301000000900460ff16611ecf5760405162461bcd60e51b8152600401610ee190612f1b565b611ed833611469565b611ef45760405162461bcd60e51b8152600401610ee190612fe9565b6104c681611f0160005490565b611f0b9190613020565b1115611f295760405162461bcd60e51b8152600401610ee190612f87565b80600b54611f37919061304c565b341015611f565760405162461bcd60e51b8152600401610ee190612ee4565b33600090815260156020526040812080548392906110c0908490613020565b323314611f945760405162461bcd60e51b8152600401610ee190612fb2565b601b54600160481b900460ff16611fbd5760405162461bcd60e51b8152600401610ee190612f1b565b61277f81611fca60005490565b611fd49190613020565b1115611ff25760405162461bcd60e51b8152600401610ee190612f87565b80601154611283919061304c565b6007546001600160a01b0316331461202a5760405162461bcd60e51b8152600401610ee190612f52565b612036601c60006129fc565b6111a2601c8383612a1a565b6007546001600160a01b0316331461206c5760405162461bcd60e51b8152600401610ee190612f52565b6001600160a01b0381166120d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ee1565b6110d0816125c6565b3233146120f95760405162461bcd60e51b8152600401610ee190612fb2565b601b5460ff1661211b5760405162461bcd60e51b8152600401610ee190612f1b565b61212433611469565b6121405760405162461bcd60e51b8152600401610ee190612fe9565b6104c68161214d60005490565b6121579190613020565b11156121755760405162461bcd60e51b8152600401610ee190612f87565b80600854612183919061304c565b3410156121a25760405162461bcd60e51b8152600401610ee190612ee4565b33600090815260126020526040812080548392906110c0908490613020565b3233146121e05760405162461bcd60e51b8152600401610ee190612fb2565b601b54600160301b900460ff166122095760405162461bcd60e51b8152600401610ee190612f1b565b61277f8161221660005490565b6122209190613020565b111561223e5760405162461bcd60e51b8152600401610ee190612f87565b80600e54611283919061304c565b6007546001600160a01b031633146122765760405162461bcd60e51b8152600401610ee190612f52565b601b805468ff0000000000000000198116600160401b9182900460ff1615909102179055565b610f3b828260405180602001604052806000815250612825565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061231d82612531565b80519091506000906001600160a01b0316336001600160a01b03161480612354575033612349846110d3565b6001600160a01b0316145b80612366575081516123669033610d8e565b90508061238657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146123bb5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166123e257604051633a954ecd60e21b815260040160405180910390fd5b6123f260008484600001516122b6565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166124e75761249a816000541190565b156124e7578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152612550826000541190565b61256d57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156125bc579392505050565b506000190161256f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561271b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061265c903390899088908890600401612e94565b602060405180830381600087803b15801561267657600080fd5b505af19250505080156126a6575060408051601f3d908101601f191682019092526126a391810190612d12565b60015b612701573d8080156126d4576040519150601f19603f3d011682016040523d82523d6000602084013e6126d9565b606091505b5080516126f9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061271f565b5060015b949350505050565b60608161274b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612775578061275f816130e9565b915061276e9050600a83613038565b915061274f565b60008167ffffffffffffffff81111561279057612790613170565b6040519080825280601f01601f1916602001820160405280156127ba576020820181803683370190505b5090505b841561271f576127cf60018361306b565b91506127dc600a86613104565b6127e7906030613020565b60f81b8183815181106127fc576127fc61315a565b60200101906001600160f81b031916908160001a90535061281e600a86613038565b94506127be565b6111a283838360016000546001600160a01b03851661285657604051622e076360e81b815260040160405180910390fd5b836128745760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156129735760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561294957506129476000888488612618565b155b15612967576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016128f2565b5060005561252a565b828054612988906130ae565b90600052602060002090601f0160209004810192826129aa57600085556129f0565b82601f106129c357805160ff19168380011785556129f0565b828001600101855582156129f0579182015b828111156129f05782518255916020019190600101906129d5565b50611644929150612a6d565b50805460008255906000526020600020908101906110d09190612a6d565b8280548282559060005260206000209081019282156129f0579160200282015b828111156129f05781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612a3a565b5b808211156116445760008155600101612a6e565b600067ffffffffffffffff80841115612a9d57612a9d613170565b604051601f8501601f19908116603f01168101908282118183101715612ac557612ac5613170565b81604052809350858152868686011115612ade57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612b0f57600080fd5b919050565b600060208284031215612b2657600080fd5b611e3382612af8565b60008060408385031215612b4257600080fd5b612b4b83612af8565b9150612b5960208401612af8565b90509250929050565b600080600060608486031215612b7757600080fd5b612b8084612af8565b9250612b8e60208501612af8565b9150604084013590509250925092565b60008060008060808587031215612bb457600080fd5b612bbd85612af8565b9350612bcb60208601612af8565b925060408501359150606085013567ffffffffffffffff811115612bee57600080fd5b8501601f81018713612bff57600080fd5b612c0e87823560208401612a82565b91505092959194509250565b60008060408385031215612c2d57600080fd5b612c3683612af8565b915060208301358015158114612c4b57600080fd5b809150509250929050565b60008060408385031215612c6957600080fd5b612c7283612af8565b946020939093013593505050565b60008060208385031215612c9357600080fd5b823567ffffffffffffffff80821115612cab57600080fd5b818501915085601f830112612cbf57600080fd5b813581811115612cce57600080fd5b8660208260051b8501011115612ce357600080fd5b60209290920196919550909350505050565b600060208284031215612d0757600080fd5b8135611e3381613186565b600060208284031215612d2457600080fd5b8151611e3381613186565b600060208284031215612d4157600080fd5b813567ffffffffffffffff811115612d5857600080fd5b8201601f81018413612d6957600080fd5b61271f84823560208401612a82565b600060208284031215612d8a57600080fd5b5035919050565b60008151808452612da9816020860160208601613082565b601f01601f19169290920160200192915050565b60008151612dcf818560208601613082565b9290920192915050565b600080845481600182811c915080831680612df557607f831692505b6020808410821415612e1557634e487b7160e01b86526022600452602486fd5b818015612e295760018114612e3a57612e67565b60ff19861689528489019650612e67565b60008b81526020902060005b86811015612e5f5781548b820152908501908301612e46565b505084890196505b505050505050612e8b612e7a8286612dbd565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ec790830184612d91565b9695505050505050565b602081526000611e336020830184612d91565b6020808252601a908201527f5061796d656e742069732062656c6f7720746865207072696365000000000000604082015260600190565b6020808252601c908201527f507269766174652073616c65206e6f7420796574206163746976652e00000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601190820152704265796f6e64206d617820737570706c7960781b604082015260600190565b6020808252601e908201527f43616e6e6f742062652063616c6c6564206279206120636f6e74726163740000604082015260600190565b60208082526017908201527f75736572206973206e6f742077686974656c6973746564000000000000000000604082015260600190565b600082198211156130335761303361312e565b500190565b60008261304757613047613144565b500490565b60008160001904831182151516156130665761306661312e565b500290565b60008282101561307d5761307d61312e565b500390565b60005b8381101561309d578181015183820152602001613085565b83811115611c875750506000910152565b600181811c908216806130c257607f821691505b602082108114156130e357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130fd576130fd61312e565b5060010190565b60008261311357613113613144565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110d057600080fdfea2646970667358221220750e2563aa043b25c75c6ee4e4aced47c4ea821220587c0276ca94043487dc4a64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106104c05760003560e01c806370a0823111610276578063b62460501161014f578063dfe7e7bb116100c1578063ea88395f11610085578063ea88395f14610dbc578063edec5f2714610dcf578063f2fde38b14610def578063f9b34e0a14610e0f578063fc0c69a514610e22578063fe04717414610e3557600080fd5b8063dfe7e7bb14610d28578063e48bec5614610982578063e4c241c114610d3b578063e699ced114610d5d578063e985e9c514610d7357600080fd5b8063cab6f7d811610113578063cab6f7d814610c7f578063cd409f4914610c95578063d04c6ae214610caa578063d630c04b14610ccb578063dc13352a14610ce5578063dc846d4014610cfb57600080fd5b8063b624605014610be9578063b88d4fde14610c0a578063ba4e5c4914610c2a578063c646385914610c4a578063c87b56dd14610c5f57600080fd5b80638da5cb5b116101e8578063a49448d6116101ac578063a49448d614610b45578063a63ec35f14610b5b578063a81cfec914610b70578063a84cf6c414610b86578063b0962c5314610bb3578063b36c128414610bd357600080fd5b80638da5cb5b14610ac7578063911464bb14610ae557806395d89b4114610afa5780639ff8fb5d14610b0f578063a22cb46514610b2557600080fd5b80637f372cd01161023a5780637f372cd014610a1a5780638618443114610a30578063863c837614610a5d57806389c08e6114610a7d5780638af08feb14610a925780638ba4cc3c14610aa757600080fd5b806370a0823114610997578063715018a6146109b75780637289639b146109cc5780637836489f146109e15780637cf90e12146109f757600080fd5b80633a5515cf116103a8578063542a792b1161031a5780635d29d029116102de5780635d29d029146108ee5780635e0e9e0a1461090157806360da72921461092e5780636352211e1461094f5780636cd52bf81461096f5780636fd4059a1461098257600080fd5b8063542a792b1461085757806357b32884146108845780635a75dbb4146108975780635af86ff4146108ac5780635b8ad429146108d957600080fd5b806342842e0e1161036c57806342842e0e1461079f5780634c9457ce146107bf5780634cf5f7a4146107e05780634e798616146107f55780634f6ccce71461081657806354214f691461083657600080fd5b80633a5515cf146107295780633af32abf1461073f5780633c8675411461075f5780633ccfd60b1461077557806341c6adec1461078a57600080fd5b80630f4fc1af116104415780631d5eaeb5116104055780631d5eaeb51461067457806323b872dd146106935780632b0c78fe146106b35780632ed42066146106c95780632f745c59146106f6578063348596a81461071657600080fd5b80630f4fc1af1461060c5780630f813f0d1461061f57806311e28fdf14610634578063139192461461064a57806318160ddd1461065f57600080fd5b806307f8b66d1161048857806307f8b66d14610576578063081812fc14610589578063095ea7b3146105c15780630e813968146105e15780630f2db801146105f657600080fd5b806301ffc9a7146104c557806304f5a1b3146104fa5780630675b7c61461051157806306fdde031461053157806307ad8fc914610553575b600080fd5b3480156104d157600080fd5b506104e56104e0366004612cf5565b610e4a565b60405190151581526020015b60405180910390f35b34801561050657600080fd5b5061050f610eb7565b005b34801561051d57600080fd5b5061050f61052c366004612d2f565b610efe565b34801561053d57600080fd5b50610546610f3f565b6040516104f19190612ed1565b34801561055f57600080fd5b50610568601981565b6040519081526020016104f1565b61050f610584366004612d78565b610fd1565b34801561059557600080fd5b506105a96105a4366004612d78565b6110d3565b6040516001600160a01b0390911681526020016104f1565b3480156105cd57600080fd5b5061050f6105dc366004612c56565b611119565b3480156105ed57600080fd5b5061050f6111a7565b34801561060257600080fd5b5061056861277f81565b61050f61061a366004612d78565b6111f8565b34801561062b57600080fd5b50610568600581565b34801561064057600080fd5b50610568600a5481565b34801561065657600080fd5b50610568602881565b34801561066b57600080fd5b50600054610568565b34801561068057600080fd5b50601b546104e590610100900460ff1681565b34801561069f57600080fd5b5061050f6106ae366004612b62565b6112c1565b3480156106bf57600080fd5b50610568600e5481565b3480156106d557600080fd5b506105686106e4366004612b14565b60156020526000908152604090205481565b34801561070257600080fd5b50610568610711366004612c56565b6112cc565b61050f610724366004612d78565b6113a1565b34801561073557600080fd5b50610568600c5481565b34801561074b57600080fd5b506104e561075a366004612b14565b611469565b34801561076b57600080fd5b5061056860085481565b34801561078157600080fd5b5061050f6114d3565b34801561079657600080fd5b5061050f611529565b3480156107ab57600080fd5b5061050f6107ba366004612b62565b611578565b3480156107cb57600080fd5b50601b546104e590600160301b900460ff1681565b3480156107ec57600080fd5b50610546611593565b34801561080157600080fd5b50601b546104e590600160481b900460ff1681565b34801561082257600080fd5b50610568610831366004612d78565b611621565b34801561084257600080fd5b50601b546104e590600160501b900460ff1681565b34801561086357600080fd5b50610568610872366004612b14565b60166020526000908152604090205481565b61050f610892366004612d78565b611648565b3480156108a357600080fd5b5061050f611734565b3480156108b857600080fd5b506105686108c7366004612b14565b60176020526000908152604090205481565b3480156108e557600080fd5b5061050f61177b565b61050f6108fc366004612d78565b6117c6565b34801561090d57600080fd5b5061056861091c366004612b14565b60126020526000908152604090205481565b34801561093a57600080fd5b50601b546104e590600160381b900460ff1681565b34801561095b57600080fd5b506105a961096a366004612d78565b611851565b61050f61097d366004612d78565b611863565b34801561098e57600080fd5b50610568606481565b3480156109a357600080fd5b506105686109b2366004612b14565b61192e565b3480156109c357600080fd5b5061050f61197c565b3480156109d857600080fd5b5061050f6119b2565b3480156109ed57600080fd5b50610568600d5481565b348015610a0357600080fd5b50601b546104e59065010000000000900460ff1681565b348015610a2657600080fd5b50610568600b5481565b348015610a3c57600080fd5b50610568610a4b366004612b14565b60136020526000908152604090205481565b348015610a6957600080fd5b50601b546104e59062010000900460ff1681565b348015610a8957600080fd5b50610568603281565b348015610a9e57600080fd5b5061050f6119fd565b348015610ab357600080fd5b5061050f610ac2366004612c56565b611a4c565b348015610ad357600080fd5b506007546001600160a01b03166105a9565b348015610af157600080fd5b5061050f611ada565b348015610b0657600080fd5b50610546611b28565b348015610b1b57600080fd5b5061056860105481565b348015610b3157600080fd5b5061050f610b40366004612c1a565b611b37565b348015610b5157600080fd5b50610568600f5481565b348015610b6757600080fd5b5061050f611bcd565b348015610b7c57600080fd5b5061056860115481565b348015610b9257600080fd5b50610568610ba1366004612b14565b60146020526000908152604090205481565b348015610bbf57600080fd5b5061050f610bce366004612d2f565b611c16565b348015610bdf57600080fd5b50610568612bd681565b348015610bf557600080fd5b50601b546104e5906301000000900460ff1681565b348015610c1657600080fd5b5061050f610c25366004612b9e565b611c53565b348015610c3657600080fd5b506105a9610c45366004612d78565b611c8d565b348015610c5657600080fd5b50610568600a81565b348015610c6b57600080fd5b50610546610c7a366004612d78565b611cb7565b348015610c8b57600080fd5b5061056860095481565b348015610ca157600080fd5b5061050f611e3a565b348015610cb657600080fd5b50601b546104e590600160401b900460ff1681565b348015610cd757600080fd5b50601b546104e59060ff1681565b348015610cf157600080fd5b5061056861045781565b348015610d0757600080fd5b50610568610d16366004612b14565b60186020526000908152604090205481565b61050f610d36366004612d78565b611e87565b348015610d4757600080fd5b50601b546104e590640100000000900460ff1681565b348015610d6957600080fd5b506105686104c681565b348015610d7f57600080fd5b506104e5610d8e366004612b2f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61050f610dca366004612d78565b611f75565b348015610ddb57600080fd5b5061050f610dea366004612c80565b612000565b348015610dfb57600080fd5b5061050f610e0a366004612b14565b612042565b61050f610e1d366004612d78565b6120da565b61050f610e30366004612d78565b6121c1565b348015610e4157600080fd5b5061050f61224c565b60006001600160e01b031982166380ac58cd60e01b1480610e7b57506001600160e01b03198216635b5e139f60e01b145b80610e9657506001600160e01b0319821663780e9d6360e01b145b80610eb157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b03163314610eea5760405162461bcd60e51b8152600401610ee190612f52565b60405180910390fd5b601b805460ff19811660ff90911615179055565b6007546001600160a01b03163314610f285760405162461bcd60e51b8152600401610ee190612f52565b8051610f3b90601990602084019061297c565b5050565b606060018054610f4e906130ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7a906130ae565b8015610fc75780601f10610f9c57610100808354040283529160200191610fc7565b820191906000526020600020905b815481529060010190602001808311610faa57829003601f168201915b5050505050905090565b323314610ff05760405162461bcd60e51b8152600401610ee190612fb2565b601b54640100000000900460ff1661101a5760405162461bcd60e51b8152600401610ee190612f1b565b61102333611469565b61103f5760405162461bcd60e51b8152600401610ee190612fe9565b6104c68161104c60005490565b6110569190613020565b11156110745760405162461bcd60e51b8152600401610ee190612f87565b80600c54611082919061304c565b3410156110a15760405162461bcd60e51b8152600401610ee190612ee4565b33600090815260166020526040812080548392906110c0908490613020565b909155506110d09050338261229c565b50565b60006110e0826000541190565b6110fd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061112482611851565b9050806001600160a01b0316836001600160a01b031614156111595760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061117957506111778133610d8e565b155b15611197576040516367d9dca160e11b815260040160405180910390fd5b6111a28383836122b6565b505050565b6007546001600160a01b031633146111d15760405162461bcd60e51b8152600401610ee190612f52565b601b805469ff000000000000000000198116600160481b9182900460ff1615909102179055565b3233146112175760405162461bcd60e51b8152600401610ee190612fb2565b601b54600160401b900460ff166112405760405162461bcd60e51b8152600401610ee190612f1b565b61277f8161124d60005490565b6112579190613020565b11156112755760405162461bcd60e51b8152600401610ee190612f87565b80601054611283919061304c565b3410156112a25760405162461bcd60e51b8152600401610ee190612ee4565b33600090815260186020526040812080548392906110c0908490613020565b6111a2838383612312565b60006112d78361192e565b82106112f6576040516306ed618760e11b815260040160405180910390fd5b600080549080805b8381101561138f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561135157805192505b876001600160a01b0316836001600160a01b03161415611386578684141561137f57509350610eb192505050565b6001909301925b506001016112fe565b50611398613118565b50505092915050565b3233146113c05760405162461bcd60e51b8152600401610ee190612fb2565b601b5462010000900460ff166113e85760405162461bcd60e51b8152600401610ee190612f1b565b6104c6816113f560005490565b6113ff9190613020565b111561141d5760405162461bcd60e51b8152600401610ee190612f87565b80600a5461142b919061304c565b34101561144a5760405162461bcd60e51b8152600401610ee190612ee4565b33600090815260146020526040812080548392906110c0908490613020565b6000805b601c548110156114ca57826001600160a01b0316601c82815481106114945761149461315a565b6000918252602090912001546001600160a01b031614156114b85750600192915050565b806114c2816130e9565b91505061146d565b50600092915050565b6007546001600160a01b031633146114fd5760405162461bcd60e51b8152600401610ee190612f52565b60405133904780156108fc02916000818181858888f193505050501580156110d0573d6000803e3d6000fd5b6007546001600160a01b031633146115535760405162461bcd60e51b8152600401610ee190612f52565b601b805465ff0000000000198116650100000000009182900460ff1615909102179055565b6111a283838360405180602001604052806000815250611c53565b601a80546115a0906130ae565b80601f01602080910402602001604051908101604052809291908181526020018280546115cc906130ae565b80156116195780601f106115ee57610100808354040283529160200191611619565b820191906000526020600020905b8154815290600101906020018083116115fc57829003601f168201915b505050505081565b600080548210611644576040516329c8c00760e21b815260040160405180910390fd5b5090565b3233146116675760405162461bcd60e51b8152600401610ee190612fb2565b601b54610100900460ff1661168e5760405162461bcd60e51b8152600401610ee190612f1b565b61169733611469565b6116b35760405162461bcd60e51b8152600401610ee190612fe9565b6104c6816116c060005490565b6116ca9190613020565b11156116e85760405162461bcd60e51b8152600401610ee190612f87565b806009546116f6919061304c565b3410156117155760405162461bcd60e51b8152600401610ee190612ee4565b33600090815260136020526040812080548392906110c0908490613020565b6007546001600160a01b0316331461175e5760405162461bcd60e51b8152600401610ee190612f52565b601b805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146117a55760405162461bcd60e51b8152600401610ee190612f52565b601b805460ff60501b198116600160501b9182900460ff1615909102179055565b3233146117e55760405162461bcd60e51b8152600401610ee190612fb2565b601b54600160381b900460ff1661180e5760405162461bcd60e51b8152600401610ee190612f1b565b61277f8161181b60005490565b6118259190613020565b11156118435760405162461bcd60e51b8152600401610ee190612f87565b80600f54611283919061304c565b600061185c82612531565b5192915050565b3233146118825760405162461bcd60e51b8152600401610ee190612fb2565b601b5465010000000000900460ff166118ad5760405162461bcd60e51b8152600401610ee190612f1b565b6104c6816118ba60005490565b6118c49190613020565b11156118e25760405162461bcd60e51b8152600401610ee190612f87565b80600d546118f0919061304c565b34101561190f5760405162461bcd60e51b8152600401610ee190612ee4565b33600090815260176020526040812080548392906110c0908490613020565b60006001600160a01b038216611957576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146119a65760405162461bcd60e51b8152600401610ee190612f52565b6119b060006125c6565b565b6007546001600160a01b031633146119dc5760405162461bcd60e51b8152600401610ee190612f52565b601b805463ff00000019811663010000009182900460ff1615909102179055565b6007546001600160a01b03163314611a275760405162461bcd60e51b8152600401610ee190612f52565b601b805467ff00000000000000198116600160381b9182900460ff1615909102179055565b6007546001600160a01b03163314611a765760405162461bcd60e51b8152600401610ee190612f52565b612bd681611a8360005490565b611a8d9190613020565b1115611ad05760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820537570706c7960701b6044820152606401610ee1565b610f3b828261229c565b6007546001600160a01b03163314611b045760405162461bcd60e51b8152600401610ee190612f52565b601b805466ff000000000000198116600160301b9182900460ff1615909102179055565b606060028054610f4e906130ae565b6001600160a01b038216331415611b615760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b03163314611bf75760405162461bcd60e51b8152600401610ee190612f52565b601b805462ff0000198116620100009182900460ff1615909102179055565b6007546001600160a01b03163314611c405760405162461bcd60e51b8152600401610ee190612f52565b8051610f3b90601a90602084019061297c565b611c5e848484612312565b611c6a84848484612618565b611c87576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b601c8181548110611c9d57600080fd5b6000918252602090912001546001600160a01b0316905081565b6060611cc4826000541190565b611d285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ee1565b6000611d35836001613020565b601b54909150600160501b900460ff16611ddc57601a8054611d56906130ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611d82906130ae565b8015611dcf5780601f10611da457610100808354040283529160200191611dcf565b820191906000526020600020905b815481529060010190602001808311611db257829003601f168201915b5050505050915050919050565b600060198054611deb906130ae565b905011611e075760405180602001604052806000815250611e33565b6019611e1282612727565b604051602001611e23929190612dd9565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611e645760405162461bcd60e51b8152600401610ee190612f52565b601b805464ff000000001981166401000000009182900460ff1615909102179055565b323314611ea65760405162461bcd60e51b8152600401610ee190612fb2565b601b546301000000900460ff16611ecf5760405162461bcd60e51b8152600401610ee190612f1b565b611ed833611469565b611ef45760405162461bcd60e51b8152600401610ee190612fe9565b6104c681611f0160005490565b611f0b9190613020565b1115611f295760405162461bcd60e51b8152600401610ee190612f87565b80600b54611f37919061304c565b341015611f565760405162461bcd60e51b8152600401610ee190612ee4565b33600090815260156020526040812080548392906110c0908490613020565b323314611f945760405162461bcd60e51b8152600401610ee190612fb2565b601b54600160481b900460ff16611fbd5760405162461bcd60e51b8152600401610ee190612f1b565b61277f81611fca60005490565b611fd49190613020565b1115611ff25760405162461bcd60e51b8152600401610ee190612f87565b80601154611283919061304c565b6007546001600160a01b0316331461202a5760405162461bcd60e51b8152600401610ee190612f52565b612036601c60006129fc565b6111a2601c8383612a1a565b6007546001600160a01b0316331461206c5760405162461bcd60e51b8152600401610ee190612f52565b6001600160a01b0381166120d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ee1565b6110d0816125c6565b3233146120f95760405162461bcd60e51b8152600401610ee190612fb2565b601b5460ff1661211b5760405162461bcd60e51b8152600401610ee190612f1b565b61212433611469565b6121405760405162461bcd60e51b8152600401610ee190612fe9565b6104c68161214d60005490565b6121579190613020565b11156121755760405162461bcd60e51b8152600401610ee190612f87565b80600854612183919061304c565b3410156121a25760405162461bcd60e51b8152600401610ee190612ee4565b33600090815260126020526040812080548392906110c0908490613020565b3233146121e05760405162461bcd60e51b8152600401610ee190612fb2565b601b54600160301b900460ff166122095760405162461bcd60e51b8152600401610ee190612f1b565b61277f8161221660005490565b6122209190613020565b111561223e5760405162461bcd60e51b8152600401610ee190612f87565b80600e54611283919061304c565b6007546001600160a01b031633146122765760405162461bcd60e51b8152600401610ee190612f52565b601b805468ff0000000000000000198116600160401b9182900460ff1615909102179055565b610f3b828260405180602001604052806000815250612825565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061231d82612531565b80519091506000906001600160a01b0316336001600160a01b03161480612354575033612349846110d3565b6001600160a01b0316145b80612366575081516123669033610d8e565b90508061238657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146123bb5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166123e257604051633a954ecd60e21b815260040160405180910390fd5b6123f260008484600001516122b6565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166124e75761249a816000541190565b156124e7578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152612550826000541190565b61256d57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156125bc579392505050565b506000190161256f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561271b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061265c903390899088908890600401612e94565b602060405180830381600087803b15801561267657600080fd5b505af19250505080156126a6575060408051601f3d908101601f191682019092526126a391810190612d12565b60015b612701573d8080156126d4576040519150601f19603f3d011682016040523d82523d6000602084013e6126d9565b606091505b5080516126f9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061271f565b5060015b949350505050565b60608161274b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612775578061275f816130e9565b915061276e9050600a83613038565b915061274f565b60008167ffffffffffffffff81111561279057612790613170565b6040519080825280601f01601f1916602001820160405280156127ba576020820181803683370190505b5090505b841561271f576127cf60018361306b565b91506127dc600a86613104565b6127e7906030613020565b60f81b8183815181106127fc576127fc61315a565b60200101906001600160f81b031916908160001a90535061281e600a86613038565b94506127be565b6111a283838360016000546001600160a01b03851661285657604051622e076360e81b815260040160405180910390fd5b836128745760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156129735760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561294957506129476000888488612618565b155b15612967576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016128f2565b5060005561252a565b828054612988906130ae565b90600052602060002090601f0160209004810192826129aa57600085556129f0565b82601f106129c357805160ff19168380011785556129f0565b828001600101855582156129f0579182015b828111156129f05782518255916020019190600101906129d5565b50611644929150612a6d565b50805460008255906000526020600020908101906110d09190612a6d565b8280548282559060005260206000209081019282156129f0579160200282015b828111156129f05781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612a3a565b5b808211156116445760008155600101612a6e565b600067ffffffffffffffff80841115612a9d57612a9d613170565b604051601f8501601f19908116603f01168101908282118183101715612ac557612ac5613170565b81604052809350858152868686011115612ade57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612b0f57600080fd5b919050565b600060208284031215612b2657600080fd5b611e3382612af8565b60008060408385031215612b4257600080fd5b612b4b83612af8565b9150612b5960208401612af8565b90509250929050565b600080600060608486031215612b7757600080fd5b612b8084612af8565b9250612b8e60208501612af8565b9150604084013590509250925092565b60008060008060808587031215612bb457600080fd5b612bbd85612af8565b9350612bcb60208601612af8565b925060408501359150606085013567ffffffffffffffff811115612bee57600080fd5b8501601f81018713612bff57600080fd5b612c0e87823560208401612a82565b91505092959194509250565b60008060408385031215612c2d57600080fd5b612c3683612af8565b915060208301358015158114612c4b57600080fd5b809150509250929050565b60008060408385031215612c6957600080fd5b612c7283612af8565b946020939093013593505050565b60008060208385031215612c9357600080fd5b823567ffffffffffffffff80821115612cab57600080fd5b818501915085601f830112612cbf57600080fd5b813581811115612cce57600080fd5b8660208260051b8501011115612ce357600080fd5b60209290920196919550909350505050565b600060208284031215612d0757600080fd5b8135611e3381613186565b600060208284031215612d2457600080fd5b8151611e3381613186565b600060208284031215612d4157600080fd5b813567ffffffffffffffff811115612d5857600080fd5b8201601f81018413612d6957600080fd5b61271f84823560208401612a82565b600060208284031215612d8a57600080fd5b5035919050565b60008151808452612da9816020860160208601613082565b601f01601f19169290920160200192915050565b60008151612dcf818560208601613082565b9290920192915050565b600080845481600182811c915080831680612df557607f831692505b6020808410821415612e1557634e487b7160e01b86526022600452602486fd5b818015612e295760018114612e3a57612e67565b60ff19861689528489019650612e67565b60008b81526020902060005b86811015612e5f5781548b820152908501908301612e46565b505084890196505b505050505050612e8b612e7a8286612dbd565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ec790830184612d91565b9695505050505050565b602081526000611e336020830184612d91565b6020808252601a908201527f5061796d656e742069732062656c6f7720746865207072696365000000000000604082015260600190565b6020808252601c908201527f507269766174652073616c65206e6f7420796574206163746976652e00000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601190820152704265796f6e64206d617820737570706c7960781b604082015260600190565b6020808252601e908201527f43616e6e6f742062652063616c6c6564206279206120636f6e74726163740000604082015260600190565b60208082526017908201527f75736572206973206e6f742077686974656c6973746564000000000000000000604082015260600190565b600082198211156130335761303361312e565b500190565b60008261304757613047613144565b500490565b60008160001904831182151516156130665761306661312e565b500290565b60008282101561307d5761307d61312e565b500390565b60005b8381101561309d578181015183820152602001613085565b83811115611c875750506000910152565b600181811c908216806130c257607f821691505b602082108114156130e357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130fd576130fd61312e565b5060010190565b60008261311357613113613144565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110d057600080fdfea2646970667358221220750e2563aa043b25c75c6ee4e4aced47c4ea821220587c0276ca94043487dc4a64736f6c63430008070033
Deployed Bytecode Sourcemap
43438:9487:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30688:372;;;;;;;;;;-1:-1:-1;30688:372:0;;;;;:::i;:::-;;:::i;:::-;;;7405:14:1;;7398:22;7380:41;;7368:2;7353:18;30688:372:0;;;;;;;;51712:95;;;;;;;;;;;;;:::i;:::-;;51439:115;;;;;;;;;;-1:-1:-1;51439:115:0;;;;;:::i;:::-;;:::i;32504:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44359:41::-;;;;;;;;;;;;44398:2;44359:41;;;;;11102:25:1;;;11090:2;11075:18;44359:41:0;10956:177:1;47663:481:0;;;;;;:::i;:::-;;:::i;33981:204::-;;;;;;;;;;-1:-1:-1;33981:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6703:32:1;;;6685:51;;6673:2;6658:18;33981:204:0;6539:203:1;33570:345:0;;;;;;;;;;-1:-1:-1;33570:345:0;;;;;:::i;:::-;;:::i;52615:98::-;;;;;;;;;;;;;:::i;43583:42::-;;;;;;;;;;;;43620:5;43583:42;;49421:418;;;;;;:::i;:::-;;:::i;44262:42::-;;;;;;;;;;;;44303:1;44262:42;;43850:41;;;;;;;;;;;;;;;;44407:43;;;;;;;;;;;;44448:2;44407:43;;28952:101;;;;;;;;;;-1:-1:-1;29005:7:0;29032:13;28952:101;;45168:22;;;;;;;;;;-1:-1:-1;45168:22:0;;;;;;;;;;;34838:170;;;;;;;;;;-1:-1:-1;34838:170:0;;;;;:::i;:::-;;:::i;44041:43::-;;;;;;;;;;;;;;;;44780:51;;;;;;;;;;-1:-1:-1;44780:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;29606:1010;;;;;;;;;;-1:-1:-1;29606:1010:0;;;;;:::i;:::-;;:::i;46745:413::-;;;;;;:::i;:::-;;:::i;43949:37::-;;;;;;;;;;;;;;;;51192:239;;;;;;;;;;-1:-1:-1;51192:239:0;;;;;:::i;:::-;;:::i;43752:43::-;;;;;;;;;;;;;;;;52814:108;;;;;;;;;;;;;:::i;52203:86::-;;;;;;;;;;;;;:::i;35079:185::-;;;;;;;;;;-1:-1:-1;35079:185:0;;;;;:::i;:::-;;:::i;45312:25::-;;;;;;;;;;-1:-1:-1;45312:25:0;;;;-1:-1:-1;;;45312:25:0;;;;;;45078:35;;;;;;;;;;;;;:::i;45408:25::-;;;;;;;;;;-1:-1:-1;45408:25:0;;;;-1:-1:-1;;;45408:25:0;;;;;;29130:176;;;;;;;;;;-1:-1:-1;29130:176:0;;;;;:::i;:::-;;:::i;45440:22::-;;;;;;;;;;-1:-1:-1;45440:22:0;;;;-1:-1:-1;;;45440:22:0;;;;;;44838:49;;;;;;;;;;-1:-1:-1;44838:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;46252:485;;;;;;:::i;:::-;;:::i;51815:89::-;;;;;;;;;;;;;:::i;44894:49::-;;;;;;;;;;-1:-1:-1;44894:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;52721:85;;;;;;;;;;;;;:::i;48995:418::-;;;;;;:::i;:::-;;:::i;44607:52::-;;;;;;;;;;-1:-1:-1;44607:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;45344:25;;;;;;;;;;-1:-1:-1;45344:25:0;;;;-1:-1:-1;;;45344:25:0;;;;;;32313:124;;;;;;;;;;-1:-1:-1;32313:124:0;;;;;:::i;:::-;;:::i;48152:409::-;;;;;;:::i;:::-;;:::i;44505:42::-;;;;;;;;;;;;44544:3;44505:42;;31124:206;;;;;;;;;;-1:-1:-1;31124:206:0;;;;;:::i;:::-;;:::i;7448:103::-;;;;;;;;;;;;;:::i;52009:92::-;;;;;;;;;;;;;:::i;43993:39::-;;;;;;;;;;;;;;;;45284:21;;;;;;;;;;-1:-1:-1;45284:21:0;;;;;;;;;;;43900:42;;;;;;;;;;;;;;;;44666:50;;;;;;;;;;-1:-1:-1;44666:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;45197:22;;;;;;;;;;-1:-1:-1;45197:22:0;;;;;;;;;;;44457:41;;;;;;;;;;;;44496:2;44457:41;;52403:98;;;;;;;;;;;;;:::i;50848:182::-;;;;;;;;;;-1:-1:-1;50848:182:0;;;;;:::i;:::-;;:::i;6797:87::-;;;;;;;;;;-1:-1:-1;6870:6:0;;-1:-1:-1;;;;;6870:6:0;6797:87;;52297:98;;;;;;;;;;;;;:::i;32673:104::-;;;;;;;;;;;;;:::i;44141:43::-;;;;;;;;;;;;;;;;34257:279;;;;;;;;;;-1:-1:-1;34257:279:0;;;;;:::i;:::-;;:::i;44091:43::-;;;;;;;;;;;;;;;;51912:89;;;;;;;;;;;;;:::i;44191:43::-;;;;;;;;;;;;;;;;44723:50;;;;;;;;;;-1:-1:-1;44723:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;51560:142;;;;;;;;;;-1:-1:-1;51560:142:0;;;;;:::i;:::-;;:::i;43535:41::-;;;;;;;;;;;;43571:5;43535:41;;45226:23;;;;;;;;;;-1:-1:-1;45226:23:0;;;;;;;;;;;35335:308;;;;;;;;;;-1:-1:-1;35335:308:0;;;;;:::i;:::-;;:::i;45477:37::-;;;;;;;;;;-1:-1:-1;45477:37:0;;;;;:::i;:::-;;:::i;44311:41::-;;;;;;;;;;;;44350:2;44311:41;;50396:436;;;;;;;;;;-1:-1:-1;50396:436:0;;;;;:::i;:::-;;:::i;43802:41::-;;;;;;;;;;;;;;;;52109:86;;;;;;;;;;;;;:::i;45376:25::-;;;;;;;;;;-1:-1:-1;45376:25:0;;;;-1:-1:-1;;;45376:25:0;;;;;;45137:24;;;;;;;;;;-1:-1:-1;45137:24:0;;;;;;;;43632:41;;;;;;;;;;;;43669:4;43632:41;;44950:51;;;;;;;;;;-1:-1:-1;44950:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;47166:489;;;;;;:::i;:::-;;:::i;45256:21::-;;;;;;;;;;-1:-1:-1;45256:21:0;;;;;;;;;;;43680:46;;;;;;;;;;;;43722:4;43680:46;;34607:164;;;;;;;;;;-1:-1:-1;34607:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34728:25:0;;;34704:4;34728:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34607:164;49847:418;;;;;;:::i;:::-;;:::i;51038:146::-;;;;;;;;;;-1:-1:-1;51038:146:0;;;;;:::i;:::-;;:::i;7706:201::-;;;;;;;;;;-1:-1:-1;7706:201:0;;;;;:::i;:::-;;:::i;45751:493::-;;;;;;:::i;:::-;;:::i;48569:418::-;;;;;;:::i;:::-;;:::i;52509:98::-;;;;;;;;;;;;;:::i;30688:372::-;30790:4;-1:-1:-1;;;;;;30827:40:0;;-1:-1:-1;;;30827:40:0;;:105;;-1:-1:-1;;;;;;;30884:48:0;;-1:-1:-1;;;30884:48:0;30827:105;:172;;;-1:-1:-1;;;;;;;30949:50:0;;-1:-1:-1;;;30949:50:0;30827:172;:225;;;-1:-1:-1;;;;;;;;;;19713:40:0;;;31016:36;30807:245;30688:372;-1:-1:-1;;30688:372:0:o;51712:95::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;;;;;;;;;51787:12:::1;::::0;;-1:-1:-1;;51771:28:0;::::1;51787:12;::::0;;::::1;51786:13;51771:28;::::0;;51712:95::o;51439:115::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;51518:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51439:115:::0;:::o;32504:100::-;32558:13;32591:5;32584:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32504:100;:::o;47663:481::-;45659:9;45672:10;45659:23;45651:66;;;;-1:-1:-1;;;45651:66:0;;;;;;;:::i;:::-;47749:9:::1;::::0;;;::::1;;;47741:50;;;;-1:-1:-1::0;;;47741:50:0::1;;;;;;;:::i;:::-;47810:25;47824:10;47810:13;:25::i;:::-;47802:61;;;;-1:-1:-1::0;;;47802:61:0::1;;;;;;;:::i;:::-;43722:4;47899:9;47883:13;29005:7:::0;29032:13;;28952:101;47883:13:::1;:25;;;;:::i;:::-;47882:46;;47874:76;;;;-1:-1:-1::0;;;47874:76:0::1;;;;;;;:::i;:::-;47996:9;47983:10;;:22;;;;:::i;:::-;47969:9;:37;;47961:76;;;;-1:-1:-1::0;;;47961:76:0::1;;;;;;;:::i;:::-;48069:10;48054:26;::::0;;;:14:::1;:26;::::0;;;;:39;;48084:9;;48054:26;:39:::1;::::0;48084:9;;48054:39:::1;:::i;:::-;::::0;;;-1:-1:-1;48104:32:0::1;::::0;-1:-1:-1;48114:10:0::1;48126:9:::0;48104::::1;:32::i;:::-;47663:481:::0;:::o;33981:204::-;34049:7;34074:16;34082:7;35955:4;35989:13;-1:-1:-1;35979:23:0;35898:112;34074:16;34069:64;;34099:34;;-1:-1:-1;;;34099:34:0;;;;;;;;;;;34069:64;-1:-1:-1;34153:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34153:24:0;;33981:204::o;33570:345::-;33643:13;33659:24;33675:7;33659:15;:24::i;:::-;33643:40;;33704:5;-1:-1:-1;;;;;33698:11:0;:2;-1:-1:-1;;;;;33698:11:0;;33694:48;;;33718:24;;-1:-1:-1;;;33718:24:0;;;;;;;;;;;33694:48;5601:10;-1:-1:-1;;;;;33759:21:0;;;;;;:63;;-1:-1:-1;33785:37:0;33802:5;5601:10;34607:164;:::i;33785:37::-;33784:38;33759:63;33755:111;;;33831:35;;-1:-1:-1;;;33831:35:0;;;;;;;;;;;33755:111;33879:28;33888:2;33892:7;33901:5;33879:8;:28::i;:::-;33632:283;33570:345;;:::o;52615:98::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;52692:13:::1;::::0;;-1:-1:-1;;52675:30:0;::::1;-1:-1:-1::0;;;52692:13:0;;;::::1;;;52691:14;52675:30:::0;;::::1;;::::0;;52615:98::o;49421:418::-;45659:9;45672:10;45659:23;45651:66;;;;-1:-1:-1;;;45651:66:0;;;;;;;:::i;:::-;49511:13:::1;::::0;-1:-1:-1;;;49511:13:0;::::1;;;49503:54;;;;-1:-1:-1::0;;;49503:54:0::1;;;;;;;:::i;:::-;43620:5;49593:9;49577:13;29005:7:::0;29032:13;;28952:101;49577:13:::1;:25;;;;:::i;:::-;49576:41;;49568:71;;;;-1:-1:-1::0;;;49568:71:0::1;;;;;;;:::i;:::-;49689:9;49672:14;;:26;;;;:::i;:::-;49658:9;:41;;49650:80;;;;-1:-1:-1::0;;;49650:80:0::1;;;;;;;:::i;:::-;49764:10;49747:28;::::0;;;:16:::1;:28;::::0;;;;:41;;49779:9;;49747:28;:41:::1;::::0;49779:9;;49747:41:::1;:::i;34838:170::-:0;34972:28;34982:4;34988:2;34992:7;34972:9;:28::i;29606:1010::-;29695:10;29731:16;29741:5;29731:9;:16::i;:::-;29722:5;:25;29718:61;;29756:23;;-1:-1:-1;;;29756:23:0;;;;;;;;;;;29718:61;29790:22;29032:13;;;29790:22;;30053:466;30073:14;30069:1;:18;30053:466;;;30113:31;30147:14;;;:11;:14;;;;;;;;;30113:48;;;;;;;;;-1:-1:-1;;;;;30113:48:0;;;;;-1:-1:-1;;;30113:48:0;;;;;;;;;;;;30184:28;30180:111;;30257:14;;;-1:-1:-1;30180:111:0;30334:5;-1:-1:-1;;;;;30313:26:0;:17;-1:-1:-1;;;;;30313:26:0;;30309:195;;;30383:5;30368:11;:20;30364:85;;;-1:-1:-1;30424:1:0;-1:-1:-1;30417:8:0;;-1:-1:-1;;;30417:8:0;30364:85;30471:13;;;;;30309:195;-1:-1:-1;30089:3:0;;30053:466;;;-1:-1:-1;30595:13:0;;:::i;:::-;29707:909;;;29606:1010;;;;:::o;46745:413::-;45659:9;45672:10;45659:23;45651:66;;;;-1:-1:-1;;;45651:66:0;;;;;;;:::i;:::-;46832:10:::1;::::0;;;::::1;;;46824:51;;;;-1:-1:-1::0;;;46824:51:0::1;;;;;;;:::i;:::-;43722:4;46911:9;46895:13;29005:7:::0;29032:13;;28952:101;46895:13:::1;:25;;;;:::i;:::-;46894:46;;46886:76;;;;-1:-1:-1::0;;;46886:76:0::1;;;;;;;:::i;:::-;47009:9;46995:11;;:23;;;;:::i;:::-;46981:9;:38;;46973:77;;;;-1:-1:-1::0;;;46973:77:0::1;;;;;;;:::i;:::-;47083:10;47067:27;::::0;;;:15:::1;:27;::::0;;;;:40;;47098:9;;47067:27;:40:::1;::::0;47098:9;;47067:40:::1;:::i;51192:239::-:0;51251:4;;51264:143;51285:20;:27;51281:31;;51264:143;;;51359:5;-1:-1:-1;;;;;51332:32:0;:20;51353:1;51332:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;51332:23:0;:32;51328:72;;;-1:-1:-1;51386:4:0;;51192:239;-1:-1:-1;;51192:239:0:o;51328:72::-;51314:3;;;;:::i;:::-;;;;51264:143;;;-1:-1:-1;51420:5:0;;51192:239;-1:-1:-1;;51192:239:0:o;52814:108::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;52863:51:::1;::::0;52871:10:::1;::::0;52892:21:::1;52863:51:::0;::::1;;;::::0;::::1;::::0;;;52892:21;52871:10;52863:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;52203:86:::0;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;52272:9:::1;::::0;;-1:-1:-1;;52259:22:0;::::1;52272:9:::0;;;;::::1;;;52271:10;52259:22:::0;;::::1;;::::0;;52203:86::o;35079:185::-;35217:39;35234:4;35240:2;35244:7;35217:39;;;;;;;;;;;;:16;:39::i;45078:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29130:176::-;29197:7;29032:13;;29221:5;:22;29217:58;;29252:23;;-1:-1:-1;;;29252:23:0;;;;;;;;;;;29217:58;-1:-1:-1;29293:5:0;29130:176::o;46252:485::-;45659:9;45672:10;45659:23;45651:66;;;;-1:-1:-1;;;45651:66:0;;;;;;;:::i;:::-;46339:10:::1;::::0;::::1;::::0;::::1;;;46331:51;;;;-1:-1:-1::0;;;46331:51:0::1;;;;;;;:::i;:::-;46401:25;46415:10;46401:13;:25::i;:::-;46393:61;;;;-1:-1:-1::0;;;46393:61:0::1;;;;;;;:::i;:::-;43722:4;46490:9;46474:13;29005:7:::0;29032:13;;28952:101;46474:13:::1;:25;;;;:::i;:::-;46473:46;;46465:76;;;;-1:-1:-1::0;;;46465:76:0::1;;;;;;;:::i;:::-;46588:9;46574:11;;:23;;;;:::i;:::-;46560:9;:38;;46552:77;;;;-1:-1:-1::0;;;46552:77:0::1;;;;;;;:::i;:::-;46662:10;46646:27;::::0;;;:15:::1;:27;::::0;;;;:40;;46677:9;;46646:27;:40:::1;::::0;46677:9;;46646:40:::1;:::i;51815:89::-:0;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;51886:10:::1;::::0;;-1:-1:-1;;51872:24:0;::::1;51886:10;::::0;;;::::1;;;51885:11;51872:24:::0;;::::1;;::::0;;51815:89::o;52721:85::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;52788:10:::1;::::0;;-1:-1:-1;;;;52774:24:0;::::1;-1:-1:-1::0;;;52788:10:0;;;::::1;;;52787:11;52774:24:::0;;::::1;;::::0;;52721:85::o;48995:418::-;45659:9;45672:10;45659:23;45651:66;;;;-1:-1:-1;;;45651:66:0;;;;;;;:::i;:::-;49085:13:::1;::::0;-1:-1:-1;;;49085:13:0;::::1;;;49077:54;;;;-1:-1:-1::0;;;49077:54:0::1;;;;;;;:::i;:::-;43620:5;49167:9;49151:13;29005:7:::0;29032:13;;28952:101;49151:13:::1;:25;;;;:::i;:::-;49150:41;;49142:71;;;;-1:-1:-1::0;;;49142:71:0::1;;;;;;;:::i;:::-;49263:9;49246:14;;:26;;;;:::i;32313:124::-:0;32377:7;32404:20;32416:7;32404:11;:20::i;:::-;:25;;32313:124;-1:-1:-1;;32313:124:0:o;48152:409::-;45659:9;45672:10;45659:23;45651:66;;;;-1:-1:-1;;;45651:66:0;;;;;;;:::i;:::-;48238:9:::1;::::0;;;::::1;;;48230:50;;;;-1:-1:-1::0;;;48230:50:0::1;;;;;;;:::i;:::-;43722:4;48316:9;48300:13;29005:7:::0;29032:13;;28952:101;48300:13:::1;:25;;;;:::i;:::-;48299:46;;48291:76;;;;-1:-1:-1::0;;;48291:76:0::1;;;;;;;:::i;:::-;48413:9;48400:10;;:22;;;;:::i;:::-;48386:9;:37;;48378:76;;;;-1:-1:-1::0;;;48378:76:0::1;;;;;;;:::i;:::-;48486:10;48471:26;::::0;;;:14:::1;:26;::::0;;;;:39;;48501:9;;48471:26;:39:::1;::::0;48501:9;;48471:39:::1;:::i;31124:206::-:0;31188:7;-1:-1:-1;;;;;31212:19:0;;31208:60;;31240:28;;-1:-1:-1;;;31240:28:0;;;;;;;;;;;31208:60;-1:-1:-1;;;;;;31294:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31294:27:0;;31124:206::o;7448:103::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;7513:30:::1;7540:1;7513:18;:30::i;:::-;7448:103::o:0;52009:92::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;52082:11:::1;::::0;;-1:-1:-1;;52067:26:0;::::1;52082:11:::0;;;;::::1;;;52081:12;52067:26:::0;;::::1;;::::0;;52009:92::o;52403:98::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;52480:13:::1;::::0;;-1:-1:-1;;52463:30:0;::::1;-1:-1:-1::0;;;52480:13:0;;;::::1;;;52479:14;52463:30:::0;;::::1;;::::0;;52403:98::o;50848:182::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;43571:5:::1;50944:9;50928:13;29005:7:::0;29032:13;;28952:101;50928:13:::1;:25;;;;:::i;:::-;:38;;50920:69;;;::::0;-1:-1:-1;;;50920:69:0;;8977:2:1;50920:69:0::1;::::0;::::1;8959:21:1::0;9016:2;8996:18;;;8989:30;-1:-1:-1;;;9035:18:1;;;9028:48;9093:18;;50920:69:0::1;8775:342:1::0;50920:69:0::1;50997:25;51007:3;51012:9;50997;:25::i;52297:98::-:0;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;52374:13:::1;::::0;;-1:-1:-1;;52357:30:0;::::1;-1:-1:-1::0;;;52374:13:0;;;::::1;;;52373:14;52357:30:::0;;::::1;;::::0;;52297:98::o;32673:104::-;32729:13;32762:7;32755:14;;;;;:::i;34257:279::-;-1:-1:-1;;;;;34348:24:0;;5601:10;34348:24;34344:54;;;34381:17;;-1:-1:-1;;;34381:17:0;;;;;;;;;;;34344:54;5601:10;34411:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34411:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34411:53:0;;;;;;;;;;34480:48;;7380:41:1;;;34411:42:0;;5601:10;34480:48;;7353:18:1;34480:48:0;;;;;;;34257:279;;:::o;51912:89::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;51983:10:::1;::::0;;-1:-1:-1;;51969:24:0;::::1;51983:10:::0;;;;::::1;;;51982:11;51969:24:::0;;::::1;;::::0;;51912:89::o;51560:142::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;51652:42;;::::1;::::0;:19:::1;::::0;:42:::1;::::0;::::1;::::0;::::1;:::i;35335:308::-:0;35494:28;35504:4;35510:2;35514:7;35494:9;:28::i;:::-;35538:48;35561:4;35567:2;35571:7;35580:5;35538:22;:48::i;:::-;35533:102;;35595:40;;-1:-1:-1;;;35595:40:0;;;;;;;;;;;35533:102;35335:308;;;;:::o;45477:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45477:37:0;;-1:-1:-1;45477:37:0;:::o;50396:436::-;50469:13;50503:16;50511:7;35955:4;35989:13;-1:-1:-1;35979:23:0;35898:112;50503:16;50495:76;;;;-1:-1:-1;;;50495:76:0;;9685:2:1;50495:76:0;;;9667:21:1;9724:2;9704:18;;;9697:30;9763:34;9743:18;;;9736:62;-1:-1:-1;;;9814:18:1;;;9807:45;9869:19;;50495:76:0;9483:411:1;50495:76:0;50584:14;50601:11;:7;50611:1;50601:11;:::i;:::-;50629:10;;50584:28;;-1:-1:-1;;;;50629:10:0;;;;50625:68;;50662:19;50655:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50396:436;;;:::o;50625:68::-;50749:1;50726:12;50720:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;50777:12;50791:17;:6;:15;:17::i;:::-;50760:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50720:104;50713:111;50396:436;-1:-1:-1;;;50396:436:0:o;52109:86::-;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;52178:9:::1;::::0;;-1:-1:-1;;52165:22:0;::::1;52178:9:::0;;;;::::1;;;52177:10;52165:22:::0;;::::1;;::::0;;52109:86::o;47166:489::-;45659:9;45672:10;45659:23;45651:66;;;;-1:-1:-1;;;45651:66:0;;;;;;;:::i;:::-;47254:11:::1;::::0;;;::::1;;;47246:52;;;;-1:-1:-1::0;;;47246:52:0::1;;;;;;;:::i;:::-;47317:25;47331:10;47317:13;:25::i;:::-;47309:61;;;;-1:-1:-1::0;;;47309:61:0::1;;;;;;;:::i;:::-;43722:4;47406:9;47390:13;29005:7:::0;29032:13;;28952:101;47390:13:::1;:25;;;;:::i;:::-;47389:46;;47381:76;;;;-1:-1:-1::0;;;47381:76:0::1;;;;;;;:::i;:::-;47505:9;47490:12;;:24;;;;:::i;:::-;47476:9;:39;;47468:78;;;;-1:-1:-1::0;;;47468:78:0::1;;;;;;;:::i;:::-;47580:10;47563:28;::::0;;;:16:::1;:28;::::0;;;;:41;;47595:9;;47563:28;:41:::1;::::0;47595:9;;47563:41:::1;:::i;49847:418::-:0;45659:9;45672:10;45659:23;45651:66;;;;-1:-1:-1;;;45651:66:0;;;;;;;:::i;:::-;49937:13:::1;::::0;-1:-1:-1;;;49937:13:0;::::1;;;49929:54;;;;-1:-1:-1::0;;;49929:54:0::1;;;;;;;:::i;:::-;43620:5;50019:9;50003:13;29005:7:::0;29032:13;;28952:101;50003:13:::1;:25;;;;:::i;:::-;50002:41;;49994:71;;;;-1:-1:-1::0;;;49994:71:0::1;;;;;;;:::i;:::-;50115:9;50098:14;;:26;;;;:::i;51038:146::-:0;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;51113:27:::1;51120:20;;51113:27;:::i;:::-;51147:29;:20;51170:6:::0;;51147:29:::1;:::i;7706:201::-:0;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7795:22:0;::::1;7787:73;;;::::0;-1:-1:-1;;;7787:73:0;;7858:2:1;7787:73:0::1;::::0;::::1;7840:21:1::0;7897:2;7877:18;;;7870:30;7936:34;7916:18;;;7909:62;-1:-1:-1;;;7987:18:1;;;7980:36;8033:19;;7787:73:0::1;7656:402:1::0;7787:73:0::1;7871:28;7890:8;7871:18;:28::i;45751:493::-:0;45659:9;45672:10;45659:23;45651:66;;;;-1:-1:-1;;;45651:66:0;;;;;;;:::i;:::-;45840:12:::1;::::0;::::1;;45832:53;;;;-1:-1:-1::0;;;45832:53:0::1;;;;;;;:::i;:::-;45904:25;45918:10;45904:13;:25::i;:::-;45896:61;;;;-1:-1:-1::0;;;45896:61:0::1;;;;;;;:::i;:::-;43722:4;45993:9;45977:13;29005:7:::0;29032:13;;28952:101;45977:13:::1;:25;;;;:::i;:::-;45976:46;;45968:76;;;;-1:-1:-1::0;;;45968:76:0::1;;;;;;;:::i;:::-;46093:9;46077:13;;:25;;;;:::i;:::-;46063:9;:40;;46055:79;;;;-1:-1:-1::0;;;46055:79:0::1;;;;;;;:::i;:::-;46169:10;46151:29;::::0;;;:17:::1;:29;::::0;;;;:42;;46184:9;;46151:29;:42:::1;::::0;46184:9;;46151:42:::1;:::i;48569:418::-:0;45659:9;45672:10;45659:23;45651:66;;;;-1:-1:-1;;;45651:66:0;;;;;;;:::i;:::-;48659:13:::1;::::0;-1:-1:-1;;;48659:13:0;::::1;;;48651:54;;;;-1:-1:-1::0;;;48651:54:0::1;;;;;;;:::i;:::-;43620:5;48741:9;48725:13;29005:7:::0;29032:13;;28952:101;48725:13:::1;:25;;;;:::i;:::-;48724:41;;48716:71;;;;-1:-1:-1::0;;;48716:71:0::1;;;;;;;:::i;:::-;48837:9;48820:14;;:26;;;;:::i;52509:98::-:0;6870:6;;-1:-1:-1;;;;;6870:6:0;5601:10;7017:23;7009:68;;;;-1:-1:-1;;;7009:68:0;;;;;;;:::i;:::-;52586:13:::1;::::0;;-1:-1:-1;;52569:30:0;::::1;-1:-1:-1::0;;;52586:13:0;;;::::1;;;52585:14;52569:30:::0;;::::1;;::::0;;52509:98::o;36018:104::-;36087:27;36097:2;36101:8;36087:27;;;;;;;;;;;;:9;:27::i;40661:196::-;40776:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40776:29:0;-1:-1:-1;;;;;40776:29:0;;;;;;;;;40821:28;;40776:24;;40821:28;;;;;;;40661:196;;;:::o;38581:1962::-;38696:35;38734:20;38746:7;38734:11;:20::i;:::-;38809:18;;38696:58;;-1:-1:-1;38767:22:0;;-1:-1:-1;;;;;38793:34:0;5601:10;-1:-1:-1;;;;;38793:34:0;;:87;;;-1:-1:-1;5601:10:0;38844:20;38856:7;38844:11;:20::i;:::-;-1:-1:-1;;;;;38844:36:0;;38793:87;:154;;;-1:-1:-1;38914:18:0;;38897:50;;5601:10;34607:164;:::i;38897:50::-;38767:181;;38966:17;38961:66;;38992:35;;-1:-1:-1;;;38992:35:0;;;;;;;;;;;38961:66;39064:4;-1:-1:-1;;;;;39042:26:0;:13;:18;;;-1:-1:-1;;;;;39042:26:0;;39038:67;;39077:28;;-1:-1:-1;;;39077:28:0;;;;;;;;;;;39038:67;-1:-1:-1;;;;;39120:16:0;;39116:52;;39145:23;;-1:-1:-1;;;39145:23:0;;;;;;;;;;;39116:52;39289:49;39306:1;39310:7;39319:13;:18;;;39289:8;:49::i;:::-;-1:-1:-1;;;;;39634:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;39634:31:0;;;-1:-1:-1;;;;;39634:31:0;;;-1:-1:-1;;39634:31:0;;;;;;;39680:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39680:29:0;;;;;;;;;;;;;39726:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39771:61:0;;;;-1:-1:-1;;;39816:15:0;39771:61;;;;;;40106:11;;;40136:24;;;;;:29;40106:11;;40136:29;40132:295;;40204:20;40212:11;35955:4;35989:13;-1:-1:-1;35979:23:0;35898:112;40204:20;40200:212;;;40281:18;;;40249:24;;;:11;:24;;;;;;;;:50;;40364:28;;;;40322:70;;-1:-1:-1;;;40322:70:0;-1:-1:-1;;;;;;40322:70:0;;;-1:-1:-1;;;;;40249:50:0;;;40322:70;;;;;;;40200:212;39609:829;40474:7;40470:2;-1:-1:-1;;;;;40455:27:0;40464:4;-1:-1:-1;;;;;40455:27:0;;;;;;;;;;;40493:42;38685:1858;;38581:1962;;;:::o;31747:504::-;-1:-1:-1;;;;;;;;;;;;;;;;;31847:16:0;31855:7;35955:4;35989:13;-1:-1:-1;35979:23:0;35898:112;31847:16;31842:61;;31872:31;;-1:-1:-1;;;31872:31:0;;;;;;;;;;;31842:61;31961:7;31941:245;32008:31;32042:17;;;:11;:17;;;;;;;;;32008:51;;;;;;;;;-1:-1:-1;;;;;32008:51:0;;;;;-1:-1:-1;;;32008:51:0;;;;;;;;;;;;32082:28;32078:93;;32142:9;31747:504;-1:-1:-1;;;31747:504:0:o;32078:93::-;-1:-1:-1;;;31981:6:0;31941:245;;8067:191;8160:6;;;-1:-1:-1;;;;;8177:17:0;;;-1:-1:-1;;;;;;8177:17:0;;;;;;;8210:40;;8160:6;;;8177:17;8160:6;;8210:40;;8141:16;;8210:40;8130:128;8067:191;:::o;41422:765::-;41577:4;-1:-1:-1;;;;;41598:13:0;;9793:19;:23;41594:586;;41634:72;;-1:-1:-1;;;41634:72:0;;-1:-1:-1;;;;;41634:36:0;;;;;:72;;5601:10;;41685:4;;41691:7;;41700:5;;41634:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41634:72:0;;;;;;;;-1:-1:-1;;41634:72:0;;;;;;;;;;;;:::i;:::-;;;41630:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41880:13:0;;41876:234;;41907:40;;-1:-1:-1;;;41907:40:0;;;;;;;;;;;41876:234;42060:6;42054:13;42045:6;42041:2;42037:15;42030:38;41630:495;-1:-1:-1;;;;;;41757:55:0;-1:-1:-1;;;41757:55:0;;-1:-1:-1;41750:62:0;;41594:586;-1:-1:-1;42164:4:0;41594:586;41422:765;;;;;;:::o;3083:723::-;3139:13;3360:10;3356:53;;-1:-1:-1;;3387:10:0;;;;;;;;;;;;-1:-1:-1;;;3387:10:0;;;;;3083:723::o;3356:53::-;3434:5;3419:12;3475:78;3482:9;;3475:78;;3508:8;;;;:::i;:::-;;-1:-1:-1;3531:10:0;;-1:-1:-1;3539:2:0;3531:10;;:::i;:::-;;;3475:78;;;3563:19;3595:6;3585:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3585:17:0;;3563:39;;3613:154;3620:10;;3613:154;;3647:11;3657:1;3647:11;;:::i;:::-;;-1:-1:-1;3716:10:0;3724:2;3716:5;:10;:::i;:::-;3703:24;;:2;:24;:::i;:::-;3690:39;;3673:6;3680;3673:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3673:56:0;;;;;;;;-1:-1:-1;3744:11:0;3753:2;3744:11;;:::i;:::-;;;3613:154;;36485:163;36608:32;36614:2;36618:8;36628:5;36635:4;37046:20;37069:13;-1:-1:-1;;;;;37097:16:0;;37093:48;;37122:19;;-1:-1:-1;;;37122:19:0;;;;;;;;;;;37093:48;37156:13;37152:44;;37178:18;;-1:-1:-1;;;37178:18:0;;;;;;;;;;;37152:44;-1:-1:-1;;;;;37549:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;37549:45:0;;-1:-1:-1;;;;;37549:45:0;;;;;;;;;;37609:50;;;;;;;;;;;;;;37676:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;37726:66:0;;;;-1:-1:-1;;;37776:15:0;37726:66;;;;;;;37676:25;;37861:330;37881:8;37877:1;:12;37861:330;;;37920:38;;37945:12;;-1:-1:-1;;;;;37920:38:0;;;37937:1;;37920:38;;37937:1;;37920:38;37981:4;:68;;;;;37990:59;38021:1;38025:2;38029:12;38043:5;37990:22;:59::i;:::-;37989:60;37981:68;37977:164;;;38081:40;;-1:-1:-1;;;38081:40:0;;;;;;;;;;;37977:164;38161:14;;;;;37891:3;37861:330;;;-1:-1:-1;38207:13:0;:28;38259:60;35335:308;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;3131:18;3172:2;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:245::-;3577:6;3630:2;3618:9;3609:7;3605:23;3601:32;3598:52;;;3646:1;3643;3636:12;3598:52;3685:9;3672:23;3704:30;3728:5;3704:30;:::i;3769:249::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3939:9;3933:16;3958:30;3982:5;3958:30;:::i;4023:450::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4201:9;4188:23;4234:18;4226:6;4223:30;4220:50;;;4266:1;4263;4256:12;4220:50;4289:22;;4342:4;4334:13;;4330:27;-1:-1:-1;4320:55:1;;4371:1;4368;4361:12;4320:55;4394:73;4459:7;4454:2;4441:16;4436:2;4432;4428:11;4394:73;:::i;4478:180::-;4537:6;4590:2;4578:9;4569:7;4565:23;4561:32;4558:52;;;4606:1;4603;4596:12;4558:52;-1:-1:-1;4629:23:1;;4478:180;-1:-1:-1;4478:180:1:o;4663:257::-;4704:3;4742:5;4736:12;4769:6;4764:3;4757:19;4785:63;4841:6;4834:4;4829:3;4825:14;4818:4;4811:5;4807:16;4785:63;:::i;:::-;4902:2;4881:15;-1:-1:-1;;4877:29:1;4868:39;;;;4909:4;4864:50;;4663:257;-1:-1:-1;;4663:257:1:o;4925:185::-;4967:3;5005:5;4999:12;5020:52;5065:6;5060:3;5053:4;5046:5;5042:16;5020:52;:::i;:::-;5088:16;;;;;4925:185;-1:-1:-1;;4925:185:1:o;5233:1301::-;5510:3;5539:1;5572:6;5566:13;5602:3;5624:1;5652:9;5648:2;5644:18;5634:28;;5712:2;5701:9;5697:18;5734;5724:61;;5778:4;5770:6;5766:17;5756:27;;5724:61;5804:2;5852;5844:6;5841:14;5821:18;5818:38;5815:165;;;-1:-1:-1;;;5879:33:1;;5935:4;5932:1;5925:15;5965:4;5886:3;5953:17;5815:165;5996:18;6023:104;;;;6141:1;6136:320;;;;5989:467;;6023:104;-1:-1:-1;;6056:24:1;;6044:37;;6101:16;;;;-1:-1:-1;6023:104:1;;6136:320;11211:1;11204:14;;;11248:4;11235:18;;6231:1;6245:165;6259:6;6256:1;6253:13;6245:165;;;6337:14;;6324:11;;;6317:35;6380:16;;;;6274:10;;6245:165;;;6249:3;;6439:6;6434:3;6430:16;6423:23;;5989:467;;;;;;;6472:56;6497:30;6523:3;6515:6;6497:30;:::i;:::-;-1:-1:-1;;;5175:20:1;;5220:1;5211:11;;5115:113;6472:56;6465:63;5233:1301;-1:-1:-1;;;;;5233:1301:1:o;6747:488::-;-1:-1:-1;;;;;7016:15:1;;;6998:34;;7068:15;;7063:2;7048:18;;7041:43;7115:2;7100:18;;7093:34;;;7163:3;7158:2;7143:18;;7136:31;;;6941:4;;7184:45;;7209:19;;7201:6;7184:45;:::i;:::-;7176:53;6747:488;-1:-1:-1;;;;;;6747:488:1:o;7432:219::-;7581:2;7570:9;7563:21;7544:4;7601:44;7641:2;7630:9;7626:18;7618:6;7601:44;:::i;8063:350::-;8265:2;8247:21;;;8304:2;8284:18;;;8277:30;8343:28;8338:2;8323:18;;8316:56;8404:2;8389:18;;8063:350::o;8418:352::-;8620:2;8602:21;;;8659:2;8639:18;;;8632:30;8698;8693:2;8678:18;;8671:58;8761:2;8746:18;;8418:352::o;9122:356::-;9324:2;9306:21;;;9343:18;;;9336:30;9402:34;9397:2;9382:18;;9375:62;9469:2;9454:18;;9122:356::o;9899:341::-;10101:2;10083:21;;;10140:2;10120:18;;;10113:30;-1:-1:-1;;;10174:2:1;10159:18;;10152:47;10231:2;10216:18;;9899:341::o;10245:354::-;10447:2;10429:21;;;10486:2;10466:18;;;10459:30;10525:32;10520:2;10505:18;;10498:60;10590:2;10575:18;;10245:354::o;10604:347::-;10806:2;10788:21;;;10845:2;10825:18;;;10818:30;10884:25;10879:2;10864:18;;10857:53;10942:2;10927:18;;10604:347::o;11264:128::-;11304:3;11335:1;11331:6;11328:1;11325:13;11322:39;;;11341:18;;:::i;:::-;-1:-1:-1;11377:9:1;;11264:128::o;11397:120::-;11437:1;11463;11453:35;;11468:18;;:::i;:::-;-1:-1:-1;11502:9:1;;11397:120::o;11522:168::-;11562:7;11628:1;11624;11620:6;11616:14;11613:1;11610:21;11605:1;11598:9;11591:17;11587:45;11584:71;;;11635:18;;:::i;:::-;-1:-1:-1;11675:9:1;;11522:168::o;11695:125::-;11735:4;11763:1;11760;11757:8;11754:34;;;11768:18;;:::i;:::-;-1:-1:-1;11805:9:1;;11695:125::o;11825:258::-;11897:1;11907:113;11921:6;11918:1;11915:13;11907:113;;;11997:11;;;11991:18;11978:11;;;11971:39;11943:2;11936:10;11907:113;;;12038:6;12035:1;12032:13;12029:48;;;-1:-1:-1;;12073:1:1;12055:16;;12048:27;11825:258::o;12088:380::-;12167:1;12163:12;;;;12210;;;12231:61;;12285:4;12277:6;12273:17;12263:27;;12231:61;12338:2;12330:6;12327:14;12307:18;12304:38;12301:161;;;12384:10;12379:3;12375:20;12372:1;12365:31;12419:4;12416:1;12409:15;12447:4;12444:1;12437:15;12301:161;;12088:380;;;:::o;12473:135::-;12512:3;-1:-1:-1;;12533:17:1;;12530:43;;;12553:18;;:::i;:::-;-1:-1:-1;12600:1:1;12589:13;;12473:135::o;12613:112::-;12645:1;12671;12661:35;;12676:18;;:::i;:::-;-1:-1:-1;12710:9:1;;12613:112::o;12730:127::-;12791:10;12786:3;12782:20;12779:1;12772:31;12822:4;12819:1;12812:15;12846:4;12843:1;12836:15;12862:127;12923:10;12918:3;12914:20;12911:1;12904:31;12954:4;12951:1;12944:15;12978:4;12975:1;12968:15;12994:127;13055:10;13050:3;13046:20;13043:1;13036:31;13086:4;13083:1;13076:15;13110:4;13107:1;13100:15;13126:127;13187:10;13182:3;13178:20;13175:1;13168:31;13218:4;13215:1;13208:15;13242:4;13239:1;13232:15;13258:127;13319:10;13314:3;13310:20;13307:1;13300:31;13350:4;13347:1;13340:15;13374:4;13371:1;13364:15;13390:131;-1:-1:-1;;;;;;13464:32:1;;13454:43;;13444:71;;13511:1;13508;13501:12
Swarm Source
ipfs://750e2563aa043b25c75c6ee4e4aced47c4ea821220587c0276ca94043487dc4a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.