ERC-721
Overview
Max Total Supply
2,924 MAGC
Holders
373
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 MAGCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MosterApeGymClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; contract OwnableDelegateProxy {} /** * Used to delegate ownership of a contract to another address, to save on unneeded transactions to approve contract use for users */ contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } contract MosterApeGymClub is ERC721, Ownable, PaymentSplitter { uint256 public constant MAX_TOKENS = 3031; uint256 public constant TOKENS_PER_MINT = 10; uint256 public mintPrice = 0.03 ether; uint256 private totalMinted = 0; string private _baseTokenURI; bool public saleIsOpen = false; mapping (address => bool) private _reserved; address public proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; event MintApe (address indexed buyer, uint256 startWith, uint256 batch); constructor( address[] memory payees, uint256[] memory shares, string memory baseURI ) ERC721("Moster Ape Gym Club", "MAGC") PaymentSplitter(payees, shares) { _baseTokenURI = baseURI; } function mintApe(uint256 numberOfTokens) external payable { require(saleIsOpen, "Sale is not active"); require(numberOfTokens <= TOKENS_PER_MINT, "Max apes per mint exceeded"); require(totalMinted + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max available apes"); require(mintPrice * numberOfTokens <= msg.value, "Ether value sent is not correct"); emit MintApe(msg.sender, totalMinted+1, numberOfTokens); for(uint256 i = 1; i <= numberOfTokens; i++) { _safeMint(msg.sender, totalMinted + i); } totalMinted += numberOfTokens; } function giveaway(uint256 numberOfTokens, address mintAddress) external onlyOwner { require(totalMinted + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max available apes"); for(uint256 i = 1; i <= numberOfTokens; i++) { _mint(mintAddress, totalMinted + i); } totalMinted += numberOfTokens; } function totalSupply() public view returns (uint256) { return totalMinted; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) external onlyOwner { _baseTokenURI = baseURI; } function changePrice(uint256 _newPrice) external onlyOwner { mintPrice = _newPrice; } function flipSaleState() external onlyOwner { saleIsOpen = !saleIsOpen; } /** * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } /** * Change the OS proxy if ever needed. */ function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner { proxyRegistryAddress = _proxyRegistryAddress; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; import "../utils/Address.sol"; import "../utils/Context.sol"; import "../token/ERC20/utils/SafeERC20.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + _totalReleased; uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account]; require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] = _released[account] + payment; _totalReleased = _totalReleased + payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
{ "metadata": { "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"},{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"batch","type":"uint256"}],"name":"MintApe","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKENS_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"mintAddress","type":"address"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintApe","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleIsOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052666a94d74f430000600c556000600d55600f805460ff19169055601180546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c11790553480156200005157600080fd5b5060405162002adc38038062002adc833981016040819052620000749162000658565b604080518082018252601381527f4d6f73746572204170652047796d20436c7562000000000000000000000000006020808301918252835180850190945260048452634d41474360e01b90840152815186938693929091620000d991600091620004a3565b508051620000ef906001906020840190620004a3565b5050506200010c620001066200025f60201b60201c565b62000263565b80518251146200017e5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001d15760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000175565b60005b82518110156200023d5762000228838281518110620001f757620001f762000848565b602002602001015183838151811062000214576200021462000848565b6020026020010151620002b560201b60201c565b80620002348162000814565b915050620001d4565b50508151620002559150600e906020840190620004a3565b5050505062000874565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003225760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000175565b60008111620003745760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000175565b6001600160a01b03821660009081526009602052604090205415620003f05760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000175565b600b8054600181019091557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b03841690811790915560009081526009602052604090208190556007546200045a908290620007bc565b600755604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054620004b190620007d7565b90600052602060002090601f016020900481019282620004d5576000855562000520565b82601f10620004f057805160ff191683800117855562000520565b8280016001018555821562000520579182015b828111156200052057825182559160200191906001019062000503565b506200052e92915062000532565b5090565b5b808211156200052e576000815560010162000533565b600082601f8301126200055b57600080fd5b81516020620005746200056e8362000796565b62000763565b80838252828201915082860187848660051b89010111156200059557600080fd5b60005b85811015620005b65781518452928401929084019060010162000598565b5090979650505050505050565b600082601f830112620005d557600080fd5b81516001600160401b03811115620005f157620005f16200085e565b602062000607601f8301601f1916820162000763565b82815285828487010111156200061c57600080fd5b60005b838110156200063c5785810183015182820184015282016200061f565b838111156200064e5760008385840101525b5095945050505050565b6000806000606084860312156200066e57600080fd5b83516001600160401b03808211156200068657600080fd5b818601915086601f8301126200069b57600080fd5b81516020620006ae6200056e8362000796565b8083825282820191508286018b848660051b8901011115620006cf57600080fd5b600096505b848710156200070a5780516001600160a01b0381168114620006f557600080fd5b835260019690960195918301918301620006d4565b50918901519197509093505050808211156200072557600080fd5b620007338783880162000549565b935060408601519150808211156200074a57600080fd5b506200075986828701620005c3565b9150509250925092565b604051601f8201601f191681016001600160401b03811182821017156200078e576200078e6200085e565b604052919050565b60006001600160401b03821115620007b257620007b26200085e565b5060051b60200190565b60008219821115620007d257620007d262000832565b500190565b600181811c90821680620007ec57607f821691505b602082108114156200080e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200082b576200082b62000832565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61225880620008846000396000f3fe6080604052600436106101fd5760003560e01c80638b83209b1161010d578063c87b56dd116100a0578063e33b7de31161006f578063e33b7de3146105fc578063e985e9c514610611578063ed016a4614610631578063f2fde38b14610646578063f47c84c51461066657600080fd5b8063c87b56dd14610566578063cd7c032614610586578063ce7c2ac2146105a6578063d26ea6c0146105dc57600080fd5b8063a22cb465116100dc578063a22cb465146104f3578063a2b40d1914610513578063a723533e14610533578063b88d4fde1461054657600080fd5b80638b83209b1461046a5780638da5cb5b1461048a57806395d89b41146104a85780639852595c146104bd57600080fd5b806334918dfd1161019057806355f804b31161015f57806355f804b3146103df5780636352211e146103ff5780636817c76c1461041f57806370a0823114610435578063715018a61461045557600080fd5b806334918dfd146103755780633a98ef391461038a5780633c0a1d091461039f57806342842e0e146103bf57600080fd5b80631211b076116101cc5780631211b076146102fc57806318160ddd14610316578063191655871461033557806323b872dd1461035557600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57600080fd5b36610246577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561025757600080fd5b5061026b610266366004611dfe565b61067c565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956106ce565b6040516102779190611f74565b3480156102ae57600080fd5b506102c26102bd366004611e9e565b610760565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611dd2565b6107fa565b005b34801561030857600080fd5b50600f5461026b9060ff1681565b34801561032257600080fd5b50600d545b604051908152602001610277565b34801561034157600080fd5b506102fa610350366004611c88565b610910565b34801561036157600080fd5b506102fa610370366004611cde565b610ae1565b34801561038157600080fd5b506102fa610b12565b34801561039657600080fd5b50600754610327565b3480156103ab57600080fd5b506102fa6103ba366004611eb7565b610b50565b3480156103cb57600080fd5b506102fa6103da366004611cde565b610bf8565b3480156103eb57600080fd5b506102fa6103fa366004611e55565b610c13565b34801561040b57600080fd5b506102c261041a366004611e9e565b610c54565b34801561042b57600080fd5b50610327600c5481565b34801561044157600080fd5b50610327610450366004611c88565b610ccb565b34801561046157600080fd5b506102fa610d52565b34801561047657600080fd5b506102c2610485366004611e9e565b610d88565b34801561049657600080fd5b506006546001600160a01b03166102c2565b3480156104b457600080fd5b50610295610db8565b3480156104c957600080fd5b506103276104d8366004611c88565b6001600160a01b03166000908152600a602052604090205490565b3480156104ff57600080fd5b506102fa61050e366004611d9f565b610dc7565b34801561051f57600080fd5b506102fa61052e366004611e9e565b610dd2565b6102fa610541366004611e9e565b610e01565b34801561055257600080fd5b506102fa610561366004611d1f565b610fbc565b34801561057257600080fd5b50610295610581366004611e9e565b610ff4565b34801561059257600080fd5b506011546102c2906001600160a01b031681565b3480156105b257600080fd5b506103276105c1366004611c88565b6001600160a01b031660009081526009602052604090205490565b3480156105e857600080fd5b506102fa6105f7366004611c88565b6110cf565b34801561060857600080fd5b50600854610327565b34801561061d57600080fd5b5061026b61062c366004611ca5565b61111b565b34801561063d57600080fd5b50610327600a81565b34801561065257600080fd5b506102fa610661366004611c88565b6111eb565b34801561067257600080fd5b50610327610bd781565b60006001600160e01b031982166380ac58cd60e01b14806106ad57506001600160e01b03198216635b5e139f60e01b145b806106c857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106dd90612135565b80601f016020809104026020016040519081016040528092919081815260200182805461070990612135565b80156107565780601f1061072b57610100808354040283529160200191610756565b820191906000526020600020905b81548152906001019060200180831161073957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107de5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061080582610c54565b9050806001600160a01b0316836001600160a01b031614156108735760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107d5565b336001600160a01b038216148061088f575061088f813361111b565b6109015760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107d5565b61090b8383611286565b505050565b6001600160a01b0381166000908152600960205260409020546109845760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016107d5565b60006008544761099491906120a7565b6001600160a01b0383166000908152600a602090815260408083205460075460099093529083205493945091926109cb90856120d3565b6109d591906120bf565b6109df91906120f2565b905080610a425760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016107d5565b6001600160a01b0383166000908152600a6020526040902054610a669082906120a7565b6001600160a01b0384166000908152600a6020526040902055600854610a8d9082906120a7565b600855610a9a83826112f4565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610aeb338261140d565b610b075760405162461bcd60e51b81526004016107d590612056565b61090b8383836114dc565b6006546001600160a01b03163314610b3c5760405162461bcd60e51b81526004016107d590612021565b600f805460ff19811660ff90911615179055565b6006546001600160a01b03163314610b7a5760405162461bcd60e51b81526004016107d590612021565b610bd782600d54610b8b91906120a7565b1115610ba95760405162461bcd60e51b81526004016107d590611fd9565b60015b828111610bdc57610bca8282600d54610bc591906120a7565b61167c565b80610bd481612170565b915050610bac565b5081600d6000828254610bef91906120a7565b90915550505050565b61090b83838360405180602001604052806000815250610fbc565b6006546001600160a01b03163314610c3d5760405162461bcd60e51b81526004016107d590612021565b8051610c5090600e906020840190611b79565b5050565b6000818152600260205260408120546001600160a01b0316806106c85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107d5565b60006001600160a01b038216610d365760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107d5565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d7c5760405162461bcd60e51b81526004016107d590612021565b610d8660006117be565b565b6000600b8281548110610d9d57610d9d6121cb565b6000918252602090912001546001600160a01b031692915050565b6060600180546106dd90612135565b610c50338383611810565b6006546001600160a01b03163314610dfc5760405162461bcd60e51b81526004016107d590612021565b600c55565b600f5460ff16610e485760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016107d5565b600a811115610e995760405162461bcd60e51b815260206004820152601a60248201527f4d6178206170657320706572206d696e7420657863656564656400000000000060448201526064016107d5565b610bd781600d54610eaa91906120a7565b1115610ec85760405162461bcd60e51b81526004016107d590611fd9565b3481600c54610ed791906120d3565b1115610f255760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107d5565b600d5433907fe859232996df7ea316358328d54c8123e3db2f1b03ebd13a73bfbfaa9c56b67d90610f579060016120a7565b60408051918252602082018590520160405180910390a260015b818111610fa157610f8f3382600d54610f8a91906120a7565b6118df565b80610f9981612170565b915050610f71565b5080600d6000828254610fb491906120a7565b909155505050565b610fc6338361140d565b610fe25760405162461bcd60e51b81526004016107d590612056565b610fee848484846118f9565b50505050565b6000818152600260205260409020546060906001600160a01b03166110735760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107d5565b600061107d61192c565b9050600081511161109d57604051806020016040528060008152506110c8565b806110a78461193b565b6040516020016110b8929190611f08565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146110f95760405162461bcd60e51b81526004016107d590612021565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b60115460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561116857600080fd5b505afa15801561117c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a09190611e38565b6001600160a01b031614156111b95760019150506106c8565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b031633146112155760405162461bcd60e51b81526004016107d590612021565b6001600160a01b03811661127a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d5565b611283816117be565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112bb82610c54565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156113445760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107d5565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611391576040519150601f19603f3d011682016040523d82523d6000602084013e611396565b606091505b505090508061090b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107d5565b6000818152600260205260408120546001600160a01b03166114865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107d5565b600061149183610c54565b9050806001600160a01b0316846001600160a01b031614806114cc5750836001600160a01b03166114c184610760565b6001600160a01b0316145b806111e357506111e3818561111b565b826001600160a01b03166114ef82610c54565b6001600160a01b0316146115575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107d5565b6001600160a01b0382166115b95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107d5565b6115c4600082611286565b6001600160a01b03831660009081526003602052604081208054600192906115ed9084906120f2565b90915550506001600160a01b038216600090815260036020526040812080546001929061161b9084906120a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166116d25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107d5565b6000818152600260205260409020546001600160a01b0316156117375760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107d5565b6001600160a01b03821660009081526003602052604081208054600192906117609084906120a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118725760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107d5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610c50828260405180602001604052806000815250611a39565b6119048484846114dc565b61191084848484611a6c565b610fee5760405162461bcd60e51b81526004016107d590611f87565b6060600e80546106dd90612135565b60608161195f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611989578061197381612170565b91506119829050600a836120bf565b9150611963565b60008167ffffffffffffffff8111156119a4576119a46121e1565b6040519080825280601f01601f1916602001820160405280156119ce576020820181803683370190505b5090505b84156111e3576119e36001836120f2565b91506119f0600a8661218b565b6119fb9060306120a7565b60f81b818381518110611a1057611a106121cb565b60200101906001600160f81b031916908160001a905350611a32600a866120bf565b94506119d2565b611a43838361167c565b611a506000848484611a6c565b61090b5760405162461bcd60e51b81526004016107d590611f87565b60006001600160a01b0384163b15611b6e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ab0903390899088908890600401611f37565b602060405180830381600087803b158015611aca57600080fd5b505af1925050508015611afa575060408051601f3d908101601f19168201909252611af791810190611e1b565b60015b611b54573d808015611b28576040519150601f19603f3d011682016040523d82523d6000602084013e611b2d565b606091505b508051611b4c5760405162461bcd60e51b81526004016107d590611f87565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111e3565b506001949350505050565b828054611b8590612135565b90600052602060002090601f016020900481019282611ba75760008555611bed565b82601f10611bc057805160ff1916838001178555611bed565b82800160010185558215611bed579182015b82811115611bed578251825591602001919060010190611bd2565b50611bf9929150611bfd565b5090565b5b80821115611bf95760008155600101611bfe565b600067ffffffffffffffff80841115611c2d57611c2d6121e1565b604051601f8501601f19908116603f01168101908282118183101715611c5557611c556121e1565b81604052809350858152868686011115611c6e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c9a57600080fd5b81356110c8816121f7565b60008060408385031215611cb857600080fd5b8235611cc3816121f7565b91506020830135611cd3816121f7565b809150509250929050565b600080600060608486031215611cf357600080fd5b8335611cfe816121f7565b92506020840135611d0e816121f7565b929592945050506040919091013590565b60008060008060808587031215611d3557600080fd5b8435611d40816121f7565b93506020850135611d50816121f7565b925060408501359150606085013567ffffffffffffffff811115611d7357600080fd5b8501601f81018713611d8457600080fd5b611d9387823560208401611c12565b91505092959194509250565b60008060408385031215611db257600080fd5b8235611dbd816121f7565b915060208301358015158114611cd357600080fd5b60008060408385031215611de557600080fd5b8235611df0816121f7565b946020939093013593505050565b600060208284031215611e1057600080fd5b81356110c88161220c565b600060208284031215611e2d57600080fd5b81516110c88161220c565b600060208284031215611e4a57600080fd5b81516110c8816121f7565b600060208284031215611e6757600080fd5b813567ffffffffffffffff811115611e7e57600080fd5b8201601f81018413611e8f57600080fd5b6111e384823560208401611c12565b600060208284031215611eb057600080fd5b5035919050565b60008060408385031215611eca57600080fd5b823591506020830135611cd3816121f7565b60008151808452611ef4816020860160208601612109565b601f01601f19169290920160200192915050565b60008351611f1a818460208801612109565b835190830190611f2e818360208801612109565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f6a90830184611edc565b9695505050505050565b6020815260006110c86020830184611edc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f507572636861736520776f756c6420657863656564206d617820617661696c61604082015267626c65206170657360c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120ba576120ba61219f565b500190565b6000826120ce576120ce6121b5565b500490565b60008160001904831182151516156120ed576120ed61219f565b500290565b6000828210156121045761210461219f565b500390565b60005b8381101561212457818101518382015260200161210c565b83811115610fee5750506000910152565b600181811c9082168061214957607f821691505b6020821081141561216a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121845761218461219f565b5060010190565b60008261219a5761219a6121b5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461128357600080fd5b6001600160e01b03198116811461128357600080fdfea264697066735822122018d2a475c8847898913f0dd9a1de7e4c54f65e1dcb4e54176da101f7a7feb76064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000020000000000000000000000002a6f8e45ce9275c3fdb226f6ef417a16a67ecace0000000000000000000000000121aacfeddf589c564d0fac80b4c665da836cc2000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a68747470733a2f2f6368616461706567796d636c75622e696f2f000000000000
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c80638b83209b1161010d578063c87b56dd116100a0578063e33b7de31161006f578063e33b7de3146105fc578063e985e9c514610611578063ed016a4614610631578063f2fde38b14610646578063f47c84c51461066657600080fd5b8063c87b56dd14610566578063cd7c032614610586578063ce7c2ac2146105a6578063d26ea6c0146105dc57600080fd5b8063a22cb465116100dc578063a22cb465146104f3578063a2b40d1914610513578063a723533e14610533578063b88d4fde1461054657600080fd5b80638b83209b1461046a5780638da5cb5b1461048a57806395d89b41146104a85780639852595c146104bd57600080fd5b806334918dfd1161019057806355f804b31161015f57806355f804b3146103df5780636352211e146103ff5780636817c76c1461041f57806370a0823114610435578063715018a61461045557600080fd5b806334918dfd146103755780633a98ef391461038a5780633c0a1d091461039f57806342842e0e146103bf57600080fd5b80631211b076116101cc5780631211b076146102fc57806318160ddd14610316578063191655871461033557806323b872dd1461035557600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57600080fd5b36610246577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561025757600080fd5b5061026b610266366004611dfe565b61067c565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956106ce565b6040516102779190611f74565b3480156102ae57600080fd5b506102c26102bd366004611e9e565b610760565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611dd2565b6107fa565b005b34801561030857600080fd5b50600f5461026b9060ff1681565b34801561032257600080fd5b50600d545b604051908152602001610277565b34801561034157600080fd5b506102fa610350366004611c88565b610910565b34801561036157600080fd5b506102fa610370366004611cde565b610ae1565b34801561038157600080fd5b506102fa610b12565b34801561039657600080fd5b50600754610327565b3480156103ab57600080fd5b506102fa6103ba366004611eb7565b610b50565b3480156103cb57600080fd5b506102fa6103da366004611cde565b610bf8565b3480156103eb57600080fd5b506102fa6103fa366004611e55565b610c13565b34801561040b57600080fd5b506102c261041a366004611e9e565b610c54565b34801561042b57600080fd5b50610327600c5481565b34801561044157600080fd5b50610327610450366004611c88565b610ccb565b34801561046157600080fd5b506102fa610d52565b34801561047657600080fd5b506102c2610485366004611e9e565b610d88565b34801561049657600080fd5b506006546001600160a01b03166102c2565b3480156104b457600080fd5b50610295610db8565b3480156104c957600080fd5b506103276104d8366004611c88565b6001600160a01b03166000908152600a602052604090205490565b3480156104ff57600080fd5b506102fa61050e366004611d9f565b610dc7565b34801561051f57600080fd5b506102fa61052e366004611e9e565b610dd2565b6102fa610541366004611e9e565b610e01565b34801561055257600080fd5b506102fa610561366004611d1f565b610fbc565b34801561057257600080fd5b50610295610581366004611e9e565b610ff4565b34801561059257600080fd5b506011546102c2906001600160a01b031681565b3480156105b257600080fd5b506103276105c1366004611c88565b6001600160a01b031660009081526009602052604090205490565b3480156105e857600080fd5b506102fa6105f7366004611c88565b6110cf565b34801561060857600080fd5b50600854610327565b34801561061d57600080fd5b5061026b61062c366004611ca5565b61111b565b34801561063d57600080fd5b50610327600a81565b34801561065257600080fd5b506102fa610661366004611c88565b6111eb565b34801561067257600080fd5b50610327610bd781565b60006001600160e01b031982166380ac58cd60e01b14806106ad57506001600160e01b03198216635b5e139f60e01b145b806106c857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106dd90612135565b80601f016020809104026020016040519081016040528092919081815260200182805461070990612135565b80156107565780601f1061072b57610100808354040283529160200191610756565b820191906000526020600020905b81548152906001019060200180831161073957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107de5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061080582610c54565b9050806001600160a01b0316836001600160a01b031614156108735760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107d5565b336001600160a01b038216148061088f575061088f813361111b565b6109015760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107d5565b61090b8383611286565b505050565b6001600160a01b0381166000908152600960205260409020546109845760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016107d5565b60006008544761099491906120a7565b6001600160a01b0383166000908152600a602090815260408083205460075460099093529083205493945091926109cb90856120d3565b6109d591906120bf565b6109df91906120f2565b905080610a425760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016107d5565b6001600160a01b0383166000908152600a6020526040902054610a669082906120a7565b6001600160a01b0384166000908152600a6020526040902055600854610a8d9082906120a7565b600855610a9a83826112f4565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610aeb338261140d565b610b075760405162461bcd60e51b81526004016107d590612056565b61090b8383836114dc565b6006546001600160a01b03163314610b3c5760405162461bcd60e51b81526004016107d590612021565b600f805460ff19811660ff90911615179055565b6006546001600160a01b03163314610b7a5760405162461bcd60e51b81526004016107d590612021565b610bd782600d54610b8b91906120a7565b1115610ba95760405162461bcd60e51b81526004016107d590611fd9565b60015b828111610bdc57610bca8282600d54610bc591906120a7565b61167c565b80610bd481612170565b915050610bac565b5081600d6000828254610bef91906120a7565b90915550505050565b61090b83838360405180602001604052806000815250610fbc565b6006546001600160a01b03163314610c3d5760405162461bcd60e51b81526004016107d590612021565b8051610c5090600e906020840190611b79565b5050565b6000818152600260205260408120546001600160a01b0316806106c85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107d5565b60006001600160a01b038216610d365760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107d5565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d7c5760405162461bcd60e51b81526004016107d590612021565b610d8660006117be565b565b6000600b8281548110610d9d57610d9d6121cb565b6000918252602090912001546001600160a01b031692915050565b6060600180546106dd90612135565b610c50338383611810565b6006546001600160a01b03163314610dfc5760405162461bcd60e51b81526004016107d590612021565b600c55565b600f5460ff16610e485760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016107d5565b600a811115610e995760405162461bcd60e51b815260206004820152601a60248201527f4d6178206170657320706572206d696e7420657863656564656400000000000060448201526064016107d5565b610bd781600d54610eaa91906120a7565b1115610ec85760405162461bcd60e51b81526004016107d590611fd9565b3481600c54610ed791906120d3565b1115610f255760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107d5565b600d5433907fe859232996df7ea316358328d54c8123e3db2f1b03ebd13a73bfbfaa9c56b67d90610f579060016120a7565b60408051918252602082018590520160405180910390a260015b818111610fa157610f8f3382600d54610f8a91906120a7565b6118df565b80610f9981612170565b915050610f71565b5080600d6000828254610fb491906120a7565b909155505050565b610fc6338361140d565b610fe25760405162461bcd60e51b81526004016107d590612056565b610fee848484846118f9565b50505050565b6000818152600260205260409020546060906001600160a01b03166110735760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107d5565b600061107d61192c565b9050600081511161109d57604051806020016040528060008152506110c8565b806110a78461193b565b6040516020016110b8929190611f08565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146110f95760405162461bcd60e51b81526004016107d590612021565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b60115460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561116857600080fd5b505afa15801561117c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a09190611e38565b6001600160a01b031614156111b95760019150506106c8565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b031633146112155760405162461bcd60e51b81526004016107d590612021565b6001600160a01b03811661127a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d5565b611283816117be565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112bb82610c54565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156113445760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107d5565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611391576040519150601f19603f3d011682016040523d82523d6000602084013e611396565b606091505b505090508061090b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107d5565b6000818152600260205260408120546001600160a01b03166114865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107d5565b600061149183610c54565b9050806001600160a01b0316846001600160a01b031614806114cc5750836001600160a01b03166114c184610760565b6001600160a01b0316145b806111e357506111e3818561111b565b826001600160a01b03166114ef82610c54565b6001600160a01b0316146115575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107d5565b6001600160a01b0382166115b95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107d5565b6115c4600082611286565b6001600160a01b03831660009081526003602052604081208054600192906115ed9084906120f2565b90915550506001600160a01b038216600090815260036020526040812080546001929061161b9084906120a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166116d25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107d5565b6000818152600260205260409020546001600160a01b0316156117375760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107d5565b6001600160a01b03821660009081526003602052604081208054600192906117609084906120a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118725760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107d5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610c50828260405180602001604052806000815250611a39565b6119048484846114dc565b61191084848484611a6c565b610fee5760405162461bcd60e51b81526004016107d590611f87565b6060600e80546106dd90612135565b60608161195f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611989578061197381612170565b91506119829050600a836120bf565b9150611963565b60008167ffffffffffffffff8111156119a4576119a46121e1565b6040519080825280601f01601f1916602001820160405280156119ce576020820181803683370190505b5090505b84156111e3576119e36001836120f2565b91506119f0600a8661218b565b6119fb9060306120a7565b60f81b818381518110611a1057611a106121cb565b60200101906001600160f81b031916908160001a905350611a32600a866120bf565b94506119d2565b611a43838361167c565b611a506000848484611a6c565b61090b5760405162461bcd60e51b81526004016107d590611f87565b60006001600160a01b0384163b15611b6e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ab0903390899088908890600401611f37565b602060405180830381600087803b158015611aca57600080fd5b505af1925050508015611afa575060408051601f3d908101601f19168201909252611af791810190611e1b565b60015b611b54573d808015611b28576040519150601f19603f3d011682016040523d82523d6000602084013e611b2d565b606091505b508051611b4c5760405162461bcd60e51b81526004016107d590611f87565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111e3565b506001949350505050565b828054611b8590612135565b90600052602060002090601f016020900481019282611ba75760008555611bed565b82601f10611bc057805160ff1916838001178555611bed565b82800160010185558215611bed579182015b82811115611bed578251825591602001919060010190611bd2565b50611bf9929150611bfd565b5090565b5b80821115611bf95760008155600101611bfe565b600067ffffffffffffffff80841115611c2d57611c2d6121e1565b604051601f8501601f19908116603f01168101908282118183101715611c5557611c556121e1565b81604052809350858152868686011115611c6e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c9a57600080fd5b81356110c8816121f7565b60008060408385031215611cb857600080fd5b8235611cc3816121f7565b91506020830135611cd3816121f7565b809150509250929050565b600080600060608486031215611cf357600080fd5b8335611cfe816121f7565b92506020840135611d0e816121f7565b929592945050506040919091013590565b60008060008060808587031215611d3557600080fd5b8435611d40816121f7565b93506020850135611d50816121f7565b925060408501359150606085013567ffffffffffffffff811115611d7357600080fd5b8501601f81018713611d8457600080fd5b611d9387823560208401611c12565b91505092959194509250565b60008060408385031215611db257600080fd5b8235611dbd816121f7565b915060208301358015158114611cd357600080fd5b60008060408385031215611de557600080fd5b8235611df0816121f7565b946020939093013593505050565b600060208284031215611e1057600080fd5b81356110c88161220c565b600060208284031215611e2d57600080fd5b81516110c88161220c565b600060208284031215611e4a57600080fd5b81516110c8816121f7565b600060208284031215611e6757600080fd5b813567ffffffffffffffff811115611e7e57600080fd5b8201601f81018413611e8f57600080fd5b6111e384823560208401611c12565b600060208284031215611eb057600080fd5b5035919050565b60008060408385031215611eca57600080fd5b823591506020830135611cd3816121f7565b60008151808452611ef4816020860160208601612109565b601f01601f19169290920160200192915050565b60008351611f1a818460208801612109565b835190830190611f2e818360208801612109565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f6a90830184611edc565b9695505050505050565b6020815260006110c86020830184611edc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f507572636861736520776f756c6420657863656564206d617820617661696c61604082015267626c65206170657360c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120ba576120ba61219f565b500190565b6000826120ce576120ce6121b5565b500490565b60008160001904831182151516156120ed576120ed61219f565b500290565b6000828210156121045761210461219f565b500390565b60005b8381101561212457818101518382015260200161210c565b83811115610fee5750506000910152565b600181811c9082168061214957607f821691505b6020821081141561216a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121845761218461219f565b5060010190565b60008261219a5761219a6121b5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461128357600080fd5b6001600160e01b03198116811461128357600080fdfea264697066735822122018d2a475c8847898913f0dd9a1de7e4c54f65e1dcb4e54176da101f7a7feb76064736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000020000000000000000000000002a6f8e45ce9275c3fdb226f6ef417a16a67ecace0000000000000000000000000121aacfeddf589c564d0fac80b4c665da836cc2000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a68747470733a2f2f6368616461706567796d636c75622e696f2f000000000000
-----Decoded View---------------
Arg [0] : payees (address[]): 0x2A6f8E45cE9275c3FDb226F6eF417a16A67eCace,0x0121AaCFEDDF589c564D0Fac80b4C665DA836cC2
Arg [1] : shares (uint256[]): 80,20
Arg [2] : baseURI (string): https://chadapegymclub.io/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 0000000000000000000000002a6f8e45ce9275c3fdb226f6ef417a16a67ecace
Arg [5] : 0000000000000000000000000121aacfeddf589c564d0fac80b4c665da836cc2
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [9] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [10] : 68747470733a2f2f6368616461706567796d636c75622e696f2f000000000000
Deployed Bytecode Sourcemap
497:3021:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2733:40:2;719:10:10;2733:40:2;;;-1:-1:-1;;;;;6657:32:14;;;6639:51;;2763:9:2;6721:2:14;6706:18;;6699:34;6612:18;2733:40:2;;;;;;;497:3021:0;;;;;1555:300:5;;;;;;;;;;-1:-1:-1;1555:300:5;;;;;:::i;:::-;;:::i;:::-;;;7681:14:14;;7674:22;7656:41;;7644:2;7629:18;1555:300:5;;;;;;;;2473:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3984:217::-;;;;;;;;;;-1:-1:-1;3984:217:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6413:32:14;;;6395:51;;6383:2;6368:18;3984:217:5;6249:203:14;3522:401:5;;;;;;;;;;-1:-1:-1;3522:401:5;;;;;:::i;:::-;;:::i;:::-;;778:30:0;;;;;;;;;;-1:-1:-1;778:30:0;;;;;;;;2243:88;;;;;;;;;;-1:-1:-1;2313:11:0;;2243:88;;;17535:25:14;;;17523:2;17508:18;2243:88:0;17389:177:14;3897:600:2;;;;;;;;;;-1:-1:-1;3897:600:2;;;;;:::i;:::-;;:::i;4711:330:5:-;;;;;;;;;;-1:-1:-1;4711:330:5;;;;;:::i;:::-;;:::i;2666:85:0:-;;;;;;;;;;;;;:::i;2858:89:2:-;;;;;;;;;;-1:-1:-1;2928:12:2;;2858:89;;1887:350:0;;;;;;;;;;-1:-1:-1;1887:350:0;;;;;:::i;:::-;;:::i;5107:179:5:-;;;;;;;;;;-1:-1:-1;5107:179:5;;;;;:::i;:::-;;:::i;2455:102:0:-;;;;;;;;;;-1:-1:-1;2455:102:0;;;;;:::i;:::-;;:::i;2176:235:5:-;;;;;;;;;;-1:-1:-1;2176:235:5;;;;;:::i;:::-;;:::i;663:37:0:-;;;;;;;;;;;;;;;;1914:205:5;;;;;;;;;;-1:-1:-1;1914:205:5;;;;;:::i;:::-;;:::i;1668:101:1:-;;;;;;;;;;;;;:::i;3605:98:2:-;;;;;;;;;;-1:-1:-1;3605:98:2;;;;;:::i;:::-;;:::i;1036:85:1:-;;;;;;;;;;-1:-1:-1;1108:6:1;;-1:-1:-1;;;;;1108:6:1;1036:85;;2635:102:5;;;;;;;;;;;;;:::i;3412:107:2:-;;;;;;;;;;-1:-1:-1;3412:107:2;;;;;:::i;:::-;-1:-1:-1;;;;;3494:18:2;3468:7;3494:18;;;:9;:18;;;;;;;3412:107;4268:153:5;;;;;;;;;;-1:-1:-1;4268:153:5;;;;;:::i;:::-;;:::i;2563:97:0:-;;;;;;;;;;-1:-1:-1;2563:97:0;;;;;:::i;:::-;;:::i;1260:621::-;;;;;;:::i;:::-;;:::i;5352:320:5:-;;;;;;;;;;-1:-1:-1;5352:320:5;;;;;:::i;:::-;;:::i;2803:329::-;;;;;;;;;;-1:-1:-1;2803:329:5;;;;;:::i;:::-;;:::i;864:80:0:-;;;;;;;;;;-1:-1:-1;864:80:0;;;;-1:-1:-1;;;;;864:80:0;;;3215:103:2;;;;;;;;;;-1:-1:-1;3215:103:2;;;;;:::i;:::-;-1:-1:-1;;;;;3295:16:2;3269:7;3295:16;;;:7;:16;;;;;;;3215:103;3372:144:0;;;;;;;;;;-1:-1:-1;3372:144:0;;;;;:::i;:::-;;:::i;3036:93:2:-;;;;;;;;;;-1:-1:-1;3108:14:2;;3036:93;;2877:432:0;;;;;;;;;;-1:-1:-1;2877:432:0;;;;;:::i;:::-;;:::i;613:44::-;;;;;;;;;;;;655:2;613:44;;1918:198:1;;;;;;;;;;-1:-1:-1;1918:198:1;;;;;:::i;:::-;;:::i;566:41:0:-;;;;;;;;;;;;603:4;566:41;;1555:300:5;1657:4;-1:-1:-1;;;;;;1692:40:5;;-1:-1:-1;;;1692:40:5;;:104;;-1:-1:-1;;;;;;;1748:48:5;;-1:-1:-1;;;1748:48:5;1692:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:12;;;1812:36:5;1673:175;1555:300;-1:-1:-1;;1555:300:5:o;2473:98::-;2527:13;2559:5;2552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2473:98;:::o;3984:217::-;4060:7;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:5;4079:73;;;;-1:-1:-1;;;4079:73:5;;15171:2:14;4079:73:5;;;15153:21:14;15210:2;15190:18;;;15183:30;15249:34;15229:18;;;15222:62;-1:-1:-1;;;15300:18:14;;;15293:42;15352:19;;4079:73:5;;;;;;;;;-1:-1:-1;4170:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4170:24:5;;3984:217::o;3522:401::-;3602:13;3618:23;3633:7;3618:14;:23::i;:::-;3602:39;;3665:5;-1:-1:-1;;;;;3659:11:5;:2;-1:-1:-1;;;;;3659:11:5;;;3651:57;;;;-1:-1:-1;;;3651:57:5;;16771:2:14;3651:57:5;;;16753:21:14;16810:2;16790:18;;;16783:30;16849:34;16829:18;;;16822:62;-1:-1:-1;;;16900:18:14;;;16893:31;16941:19;;3651:57:5;16569:397:14;3651:57:5;719:10:10;-1:-1:-1;;;;;3740:21:5;;;;:62;;-1:-1:-1;3765:37:5;3782:5;719:10:10;2877:432:0;:::i;3765:37:5:-;3719:165;;;;-1:-1:-1;;;3719:165:5;;13155:2:14;3719:165:5;;;13137:21:14;13194:2;13174:18;;;13167:30;13233:34;13213:18;;;13206:62;13304:26;13284:18;;;13277:54;13348:19;;3719:165:5;12953:420:14;3719:165:5;3895:21;3904:2;3908:7;3895:8;:21::i;:::-;3592:331;3522:401;;:::o;3897:600:2:-;-1:-1:-1;;;;;3972:16:2;;3991:1;3972:16;;;:7;:16;;;;;;3964:71;;;;-1:-1:-1;;;3964:71:2;;9672:2:14;3964:71:2;;;9654:21:14;9711:2;9691:18;;;9684:30;9750:34;9730:18;;;9723:62;-1:-1:-1;;;9801:18:14;;;9794:36;9847:19;;3964:71:2;9470:402:14;3964:71:2;4046:21;4094:14;;4070:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;4188:18:2;;4118:15;4188:18;;;:9;:18;;;;;;;;;4173:12;;4153:7;:16;;;;;;;4046:62;;-1:-1:-1;4118:15:2;;4137:32;;4046:62;4137:32;:::i;:::-;4136:49;;;;:::i;:::-;:70;;;;:::i;:::-;4118:88;-1:-1:-1;4225:12:2;4217:68;;;;-1:-1:-1;;;4217:68:2;;12743:2:14;4217:68:2;;;12725:21:14;12782:2;12762:18;;;12755:30;12821:34;12801:18;;;12794:62;-1:-1:-1;;;12872:18:14;;;12865:41;12923:19;;4217:68:2;12541:407:14;4217:68:2;-1:-1:-1;;;;;4317:18:2;;;;;;:9;:18;;;;;;:28;;4338:7;;4317:28;:::i;:::-;-1:-1:-1;;;;;4296:18:2;;;;;;:9;:18;;;;;:49;4372:14;;:24;;4389:7;;4372:24;:::i;:::-;4355:14;:41;4407:35;4425:7;4434;4407:17;:35::i;:::-;4457:33;;;-1:-1:-1;;;;;6657:32:14;;6639:51;;6721:2;6706:18;;6699:34;;;4457:33:2;;6612:18:14;4457:33:2;;;;;;;3954:543;;3897:600;:::o;4711:330:5:-;4900:41;719:10:10;4933:7:5;4900:18;:41::i;:::-;4892:103;;;;-1:-1:-1;;;4892:103:5;;;;;;;:::i;:::-;5006:28;5016:4;5022:2;5026:7;5006:9;:28::i;2666:85:0:-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:10;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;2734:10:0::1;::::0;;-1:-1:-1;;2720:24:0;::::1;2734:10;::::0;;::::1;2733:11;2720:24;::::0;;2666:85::o;1887:350::-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:10;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;603:4:0::1;2001:14;1987:11;;:28;;;;:::i;:::-;:42;;1979:95;;;;-1:-1:-1::0;;;1979:95:0::1;;;;;;;:::i;:::-;2101:1;2085:106;2110:14;2105:1;:19;2085:106;;2145:35;2151:11;2178:1;2164:11;;:15;;;;:::i;:::-;2145:5;:35::i;:::-;2126:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2085:106;;;;2216:14;2201:11;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;1887:350:0:o;5107:179:5:-;5240:39;5257:4;5263:2;5267:7;5240:39;;;;;;;;;;;;:16;:39::i;2455:102:0:-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:10;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;2527:23:0;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2455:102:::0;:::o;2176:235:5:-;2248:7;2283:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2283:16:5;2317:19;2309:73;;;;-1:-1:-1;;;2309:73:5;;13991:2:14;2309:73:5;;;13973:21:14;14030:2;14010:18;;;14003:30;14069:34;14049:18;;;14042:62;-1:-1:-1;;;14120:18:14;;;14113:39;14169:19;;2309:73:5;13789:405:14;1914:205:5;1986:7;-1:-1:-1;;;;;2013:19:5;;2005:74;;;;-1:-1:-1;;;2005:74:5;;13580:2:14;2005:74:5;;;13562:21:14;13619:2;13599:18;;;13592:30;13658:34;13638:18;;;13631:62;-1:-1:-1;;;13709:18:14;;;13702:40;13759:19;;2005:74:5;13378:406:14;2005:74:5;-1:-1:-1;;;;;;2096:16:5;;;;;:9;:16;;;;;;;1914:205::o;1668:101:1:-;1108:6;;-1:-1:-1;;;;;1108:6:1;719:10:10;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;3605:98:2:-;3656:7;3682;3690:5;3682:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;3682:14:2;;3605:98;-1:-1:-1;;3605:98:2:o;2635:102:5:-;2691:13;2723:7;2716:14;;;;;:::i;4268:153::-;4362:52;719:10:10;4395:8:5;4405;4362:18;:52::i;2563:97:0:-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:10;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;2632:9:0::1;:21:::0;2563:97::o;1260:621::-;1336:10;;;;1328:41;;;;-1:-1:-1;;;1328:41:0;;10838:2:14;1328:41:0;;;10820:21:14;10877:2;10857:18;;;10850:30;-1:-1:-1;;;10896:18:14;;;10889:48;10954:18;;1328:41:0;10636:342:14;1328:41:0;655:2;1387:14;:33;;1379:72;;;;-1:-1:-1;;;1379:72:0;;8960:2:14;1379:72:0;;;8942:21:14;8999:2;8979:18;;;8972:30;9038:28;9018:18;;;9011:56;9084:18;;1379:72:0;8758:350:14;1379:72:0;603:4;1483:14;1469:11;;:28;;;;:::i;:::-;:42;;1461:95;;;;-1:-1:-1;;;1461:95:0;;;;;;;:::i;:::-;1604:9;1586:14;1574:9;;:26;;;;:::i;:::-;:39;;1566:83;;;;-1:-1:-1;;;1566:83:0;;11185:2:14;1566:83:0;;;11167:21:14;11224:2;11204:18;;;11197:30;11263:33;11243:18;;;11236:61;11314:18;;1566:83:0;10983:355:14;1566:83:0;1685:11;;1673:10;;1665:50;;1685:13;;1697:1;1685:13;:::i;:::-;1665:50;;;17745:25:14;;;17801:2;17786:18;;17779:34;;;17718:18;1665:50:0;;;;;;;1742:1;1726:109;1751:14;1746:1;:19;1726:109;;1786:38;1796:10;1822:1;1808:11;;:15;;;;:::i;:::-;1786:9;:38::i;:::-;1767:3;;;;:::i;:::-;;;;1726:109;;;;1860:14;1845:11;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;;;1260:621:0:o;5352:320:5:-;5521:41;719:10:10;5554:7:5;5521:18;:41::i;:::-;5513:103;;;;-1:-1:-1;;;5513:103:5;;;;;;;:::i;:::-;5626:39;5640:4;5646:2;5650:7;5659:5;5626:13;:39::i;:::-;5352:320;;;;:::o;2803:329::-;7209:4;7232:16;;;:7;:16;;;;;;2876:13;;-1:-1:-1;;;;;7232:16:5;2901:76;;;;-1:-1:-1;;;2901:76:5;;16355:2:14;2901:76:5;;;16337:21:14;16394:2;16374:18;;;16367:30;16433:34;16413:18;;;16406:62;-1:-1:-1;;;16484:18:14;;;16477:45;16539:19;;2901:76:5;16153:411:14;2901:76:5;2988:21;3012:10;:8;:10::i;:::-;2988:34;;3063:1;3045:7;3039:21;:25;:86;;;;;;;;;;;;;;;;;3091:7;3100:18;:7;:16;:18::i;:::-;3074:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3039:86;3032:93;2803:329;-1:-1:-1;;;2803:329:5:o;3372:144:0:-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:10;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;3465:20:0::1;:44:::0;;-1:-1:-1;;;;;;3465:44:0::1;-1:-1:-1::0;;;;;3465:44:0;;;::::1;::::0;;;::::1;::::0;;3372:144::o;2877:432::-;3124:20;;3167:28;;-1:-1:-1;;;3167:28:0;;-1:-1:-1;;;;;6413:32:14;;;3167:28:0;;;6395:51:14;2998:4:0;;3124:20;;;3159:49;;;;3124:20;;3167:21;;6368:18:14;;3167:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3159:49:0;;3155:91;;;3231:4;3224:11;;;;;3155:91;-1:-1:-1;;;;;4607:25:5;;;4584:4;4607:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;3263:39:0;3256:46;2877:432;-1:-1:-1;;;;2877:432:0:o;1918:198:1:-;1108:6;;-1:-1:-1;;;;;1108:6:1;719:10:10;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:1;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:1;;8553:2:14;1998:73:1::1;::::0;::::1;8535:21:14::0;8592:2;8572:18;;;8565:30;8631:34;8611:18;;;8604:62;-1:-1:-1;;;8682:18:14;;;8675:36;8728:19;;1998:73:1::1;8351:402:14::0;1998:73:1::1;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;10995:171:5:-;11069:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11069:29:5;-1:-1:-1;;;;;11069:29:5;;;;;;;;:24;;11122:23;11069:24;11122:14;:23::i;:::-;-1:-1:-1;;;;;11113:46:5;;;;;;;;;;;10995:171;;:::o;2065:312:9:-;2179:6;2154:21;:31;;2146:73;;;;-1:-1:-1;;;2146:73:9;;11972:2:14;2146:73:9;;;11954:21:14;12011:2;11991:18;;;11984:30;12050:31;12030:18;;;12023:59;12099:18;;2146:73:9;11770:353:14;2146:73:9;2231:12;2249:9;-1:-1:-1;;;;;2249:14:9;2271:6;2249:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2230:52;;;2300:7;2292:78;;;;-1:-1:-1;;;2292:78:9;;11545:2:14;2292:78:9;;;11527:21:14;11584:2;11564:18;;;11557:30;11623:34;11603:18;;;11596:62;11694:28;11674:18;;;11667:56;11740:19;;2292:78:9;11343:422:14;7427:344:5;7520:4;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:5;7536:73;;;;-1:-1:-1;;;7536:73:5;;12330:2:14;7536:73:5;;;12312:21:14;12369:2;12349:18;;;12342:30;12408:34;12388:18;;;12381:62;-1:-1:-1;;;12459:18:14;;;12452:42;12511:19;;7536:73:5;12128:408:14;7536:73:5;7619:13;7635:23;7650:7;7635:14;:23::i;:::-;7619:39;;7687:5;-1:-1:-1;;;;;7676:16:5;:7;-1:-1:-1;;;;;7676:16:5;;:51;;;;7720:7;-1:-1:-1;;;;;7696:31:5;:20;7708:7;7696:11;:20::i;:::-;-1:-1:-1;;;;;7696:31:5;;7676:51;:87;;;;7731:32;7748:5;7755:7;7731:16;:32::i;10324:560::-;10478:4;-1:-1:-1;;;;;10451:31:5;:23;10466:7;10451:14;:23::i;:::-;-1:-1:-1;;;;;10451:31:5;;10443:85;;;;-1:-1:-1;;;10443:85:5;;15945:2:14;10443:85:5;;;15927:21:14;15984:2;15964:18;;;15957:30;16023:34;16003:18;;;15996:62;-1:-1:-1;;;16074:18:14;;;16067:39;16123:19;;10443:85:5;15743:405:14;10443:85:5;-1:-1:-1;;;;;10546:16:5;;10538:65;;;;-1:-1:-1;;;10538:65:5;;10079:2:14;10538:65:5;;;10061:21:14;10118:2;10098:18;;;10091:30;10157:34;10137:18;;;10130:62;-1:-1:-1;;;10208:18:14;;;10201:34;10252:19;;10538:65:5;9877:400:14;10538:65:5;10715:29;10732:1;10736:7;10715:8;:29::i;:::-;-1:-1:-1;;;;;10755:15:5;;;;;;:9;:15;;;;;:20;;10774:1;;10755:15;:20;;10774:1;;10755:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10785:13:5;;;;;;:9;:13;;;;;:18;;10802:1;;10785:13;:18;;10802:1;;10785:18;:::i;:::-;;;;-1:-1:-1;;10813:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10813:21:5;-1:-1:-1;;;;;10813:21:5;;;;;;;;;10850:27;;10813:16;;10850:27;;;;;;;10324:560;;;:::o;9063:372::-;-1:-1:-1;;;;;9142:16:5;;9134:61;;;;-1:-1:-1;;;9134:61:5;;14810:2:14;9134:61:5;;;14792:21:14;;;14829:18;;;14822:30;14888:34;14868:18;;;14861:62;14940:18;;9134:61:5;14608:356:14;9134:61:5;7209:4;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:5;:30;9205:58;;;;-1:-1:-1;;;9205:58:5;;9315:2:14;9205:58:5;;;9297:21:14;9354:2;9334:18;;;9327:30;9393;9373:18;;;9366:58;9441:18;;9205:58:5;9113:352:14;9205:58:5;-1:-1:-1;;;;;9330:13:5;;;;;;:9;:13;;;;;:18;;9347:1;;9330:13;:18;;9347:1;;9330:18;:::i;:::-;;;;-1:-1:-1;;9358:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9358:21:5;-1:-1:-1;;;;;9358:21:5;;;;;;;;9395:33;;9358:16;;;9395:33;;9358:16;;9395:33;9063:372;;:::o;2270:187:1:-;2362:6;;;-1:-1:-1;;;;;2378:17:1;;;-1:-1:-1;;;;;;2378:17:1;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;11301:307:5:-;11451:8;-1:-1:-1;;;;;11442:17:5;:5;-1:-1:-1;;;;;11442:17:5;;;11434:55;;;;-1:-1:-1;;;11434:55:5;;10484:2:14;11434:55:5;;;10466:21:14;10523:2;10503:18;;;10496:30;10562:27;10542:18;;;10535:55;10607:18;;11434:55:5;10282:349:14;11434:55:5;-1:-1:-1;;;;;11499:25:5;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11499:46:5;;;;;;;;;;11560:41;;7656::14;;;11560::5;;7629:18:14;11560:41:5;;;;;;;11301:307;;;:::o;8101:108::-;8176:26;8186:2;8190:7;8176:26;;;;;;;;;;;;:9;:26::i;6534:307::-;6685:28;6695:4;6701:2;6705:7;6685:9;:28::i;:::-;6731:48;6754:4;6760:2;6764:7;6773:5;6731:22;:48::i;:::-;6723:111;;;;-1:-1:-1;;;6723:111:5;;;;;;;:::i;2337:112:0:-;2397:13;2429;2422:20;;;;;:::i;328:703:11:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:11;;;;;;;;;;;;-1:-1:-1;;;627:10:11;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:11;;-1:-1:-1;773:2:11;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:11;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:11;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:11;;;;;;;;-1:-1:-1;972:11:11;981:2;972:11;;:::i;:::-;;;844:150;;8430:311:5;8555:18;8561:2;8565:7;8555:5;:18::i;:::-;8604:54;8635:1;8639:2;8643:7;8652:5;8604:22;:54::i;:::-;8583:151;;;;-1:-1:-1;;;8583:151:5;;;;;;;:::i;12161:778::-;12311:4;-1:-1:-1;;;;;12331:13:5;;1087:20:9;1133:8;12327:606:5;;12366:72;;-1:-1:-1;;;12366:72:5;;-1:-1:-1;;;;;12366:36:5;;;;;:72;;719:10:10;;12417:4:5;;12423:7;;12432:5;;12366:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12366:72:5;;;;;;;;-1:-1:-1;;12366:72:5;;;;;;;;;;;;:::i;:::-;;;12362:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12605:13:5;;12601:266;;12647:60;;-1:-1:-1;;;12647:60:5;;;;;;;:::i;12601:266::-;12819:6;12813:13;12804:6;12800:2;12796:15;12789:38;12362:519;-1:-1:-1;;;;;;12488:51:5;-1:-1:-1;;;12488:51:5;;-1:-1:-1;12481:58:5;;12327:606;-1:-1:-1;12918:4:5;12161:778;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:14;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:14;;;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:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;1162:388::-;1230:6;1238;1291:2;1279:9;1270:7;1266:23;1262:32;1259:52;;;1307:1;1304;1297:12;1259:52;1346:9;1333:23;1365:31;1390:5;1365:31;:::i;:::-;1415:5;-1:-1:-1;1472:2:14;1457:18;;1444:32;1485:33;1444:32;1485:33;:::i;:::-;1537:7;1527:17;;;1162:388;;;;;:::o;1555:456::-;1632:6;1640;1648;1701:2;1689:9;1680:7;1676:23;1672:32;1669:52;;;1717:1;1714;1707:12;1669:52;1756:9;1743:23;1775:31;1800:5;1775:31;:::i;:::-;1825:5;-1:-1:-1;1882:2:14;1867:18;;1854:32;1895:33;1854:32;1895:33;:::i;:::-;1555:456;;1947:7;;-1:-1:-1;;;2001:2:14;1986:18;;;;1973:32;;1555:456::o;2016:794::-;2111:6;2119;2127;2135;2188:3;2176:9;2167:7;2163:23;2159:33;2156:53;;;2205:1;2202;2195:12;2156:53;2244:9;2231:23;2263:31;2288:5;2263:31;:::i;:::-;2313:5;-1:-1:-1;2370:2:14;2355:18;;2342:32;2383:33;2342:32;2383:33;:::i;:::-;2435:7;-1:-1:-1;2489:2:14;2474:18;;2461:32;;-1:-1:-1;2544:2:14;2529:18;;2516:32;2571:18;2560:30;;2557:50;;;2603:1;2600;2593:12;2557:50;2626:22;;2679:4;2671:13;;2667:27;-1:-1:-1;2657:55:14;;2708:1;2705;2698:12;2657:55;2731:73;2796:7;2791:2;2778:16;2773:2;2769;2765:11;2731:73;:::i;:::-;2721:83;;;2016:794;;;;;;;:::o;2815:416::-;2880:6;2888;2941:2;2929:9;2920:7;2916:23;2912:32;2909:52;;;2957:1;2954;2947:12;2909:52;2996:9;2983:23;3015:31;3040:5;3015:31;:::i;:::-;3065:5;-1:-1:-1;3122:2:14;3107:18;;3094:32;3164:15;;3157:23;3145:36;;3135:64;;3195:1;3192;3185:12;3236:315;3304:6;3312;3365:2;3353:9;3344:7;3340:23;3336:32;3333:52;;;3381:1;3378;3371:12;3333:52;3420:9;3407:23;3439:31;3464:5;3439:31;:::i;:::-;3489:5;3541:2;3526:18;;;;3513:32;;-1:-1:-1;;;3236:315:14:o;3556:245::-;3614:6;3667:2;3655:9;3646:7;3642:23;3638:32;3635:52;;;3683:1;3680;3673:12;3635:52;3722:9;3709:23;3741:30;3765:5;3741:30;:::i;3806:249::-;3875:6;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;3976:9;3970:16;3995:30;4019:5;3995:30;:::i;4060:277::-;4156:6;4209:2;4197:9;4188:7;4184:23;4180:32;4177:52;;;4225:1;4222;4215:12;4177:52;4257:9;4251:16;4276:31;4301:5;4276:31;:::i;4342:450::-;4411:6;4464:2;4452:9;4443:7;4439:23;4435:32;4432:52;;;4480:1;4477;4470:12;4432:52;4520:9;4507:23;4553:18;4545:6;4542:30;4539:50;;;4585:1;4582;4575:12;4539:50;4608:22;;4661:4;4653:13;;4649:27;-1:-1:-1;4639:55:14;;4690:1;4687;4680:12;4639:55;4713:73;4778:7;4773:2;4760:16;4755:2;4751;4747:11;4713:73;:::i;4797:180::-;4856:6;4909:2;4897:9;4888:7;4884:23;4880:32;4877:52;;;4925:1;4922;4915:12;4877:52;-1:-1:-1;4948:23:14;;4797:180;-1:-1:-1;4797:180:14:o;4982:315::-;5050:6;5058;5111:2;5099:9;5090:7;5086:23;5082:32;5079:52;;;5127:1;5124;5117:12;5079:52;5163:9;5150:23;5140:33;;5223:2;5212:9;5208:18;5195:32;5236:31;5261:5;5236:31;:::i;5302:257::-;5343:3;5381:5;5375:12;5408:6;5403:3;5396:19;5424:63;5480:6;5473:4;5468:3;5464:14;5457:4;5450:5;5446:16;5424:63;:::i;:::-;5541:2;5520:15;-1:-1:-1;;5516:29:14;5507:39;;;;5548:4;5503:50;;5302:257;-1:-1:-1;;5302:257:14:o;5564:470::-;5743:3;5781:6;5775:13;5797:53;5843:6;5838:3;5831:4;5823:6;5819:17;5797:53;:::i;:::-;5913:13;;5872:16;;;;5935:57;5913:13;5872:16;5969:4;5957:17;;5935:57;:::i;:::-;6008:20;;5564:470;-1:-1:-1;;;;5564:470:14:o;6744:488::-;-1:-1:-1;;;;;7013:15:14;;;6995:34;;7065:15;;7060:2;7045:18;;7038:43;7112:2;7097:18;;7090:34;;;7160:3;7155:2;7140:18;;7133:31;;;6938:4;;7181:45;;7206:19;;7198:6;7181:45;:::i;:::-;7173:53;6744:488;-1:-1:-1;;;;;;6744:488:14:o;7708:219::-;7857:2;7846:9;7839:21;7820:4;7877:44;7917:2;7906:9;7902:18;7894:6;7877:44;:::i;7932:414::-;8134:2;8116:21;;;8173:2;8153:18;;;8146:30;8212:34;8207:2;8192:18;;8185:62;-1:-1:-1;;;8278:2:14;8263:18;;8256:48;8336:3;8321:19;;7932:414::o;14199:404::-;14401:2;14383:21;;;14440:2;14420:18;;;14413:30;14479:34;14474:2;14459:18;;14452:62;-1:-1:-1;;;14545:2:14;14530:18;;14523:38;14593:3;14578:19;;14199:404::o;15382:356::-;15584:2;15566:21;;;15603:18;;;15596:30;15662:34;15657:2;15642:18;;15635:62;15729:2;15714:18;;15382:356::o;16971:413::-;17173:2;17155:21;;;17212:2;17192:18;;;17185:30;17251:34;17246:2;17231:18;;17224:62;-1:-1:-1;;;17317:2:14;17302:18;;17295:47;17374:3;17359:19;;16971:413::o;17824:128::-;17864:3;17895:1;17891:6;17888:1;17885:13;17882:39;;;17901:18;;:::i;:::-;-1:-1:-1;17937:9:14;;17824:128::o;17957:120::-;17997:1;18023;18013:35;;18028:18;;:::i;:::-;-1:-1:-1;18062:9:14;;17957:120::o;18082:168::-;18122:7;18188:1;18184;18180:6;18176:14;18173:1;18170:21;18165:1;18158:9;18151:17;18147:45;18144:71;;;18195:18;;:::i;:::-;-1:-1:-1;18235:9:14;;18082:168::o;18255:125::-;18295:4;18323:1;18320;18317:8;18314:34;;;18328:18;;:::i;:::-;-1:-1:-1;18365:9:14;;18255:125::o;18385:258::-;18457:1;18467:113;18481:6;18478:1;18475:13;18467:113;;;18557:11;;;18551:18;18538:11;;;18531:39;18503:2;18496:10;18467:113;;;18598:6;18595:1;18592:13;18589:48;;;-1:-1:-1;;18633:1:14;18615:16;;18608:27;18385:258::o;18648:380::-;18727:1;18723:12;;;;18770;;;18791:61;;18845:4;18837:6;18833:17;18823:27;;18791:61;18898:2;18890:6;18887:14;18867:18;18864:38;18861:161;;;18944:10;18939:3;18935:20;18932:1;18925:31;18979:4;18976:1;18969:15;19007:4;19004:1;18997:15;18861:161;;18648:380;;;:::o;19033:135::-;19072:3;-1:-1:-1;;19093:17:14;;19090:43;;;19113:18;;:::i;:::-;-1:-1:-1;19160:1:14;19149:13;;19033:135::o;19173:112::-;19205:1;19231;19221:35;;19236:18;;:::i;:::-;-1:-1:-1;19270:9:14;;19173:112::o;19290:127::-;19351:10;19346:3;19342:20;19339:1;19332:31;19382:4;19379:1;19372:15;19406:4;19403:1;19396:15;19422:127;19483:10;19478:3;19474:20;19471:1;19464:31;19514:4;19511:1;19504:15;19538:4;19535:1;19528:15;19554:127;19615:10;19610:3;19606:20;19603:1;19596:31;19646:4;19643:1;19636:15;19670:4;19667:1;19660:15;19686:127;19747:10;19742:3;19738:20;19735:1;19728:31;19778:4;19775:1;19768:15;19802:4;19799:1;19792:15;19818:131;-1:-1:-1;;;;;19893:31:14;;19883:42;;19873:70;;19939:1;19936;19929:12;19954:131;-1:-1:-1;;;;;;20028:32:14;;20018:43;;20008:71;;20075:1;20072;20065:12
Swarm Source
ipfs://18d2a475c8847898913f0dd9a1de7e4c54f65e1dcb4e54176da101f7a7feb760
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.