Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,190 TBYC
Holders
325
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 TBYCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheBarnyardClub
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-18 */ /* **/ // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/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); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) 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 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 {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity >=0.7.0 <0.9.0; contract TheBarnyardClub is ERC721Enumerable, Ownable { using Strings for uint256; string baseURI; string public baseExtension = ".json"; uint256 public cost = 0.0 ether; uint256 public maxSupply = 5555; uint256 public maxMintAmount = 1; bool public paused = true; bool public revealed = true; string public notRevealedUri; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= 5450); require(msg.value >= cost * _mintAmount); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } function mintForOwner(uint256 _mintAmount) public onlyOwner { uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner { revealed = true; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner { (bool hs, ) = payable(0xBD584cE590B7dcdbB93b11e095d9E1D5880B44d9).call{value: address(this).balance * 30 / 100}(""); require(hs); (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c91906200021a565b506000600d556115b3600e556001600f8190556010805461ff001960ff19909116909217919091166101001790553480156200006357600080fd5b5060405162002c2a38038062002c2a83398101604081905262000086916200036b565b8351849084906200009f9060009060208501906200021a565b508051620000b59060019060208401906200021a565b505050620000d2620000cc620000f260201b60201c565b620000f6565b620000dd8262000148565b620000e881620001b0565b50505050620004a7565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000152620000f2565b6001600160a01b0316620001656200020b565b6001600160a01b031614620001975760405162461bcd60e51b81526004016200018e906200041f565b60405180910390fd5b8051620001ac90600b9060208401906200021a565b5050565b620001ba620000f2565b6001600160a01b0316620001cd6200020b565b6001600160a01b031614620001f65760405162461bcd60e51b81526004016200018e906200041f565b8051620001ac9060119060208401906200021a565b600a546001600160a01b031690565b828054620002289062000454565b90600052602060002090601f0160209004810192826200024c576000855562000297565b82601f106200026757805160ff191683800117855562000297565b8280016001018555821562000297579182015b82811115620002975782518255916020019190600101906200027a565b50620002a5929150620002a9565b5090565b5b80821115620002a55760008155600101620002aa565b600082601f830112620002d1578081fd5b81516001600160401b0380821115620002ee57620002ee62000491565b6040516020601f8401601f191682018101838111838210171562000316576200031662000491565b60405283825285840181018710156200032d578485fd5b8492505b8383101562000350578583018101518284018201529182019162000331565b838311156200036157848185840101525b5095945050505050565b6000806000806080858703121562000381578384fd5b84516001600160401b038082111562000398578586fd5b620003a688838901620002c0565b95506020870151915080821115620003bc578485fd5b620003ca88838901620002c0565b94506040870151915080821115620003e0578384fd5b620003ee88838901620002c0565b9350606087015191508082111562000404578283fd5b506200041387828801620002c0565b91505092959194509250565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200046957607f821691505b602082108114156200048b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61277380620004b76000396000f3fe60806040526004361061021a5760003560e01c80635c975abb11610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146105c2578063da3ef23f146105d7578063e985e9c5146105f7578063f2c4ce1e14610617578063f2fde38b146106375761021a565b8063a22cb46514610538578063a475b5dd14610558578063b88d4fde1461056d578063c66828621461058d578063c87b56dd146105a25761021a565b8063715018a6116100f2578063715018a6146104c65780637f00c7a6146104db5780638da5cb5b146104fb57806395d89b4114610510578063a0712d68146105255761021a565b80635c975abb146104515780636352211e1461046657806363bc312a1461048657806370a08231146104a65761021a565b806323b872dd116101a6578063438b630011610175578063438b6300146103af57806344a0d68a146103dc5780634f6ccce7146103fc578063518302271461041c57806355f804b3146104315761021a565b806323b872dd146103475780632f745c59146103675780633ccfd60b1461038757806342842e0e1461038f5761021a565b8063081c8c44116101ed578063081c8c44146102c6578063095ea7b3146102db57806313faede6146102fb57806318160ddd1461031d578063239c70ae146103325761021a565b806301ffc9a71461021f57806302329a291461025557806306fdde0314610277578063081812fc14610299575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611ea1565b610657565b60405161024c91906120bd565b60405180910390f35b34801561026157600080fd5b50610275610270366004611e87565b610684565b005b34801561028357600080fd5b5061028c6106df565b60405161024c91906120c8565b3480156102a557600080fd5b506102b96102b4366004611f1f565b610771565b60405161024c9190612028565b3480156102d257600080fd5b5061028c6107b4565b3480156102e757600080fd5b506102756102f6366004611e5e565b610842565b34801561030757600080fd5b506103106108da565b60405161024c91906125d8565b34801561032957600080fd5b506103106108e0565b34801561033e57600080fd5b506103106108e6565b34801561035357600080fd5b50610275610362366004611d81565b6108ec565b34801561037357600080fd5b50610310610382366004611e5e565b610924565b610275610976565b34801561039b57600080fd5b506102756103aa366004611d81565b610ab3565b3480156103bb57600080fd5b506103cf6103ca366004611d35565b610ace565b60405161024c9190612079565b3480156103e857600080fd5b506102756103f7366004611f1f565b610b8c565b34801561040857600080fd5b50610310610417366004611f1f565b610bd0565b34801561042857600080fd5b5061023f610c2b565b34801561043d57600080fd5b5061027561044c366004611ed9565b610c39565b34801561045d57600080fd5b5061023f610c8b565b34801561047257600080fd5b506102b9610481366004611f1f565b610c94565b34801561049257600080fd5b506102756104a1366004611f1f565b610cc9565b3480156104b257600080fd5b506103106104c1366004611d35565b610d88565b3480156104d257600080fd5b50610275610dcc565b3480156104e757600080fd5b506102756104f6366004611f1f565b610e17565b34801561050757600080fd5b506102b9610e5b565b34801561051c57600080fd5b5061028c610e6a565b610275610533366004611f1f565b610e79565b34801561054457600080fd5b50610275610553366004611e35565b610f0e565b34801561056457600080fd5b50610275610fdc565b34801561057957600080fd5b50610275610588366004611dbc565b61102c565b34801561059957600080fd5b5061028c61106b565b3480156105ae57600080fd5b5061028c6105bd366004611f1f565b611078565b3480156105ce57600080fd5b5061031061119f565b3480156105e357600080fd5b506102756105f2366004611ed9565b6111a5565b34801561060357600080fd5b5061023f610612366004611d4f565b6111f7565b34801561062357600080fd5b50610275610632366004611ed9565b611225565b34801561064357600080fd5b50610275610652366004611d35565b611277565b60006001600160e01b0319821663780e9d6360e01b148061067c575061067c826112e8565b90505b919050565b61068c611328565b6001600160a01b031661069d610e5b565b6001600160a01b0316146106cc5760405162461bcd60e51b81526004016106c39061242d565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546106ee9061267b565b80601f016020809104026020016040519081016040528092919081815260200182805461071a9061267b565b80156107675780601f1061073c57610100808354040283529160200191610767565b820191906000526020600020905b81548152906001019060200180831161074a57829003601f168201915b5050505050905090565b600061077c8261132c565b6107985760405162461bcd60e51b81526004016106c3906123e1565b506000908152600460205260409020546001600160a01b031690565b601180546107c19061267b565b80601f01602080910402602001604051908101604052809291908181526020018280546107ed9061267b565b801561083a5780601f1061080f5761010080835404028352916020019161083a565b820191906000526020600020905b81548152906001019060200180831161081d57829003601f168201915b505050505081565b600061084d82610c94565b9050806001600160a01b0316836001600160a01b031614156108815760405162461bcd60e51b81526004016106c3906124fa565b806001600160a01b0316610893611328565b6001600160a01b031614806108af57506108af81610612611328565b6108cb5760405162461bcd60e51b81526004016106c3906122bc565b6108d58383611349565b505050565b600d5481565b60085490565b600f5481565b6108fd6108f7611328565b826113b7565b6109195760405162461bcd60e51b81526004016106c39061253b565b6108d583838361143c565b600061092f83610d88565b821061094d5760405162461bcd60e51b81526004016106c3906120db565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61097e611328565b6001600160a01b031661098f610e5b565b6001600160a01b0316146109b55760405162461bcd60e51b81526004016106c39061242d565b600073bd584ce590b7dcdbb93b11e095d9e1d5880b44d960646109d947601e612619565b6109e39190612605565b6040516109ef90612025565b60006040518083038185875af1925050503d8060008114610a2c576040519150601f19603f3d011682016040523d82523d6000602084013e610a31565b606091505b5050905080610a3f57600080fd5b6000610a49610e5b565b6001600160a01b031647604051610a5f90612025565b60006040518083038185875af1925050503d8060008114610a9c576040519150601f19603f3d011682016040523d82523d6000602084013e610aa1565b606091505b5050905080610aaf57600080fd5b5050565b6108d58383836040518060200160405280600081525061102c565b60606000610adb83610d88565b905060008167ffffffffffffffff811115610b0657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610b2f578160200160208202803683370190505b50905060005b82811015610b8457610b478582610924565b828281518110610b6757634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610b7c816126b6565b915050610b35565b509392505050565b610b94611328565b6001600160a01b0316610ba5610e5b565b6001600160a01b031614610bcb5760405162461bcd60e51b81526004016106c39061242d565b600d55565b6000610bda6108e0565b8210610bf85760405162461bcd60e51b81526004016106c39061258c565b60088281548110610c1957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601054610100900460ff1681565b610c41611328565b6001600160a01b0316610c52610e5b565b6001600160a01b031614610c785760405162461bcd60e51b81526004016106c39061242d565b8051610aaf90600b906020840190611c05565b60105460ff1681565b6000818152600260205260408120546001600160a01b03168061067c5760405162461bcd60e51b81526004016106c390612363565b610cd1611328565b6001600160a01b0316610ce2610e5b565b6001600160a01b031614610d085760405162461bcd60e51b81526004016106c39061242d565b6000610d126108e0565b60105490915060ff1615610d2557600080fd5b60008211610d3257600080fd5b600f54821115610d4157600080fd5b600e54610d4e83836125ed565b1115610d5957600080fd5b60015b8281116108d557610d7633610d7183856125ed565b611569565b80610d80816126b6565b915050610d5c565b60006001600160a01b038216610db05760405162461bcd60e51b81526004016106c390612319565b506001600160a01b031660009081526003602052604090205490565b610dd4611328565b6001600160a01b0316610de5610e5b565b6001600160a01b031614610e0b5760405162461bcd60e51b81526004016106c39061242d565b610e156000611583565b565b610e1f611328565b6001600160a01b0316610e30610e5b565b6001600160a01b031614610e565760405162461bcd60e51b81526004016106c39061242d565b600f55565b600a546001600160a01b031690565b6060600180546106ee9061267b565b6000610e836108e0565b60105490915060ff1615610e9657600080fd5b60008211610ea357600080fd5b600f54821115610eb257600080fd5b61154a610ebf83836125ed565b1115610eca57600080fd5b81600d54610ed89190612619565b341015610ee457600080fd5b60015b8281116108d557610efc33610d7183856125ed565b80610f06816126b6565b915050610ee7565b610f16611328565b6001600160a01b0316826001600160a01b03161415610f475760405162461bcd60e51b81526004016106c390612239565b8060056000610f54611328565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f98611328565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fd091906120bd565b60405180910390a35050565b610fe4611328565b6001600160a01b0316610ff5610e5b565b6001600160a01b03161461101b5760405162461bcd60e51b81526004016106c39061242d565b6010805461ff001916610100179055565b61103d611037611328565b836113b7565b6110595760405162461bcd60e51b81526004016106c39061253b565b611065848484846115d5565b50505050565b600c80546107c19061267b565b60606110838261132c565b61109f5760405162461bcd60e51b81526004016106c3906124ab565b601054610100900460ff1661114057601180546110bb9061267b565b80601f01602080910402602001604051908101604052809291908181526020018280546110e79061267b565b80156111345780601f1061110957610100808354040283529160200191611134565b820191906000526020600020905b81548152906001019060200180831161111757829003601f168201915b5050505050905061067f565b600061114a611608565b9050600081511161116a5760405180602001604052806000815250611198565b8061117484611617565b600c60405160200161118893929190611f63565b6040516020818303038152906040525b9392505050565b600e5481565b6111ad611328565b6001600160a01b03166111be610e5b565b6001600160a01b0316146111e45760405162461bcd60e51b81526004016106c39061242d565b8051610aaf90600c906020840190611c05565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61122d611328565b6001600160a01b031661123e610e5b565b6001600160a01b0316146112645760405162461bcd60e51b81526004016106c39061242d565b8051610aaf906011906020840190611c05565b61127f611328565b6001600160a01b0316611290610e5b565b6001600160a01b0316146112b65760405162461bcd60e51b81526004016106c39061242d565b6001600160a01b0381166112dc5760405162461bcd60e51b81526004016106c390612178565b6112e581611583565b50565b60006001600160e01b031982166380ac58cd60e01b148061131957506001600160e01b03198216635b5e139f60e01b145b8061067c575061067c82611732565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061137e82610c94565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113c28261132c565b6113de5760405162461bcd60e51b81526004016106c390612270565b60006113e983610c94565b9050806001600160a01b0316846001600160a01b031614806114245750836001600160a01b031661141984610771565b6001600160a01b0316145b80611434575061143481856111f7565b949350505050565b826001600160a01b031661144f82610c94565b6001600160a01b0316146114755760405162461bcd60e51b81526004016106c390612462565b6001600160a01b03821661149b5760405162461bcd60e51b81526004016106c3906121f5565b6114a683838361174b565b6114b1600082611349565b6001600160a01b03831660009081526003602052604081208054600192906114da908490612638565b90915550506001600160a01b03821660009081526003602052604081208054600192906115089084906125ed565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610aaf8282604051806020016040528060008152506117d4565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115e084848461143c565b6115ec84848484611807565b6110655760405162461bcd60e51b81526004016106c390612126565b6060600b80546106ee9061267b565b60608161163c57506040805180820190915260018152600360fc1b602082015261067f565b8160005b81156116665780611650816126b6565b915061165f9050600a83612605565b9150611640565b60008167ffffffffffffffff81111561168f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116b9576020820181803683370190505b5090505b8415611434576116ce600183612638565b91506116db600a866126d1565b6116e69060306125ed565b60f81b81838151811061170957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061172b600a86612605565b94506116bd565b6001600160e01b031981166301ffc9a760e01b14919050565b6117568383836108d5565b6001600160a01b0383166117725761176d81611922565b611795565b816001600160a01b0316836001600160a01b031614611795576117958382611966565b6001600160a01b0382166117b1576117ac81611a03565b6108d5565b826001600160a01b0316826001600160a01b0316146108d5576108d58282611adc565b6117de8383611b20565b6117eb6000848484611807565b6108d55760405162461bcd60e51b81526004016106c390612126565b600061181b846001600160a01b0316611bff565b1561191757836001600160a01b031663150b7a02611837611328565b8786866040518563ffffffff1660e01b8152600401611859949392919061203c565b602060405180830381600087803b15801561187357600080fd5b505af19250505080156118a3575060408051601f3d908101601f191682019092526118a091810190611ebd565b60015b6118fd573d8080156118d1576040519150601f19603f3d011682016040523d82523d6000602084013e6118d6565b606091505b5080516118f55760405162461bcd60e51b81526004016106c390612126565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611434565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161197384610d88565b61197d9190612638565b6000838152600760205260409020549091508082146119d0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a1590600190612638565b60008381526009602052604081205460088054939450909284908110611a4b57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611a7a57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ac057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ae783610d88565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611b465760405162461bcd60e51b81526004016106c3906123ac565b611b4f8161132c565b15611b6c5760405162461bcd60e51b81526004016106c3906121be565b611b786000838361174b565b6001600160a01b0382166000908152600360205260408120805460019290611ba19084906125ed565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611c119061267b565b90600052602060002090601f016020900481019282611c335760008555611c79565b82601f10611c4c57805160ff1916838001178555611c79565b82800160010185558215611c79579182015b82811115611c79578251825591602001919060010190611c5e565b50611c85929150611c89565b5090565b5b80821115611c855760008155600101611c8a565b600067ffffffffffffffff80841115611cb957611cb9612711565b604051601f8501601f191681016020018281118282101715611cdd57611cdd612711565b604052848152915081838501861015611cf557600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461067f57600080fd5b8035801515811461067f57600080fd5b600060208284031215611d46578081fd5b61119882611d0e565b60008060408385031215611d61578081fd5b611d6a83611d0e565b9150611d7860208401611d0e565b90509250929050565b600080600060608486031215611d95578081fd5b611d9e84611d0e565b9250611dac60208501611d0e565b9150604084013590509250925092565b60008060008060808587031215611dd1578081fd5b611dda85611d0e565b9350611de860208601611d0e565b925060408501359150606085013567ffffffffffffffff811115611e0a578182fd5b8501601f81018713611e1a578182fd5b611e2987823560208401611c9e565b91505092959194509250565b60008060408385031215611e47578182fd5b611e5083611d0e565b9150611d7860208401611d25565b60008060408385031215611e70578182fd5b611e7983611d0e565b946020939093013593505050565b600060208284031215611e98578081fd5b61119882611d25565b600060208284031215611eb2578081fd5b813561119881612727565b600060208284031215611ece578081fd5b815161119881612727565b600060208284031215611eea578081fd5b813567ffffffffffffffff811115611f00578182fd5b8201601f81018413611f10578182fd5b61143484823560208401611c9e565b600060208284031215611f30578081fd5b5035919050565b60008151808452611f4f81602086016020860161264f565b601f01601f19169290920160200192915050565b600084516020611f768285838a0161264f565b855191840191611f898184848a0161264f565b8554920191839060028104600180831680611fa557607f831692505b858310811415611fc357634e487b7160e01b88526022600452602488fd5b808015611fd75760018114611fe857612014565b60ff19851688528388019550612014565b611ff18b6125e1565b895b8581101561200c5781548a820152908401908801611ff3565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206f90830184611f37565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120b157835183529284019291840191600101612095565b50909695505050505050565b901515815260200190565b6000602082526111986020830184611f37565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60009081526020902090565b60008219821115612600576126006126e5565b500190565b600082612614576126146126fb565b500490565b6000816000190483118215151615612633576126336126e5565b500290565b60008282101561264a5761264a6126e5565b500390565b60005b8381101561266a578181015183820152602001612652565b838111156110655750506000910152565b60028104600182168061268f57607f821691505b602082108114156126b057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126ca576126ca6126e5565b5060010190565b6000826126e0576126e06126fb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112e557600080fdfea26469706673582212203f56046081085f5efeabb749f21bd5e1b466558535ef5a69aa8ac7196a972e9664736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000c544259434465706c6f7965720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000454425943000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5632785a78623875327366437a6e3954546559614161664a68694d35526f6a63357268684e437644743870692f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d544c7a317647736f676a5174334c683871476d4258455a667768446f6b71396355434d3938643859725a58662f48494444454e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80635c975abb11610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146105c2578063da3ef23f146105d7578063e985e9c5146105f7578063f2c4ce1e14610617578063f2fde38b146106375761021a565b8063a22cb46514610538578063a475b5dd14610558578063b88d4fde1461056d578063c66828621461058d578063c87b56dd146105a25761021a565b8063715018a6116100f2578063715018a6146104c65780637f00c7a6146104db5780638da5cb5b146104fb57806395d89b4114610510578063a0712d68146105255761021a565b80635c975abb146104515780636352211e1461046657806363bc312a1461048657806370a08231146104a65761021a565b806323b872dd116101a6578063438b630011610175578063438b6300146103af57806344a0d68a146103dc5780634f6ccce7146103fc578063518302271461041c57806355f804b3146104315761021a565b806323b872dd146103475780632f745c59146103675780633ccfd60b1461038757806342842e0e1461038f5761021a565b8063081c8c44116101ed578063081c8c44146102c6578063095ea7b3146102db57806313faede6146102fb57806318160ddd1461031d578063239c70ae146103325761021a565b806301ffc9a71461021f57806302329a291461025557806306fdde0314610277578063081812fc14610299575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611ea1565b610657565b60405161024c91906120bd565b60405180910390f35b34801561026157600080fd5b50610275610270366004611e87565b610684565b005b34801561028357600080fd5b5061028c6106df565b60405161024c91906120c8565b3480156102a557600080fd5b506102b96102b4366004611f1f565b610771565b60405161024c9190612028565b3480156102d257600080fd5b5061028c6107b4565b3480156102e757600080fd5b506102756102f6366004611e5e565b610842565b34801561030757600080fd5b506103106108da565b60405161024c91906125d8565b34801561032957600080fd5b506103106108e0565b34801561033e57600080fd5b506103106108e6565b34801561035357600080fd5b50610275610362366004611d81565b6108ec565b34801561037357600080fd5b50610310610382366004611e5e565b610924565b610275610976565b34801561039b57600080fd5b506102756103aa366004611d81565b610ab3565b3480156103bb57600080fd5b506103cf6103ca366004611d35565b610ace565b60405161024c9190612079565b3480156103e857600080fd5b506102756103f7366004611f1f565b610b8c565b34801561040857600080fd5b50610310610417366004611f1f565b610bd0565b34801561042857600080fd5b5061023f610c2b565b34801561043d57600080fd5b5061027561044c366004611ed9565b610c39565b34801561045d57600080fd5b5061023f610c8b565b34801561047257600080fd5b506102b9610481366004611f1f565b610c94565b34801561049257600080fd5b506102756104a1366004611f1f565b610cc9565b3480156104b257600080fd5b506103106104c1366004611d35565b610d88565b3480156104d257600080fd5b50610275610dcc565b3480156104e757600080fd5b506102756104f6366004611f1f565b610e17565b34801561050757600080fd5b506102b9610e5b565b34801561051c57600080fd5b5061028c610e6a565b610275610533366004611f1f565b610e79565b34801561054457600080fd5b50610275610553366004611e35565b610f0e565b34801561056457600080fd5b50610275610fdc565b34801561057957600080fd5b50610275610588366004611dbc565b61102c565b34801561059957600080fd5b5061028c61106b565b3480156105ae57600080fd5b5061028c6105bd366004611f1f565b611078565b3480156105ce57600080fd5b5061031061119f565b3480156105e357600080fd5b506102756105f2366004611ed9565b6111a5565b34801561060357600080fd5b5061023f610612366004611d4f565b6111f7565b34801561062357600080fd5b50610275610632366004611ed9565b611225565b34801561064357600080fd5b50610275610652366004611d35565b611277565b60006001600160e01b0319821663780e9d6360e01b148061067c575061067c826112e8565b90505b919050565b61068c611328565b6001600160a01b031661069d610e5b565b6001600160a01b0316146106cc5760405162461bcd60e51b81526004016106c39061242d565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546106ee9061267b565b80601f016020809104026020016040519081016040528092919081815260200182805461071a9061267b565b80156107675780601f1061073c57610100808354040283529160200191610767565b820191906000526020600020905b81548152906001019060200180831161074a57829003601f168201915b5050505050905090565b600061077c8261132c565b6107985760405162461bcd60e51b81526004016106c3906123e1565b506000908152600460205260409020546001600160a01b031690565b601180546107c19061267b565b80601f01602080910402602001604051908101604052809291908181526020018280546107ed9061267b565b801561083a5780601f1061080f5761010080835404028352916020019161083a565b820191906000526020600020905b81548152906001019060200180831161081d57829003601f168201915b505050505081565b600061084d82610c94565b9050806001600160a01b0316836001600160a01b031614156108815760405162461bcd60e51b81526004016106c3906124fa565b806001600160a01b0316610893611328565b6001600160a01b031614806108af57506108af81610612611328565b6108cb5760405162461bcd60e51b81526004016106c3906122bc565b6108d58383611349565b505050565b600d5481565b60085490565b600f5481565b6108fd6108f7611328565b826113b7565b6109195760405162461bcd60e51b81526004016106c39061253b565b6108d583838361143c565b600061092f83610d88565b821061094d5760405162461bcd60e51b81526004016106c3906120db565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61097e611328565b6001600160a01b031661098f610e5b565b6001600160a01b0316146109b55760405162461bcd60e51b81526004016106c39061242d565b600073bd584ce590b7dcdbb93b11e095d9e1d5880b44d960646109d947601e612619565b6109e39190612605565b6040516109ef90612025565b60006040518083038185875af1925050503d8060008114610a2c576040519150601f19603f3d011682016040523d82523d6000602084013e610a31565b606091505b5050905080610a3f57600080fd5b6000610a49610e5b565b6001600160a01b031647604051610a5f90612025565b60006040518083038185875af1925050503d8060008114610a9c576040519150601f19603f3d011682016040523d82523d6000602084013e610aa1565b606091505b5050905080610aaf57600080fd5b5050565b6108d58383836040518060200160405280600081525061102c565b60606000610adb83610d88565b905060008167ffffffffffffffff811115610b0657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610b2f578160200160208202803683370190505b50905060005b82811015610b8457610b478582610924565b828281518110610b6757634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610b7c816126b6565b915050610b35565b509392505050565b610b94611328565b6001600160a01b0316610ba5610e5b565b6001600160a01b031614610bcb5760405162461bcd60e51b81526004016106c39061242d565b600d55565b6000610bda6108e0565b8210610bf85760405162461bcd60e51b81526004016106c39061258c565b60088281548110610c1957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601054610100900460ff1681565b610c41611328565b6001600160a01b0316610c52610e5b565b6001600160a01b031614610c785760405162461bcd60e51b81526004016106c39061242d565b8051610aaf90600b906020840190611c05565b60105460ff1681565b6000818152600260205260408120546001600160a01b03168061067c5760405162461bcd60e51b81526004016106c390612363565b610cd1611328565b6001600160a01b0316610ce2610e5b565b6001600160a01b031614610d085760405162461bcd60e51b81526004016106c39061242d565b6000610d126108e0565b60105490915060ff1615610d2557600080fd5b60008211610d3257600080fd5b600f54821115610d4157600080fd5b600e54610d4e83836125ed565b1115610d5957600080fd5b60015b8281116108d557610d7633610d7183856125ed565b611569565b80610d80816126b6565b915050610d5c565b60006001600160a01b038216610db05760405162461bcd60e51b81526004016106c390612319565b506001600160a01b031660009081526003602052604090205490565b610dd4611328565b6001600160a01b0316610de5610e5b565b6001600160a01b031614610e0b5760405162461bcd60e51b81526004016106c39061242d565b610e156000611583565b565b610e1f611328565b6001600160a01b0316610e30610e5b565b6001600160a01b031614610e565760405162461bcd60e51b81526004016106c39061242d565b600f55565b600a546001600160a01b031690565b6060600180546106ee9061267b565b6000610e836108e0565b60105490915060ff1615610e9657600080fd5b60008211610ea357600080fd5b600f54821115610eb257600080fd5b61154a610ebf83836125ed565b1115610eca57600080fd5b81600d54610ed89190612619565b341015610ee457600080fd5b60015b8281116108d557610efc33610d7183856125ed565b80610f06816126b6565b915050610ee7565b610f16611328565b6001600160a01b0316826001600160a01b03161415610f475760405162461bcd60e51b81526004016106c390612239565b8060056000610f54611328565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f98611328565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fd091906120bd565b60405180910390a35050565b610fe4611328565b6001600160a01b0316610ff5610e5b565b6001600160a01b03161461101b5760405162461bcd60e51b81526004016106c39061242d565b6010805461ff001916610100179055565b61103d611037611328565b836113b7565b6110595760405162461bcd60e51b81526004016106c39061253b565b611065848484846115d5565b50505050565b600c80546107c19061267b565b60606110838261132c565b61109f5760405162461bcd60e51b81526004016106c3906124ab565b601054610100900460ff1661114057601180546110bb9061267b565b80601f01602080910402602001604051908101604052809291908181526020018280546110e79061267b565b80156111345780601f1061110957610100808354040283529160200191611134565b820191906000526020600020905b81548152906001019060200180831161111757829003601f168201915b5050505050905061067f565b600061114a611608565b9050600081511161116a5760405180602001604052806000815250611198565b8061117484611617565b600c60405160200161118893929190611f63565b6040516020818303038152906040525b9392505050565b600e5481565b6111ad611328565b6001600160a01b03166111be610e5b565b6001600160a01b0316146111e45760405162461bcd60e51b81526004016106c39061242d565b8051610aaf90600c906020840190611c05565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61122d611328565b6001600160a01b031661123e610e5b565b6001600160a01b0316146112645760405162461bcd60e51b81526004016106c39061242d565b8051610aaf906011906020840190611c05565b61127f611328565b6001600160a01b0316611290610e5b565b6001600160a01b0316146112b65760405162461bcd60e51b81526004016106c39061242d565b6001600160a01b0381166112dc5760405162461bcd60e51b81526004016106c390612178565b6112e581611583565b50565b60006001600160e01b031982166380ac58cd60e01b148061131957506001600160e01b03198216635b5e139f60e01b145b8061067c575061067c82611732565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061137e82610c94565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113c28261132c565b6113de5760405162461bcd60e51b81526004016106c390612270565b60006113e983610c94565b9050806001600160a01b0316846001600160a01b031614806114245750836001600160a01b031661141984610771565b6001600160a01b0316145b80611434575061143481856111f7565b949350505050565b826001600160a01b031661144f82610c94565b6001600160a01b0316146114755760405162461bcd60e51b81526004016106c390612462565b6001600160a01b03821661149b5760405162461bcd60e51b81526004016106c3906121f5565b6114a683838361174b565b6114b1600082611349565b6001600160a01b03831660009081526003602052604081208054600192906114da908490612638565b90915550506001600160a01b03821660009081526003602052604081208054600192906115089084906125ed565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610aaf8282604051806020016040528060008152506117d4565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115e084848461143c565b6115ec84848484611807565b6110655760405162461bcd60e51b81526004016106c390612126565b6060600b80546106ee9061267b565b60608161163c57506040805180820190915260018152600360fc1b602082015261067f565b8160005b81156116665780611650816126b6565b915061165f9050600a83612605565b9150611640565b60008167ffffffffffffffff81111561168f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116b9576020820181803683370190505b5090505b8415611434576116ce600183612638565b91506116db600a866126d1565b6116e69060306125ed565b60f81b81838151811061170957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061172b600a86612605565b94506116bd565b6001600160e01b031981166301ffc9a760e01b14919050565b6117568383836108d5565b6001600160a01b0383166117725761176d81611922565b611795565b816001600160a01b0316836001600160a01b031614611795576117958382611966565b6001600160a01b0382166117b1576117ac81611a03565b6108d5565b826001600160a01b0316826001600160a01b0316146108d5576108d58282611adc565b6117de8383611b20565b6117eb6000848484611807565b6108d55760405162461bcd60e51b81526004016106c390612126565b600061181b846001600160a01b0316611bff565b1561191757836001600160a01b031663150b7a02611837611328565b8786866040518563ffffffff1660e01b8152600401611859949392919061203c565b602060405180830381600087803b15801561187357600080fd5b505af19250505080156118a3575060408051601f3d908101601f191682019092526118a091810190611ebd565b60015b6118fd573d8080156118d1576040519150601f19603f3d011682016040523d82523d6000602084013e6118d6565b606091505b5080516118f55760405162461bcd60e51b81526004016106c390612126565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611434565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161197384610d88565b61197d9190612638565b6000838152600760205260409020549091508082146119d0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a1590600190612638565b60008381526009602052604081205460088054939450909284908110611a4b57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611a7a57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ac057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ae783610d88565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611b465760405162461bcd60e51b81526004016106c3906123ac565b611b4f8161132c565b15611b6c5760405162461bcd60e51b81526004016106c3906121be565b611b786000838361174b565b6001600160a01b0382166000908152600360205260408120805460019290611ba19084906125ed565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611c119061267b565b90600052602060002090601f016020900481019282611c335760008555611c79565b82601f10611c4c57805160ff1916838001178555611c79565b82800160010185558215611c79579182015b82811115611c79578251825591602001919060010190611c5e565b50611c85929150611c89565b5090565b5b80821115611c855760008155600101611c8a565b600067ffffffffffffffff80841115611cb957611cb9612711565b604051601f8501601f191681016020018281118282101715611cdd57611cdd612711565b604052848152915081838501861015611cf557600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461067f57600080fd5b8035801515811461067f57600080fd5b600060208284031215611d46578081fd5b61119882611d0e565b60008060408385031215611d61578081fd5b611d6a83611d0e565b9150611d7860208401611d0e565b90509250929050565b600080600060608486031215611d95578081fd5b611d9e84611d0e565b9250611dac60208501611d0e565b9150604084013590509250925092565b60008060008060808587031215611dd1578081fd5b611dda85611d0e565b9350611de860208601611d0e565b925060408501359150606085013567ffffffffffffffff811115611e0a578182fd5b8501601f81018713611e1a578182fd5b611e2987823560208401611c9e565b91505092959194509250565b60008060408385031215611e47578182fd5b611e5083611d0e565b9150611d7860208401611d25565b60008060408385031215611e70578182fd5b611e7983611d0e565b946020939093013593505050565b600060208284031215611e98578081fd5b61119882611d25565b600060208284031215611eb2578081fd5b813561119881612727565b600060208284031215611ece578081fd5b815161119881612727565b600060208284031215611eea578081fd5b813567ffffffffffffffff811115611f00578182fd5b8201601f81018413611f10578182fd5b61143484823560208401611c9e565b600060208284031215611f30578081fd5b5035919050565b60008151808452611f4f81602086016020860161264f565b601f01601f19169290920160200192915050565b600084516020611f768285838a0161264f565b855191840191611f898184848a0161264f565b8554920191839060028104600180831680611fa557607f831692505b858310811415611fc357634e487b7160e01b88526022600452602488fd5b808015611fd75760018114611fe857612014565b60ff19851688528388019550612014565b611ff18b6125e1565b895b8581101561200c5781548a820152908401908801611ff3565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206f90830184611f37565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120b157835183529284019291840191600101612095565b50909695505050505050565b901515815260200190565b6000602082526111986020830184611f37565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60009081526020902090565b60008219821115612600576126006126e5565b500190565b600082612614576126146126fb565b500490565b6000816000190483118215151615612633576126336126e5565b500290565b60008282101561264a5761264a6126e5565b500390565b60005b8381101561266a578181015183820152602001612652565b838111156110655750506000910152565b60028104600182168061268f57607f821691505b602082108114156126b057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126ca576126ca6126e5565b5060010190565b6000826126e0576126e06126fb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112e557600080fdfea26469706673582212203f56046081085f5efeabb749f21bd5e1b466558535ef5a69aa8ac7196a972e9664736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000c544259434465706c6f7965720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000454425943000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5632785a78623875327366437a6e3954546559614161664a68694d35526f6a63357268684e437644743870692f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d544c7a317647736f676a5174334c683871476d4258455a667768446f6b71396355434d3938643859725a58662f48494444454e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): TBYCDeployer
Arg [1] : _symbol (string): TBYC
Arg [2] : _initBaseURI (string): ipfs://QmV2xZxb8u2sfCzn9TTeYaAafJhiM5Rojc5rhhNCvDt8pi/
Arg [3] : _initNotRevealedUri (string): ipfs://QmTLz1vGsogjQt3Lh8qGmBXEZfwhDokq9cUCM98d8YrZXf/HIDDEN.json
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 544259434465706c6f7965720000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 5442594300000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d5632785a78623875327366437a6e395454655961416166
Arg [10] : 4a68694d35526f6a63357268684e437644743870692f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [12] : 697066733a2f2f516d544c7a317647736f676a5174334c683871476d4258455a
Arg [13] : 667768446f6b71396355434d3938643859725a58662f48494444454e2e6a736f
Arg [14] : 6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
43093:3379:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34640:224;;;;;;;;;;-1:-1:-1;34640:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46104:73;;;;;;;;;;-1:-1:-1;46104:73:0;;;;;:::i;:::-;;:::i;:::-;;22532:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24091:221::-;;;;;;;;;;-1:-1:-1;24091:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43416:28::-;;;;;;;;;;;;;:::i;23614:411::-;;;;;;;;;;-1:-1:-1;23614:411:0;;;;;:::i;:::-;;:::i;43245:31::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35280:113::-;;;;;;;;;;;;;:::i;43317:32::-;;;;;;;;;;;;;:::i;24981:339::-;;;;;;;;;;-1:-1:-1;24981:339:0;;;;;:::i;:::-;;:::i;34948:256::-;;;;;;;;;;-1:-1:-1;34948:256:0;;;;;:::i;:::-;;:::i;46184:285::-;;;:::i;25391:185::-;;;;;;;;;;-1:-1:-1;25391:185:0;;;;;:::i;:::-;;:::i;44590:348::-;;;;;;;;;;-1:-1:-1;44590:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45536:80::-;;;;;;;;;;-1:-1:-1;45536:80:0;;;;;:::i;:::-;;:::i;35470:233::-;;;;;;;;;;-1:-1:-1;35470:233:0;;;;;:::i;:::-;;:::i;43384:27::-;;;;;;;;;;;;;:::i;45872:98::-;;;;;;;;;;-1:-1:-1;45872:98:0;;;;;:::i;:::-;;:::i;43354:25::-;;;;;;;;;;;;;:::i;22226:239::-;;;;;;;;;;-1:-1:-1;22226:239:0;;;;;:::i;:::-;;:::i;44233:351::-;;;;;;;;;;-1:-1:-1;44233:351:0;;;;;:::i;:::-;;:::i;21956:208::-;;;;;;;;;;-1:-1:-1;21956:208:0;;;;;:::i;:::-;;:::i;42429:94::-;;;;;;;;;;;;;:::i;45622:116::-;;;;;;;;;;-1:-1:-1;45622:116:0;;;;;:::i;:::-;;:::i;41778:87::-;;;;;;;;;;;;;:::i;22701:104::-;;;;;;;;;;;;;:::i;43842:383::-;;;;;;:::i;:::-;;:::i;24384:295::-;;;;;;;;;;-1:-1:-1;24384:295:0;;;;;:::i;:::-;;:::i;45463:65::-;;;;;;;;;;;;;:::i;25647:328::-;;;;;;;;;;-1:-1:-1;25647:328:0;;;;;:::i;:::-;;:::i;43203:37::-;;;;;;;;;;;;;:::i;44944:497::-;;;;;;;;;;-1:-1:-1;44944:497:0;;;;;:::i;:::-;;:::i;43281:31::-;;;;;;;;;;;;;:::i;45976:122::-;;;;;;;;;;-1:-1:-1;45976:122:0;;;;;:::i;:::-;;:::i;24750:164::-;;;;;;;;;;-1:-1:-1;24750:164:0;;;;;:::i;:::-;;:::i;45746:120::-;;;;;;;;;;-1:-1:-1;45746:120:0;;;;;:::i;:::-;;:::i;42678:192::-;;;;;;;;;;-1:-1:-1;42678:192:0;;;;;:::i;:::-;;:::i;34640:224::-;34742:4;-1:-1:-1;;;;;;34766:50:0;;-1:-1:-1;;;34766:50:0;;:90;;;34820:36;34844:11;34820:23;:36::i;:::-;34759:97;;34640:224;;;;:::o;46104:73::-;42009:12;:10;:12::i;:::-;-1:-1:-1;;;;;41998:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41998:23:0;;41990:68;;;;-1:-1:-1;;;41990:68:0;;;;;;;:::i;:::-;;;;;;;;;46156:6:::1;:15:::0;;-1:-1:-1;;46156:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46104:73::o;22532:100::-;22586:13;22619:5;22612:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22532:100;:::o;24091:221::-;24167:7;24195:16;24203:7;24195;:16::i;:::-;24187:73;;;;-1:-1:-1;;;24187:73:0;;;;;;;:::i;:::-;-1:-1:-1;24280:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24280:24:0;;24091:221::o;43416:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23614:411::-;23695:13;23711:23;23726:7;23711:14;:23::i;:::-;23695:39;;23759:5;-1:-1:-1;;;;;23753:11:0;:2;-1:-1:-1;;;;;23753:11:0;;;23745:57;;;;-1:-1:-1;;;23745:57:0;;;;;;;:::i;:::-;23853:5;-1:-1:-1;;;;;23837:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23837:21:0;;:62;;;;23862:37;23879:5;23886:12;:10;:12::i;23862:37::-;23815:168;;;;-1:-1:-1;;;23815:168:0;;;;;;;:::i;:::-;23996:21;24005:2;24009:7;23996:8;:21::i;:::-;23614:411;;;:::o;43245:31::-;;;;:::o;35280:113::-;35368:10;:17;35280:113;:::o;43317:32::-;;;;:::o;24981:339::-;25176:41;25195:12;:10;:12::i;:::-;25209:7;25176:18;:41::i;:::-;25168:103;;;;-1:-1:-1;;;25168:103:0;;;;;;;:::i;:::-;25284:28;25294:4;25300:2;25304:7;25284:9;:28::i;34948:256::-;35045:7;35081:23;35098:5;35081:16;:23::i;:::-;35073:5;:31;35065:87;;;;-1:-1:-1;;;35065:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35170:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34948:256::o;46184:285::-;42009:12;:10;:12::i;:::-;-1:-1:-1;;;;;41998:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41998:23:0;;41990:68;;;;-1:-1:-1;;;41990:68:0;;;;;;;:::i;:::-;46237:7:::1;46258:42;46343:3;46314:26;:21;46338:2;46314:26;:::i;:::-;:32;;;;:::i;:::-;46250:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46236:115;;;46366:2;46358:11;;;::::0;::::1;;46377:7;46398;:5;:7::i;:::-;-1:-1:-1::0;;;;;46390:21:0::1;46419;46390:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46376:69;;;46460:2;46452:11;;;::::0;::::1;;42069:1;;46184:285::o:0;25391:185::-;25529:39;25546:4;25552:2;25556:7;25529:39;;;;;;;;;;;;:16;:39::i;44590:348::-;44665:16;44693:23;44719:17;44729:6;44719:9;:17::i;:::-;44693:43;;44743:25;44785:15;44771:30;;;;;;-1:-1:-1;;;44771:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44771:30:0;;44743:58;;44813:9;44808:103;44828:15;44824:1;:19;44808:103;;;44873:30;44893:6;44901:1;44873:19;:30::i;:::-;44859:8;44868:1;44859:11;;;;;;-1:-1:-1;;;44859:11:0;;;;;;;;;;;;;;;;;;:44;44845:3;;;;:::i;:::-;;;;44808:103;;;-1:-1:-1;44924:8:0;44590:348;-1:-1:-1;;;44590:348:0:o;45536:80::-;42009:12;:10;:12::i;:::-;-1:-1:-1;;;;;41998:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41998:23:0;;41990:68;;;;-1:-1:-1;;;41990:68:0;;;;;;;:::i;:::-;45595:4:::1;:15:::0;45536:80::o;35470:233::-;35545:7;35581:30;:28;:30::i;:::-;35573:5;:38;35565:95;;;;-1:-1:-1;;;35565:95:0;;;;;;;:::i;:::-;35678:10;35689:5;35678:17;;;;;;-1:-1:-1;;;35678:17:0;;;;;;;;;;;;;;;;;35671:24;;35470:233;;;:::o;43384:27::-;;;;;;;;;:::o;45872:98::-;42009:12;:10;:12::i;:::-;-1:-1:-1;;;;;41998:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41998:23:0;;41990:68;;;;-1:-1:-1;;;41990:68:0;;;;;;;:::i;:::-;45943:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;43354:25::-:0;;;;;;:::o;22226:239::-;22298:7;22334:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22334:16:0;22369:19;22361:73;;;;-1:-1:-1;;;22361:73:0;;;;;;;:::i;44233:351::-;42009:12;:10;:12::i;:::-;-1:-1:-1;;;;;41998:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41998:23:0;;41990:68;;;;-1:-1:-1;;;41990:68:0;;;;;;;:::i;:::-;44300:14:::1;44317:13;:11;:13::i;:::-;44346:6;::::0;44300:30;;-1:-1:-1;44346:6:0::1;;44345:7;44337:16;;;::::0;::::1;;44382:1;44368:11;:15;44360:24;;;::::0;::::1;;44414:13;;44399:11;:28;;44391:37;;;::::0;::::1;;44467:9;::::0;44443:20:::1;44452:11:::0;44443:6;:20:::1;:::i;:::-;:33;;44435:42;;;::::0;::::1;;44503:1;44486:93;44511:11;44506:1;:16;44486:93;;44538:33;44548:10;44560;44569:1:::0;44560:6;:10:::1;:::i;:::-;44538:9;:33::i;:::-;44524:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44486:93;;21956:208:::0;22028:7;-1:-1:-1;;;;;22056:19:0;;22048:74;;;;-1:-1:-1;;;22048:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22140:16:0;;;;;:9;:16;;;;;;;21956:208::o;42429:94::-;42009:12;:10;:12::i;:::-;-1:-1:-1;;;;;41998:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41998:23:0;;41990:68;;;;-1:-1:-1;;;41990:68:0;;;;;;;:::i;:::-;42494:21:::1;42512:1;42494:9;:21::i;:::-;42429:94::o:0;45622:116::-;42009:12;:10;:12::i;:::-;-1:-1:-1;;;;;41998:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41998:23:0;;41990:68;;;;-1:-1:-1;;;41990:68:0;;;;;;;:::i;:::-;45699:13:::1;:33:::0;45622:116::o;41778:87::-;41851:6;;-1:-1:-1;;;;;41851:6:0;41778:87;:::o;22701:104::-;22757:13;22790:7;22783:14;;;;;:::i;43842:383::-;43899:14;43916:13;:11;:13::i;:::-;43945:6;;43899:30;;-1:-1:-1;43945:6:0;;43944:7;43936:16;;;;;;43981:1;43967:11;:15;43959:24;;;;;;44013:13;;43998:11;:28;;43990:37;;;;;;44066:4;44042:20;44051:11;44042:6;:20;:::i;:::-;:28;;44034:37;;;;;;44106:11;44099:4;;:18;;;;:::i;:::-;44086:9;:31;;44078:40;;;;;;44144:1;44127:93;44152:11;44147:1;:16;44127:93;;44179:33;44189:10;44201;44210:1;44201:6;:10;:::i;44179:33::-;44165:3;;;;:::i;:::-;;;;44127:93;;24384:295;24499:12;:10;:12::i;:::-;-1:-1:-1;;;;;24487:24:0;:8;-1:-1:-1;;;;;24487:24:0;;;24479:62;;;;-1:-1:-1;;;24479:62:0;;;;;;;:::i;:::-;24599:8;24554:18;:32;24573:12;:10;:12::i;:::-;-1:-1:-1;;;;;24554:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;24554:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;24554:53:0;;;;;;;;;;;24638:12;:10;:12::i;:::-;-1:-1:-1;;;;;24623:48:0;;24662:8;24623:48;;;;;;:::i;:::-;;;;;;;;24384:295;;:::o;45463:65::-;42009:12;:10;:12::i;:::-;-1:-1:-1;;;;;41998:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41998:23:0;;41990:68;;;;-1:-1:-1;;;41990:68:0;;;;;;;:::i;:::-;45507:8:::1;:15:::0;;-1:-1:-1;;45507:15:0::1;;;::::0;;45463:65::o;25647:328::-;25822:41;25841:12;:10;:12::i;:::-;25855:7;25822:18;:41::i;:::-;25814:103;;;;-1:-1:-1;;;25814:103:0;;;;;;;:::i;:::-;25928:39;25942:4;25948:2;25952:7;25961:5;25928:13;:39::i;:::-;25647:328;;;;:::o;43203:37::-;;;;;;;:::i;44944:497::-;45042:13;45083:16;45091:7;45083;:16::i;:::-;45067:97;;;;-1:-1:-1;;;45067:97:0;;;;;;;:::i;:::-;45180:8;;;;;;;45177:62;;45217:14;45210:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45177:62;45247:28;45278:10;:8;:10::i;:::-;45247:41;;45333:1;45308:14;45302:28;:32;:133;;;;;;;;;;;;;;;;;45370:14;45386:18;:7;:16;:18::i;:::-;45406:13;45353:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45302:133;45295:140;44944:497;-1:-1:-1;;;44944:497:0:o;43281:31::-;;;;:::o;45976:122::-;42009:12;:10;:12::i;:::-;-1:-1:-1;;;;;41998:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41998:23:0;;41990:68;;;;-1:-1:-1;;;41990:68:0;;;;;;;:::i;:::-;46059:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;24750:164::-:0;-1:-1:-1;;;;;24871:25:0;;;24847:4;24871:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24750:164::o;45746:120::-;42009:12;:10;:12::i;:::-;-1:-1:-1;;;;;41998:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41998:23:0;;41990:68;;;;-1:-1:-1;;;41990:68:0;;;;;;;:::i;:::-;45828:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42678:192::-:0;42009:12;:10;:12::i;:::-;-1:-1:-1;;;;;41998:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41998:23:0;;41990:68;;;;-1:-1:-1;;;41990:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42767:22:0;::::1;42759:73;;;;-1:-1:-1::0;;;42759:73:0::1;;;;;;;:::i;:::-;42843:19;42853:8;42843:9;:19::i;:::-;42678:192:::0;:::o;21587:305::-;21689:4;-1:-1:-1;;;;;;21726:40:0;;-1:-1:-1;;;21726:40:0;;:105;;-1:-1:-1;;;;;;;21783:48:0;;-1:-1:-1;;;21783:48:0;21726:105;:158;;;;21848:36;21872:11;21848:23;:36::i;20061:98::-;20141:10;20061:98;:::o;27485:127::-;27550:4;27574:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27574:16:0;:30;;;27485:127::o;31467:174::-;31542:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31542:29:0;-1:-1:-1;;;;;31542:29:0;;;;;;;;:24;;31596:23;31542:24;31596:14;:23::i;:::-;-1:-1:-1;;;;;31587:46:0;;;;;;;;;;;31467:174;;:::o;27779:348::-;27872:4;27897:16;27905:7;27897;:16::i;:::-;27889:73;;;;-1:-1:-1;;;27889:73:0;;;;;;;:::i;:::-;27973:13;27989:23;28004:7;27989:14;:23::i;:::-;27973:39;;28042:5;-1:-1:-1;;;;;28031:16:0;:7;-1:-1:-1;;;;;28031:16:0;;:51;;;;28075:7;-1:-1:-1;;;;;28051:31:0;:20;28063:7;28051:11;:20::i;:::-;-1:-1:-1;;;;;28051:31:0;;28031:51;:87;;;;28086:32;28103:5;28110:7;28086:16;:32::i;:::-;28023:96;27779:348;-1:-1:-1;;;;27779:348:0:o;30771:578::-;30930:4;-1:-1:-1;;;;;30903:31:0;:23;30918:7;30903:14;:23::i;:::-;-1:-1:-1;;;;;30903:31:0;;30895:85;;;;-1:-1:-1;;;30895:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30999:16:0;;30991:65;;;;-1:-1:-1;;;30991:65:0;;;;;;;:::i;:::-;31069:39;31090:4;31096:2;31100:7;31069:20;:39::i;:::-;31173:29;31190:1;31194:7;31173:8;:29::i;:::-;-1:-1:-1;;;;;31215:15:0;;;;;;:9;:15;;;;;:20;;31234:1;;31215:15;:20;;31234:1;;31215:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31246:13:0;;;;;;:9;:13;;;;;:18;;31263:1;;31246:13;:18;;31263:1;;31246:18;:::i;:::-;;;;-1:-1:-1;;31275:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31275:21:0;-1:-1:-1;;;;;31275:21:0;;;;;;;;;31314:27;;31275:16;;31314:27;;;;;;;30771:578;;;:::o;28469:110::-;28545:26;28555:2;28559:7;28545:26;;;;;;;;;;;;:9;:26::i;42878:173::-;42953:6;;;-1:-1:-1;;;;;42970:17:0;;;-1:-1:-1;;;;;;42970:17:0;;;;;;;43003:40;;42953:6;;;42970:17;42953:6;;43003:40;;42934:16;;43003:40;42878:173;;:::o;26857:315::-;27014:28;27024:4;27030:2;27034:7;27014:9;:28::i;:::-;27061:48;27084:4;27090:2;27094:7;27103:5;27061:22;:48::i;:::-;27053:111;;;;-1:-1:-1;;;27053:111:0;;;;;;;:::i;43721:102::-;43781:13;43810:7;43803:14;;;;;:::i;7893:723::-;7949:13;8170:10;8166:53;;-1:-1:-1;8197:10:0;;;;;;;;;;;;-1:-1:-1;;;8197:10:0;;;;;;8166:53;8244:5;8229:12;8285:78;8292:9;;8285:78;;8318:8;;;;:::i;:::-;;-1:-1:-1;8341:10:0;;-1:-1:-1;8349:2:0;8341:10;;:::i;:::-;;;8285:78;;;8373:19;8405:6;8395:17;;;;;;-1:-1:-1;;;8395:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8395:17:0;;8373:39;;8423:154;8430:10;;8423:154;;8457:11;8467:1;8457:11;;:::i;:::-;;-1:-1:-1;8526:10:0;8534:2;8526:5;:10;:::i;:::-;8513:24;;:2;:24;:::i;:::-;8500:39;;8483:6;8490;8483:14;;;;;;-1:-1:-1;;;8483:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8483:56:0;;;;;;;;-1:-1:-1;8554:11:0;8563:2;8554:11;;:::i;:::-;;;8423:154;;7418:157;-1:-1:-1;;;;;;7527:40:0;;-1:-1:-1;;;7527:40:0;7418:157;;;:::o;36316:589::-;36460:45;36487:4;36493:2;36497:7;36460:26;:45::i;:::-;-1:-1:-1;;;;;36522:18:0;;36518:187;;36557:40;36589:7;36557:31;:40::i;:::-;36518:187;;;36627:2;-1:-1:-1;;;;;36619:10:0;:4;-1:-1:-1;;;;;36619:10:0;;36615:90;;36646:47;36679:4;36685:7;36646:32;:47::i;:::-;-1:-1:-1;;;;;36719:16:0;;36715:183;;36752:45;36789:7;36752:36;:45::i;:::-;36715:183;;;36825:4;-1:-1:-1;;;;;36819:10:0;:2;-1:-1:-1;;;;;36819:10:0;;36815:83;;36846:40;36874:2;36878:7;36846:27;:40::i;28806:321::-;28936:18;28942:2;28946:7;28936:5;:18::i;:::-;28987:54;29018:1;29022:2;29026:7;29035:5;28987:22;:54::i;:::-;28965:154;;;;-1:-1:-1;;;28965:154:0;;;;;;;:::i;32206:799::-;32361:4;32382:15;:2;-1:-1:-1;;;;;32382:13:0;;:15::i;:::-;32378:620;;;32434:2;-1:-1:-1;;;;;32418:36:0;;32455:12;:10;:12::i;:::-;32469:4;32475:7;32484:5;32418:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32418:72:0;;;;;;;;-1:-1:-1;;32418:72:0;;;;;;;;;;;;:::i;:::-;;;32414:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32660:13:0;;32656:272;;32703:60;;-1:-1:-1;;;32703:60:0;;;;;;;:::i;32656:272::-;32878:6;32872:13;32863:6;32859:2;32855:15;32848:38;32414:529;-1:-1:-1;;;;;;32541:51:0;-1:-1:-1;;;32541:51:0;;-1:-1:-1;32534:58:0;;32378:620;-1:-1:-1;32982:4:0;32206:799;;;;;;:::o;37628:164::-;37732:10;:17;;37705:24;;;;:15;:24;;;;;:44;;;37760:24;;;;;;;;;;;;37628:164::o;38419:988::-;38685:22;38735:1;38710:22;38727:4;38710:16;:22::i;:::-;:26;;;;:::i;:::-;38747:18;38768:26;;;:17;:26;;;;;;38685:51;;-1:-1:-1;38901:28:0;;;38897:328;;-1:-1:-1;;;;;38968:18:0;;38946:19;38968:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39019:30;;;;;;:44;;;39136:30;;:17;:30;;;;;:43;;;38897:328;-1:-1:-1;39321:26:0;;;;:17;:26;;;;;;;;39314:33;;;-1:-1:-1;;;;;39365:18:0;;;;;:12;:18;;;;;:34;;;;;;;39358:41;38419:988::o;39702:1079::-;39980:10;:17;39955:22;;39980:21;;40000:1;;39980:21;:::i;:::-;40012:18;40033:24;;;:15;:24;;;;;;40406:10;:26;;39955:46;;-1:-1:-1;40033:24:0;;39955:46;;40406:26;;;;-1:-1:-1;;;40406:26:0;;;;;;;;;;;;;;;;;40384:48;;40470:11;40445:10;40456;40445:22;;;;;;-1:-1:-1;;;40445:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40550:28;;;:15;:28;;;;;;;:41;;;40722:24;;;;;40715:31;40757:10;:16;;;;;-1:-1:-1;;;40757:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39702:1079;;;;:::o;37206:221::-;37291:14;37308:20;37325:2;37308:16;:20::i;:::-;-1:-1:-1;;;;;37339:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37384:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37206:221:0:o;29463:382::-;-1:-1:-1;;;;;29543:16:0;;29535:61;;;;-1:-1:-1;;;29535:61:0;;;;;;;:::i;:::-;29616:16;29624:7;29616;:16::i;:::-;29615:17;29607:58;;;;-1:-1:-1;;;29607:58:0;;;;;;;:::i;:::-;29678:45;29707:1;29711:2;29715:7;29678:20;:45::i;:::-;-1:-1:-1;;;;;29736:13:0;;;;;;:9;:13;;;;;:18;;29753:1;;29736:13;:18;;29753:1;;29736:18;:::i;:::-;;;;-1:-1:-1;;29765:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29765:21:0;-1:-1:-1;;;;;29765:21:0;;;;;;;;29804:33;;29765:16;;;29804:33;;29765:16;;29804:33;29463:382;;:::o;10418:387::-;10741:20;10789:8;;;10418:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:1;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:1:o;4724:1532::-;;4986:6;4980:13;5012:4;5025:51;5069:6;5064:3;5059:2;5051:6;5047:15;5025:51;:::i;:::-;5139:13;;5098:16;;;;5161:55;5139:13;5098:16;5183:15;;;5161:55;:::i;:::-;5307:13;;5238:20;;;5278:3;;5384:1;5369:17;;5405:1;5441:18;;;;5468:2;;5546:4;5536:8;5532:19;5520:31;;5468:2;5609;5599:8;5596:16;5576:18;5573:40;5570:2;;;-1:-1:-1;;;5636:33:1;;5692:4;5689:1;5682:15;5722:4;5643:3;5710:17;5570:2;5753:18;5780:110;;;;5904:1;5899:332;;;;5746:485;;5780:110;-1:-1:-1;;5815:24:1;;5801:39;;5860:20;;;;-1:-1:-1;5780:110:1;;5899:332;5935:39;5967:6;5935:39;:::i;:::-;5996:3;6012:169;6026:8;6023:1;6020:15;6012:169;;;6108:14;;6093:13;;;6086:37;6151:16;;;;6043:10;;6012:169;;;6016:3;;6212:8;6205:5;6201:20;6194:27;;5746:485;-1:-1:-1;6247:3:1;;4956:1300;-1:-1:-1;;;;;;;;;;;4956:1300:1:o;6261:205::-;6461:3;6452:14::o;6471:203::-;-1:-1:-1;;;;;6635:32:1;;;;6617:51;;6605:2;6590:18;;6572:102::o;6679:490::-;-1:-1:-1;;;;;6948:15:1;;;6930:34;;7000:15;;6995:2;6980:18;;6973:43;7047:2;7032:18;;7025:34;;;7095:3;7090:2;7075:18;;7068:31;;;6679:490;;7116:47;;7143:19;;7135:6;7116:47;:::i;:::-;7108:55;6882:287;-1:-1:-1;;;;;;6882:287:1:o;7174:635::-;7345:2;7397:21;;;7467:13;;7370:18;;;7489:22;;;7174:635;;7345:2;7568:15;;;;7542:2;7527:18;;;7174:635;7614:169;7628:6;7625:1;7622:13;7614:169;;;7689:13;;7677:26;;7758:15;;;;7723:12;;;;7650:1;7643:9;7614:169;;;-1:-1:-1;7800:3:1;;7325:484;-1:-1:-1;;;;;;7325:484:1:o;7814:187::-;7979:14;;7972:22;7954:41;;7942:2;7927:18;;7909:92::o;8006:221::-;;8155:2;8144:9;8137:21;8175:46;8217:2;8206:9;8202:18;8194:6;8175:46;:::i;8232:407::-;8434:2;8416:21;;;8473:2;8453:18;;;8446:30;8512:34;8507:2;8492:18;;8485:62;-1:-1:-1;;;8578:2:1;8563:18;;8556:41;8629:3;8614:19;;8406:233::o;8644:414::-;8846:2;8828:21;;;8885:2;8865:18;;;8858:30;8924:34;8919:2;8904:18;;8897:62;-1:-1:-1;;;8990:2:1;8975:18;;8968:48;9048:3;9033:19;;8818:240::o;9063:402::-;9265:2;9247:21;;;9304:2;9284:18;;;9277:30;9343:34;9338:2;9323:18;;9316:62;-1:-1:-1;;;9409:2:1;9394:18;;9387:36;9455:3;9440:19;;9237:228::o;9470:352::-;9672:2;9654:21;;;9711:2;9691:18;;;9684:30;9750;9745:2;9730:18;;9723:58;9813:2;9798:18;;9644:178::o;9827:400::-;10029:2;10011:21;;;10068:2;10048:18;;;10041:30;10107:34;10102:2;10087:18;;10080:62;-1:-1:-1;;;10173:2:1;10158:18;;10151:34;10217:3;10202:19;;10001:226::o;10232:349::-;10434:2;10416:21;;;10473:2;10453:18;;;10446:30;10512:27;10507:2;10492:18;;10485:55;10572:2;10557:18;;10406:175::o;10586:408::-;10788:2;10770:21;;;10827:2;10807:18;;;10800:30;10866:34;10861:2;10846:18;;10839:62;-1:-1:-1;;;10932:2:1;10917:18;;10910:42;10984:3;10969:19;;10760:234::o;10999:420::-;11201:2;11183:21;;;11240:2;11220:18;;;11213:30;11279:34;11274:2;11259:18;;11252:62;11350:26;11345:2;11330:18;;11323:54;11409:3;11394:19;;11173:246::o;11424:406::-;11626:2;11608:21;;;11665:2;11645:18;;;11638:30;11704:34;11699:2;11684:18;;11677:62;-1:-1:-1;;;11770:2:1;11755:18;;11748:40;11820:3;11805:19;;11598:232::o;11835:405::-;12037:2;12019:21;;;12076:2;12056:18;;;12049:30;12115:34;12110:2;12095:18;;12088:62;-1:-1:-1;;;12181:2:1;12166:18;;12159:39;12230:3;12215:19;;12009:231::o;12245:356::-;12447:2;12429:21;;;12466:18;;;12459:30;12525:34;12520:2;12505:18;;12498:62;12592:2;12577:18;;12419:182::o;12606:408::-;12808:2;12790:21;;;12847:2;12827:18;;;12820:30;12886:34;12881:2;12866:18;;12859:62;-1:-1:-1;;;12952:2:1;12937:18;;12930:42;13004:3;12989:19;;12780:234::o;13019:356::-;13221:2;13203:21;;;13240:18;;;13233:30;13299:34;13294:2;13279:18;;13272:62;13366:2;13351:18;;13193:182::o;13380:405::-;13582:2;13564:21;;;13621:2;13601:18;;;13594:30;13660:34;13655:2;13640:18;;13633:62;-1:-1:-1;;;13726:2:1;13711:18;;13704:39;13775:3;13760:19;;13554:231::o;13790:411::-;13992:2;13974:21;;;14031:2;14011:18;;;14004:30;14070:34;14065:2;14050:18;;14043:62;-1:-1:-1;;;14136:2:1;14121:18;;14114:45;14191:3;14176:19;;13964:237::o;14206:397::-;14408:2;14390:21;;;14447:2;14427:18;;;14420:30;14486:34;14481:2;14466:18;;14459:62;-1:-1:-1;;;14552:2:1;14537:18;;14530:31;14593:3;14578:19;;14380:223::o;14608:413::-;14810:2;14792:21;;;14849:2;14829:18;;;14822:30;14888:34;14883:2;14868:18;;14861:62;-1:-1:-1;;;14954:2:1;14939:18;;14932:47;15011:3;14996:19;;14782:239::o;15026:408::-;15228:2;15210:21;;;15267:2;15247:18;;;15240:30;15306:34;15301:2;15286:18;;15279:62;-1:-1:-1;;;15372:2:1;15357:18;;15350:42;15424:3;15409:19;;15200:234::o;15439:177::-;15585:25;;;15573:2;15558:18;;15540:76::o;15621:129::-;;15689:17;;;15739:4;15723:21;;;15679:71::o;15755:128::-;;15826:1;15822:6;15819:1;15816:13;15813:2;;;15832:18;;:::i;:::-;-1:-1:-1;15868:9:1;;15803:80::o;15888:120::-;;15954:1;15944:2;;15959:18;;:::i;:::-;-1:-1:-1;15993:9:1;;15934:74::o;16013:168::-;;16119:1;16115;16111:6;16107:14;16104:1;16101:21;16096:1;16089:9;16082:17;16078:45;16075:2;;;16126:18;;:::i;:::-;-1:-1:-1;16166:9:1;;16065:116::o;16186:125::-;;16254:1;16251;16248:8;16245:2;;;16259:18;;:::i;:::-;-1:-1:-1;16296:9:1;;16235:76::o;16316:258::-;16388:1;16398:113;16412:6;16409:1;16406:13;16398:113;;;16488:11;;;16482:18;16469:11;;;16462:39;16434:2;16427:10;16398:113;;;16529:6;16526:1;16523:13;16520:2;;;-1:-1:-1;;16564:1:1;16546:16;;16539:27;16369:205::o;16579:380::-;16664:1;16654:12;;16711:1;16701:12;;;16722:2;;16776:4;16768:6;16764:17;16754:27;;16722:2;16829;16821:6;16818:14;16798:18;16795:38;16792:2;;;16875:10;16870:3;16866:20;16863:1;16856:31;16910:4;16907:1;16900:15;16938:4;16935:1;16928:15;16792:2;;16634:325;;;:::o;16964:135::-;;-1:-1:-1;;17024:17:1;;17021:2;;;17044:18;;:::i;:::-;-1:-1:-1;17091:1:1;17080:13;;17011:88::o;17104:112::-;;17162:1;17152:2;;17167:18;;:::i;:::-;-1:-1:-1;17201:9:1;;17142:74::o;17221:127::-;17282:10;17277:3;17273:20;17270:1;17263:31;17313:4;17310:1;17303:15;17337:4;17334:1;17327:15;17353:127;17414:10;17409:3;17405:20;17402:1;17395:31;17445:4;17442:1;17435:15;17469:4;17466:1;17459:15;17485:127;17546:10;17541:3;17537:20;17534:1;17527:31;17577:4;17574:1;17567:15;17601:4;17598:1;17591:15;17617:133;-1:-1:-1;;;;;;17693:32:1;;17683:43;;17673:2;;17740:1;17737;17730:12
Swarm Source
ipfs://3f56046081085f5efeabb749f21bd5e1b466558535ef5a69aa8ac7196a972e96
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.