ERC-721
NFT
Overview
Max Total Supply
10,000 TED
Holders
2,690
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TEDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Teddies
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-04 */ // SPDX-License-Identifier: MIT 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); } 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; } 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); } 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); } pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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; } } 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); } } 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; } } pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if ( to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) ) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if ( !_checkContractOnERC721Received( address(0), to, updatedIndex++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // Welp you made it here finally. We really don't have anything smart to write honestly. We're bunch of stupid people you know. But Bishop is not. pragma solidity >=0.7.0 <0.9.0; contract Teddies is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri = "ipfs://QmPgPYF95x7asTA5mUQP6Kw1hnvs187n4MCjJFMajF14w2/teddies_hidden.json"; uint256 public cost = 0.08 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmountPerTx = 20; bool public paused = true; bool public revealed = false; constructor(string memory _uriPrefix) ERC721A("Teddies", "TED") { uriPrefix = _uriPrefix; } modifier mintCompliance(uint256 _mintAmount) { require(!paused, "The minting is paused"); require(_mintAmount <= maxMintAmountPerTx, "Invalid mint amount"); require( totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!" ); _; } function mintTeddies(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount, "Insufficient funds"); } _safeMint(msg.sender, _mintAmount); } function minter(address _user, uint256 _amount) private mintCompliance(_amount) { _safeMint(_user, _amount); } function airdropTeddies(address[] calldata _users, uint256[] calldata _mintAmounts) public onlyOwner { for (uint256 i = 0; i < _users.length; i++) { minter(_users[i], _mintAmounts[i]); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while ( ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply ) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, _tokenId.toString(), uriSuffix ) ) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { (bool bs, ) = payable(owner()).call{value: address(this).balance}(""); require(bs); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } } //
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"},{"internalType":"uint256[]","name":"_mintAmounts","type":"uint256[]"}],"name":"airdropTeddies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintTeddies","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91600a91620001b7565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b91620001b7565b50604051806080016040528060498152602001620024eb6049913980516200007b91600c91602090910190620001b7565b5067011c37937e080000600d55612710600e556014600f556010805461ffff19166001179055348015620000ae57600080fd5b506040516200253438038062002534833981016040819052620000d1916200025d565b60408051808201825260078152665465646469657360c81b60208083019182528351808501909452600384526215115160ea1b9084015281519192916200011b91600291620001b7565b50805162000131906003906020840190620001b7565b50506000805550620001433362000165565b600160095580516200015d90600a906020840190620001b7565b50506200038c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001c59062000339565b90600052602060002090601f016020900481019282620001e9576000855562000234565b82601f106200020457805160ff191683800117855562000234565b8280016001018555821562000234579182015b828111156200023457825182559160200191906001019062000217565b506200024292915062000246565b5090565b5b8082111562000242576000815560010162000247565b600060208083850312156200027157600080fd5b82516001600160401b03808211156200028957600080fd5b818501915085601f8301126200029e57600080fd5b815181811115620002b357620002b362000376565b604051601f8201601f19908116603f01168101908382118183101715620002de57620002de62000376565b816040528281528886848701011115620002f757600080fd5b600093505b828410156200031b5784840186015181850187015292850192620002fc565b828411156200032d5760008684830101525b98975050505050505050565b600181811c908216806200034e57607f821691505b602082108114156200037057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61214f806200039c6000396000f3fe6080604052600436106101f95760003560e01c80636cbc58961161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610582578063d5abeb01146105a2578063e0a80853146105b8578063e985e9c5146105d8578063f2fde38b1461062157600080fd5b8063a22cb4651461050d578063a45ba8e71461052d578063b071401b14610542578063b88d4fde1461056257600080fd5b80637ec4a659116100dc5780637ec4a659146104a45780638da5cb5b146104c457806394354fd0146104e257806395d89b41146104f857600080fd5b80636cbc58961461043c57806370a082311461045c578063715018a61461047c5780637ba197421461049157600080fd5b806323b872dd1161019057806344a0d68a1161015f57806344a0d68a146103ae57806351830227146103ce5780635503a0e8146103ed5780635c975abb146104025780636352211e1461041c57600080fd5b806323b872dd1461032c5780633ccfd60b1461034c57806342842e0e14610361578063438b63001461038157600080fd5b806313faede6116101cc57806313faede6146102af57806316ba10e0146102d357806316c38b3c146102f357806318160ddd1461031357600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611d5f565b610641565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610693565b60405161022a9190611f6b565b34801561026157600080fd5b50610275610270366004611de1565b610725565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611caf565b610769565b005b3480156102bb57600080fd5b506102c5600d5481565b60405190815260200161022a565b3480156102df57600080fd5b506102ad6102ee366004611d99565b6107f7565b3480156102ff57600080fd5b506102ad61030e366004611d44565b610841565b34801561031f57600080fd5b50600154600054036102c5565b34801561033857600080fd5b506102ad610347366004611bce565b61087e565b34801561035857600080fd5b506102ad610889565b34801561036d57600080fd5b506102ad61037c366004611bce565b610927565b34801561038d57600080fd5b506103a161039c366004611b80565b610942565b60405161022a9190611f27565b3480156103ba57600080fd5b506102ad6103c9366004611de1565b610a22565b3480156103da57600080fd5b5060105461021e90610100900460ff1681565b3480156103f957600080fd5b50610248610a51565b34801561040e57600080fd5b5060105461021e9060ff1681565b34801561042857600080fd5b50610275610437366004611de1565b610adf565b34801561044857600080fd5b506102ad610457366004611cd9565b610af1565b34801561046857600080fd5b506102c5610477366004611b80565b610b87565b34801561048857600080fd5b506102ad610bd5565b6102ad61049f366004611de1565b610c0b565b3480156104b057600080fd5b506102ad6104bf366004611d99565b610d6e565b3480156104d057600080fd5b506008546001600160a01b0316610275565b3480156104ee57600080fd5b506102c5600f5481565b34801561050457600080fd5b50610248610dab565b34801561051957600080fd5b506102ad610528366004611c85565b610dba565b34801561053957600080fd5b50610248610e50565b34801561054e57600080fd5b506102ad61055d366004611de1565b610e5d565b34801561056e57600080fd5b506102ad61057d366004611c0a565b610e8c565b34801561058e57600080fd5b5061024861059d366004611de1565b610edd565b3480156105ae57600080fd5b506102c5600e5481565b3480156105c457600080fd5b506102ad6105d3366004611d44565b61104c565b3480156105e457600080fd5b5061021e6105f3366004611b9b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561062d57600080fd5b506102ad61063c366004611b80565b611090565b60006001600160e01b031982166380ac58cd60e01b148061067257506001600160e01b03198216635b5e139f60e01b145b8061068d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106a290612041565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce90612041565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b5050505050905090565b600061073082611128565b61074d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061077482610adf565b9050806001600160a01b0316836001600160a01b031614156107a95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107c957506107c781336105f3565b155b156107e7576040516367d9dca160e11b815260040160405180910390fd5b6107f2838383611153565b505050565b6008546001600160a01b0316331461082a5760405162461bcd60e51b815260040161082190611f7e565b60405180910390fd5b805161083d90600b9060208401906119fb565b5050565b6008546001600160a01b0316331461086b5760405162461bcd60e51b815260040161082190611f7e565b6010805460ff1916911515919091179055565b6107f28383836111af565b6008546001600160a01b031633146108b35760405162461bcd60e51b815260040161082190611f7e565b60006108c76008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610911576040519150601f19603f3d011682016040523d82523d6000602084013e610916565b606091505b505090508061092457600080fd5b50565b6107f283838360405180602001604052806000815250610e8c565b6060600061094f83610b87565b90506000816001600160401b0381111561096b5761096b6120ed565b604051908082528060200260200182016040528015610994578160200160208202803683370190505b509050600160005b83811080156109ad5750600e548211155b15610a185760006109bd83610adf565b9050866001600160a01b0316816001600160a01b03161415610a0557828483815181106109ec576109ec6120d7565b602090810291909101015281610a018161207c565b9250505b82610a0f8161207c565b9350505061099c565b5090949350505050565b6008546001600160a01b03163314610a4c5760405162461bcd60e51b815260040161082190611f7e565b600d55565b600b8054610a5e90612041565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8a90612041565b8015610ad75780601f10610aac57610100808354040283529160200191610ad7565b820191906000526020600020905b815481529060010190602001808311610aba57829003601f168201915b505050505081565b6000610aea8261139a565b5192915050565b6008546001600160a01b03163314610b1b5760405162461bcd60e51b815260040161082190611f7e565b60005b83811015610b8057610b6e858583818110610b3b57610b3b6120d7565b9050602002016020810190610b509190611b80565b848484818110610b6257610b626120d7565b905060200201356114b4565b80610b788161207c565b915050610b1e565b5050505050565b60006001600160a01b038216610bb0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610bff5760405162461bcd60e51b815260040161082190611f7e565b610c0960006115b3565b565b601054819060ff1615610c585760405162461bcd60e51b8152602060048201526015602482015274151a19481b5a5b9d1a5b99c81a5cc81c185d5cd959605a1b6044820152606401610821565b600f54811115610ca05760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610821565b600e5481610cb16001546000540390565b610cbb9190611fb3565b1115610d005760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610821565b6008546001600160a01b03163314610d645781600d54610d209190611fdf565b341015610d645760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610821565b61083d3383611605565b6008546001600160a01b03163314610d985760405162461bcd60e51b815260040161082190611f7e565b805161083d90600a9060208401906119fb565b6060600380546106a290612041565b6001600160a01b038216331415610de45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610a5e90612041565b6008546001600160a01b03163314610e875760405162461bcd60e51b815260040161082190611f7e565b600f55565b610e978484846111af565b6001600160a01b0383163b15158015610eb95750610eb78484848461161f565b155b15610ed7576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ee882611128565b610f4c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610821565b601054610100900460ff16610fed57600c8054610f6890612041565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9490612041565b8015610fe15780601f10610fb657610100808354040283529160200191610fe1565b820191906000526020600020905b815481529060010190602001808311610fc457829003601f168201915b50505050509050919050565b6000610ff7611717565b905060008151116110175760405180602001604052806000815250611045565b8061102184611726565b600b60405160200161103593929190611e26565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110765760405162461bcd60e51b815260040161082190611f7e565b601080549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146110ba5760405162461bcd60e51b815260040161082190611f7e565b6001600160a01b03811661111f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610821565b610924816115b3565b600080548210801561068d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111ba8261139a565b9050836001600160a01b031681600001516001600160a01b0316146111f15760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061120f575061120f85336105f3565b8061122a57503361121f84610725565b6001600160a01b0316145b90508061124a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661127157604051633a954ecd60e21b815260040160405180910390fd5b61127d60008487611153565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661135157600054821461135157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b80565b60408051606081018252600080825260208201819052918101919091528160005481101561149b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114995780516001600160a01b031615611430579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611494579392505050565b611430565b505b604051636f96cda160e11b815260040160405180910390fd5b601054819060ff16156115015760405162461bcd60e51b8152602060048201526015602482015274151a19481b5a5b9d1a5b99c81a5cc81c185d5cd959605a1b6044820152606401610821565b600f548111156115495760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610821565b600e548161155a6001546000540390565b6115649190611fb3565b11156115a95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610821565b6107f28383611605565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61083d828260405180602001604052806000815250611823565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611654903390899088908890600401611eea565b602060405180830381600087803b15801561166e57600080fd5b505af192505050801561169e575060408051601f3d908101601f1916820190925261169b91810190611d7c565b60015b6116f9573d8080156116cc576040519150601f19603f3d011682016040523d82523d6000602084013e6116d1565b606091505b5080516116f1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546106a290612041565b60608161174a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611774578061175e8161207c565b915061176d9050600a83611fcb565b915061174e565b6000816001600160401b0381111561178e5761178e6120ed565b6040519080825280601f01601f1916602001820160405280156117b8576020820181803683370190505b5090505b841561170f576117cd600183611ffe565b91506117da600a86612097565b6117e5906030611fb3565b60f81b8183815181106117fa576117fa6120d7565b60200101906001600160f81b031916908160001a90535061181c600a86611fcb565b94506117bc565b6107f283838360016000546001600160a01b03851661185457604051622e076360e81b815260040160405180910390fd5b836118725760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561192357506001600160a01b0387163b15155b156119ac575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611974600088848060010195508861161f565b611991576040516368d2bf6b60e11b815260040160405180910390fd5b808214156119295782600054146119a757600080fd5b6119f2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156119ad575b50600055610b80565b828054611a0790612041565b90600052602060002090601f016020900481019282611a295760008555611a6f565b82601f10611a4257805160ff1916838001178555611a6f565b82800160010185558215611a6f579182015b82811115611a6f578251825591602001919060010190611a54565b50611a7b929150611a7f565b5090565b5b80821115611a7b5760008155600101611a80565b60006001600160401b0380841115611aae57611aae6120ed565b604051601f8501601f19908116603f01168101908282118183101715611ad657611ad66120ed565b81604052809350858152868686011115611aef57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b2057600080fd5b919050565b60008083601f840112611b3757600080fd5b5081356001600160401b03811115611b4e57600080fd5b6020830191508360208260051b8501011115611b6957600080fd5b9250929050565b80358015158114611b2057600080fd5b600060208284031215611b9257600080fd5b61104582611b09565b60008060408385031215611bae57600080fd5b611bb783611b09565b9150611bc560208401611b09565b90509250929050565b600080600060608486031215611be357600080fd5b611bec84611b09565b9250611bfa60208501611b09565b9150604084013590509250925092565b60008060008060808587031215611c2057600080fd5b611c2985611b09565b9350611c3760208601611b09565b92506040850135915060608501356001600160401b03811115611c5957600080fd5b8501601f81018713611c6a57600080fd5b611c7987823560208401611a94565b91505092959194509250565b60008060408385031215611c9857600080fd5b611ca183611b09565b9150611bc560208401611b70565b60008060408385031215611cc257600080fd5b611ccb83611b09565b946020939093013593505050565b60008060008060408587031215611cef57600080fd5b84356001600160401b0380821115611d0657600080fd5b611d1288838901611b25565b90965094506020870135915080821115611d2b57600080fd5b50611d3887828801611b25565b95989497509550505050565b600060208284031215611d5657600080fd5b61104582611b70565b600060208284031215611d7157600080fd5b813561104581612103565b600060208284031215611d8e57600080fd5b815161104581612103565b600060208284031215611dab57600080fd5b81356001600160401b03811115611dc157600080fd5b8201601f81018413611dd257600080fd5b61170f84823560208401611a94565b600060208284031215611df357600080fd5b5035919050565b60008151808452611e12816020860160208601612015565b601f01601f19169290920160200192915050565b600084516020611e398285838a01612015565b855191840191611e4c8184848a01612015565b8554920191600090600181811c9080831680611e6957607f831692505b858310811415611e8757634e487b7160e01b85526022600452602485fd5b808015611e9b5760018114611eac57611ed9565b60ff19851688528388019550611ed9565b60008b81526020902060005b85811015611ed15781548a820152908401908801611eb8565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f1d90830184611dfa565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f5f57835183529284019291840191600101611f43565b50909695505050505050565b6020815260006110456020830184611dfa565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611fc657611fc66120ab565b500190565b600082611fda57611fda6120c1565b500490565b6000816000190483118215151615611ff957611ff96120ab565b500290565b600082821015612010576120106120ab565b500390565b60005b83811015612030578181015183820152602001612018565b83811115610ed75750506000910152565b600181811c9082168061205557607f821691505b6020821081141561207657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612090576120906120ab565b5060010190565b6000826120a6576120a66120c1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461092457600080fdfea2646970667358221220427dd72fd017e1f97e22dd46a2bcfdb5f1da7b8163baff5cbe527278e6f3532d64736f6c63430008070033697066733a2f2f516d50675059463935783761735441356d555150364b7731686e76733138376e344d436a4a464d616a46313477322f746564646965735f68696464656e2e6a736f6e0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000a697066733a2f2f78797a00000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80636cbc58961161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610582578063d5abeb01146105a2578063e0a80853146105b8578063e985e9c5146105d8578063f2fde38b1461062157600080fd5b8063a22cb4651461050d578063a45ba8e71461052d578063b071401b14610542578063b88d4fde1461056257600080fd5b80637ec4a659116100dc5780637ec4a659146104a45780638da5cb5b146104c457806394354fd0146104e257806395d89b41146104f857600080fd5b80636cbc58961461043c57806370a082311461045c578063715018a61461047c5780637ba197421461049157600080fd5b806323b872dd1161019057806344a0d68a1161015f57806344a0d68a146103ae57806351830227146103ce5780635503a0e8146103ed5780635c975abb146104025780636352211e1461041c57600080fd5b806323b872dd1461032c5780633ccfd60b1461034c57806342842e0e14610361578063438b63001461038157600080fd5b806313faede6116101cc57806313faede6146102af57806316ba10e0146102d357806316c38b3c146102f357806318160ddd1461031357600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611d5f565b610641565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610693565b60405161022a9190611f6b565b34801561026157600080fd5b50610275610270366004611de1565b610725565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611caf565b610769565b005b3480156102bb57600080fd5b506102c5600d5481565b60405190815260200161022a565b3480156102df57600080fd5b506102ad6102ee366004611d99565b6107f7565b3480156102ff57600080fd5b506102ad61030e366004611d44565b610841565b34801561031f57600080fd5b50600154600054036102c5565b34801561033857600080fd5b506102ad610347366004611bce565b61087e565b34801561035857600080fd5b506102ad610889565b34801561036d57600080fd5b506102ad61037c366004611bce565b610927565b34801561038d57600080fd5b506103a161039c366004611b80565b610942565b60405161022a9190611f27565b3480156103ba57600080fd5b506102ad6103c9366004611de1565b610a22565b3480156103da57600080fd5b5060105461021e90610100900460ff1681565b3480156103f957600080fd5b50610248610a51565b34801561040e57600080fd5b5060105461021e9060ff1681565b34801561042857600080fd5b50610275610437366004611de1565b610adf565b34801561044857600080fd5b506102ad610457366004611cd9565b610af1565b34801561046857600080fd5b506102c5610477366004611b80565b610b87565b34801561048857600080fd5b506102ad610bd5565b6102ad61049f366004611de1565b610c0b565b3480156104b057600080fd5b506102ad6104bf366004611d99565b610d6e565b3480156104d057600080fd5b506008546001600160a01b0316610275565b3480156104ee57600080fd5b506102c5600f5481565b34801561050457600080fd5b50610248610dab565b34801561051957600080fd5b506102ad610528366004611c85565b610dba565b34801561053957600080fd5b50610248610e50565b34801561054e57600080fd5b506102ad61055d366004611de1565b610e5d565b34801561056e57600080fd5b506102ad61057d366004611c0a565b610e8c565b34801561058e57600080fd5b5061024861059d366004611de1565b610edd565b3480156105ae57600080fd5b506102c5600e5481565b3480156105c457600080fd5b506102ad6105d3366004611d44565b61104c565b3480156105e457600080fd5b5061021e6105f3366004611b9b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561062d57600080fd5b506102ad61063c366004611b80565b611090565b60006001600160e01b031982166380ac58cd60e01b148061067257506001600160e01b03198216635b5e139f60e01b145b8061068d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106a290612041565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce90612041565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b5050505050905090565b600061073082611128565b61074d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061077482610adf565b9050806001600160a01b0316836001600160a01b031614156107a95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107c957506107c781336105f3565b155b156107e7576040516367d9dca160e11b815260040160405180910390fd5b6107f2838383611153565b505050565b6008546001600160a01b0316331461082a5760405162461bcd60e51b815260040161082190611f7e565b60405180910390fd5b805161083d90600b9060208401906119fb565b5050565b6008546001600160a01b0316331461086b5760405162461bcd60e51b815260040161082190611f7e565b6010805460ff1916911515919091179055565b6107f28383836111af565b6008546001600160a01b031633146108b35760405162461bcd60e51b815260040161082190611f7e565b60006108c76008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610911576040519150601f19603f3d011682016040523d82523d6000602084013e610916565b606091505b505090508061092457600080fd5b50565b6107f283838360405180602001604052806000815250610e8c565b6060600061094f83610b87565b90506000816001600160401b0381111561096b5761096b6120ed565b604051908082528060200260200182016040528015610994578160200160208202803683370190505b509050600160005b83811080156109ad5750600e548211155b15610a185760006109bd83610adf565b9050866001600160a01b0316816001600160a01b03161415610a0557828483815181106109ec576109ec6120d7565b602090810291909101015281610a018161207c565b9250505b82610a0f8161207c565b9350505061099c565b5090949350505050565b6008546001600160a01b03163314610a4c5760405162461bcd60e51b815260040161082190611f7e565b600d55565b600b8054610a5e90612041565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8a90612041565b8015610ad75780601f10610aac57610100808354040283529160200191610ad7565b820191906000526020600020905b815481529060010190602001808311610aba57829003601f168201915b505050505081565b6000610aea8261139a565b5192915050565b6008546001600160a01b03163314610b1b5760405162461bcd60e51b815260040161082190611f7e565b60005b83811015610b8057610b6e858583818110610b3b57610b3b6120d7565b9050602002016020810190610b509190611b80565b848484818110610b6257610b626120d7565b905060200201356114b4565b80610b788161207c565b915050610b1e565b5050505050565b60006001600160a01b038216610bb0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610bff5760405162461bcd60e51b815260040161082190611f7e565b610c0960006115b3565b565b601054819060ff1615610c585760405162461bcd60e51b8152602060048201526015602482015274151a19481b5a5b9d1a5b99c81a5cc81c185d5cd959605a1b6044820152606401610821565b600f54811115610ca05760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610821565b600e5481610cb16001546000540390565b610cbb9190611fb3565b1115610d005760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610821565b6008546001600160a01b03163314610d645781600d54610d209190611fdf565b341015610d645760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610821565b61083d3383611605565b6008546001600160a01b03163314610d985760405162461bcd60e51b815260040161082190611f7e565b805161083d90600a9060208401906119fb565b6060600380546106a290612041565b6001600160a01b038216331415610de45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610a5e90612041565b6008546001600160a01b03163314610e875760405162461bcd60e51b815260040161082190611f7e565b600f55565b610e978484846111af565b6001600160a01b0383163b15158015610eb95750610eb78484848461161f565b155b15610ed7576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ee882611128565b610f4c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610821565b601054610100900460ff16610fed57600c8054610f6890612041565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9490612041565b8015610fe15780601f10610fb657610100808354040283529160200191610fe1565b820191906000526020600020905b815481529060010190602001808311610fc457829003601f168201915b50505050509050919050565b6000610ff7611717565b905060008151116110175760405180602001604052806000815250611045565b8061102184611726565b600b60405160200161103593929190611e26565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110765760405162461bcd60e51b815260040161082190611f7e565b601080549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146110ba5760405162461bcd60e51b815260040161082190611f7e565b6001600160a01b03811661111f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610821565b610924816115b3565b600080548210801561068d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111ba8261139a565b9050836001600160a01b031681600001516001600160a01b0316146111f15760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061120f575061120f85336105f3565b8061122a57503361121f84610725565b6001600160a01b0316145b90508061124a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661127157604051633a954ecd60e21b815260040160405180910390fd5b61127d60008487611153565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661135157600054821461135157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b80565b60408051606081018252600080825260208201819052918101919091528160005481101561149b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114995780516001600160a01b031615611430579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611494579392505050565b611430565b505b604051636f96cda160e11b815260040160405180910390fd5b601054819060ff16156115015760405162461bcd60e51b8152602060048201526015602482015274151a19481b5a5b9d1a5b99c81a5cc81c185d5cd959605a1b6044820152606401610821565b600f548111156115495760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610821565b600e548161155a6001546000540390565b6115649190611fb3565b11156115a95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610821565b6107f28383611605565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61083d828260405180602001604052806000815250611823565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611654903390899088908890600401611eea565b602060405180830381600087803b15801561166e57600080fd5b505af192505050801561169e575060408051601f3d908101601f1916820190925261169b91810190611d7c565b60015b6116f9573d8080156116cc576040519150601f19603f3d011682016040523d82523d6000602084013e6116d1565b606091505b5080516116f1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546106a290612041565b60608161174a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611774578061175e8161207c565b915061176d9050600a83611fcb565b915061174e565b6000816001600160401b0381111561178e5761178e6120ed565b6040519080825280601f01601f1916602001820160405280156117b8576020820181803683370190505b5090505b841561170f576117cd600183611ffe565b91506117da600a86612097565b6117e5906030611fb3565b60f81b8183815181106117fa576117fa6120d7565b60200101906001600160f81b031916908160001a90535061181c600a86611fcb565b94506117bc565b6107f283838360016000546001600160a01b03851661185457604051622e076360e81b815260040160405180910390fd5b836118725760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561192357506001600160a01b0387163b15155b156119ac575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611974600088848060010195508861161f565b611991576040516368d2bf6b60e11b815260040160405180910390fd5b808214156119295782600054146119a757600080fd5b6119f2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156119ad575b50600055610b80565b828054611a0790612041565b90600052602060002090601f016020900481019282611a295760008555611a6f565b82601f10611a4257805160ff1916838001178555611a6f565b82800160010185558215611a6f579182015b82811115611a6f578251825591602001919060010190611a54565b50611a7b929150611a7f565b5090565b5b80821115611a7b5760008155600101611a80565b60006001600160401b0380841115611aae57611aae6120ed565b604051601f8501601f19908116603f01168101908282118183101715611ad657611ad66120ed565b81604052809350858152868686011115611aef57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b2057600080fd5b919050565b60008083601f840112611b3757600080fd5b5081356001600160401b03811115611b4e57600080fd5b6020830191508360208260051b8501011115611b6957600080fd5b9250929050565b80358015158114611b2057600080fd5b600060208284031215611b9257600080fd5b61104582611b09565b60008060408385031215611bae57600080fd5b611bb783611b09565b9150611bc560208401611b09565b90509250929050565b600080600060608486031215611be357600080fd5b611bec84611b09565b9250611bfa60208501611b09565b9150604084013590509250925092565b60008060008060808587031215611c2057600080fd5b611c2985611b09565b9350611c3760208601611b09565b92506040850135915060608501356001600160401b03811115611c5957600080fd5b8501601f81018713611c6a57600080fd5b611c7987823560208401611a94565b91505092959194509250565b60008060408385031215611c9857600080fd5b611ca183611b09565b9150611bc560208401611b70565b60008060408385031215611cc257600080fd5b611ccb83611b09565b946020939093013593505050565b60008060008060408587031215611cef57600080fd5b84356001600160401b0380821115611d0657600080fd5b611d1288838901611b25565b90965094506020870135915080821115611d2b57600080fd5b50611d3887828801611b25565b95989497509550505050565b600060208284031215611d5657600080fd5b61104582611b70565b600060208284031215611d7157600080fd5b813561104581612103565b600060208284031215611d8e57600080fd5b815161104581612103565b600060208284031215611dab57600080fd5b81356001600160401b03811115611dc157600080fd5b8201601f81018413611dd257600080fd5b61170f84823560208401611a94565b600060208284031215611df357600080fd5b5035919050565b60008151808452611e12816020860160208601612015565b601f01601f19169290920160200192915050565b600084516020611e398285838a01612015565b855191840191611e4c8184848a01612015565b8554920191600090600181811c9080831680611e6957607f831692505b858310811415611e8757634e487b7160e01b85526022600452602485fd5b808015611e9b5760018114611eac57611ed9565b60ff19851688528388019550611ed9565b60008b81526020902060005b85811015611ed15781548a820152908401908801611eb8565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f1d90830184611dfa565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f5f57835183529284019291840191600101611f43565b50909695505050505050565b6020815260006110456020830184611dfa565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611fc657611fc66120ab565b500190565b600082611fda57611fda6120c1565b500490565b6000816000190483118215151615611ff957611ff96120ab565b500290565b600082821015612010576120106120ab565b500390565b60005b83811015612030578181015183820152602001612018565b83811115610ed75750506000910152565b600181811c9082168061205557607f821691505b6020821081141561207657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612090576120906120ab565b5060010190565b6000826120a6576120a66120c1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461092457600080fdfea2646970667358221220427dd72fd017e1f97e22dd46a2bcfdb5f1da7b8163baff5cbe527278e6f3532d64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000a697066733a2f2f78797a00000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _uriPrefix (string): ipfs://xyz
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [2] : 697066733a2f2f78797a00000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47738:4008:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24031:355;;;;;;;;;;-1:-1:-1;24031:355:0;;;;;:::i;:::-;;:::i;:::-;;;8957:14:1;;8950:22;8932:41;;8920:2;8905:18;24031:355:0;;;;;;;;27226:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28826:245::-;;;;;;;;;;-1:-1:-1;28826:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7618:32:1;;;7600:51;;7588:2;7573:18;28826:245:0;7454:203:1;28389:371:0;;;;;;;;;;-1:-1:-1;28389:371:0;;;;;:::i;:::-;;:::i;:::-;;48026:32;;;;;;;;;;;;;;;;;;;11932:25:1;;;11920:2;11905:18;48026:32:0;11786:177:1;51273:106:0;;;;;;;;;;-1:-1:-1;51273:106:0;;;;;:::i;:::-;;:::i;51387:83::-;;;;;;;;;;-1:-1:-1;51387:83:0;;;;;:::i;:::-;;:::i;23280:303::-;;;;;;;;;;-1:-1:-1;23534:12:0;;23324:7;23518:13;:28;23280:303;;29814:170;;;;;;;;;;-1:-1:-1;29814:170:0;;;;;:::i;:::-;;:::i;51478:147::-;;;;;;;;;;;;;:::i;30055:185::-;;;;;;;;;;-1:-1:-1;30055:185:0;;;;;:::i;:::-;;:::i;49321:743::-;;;;;;;;;;-1:-1:-1;49321:743:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50902:80::-;;;;;;;;;;-1:-1:-1;50902:80:0;;;;;:::i;:::-;;:::i;48181:28::-;;;;;;;;;;-1:-1:-1;48181:28:0;;;;;;;;;;;47861:33;;;;;;;;;;;;;:::i;48149:25::-;;;;;;;;;;-1:-1:-1;48149:25:0;;;;;;;;27034:125;;;;;;;;;;-1:-1:-1;27034:125:0;;;;;:::i;:::-;;:::i;49089:224::-;;;;;;;;;;-1:-1:-1;49089:224:0;;;;;:::i;:::-;;:::i;24450:206::-;;;;;;;;;;-1:-1:-1;24450:206:0;;;;;:::i;:::-;;:::i;44072:103::-;;;;;;;;;;;;;:::i;48653:296::-;;;;;;:::i;:::-;;:::i;51159:106::-;;;;;;;;;;-1:-1:-1;51159:106:0;;;;;:::i;:::-;;:::i;43421:87::-;;;;;;;;;;-1:-1:-1;43494:6:0;;-1:-1:-1;;;;;43494:6:0;43421:87;;48104:38;;;;;;;;;;;;;;;;27395:104;;;;;;;;;;;;;:::i;29143:319::-;;;;;;;;;;-1:-1:-1;29143:319:0;;;;;:::i;:::-;;:::i;47901:118::-;;;;;;;;;;;;;:::i;50992:159::-;;;;;;;;;;-1:-1:-1;50992:159:0;;;;;:::i;:::-;;:::i;30311:406::-;;;;;;;;;;-1:-1:-1;30311:406:0;;;;;:::i;:::-;;:::i;50072:727::-;;;;;;;;;;-1:-1:-1;50072:727:0;;;;;:::i;:::-;;:::i;48065:32::-;;;;;;;;;;;;;;;;50807:87;;;;;;;;;;-1:-1:-1;50807:87:0;;;;;:::i;:::-;;:::i;29533:214::-;;;;;;;;;;-1:-1:-1;29533:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;29704:25:0;;;29675:4;29704:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29533:214;44330:238;;;;;;;;;;-1:-1:-1;44330:238:0;;;;;:::i;:::-;;:::i;24031:355::-;24178:4;-1:-1:-1;;;;;;24220:40:0;;-1:-1:-1;;;24220:40:0;;:105;;-1:-1:-1;;;;;;;24277:48:0;;-1:-1:-1;;;24277:48:0;24220:105;:158;;;-1:-1:-1;;;;;;;;;;19790:40:0;;;24342:36;24200:178;24031:355;-1:-1:-1;;24031:355:0:o;27226:100::-;27280:13;27313:5;27306:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27226:100;:::o;28826:245::-;28930:7;28960:16;28968:7;28960;:16::i;:::-;28955:64;;28985:34;;-1:-1:-1;;;28985:34:0;;;;;;;;;;;28955:64;-1:-1:-1;29039:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29039:24:0;;28826:245::o;28389:371::-;28462:13;28478:24;28494:7;28478:15;:24::i;:::-;28462:40;;28523:5;-1:-1:-1;;;;;28517:11:0;:2;-1:-1:-1;;;;;28517:11:0;;28513:48;;;28537:24;;-1:-1:-1;;;28537:24:0;;;;;;;;;;;28513:48;16728:10;-1:-1:-1;;;;;28578:21:0;;;;;;:63;;-1:-1:-1;28604:37:0;28621:5;16728:10;29533:214;:::i;28604:37::-;28603:38;28578:63;28574:138;;;28665:35;;-1:-1:-1;;;28665:35:0;;;;;;;;;;;28574:138;28724:28;28733:2;28737:7;28746:5;28724:8;:28::i;:::-;28451:309;28389:371;;:::o;51273:106::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;;;;;;;;;51349:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51273:106:::0;:::o;51387:83::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;51447:6:::1;:15:::0;;-1:-1:-1;;51447:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51387:83::o;29814:170::-;29948:28;29958:4;29964:2;29968:7;29948:9;:28::i;51478:147::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;51527:7:::1;51548;43494:6:::0;;-1:-1:-1;;;;;43494:6:0;;43421:87;51548:7:::1;-1:-1:-1::0;;;;;51540:21:0::1;51569;51540:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51526:69;;;51614:2;51606:11;;;::::0;::::1;;51515:110;51478:147::o:0;30055:185::-;30193:39;30210:4;30216:2;30220:7;30193:39;;;;;;;;;;;;:16;:39::i;49321:743::-;49408:16;49442:23;49468:17;49478:6;49468:9;:17::i;:::-;49442:43;;49496:30;49543:15;-1:-1:-1;;;;;49529:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49529:30:0;-1:-1:-1;49496:63:0;-1:-1:-1;49595:1:0;49570:22;49647:377;49686:15;49668;:33;:64;;;;;49723:9;;49705:14;:27;;49668:64;49647:377;;;49759:25;49787:23;49795:14;49787:7;:23::i;:::-;49759:51;;49852:6;-1:-1:-1;;;;;49831:27:0;:17;-1:-1:-1;;;;;49831:27:0;;49827:153;;;49912:14;49879:13;49893:15;49879:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;49947:17;;;;:::i;:::-;;;;49827:153;49996:16;;;;:::i;:::-;;;;49744:280;49647:377;;;-1:-1:-1;50043:13:0;;49321:743;-1:-1:-1;;;;49321:743:0:o;50902:80::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;50962:4:::1;:12:::0;50902:80::o;47861:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27034:125::-;27098:7;27125:21;27138:7;27125:12;:21::i;:::-;:26;;27034:125;-1:-1:-1;;27034:125:0:o;49089:224::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;49206:9:::1;49201:105;49221:17:::0;;::::1;49201:105;;;49260:34;49267:6;;49274:1;49267:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;49278:12;;49291:1;49278:15;;;;;;;:::i;:::-;;;;;;;49260:6;:34::i;:::-;49240:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49201:105;;;;49089:224:::0;;;;:::o;24450:206::-;24514:7;-1:-1:-1;;;;;24538:19:0;;24534:60;;24566:28;;-1:-1:-1;;;24566:28:0;;;;;;;;;;;24534:60;-1:-1:-1;;;;;;24620:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24620:27:0;;24450:206::o;44072:103::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;44137:30:::1;44164:1;44137:18;:30::i;:::-;44072:103::o:0;48653:296::-;48396:6;;48752:11;;48396:6;;48395:7;48387:41;;;;-1:-1:-1;;;48387:41:0;;10164:2:1;48387:41:0;;;10146:21:1;10203:2;10183:18;;;10176:30;-1:-1:-1;;;10222:18:1;;;10215:51;10283:18;;48387:41:0;9962:345:1;48387:41:0;48462:18;;48447:11;:33;;48439:65;;;;-1:-1:-1;;;48439:65:0;;11640:2:1;48439:65:0;;;11622:21:1;11679:2;11659:18;;;11652:30;-1:-1:-1;;;11698:18:1;;;11691:49;11757:18;;48439:65:0;11438:343:1;48439:65:0;48568:9;;48553:11;48537:13;23534:12;;23324:7;23518:13;:28;;23280:303;48537:13;:27;;;;:::i;:::-;:40;;48515:110;;;;-1:-1:-1;;;48515:110:0;;11291:2:1;48515:110:0;;;11273:21:1;11330:2;11310:18;;;11303:30;-1:-1:-1;;;11349:18:1;;;11342:50;11409:18;;48515:110:0;11089:344:1;48515:110:0;43494:6;;-1:-1:-1;;;;;43494:6:0;48785:10:::1;:21;48781:116;;48851:11;48844:4;;:18;;;;:::i;:::-;48831:9;:31;;48823:62;;;::::0;-1:-1:-1;;;48823:62:0;;9817:2:1;48823:62:0::1;::::0;::::1;9799:21:1::0;9856:2;9836:18;;;9829:30;-1:-1:-1;;;9875:18:1;;;9868:48;9933:18;;48823:62:0::1;9615:342:1::0;48823:62:0::1;48907:34;48917:10;48929:11;48907:9;:34::i;51159:106::-:0;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;51235:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27395:104::-:0;27451:13;27484:7;27477:14;;;;;:::i;29143:319::-;-1:-1:-1;;;;;29274:24:0;;16728:10;29274:24;29270:54;;;29307:17;;-1:-1:-1;;;29307:17:0;;;;;;;;;;;29270:54;16728:10;29337:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29337:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29337:53:0;;;;;;;;;;29406:48;;8932:41:1;;;29337:42:0;;16728:10;29406:48;;8905:18:1;29406:48:0;;;;;;;29143:319;;:::o;47901:118::-;;;;;;;:::i;50992:159::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;51103:18:::1;:40:::0;50992:159::o;30311:406::-;30478:28;30488:4;30494:2;30498:7;30478:9;:28::i;:::-;-1:-1:-1;;;;;30535:13:0;;8639:19;:23;;30535:89;;;;;30568:56;30599:4;30605:2;30609:7;30618:5;30568:30;:56::i;:::-;30567:57;30535:89;30517:193;;;30658:40;;-1:-1:-1;;;30658:40:0;;;;;;;;;;;30517:193;30311:406;;;;:::o;50072:727::-;50191:13;50244:17;50252:8;50244:7;:17::i;:::-;50222:114;;;;-1:-1:-1;;;50222:114:0;;10875:2:1;50222:114:0;;;10857:21:1;10914:2;10894:18;;;10887:30;10953:34;10933:18;;;10926:62;-1:-1:-1;;;11004:18:1;;;10997:45;11059:19;;50222:114:0;10673:411:1;50222:114:0;50353:8;;;;;;;50349:74;;50394:17;50387:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50072:727;;;:::o;50349:74::-;50435:28;50466:10;:8;:10::i;:::-;50435:41;;50538:1;50513:14;50507:28;:32;:284;;;;;;;;;;;;;;;;;50631:14;50672:19;:8;:17;:19::i;:::-;50718:9;50588:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50507:284;50487:304;50072:727;-1:-1:-1;;;50072:727:0:o;50807:87::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;50869:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;50869:17:0;;::::1;::::0;;;::::1;::::0;;50807:87::o;44330:238::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44433:22:0;::::1;44411:110;;;::::0;-1:-1:-1;;;44411:110:0;;9410:2:1;44411:110:0::1;::::0;::::1;9392:21:1::0;9449:2;9429:18;;;9422:30;9488:34;9468:18;;;9461:62;-1:-1:-1;;;9539:18:1;;;9532:36;9585:19;;44411:110:0::1;9208:402:1::0;44411:110:0::1;44532:28;44551:8;44532:18;:28::i;30972:213::-:0;31029:4;31119:13;;31109:7;:23;31066:111;;;;-1:-1:-1;;31150:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31150:27:0;;;;31149:28;;30972:213::o;39359:196::-;39474:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39474:29:0;-1:-1:-1;;;;;39474:29:0;;;;;;;;;39519:28;;39474:24;;39519:28;;;;;;;39359:196;;;:::o;34302:2130::-;34417:35;34455:21;34468:7;34455:12;:21::i;:::-;34417:59;;34515:4;-1:-1:-1;;;;;34493:26:0;:13;:18;;;-1:-1:-1;;;;;34493:26:0;;34489:67;;34528:28;;-1:-1:-1;;;34528:28:0;;;;;;;;;;;34489:67;34569:22;16728:10;-1:-1:-1;;;;;34595:20:0;;;;:73;;-1:-1:-1;34632:36:0;34649:4;16728:10;29533:214;:::i;34632:36::-;34595:126;;;-1:-1:-1;16728:10:0;34685:20;34697:7;34685:11;:20::i;:::-;-1:-1:-1;;;;;34685:36:0;;34595:126;34569:153;;34740:17;34735:66;;34766:35;;-1:-1:-1;;;34766:35:0;;;;;;;;;;;34735:66;-1:-1:-1;;;;;34816:16:0;;34812:52;;34841:23;;-1:-1:-1;;;34841:23:0;;;;;;;;;;;34812:52;34985:35;35002:1;35006:7;35015:4;34985:8;:35::i;:::-;-1:-1:-1;;;;;35316:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35316:31:0;;;-1:-1:-1;;;;;35316:31:0;;;-1:-1:-1;;35316:31:0;;;;;;;35362:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35362:29:0;;;;;;;;;;;35442:20;;;:11;:20;;;;;;35477:18;;-1:-1:-1;;;;;;35510:49:0;;;;-1:-1:-1;;;35543:15:0;35510:49;;;;;;;;;;35833:11;;35893:24;;;;;35936:13;;35442:20;;35893:24;;35936:13;35932:384;;36146:13;;36131:11;:28;36127:174;;36184:20;;36253:28;;;;-1:-1:-1;;;;;36227:54:0;-1:-1:-1;;;36227:54:0;-1:-1:-1;;;;;;36227:54:0;;;-1:-1:-1;;;;;36184:20:0;;36227:54;;;;36127:174;35291:1036;;;36363:7;36359:2;-1:-1:-1;;;;;36344:27:0;36353:4;-1:-1:-1;;;;;36344:27:0;;;;;;;;;;;36382:42;30311:406;25831:1141;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;25974:7:0;26057:13;;26050:4;:20;26019:886;;;26091:31;26125:17;;;:11;:17;;;;;;;;;26091:51;;;;;;;;;-1:-1:-1;;;;;26091:51:0;;;;-1:-1:-1;;;26091:51:0;;-1:-1:-1;;;;;26091:51:0;;;;;;;;-1:-1:-1;;;26091:51:0;;;;;;;;;;;;;;26161:729;;26211:14;;-1:-1:-1;;;;;26211:28:0;;26207:101;;26275:9;25831:1141;-1:-1:-1;;;25831:1141:0:o;26207:101::-;-1:-1:-1;;;26650:6:0;26695:17;;;;:11;:17;;;;;;;;;26683:29;;;;;;;;;-1:-1:-1;;;;;26683:29:0;;;;;-1:-1:-1;;;26683:29:0;;-1:-1:-1;;;;;26683:29:0;;;;;;;;-1:-1:-1;;;26683:29:0;;;;;;;;;;;;;26743:28;26739:109;;26811:9;25831:1141;-1:-1:-1;;;25831:1141:0:o;26739:109::-;26610:261;;;26072:833;26019:886;26933:31;;-1:-1:-1;;;26933:31:0;;;;;;;;;;;48957:124;48396:6;;49028:7;;48396:6;;48395:7;48387:41;;;;-1:-1:-1;;;48387:41:0;;10164:2:1;48387:41:0;;;10146:21:1;10203:2;10183:18;;;10176:30;-1:-1:-1;;;10222:18:1;;;10215:51;10283:18;;48387:41:0;9962:345:1;48387:41:0;48462:18;;48447:11;:33;;48439:65;;;;-1:-1:-1;;;48439:65:0;;11640:2:1;48439:65:0;;;11622:21:1;11679:2;11659:18;;;11652:30;-1:-1:-1;;;11698:18:1;;;11691:49;11757:18;;48439:65:0;11438:343:1;48439:65:0;48568:9;;48553:11;48537:13;23534:12;;23324:7;23518:13;:28;;23280:303;48537:13;:27;;;;:::i;:::-;:40;;48515:110;;;;-1:-1:-1;;;48515:110:0;;11291:2:1;48515:110:0;;;11273:21:1;11330:2;11310:18;;;11303:30;-1:-1:-1;;;11349:18:1;;;11342:50;11409:18;;48515:110:0;11089:344:1;48515:110:0;49048:25:::1;49058:5;49065:7;49048:9;:25::i;44728:191::-:0;44821:6;;;-1:-1:-1;;;;;44838:17:0;;;-1:-1:-1;;;;;;44838:17:0;;;;;;;44871:40;;44821:6;;;44838:17;44821:6;;44871:40;;44802:16;;44871:40;44791:128;44728:191;:::o;31193:104::-;31262:27;31272:2;31276:8;31262:27;;;;;;;;;;;;:9;:27::i;40047:772::-;40244:155;;-1:-1:-1;;;40244:155:0;;40210:4;;-1:-1:-1;;;;;40244:36:0;;;;;:155;;16728:10;;40330:4;;40353:7;;40379:5;;40244:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40244:155:0;;;;;;;;-1:-1:-1;;40244:155:0;;;;;;;;;;;;:::i;:::-;;;40227:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40570:13:0;;40566:235;;40616:40;;-1:-1:-1;;;40616:40:0;;;;;;;;;;;40566:235;40759:6;40753:13;40744:6;40740:2;40736:15;40729:38;40227:585;-1:-1:-1;;;;;;40455:55:0;-1:-1:-1;;;40455:55:0;;-1:-1:-1;40227:585:0;40047:772;;;;;;:::o;51633:110::-;51693:13;51726:9;51719:16;;;;;:::i;17115:723::-;17171:13;17392:10;17388:53;;-1:-1:-1;;17419:10:0;;;;;;;;;;;;-1:-1:-1;;;17419:10:0;;;;;17115:723::o;17388:53::-;17466:5;17451:12;17507:78;17514:9;;17507:78;;17540:8;;;;:::i;:::-;;-1:-1:-1;17563:10:0;;-1:-1:-1;17571:2:0;17563:10;;:::i;:::-;;;17507:78;;;17595:19;17627:6;-1:-1:-1;;;;;17617:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17617:17:0;;17595:39;;17645:154;17652:10;;17645:154;;17679:11;17689:1;17679:11;;:::i;:::-;;-1:-1:-1;17748:10:0;17756:2;17748:5;:10;:::i;:::-;17735:24;;:2;:24;:::i;:::-;17722:39;;17705:6;17712;17705:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17705:56:0;;;;;;;;-1:-1:-1;17776:11:0;17785:2;17776:11;;:::i;:::-;;;17645:154;;31660:163;31783:32;31789:2;31793:8;31803:5;31810:4;32221:20;32244:13;-1:-1:-1;;;;;32272:16:0;;32268:48;;32297:19;;-1:-1:-1;;;32297:19:0;;;;;;;;;;;32268:48;32331:13;32327:44;;32353:18;;-1:-1:-1;;;32353:18:0;;;;;;;;;;;32327:44;-1:-1:-1;;;;;32722:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32781:49:0;;-1:-1:-1;;;;;32722:44:0;;;;;;;32781:49;;;;-1:-1:-1;;32722:44:0;;;;;;32781:49;;;;;;;;;;;;;;;;32847:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32897:66:0;;;;-1:-1:-1;;;32947:15:0;32897:66;;;;;;;;;;32847:25;33044:23;;;33088:4;:23;;;;-1:-1:-1;;;;;;33096:13:0;;8639:19;:23;;33096:15;33084:832;;;33132:505;33163:38;;33188:12;;-1:-1:-1;;;;;33163:38:0;;;33180:1;;33163:38;;33180:1;;33163:38;33255:212;33324:1;33357:2;33390:14;;;;;;33435:5;33255:30;:212::i;:::-;33224:365;;33525:40;;-1:-1:-1;;;33525:40:0;;;;;;;;;;;33224:365;33632:3;33616:12;:19;;33132:505;;33718:12;33701:13;;:29;33697:43;;33732:8;;;33697:43;33084:832;;;33781:120;33812:40;;33837:14;;;;;-1:-1:-1;;;;;33812:40:0;;;33829:1;;33812:40;;33829:1;;33812:40;33896:3;33880:12;:19;;33781:120;;33084:832;-1:-1:-1;33930:13:0;:28;33980:60;30311:406;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;-1:-1:-1;;;;;1028:30:1;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:160::-;1265:20;;1321:13;;1314:21;1304:32;;1294:60;;1350:1;1347;1340:12;1365:186;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;1516:29;1535:9;1516:29;:::i;1556:260::-;1624:6;1632;1685:2;1673:9;1664:7;1660:23;1656:32;1653:52;;;1701:1;1698;1691:12;1653:52;1724:29;1743:9;1724:29;:::i;:::-;1714:39;;1772:38;1806:2;1795:9;1791:18;1772:38;:::i;:::-;1762:48;;1556:260;;;;;:::o;1821:328::-;1898:6;1906;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2006:29;2025:9;2006:29;:::i;:::-;1996:39;;2054:38;2088:2;2077:9;2073:18;2054:38;:::i;:::-;2044:48;;2139:2;2128:9;2124:18;2111:32;2101:42;;1821:328;;;;;:::o;2154:666::-;2249:6;2257;2265;2273;2326:3;2314:9;2305:7;2301:23;2297:33;2294:53;;;2343:1;2340;2333:12;2294:53;2366:29;2385:9;2366:29;:::i;:::-;2356:39;;2414:38;2448:2;2437:9;2433:18;2414:38;:::i;:::-;2404:48;;2499:2;2488:9;2484:18;2471:32;2461:42;;2554:2;2543:9;2539:18;2526:32;-1:-1:-1;;;;;2573:6:1;2570:30;2567:50;;;2613:1;2610;2603:12;2567:50;2636:22;;2689:4;2681:13;;2677:27;-1:-1:-1;2667:55:1;;2718:1;2715;2708:12;2667:55;2741:73;2806:7;2801:2;2788:16;2783:2;2779;2775:11;2741:73;:::i;:::-;2731:83;;;2154:666;;;;;;;:::o;2825:254::-;2890:6;2898;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;2990:29;3009:9;2990:29;:::i;:::-;2980:39;;3038:35;3069:2;3058:9;3054:18;3038:35;:::i;3084:254::-;3152:6;3160;3213:2;3201:9;3192:7;3188:23;3184:32;3181:52;;;3229:1;3226;3219:12;3181:52;3252:29;3271:9;3252:29;:::i;:::-;3242:39;3328:2;3313:18;;;;3300:32;;-1:-1:-1;;;3084:254:1:o;3343:773::-;3465:6;3473;3481;3489;3542:2;3530:9;3521:7;3517:23;3513:32;3510:52;;;3558:1;3555;3548:12;3510:52;3598:9;3585:23;-1:-1:-1;;;;;3668:2:1;3660:6;3657:14;3654:34;;;3684:1;3681;3674:12;3654:34;3723:70;3785:7;3776:6;3765:9;3761:22;3723:70;:::i;:::-;3812:8;;-1:-1:-1;3697:96:1;-1:-1:-1;3900:2:1;3885:18;;3872:32;;-1:-1:-1;3916:16:1;;;3913:36;;;3945:1;3942;3935:12;3913:36;;3984:72;4048:7;4037:8;4026:9;4022:24;3984:72;:::i;:::-;3343:773;;;;-1:-1:-1;4075:8:1;-1:-1:-1;;;;3343:773:1:o;4121:180::-;4177:6;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:26;4285:9;4269:26;:::i;4306:245::-;4364:6;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4472:9;4459:23;4491:30;4515:5;4491:30;:::i;4556:249::-;4625:6;4678:2;4666:9;4657:7;4653:23;4649:32;4646:52;;;4694:1;4691;4684:12;4646:52;4726:9;4720:16;4745:30;4769:5;4745:30;:::i;4810:450::-;4879:6;4932:2;4920:9;4911:7;4907:23;4903:32;4900:52;;;4948:1;4945;4938:12;4900:52;4988:9;4975:23;-1:-1:-1;;;;;5013:6:1;5010:30;5007:50;;;5053:1;5050;5043:12;5007:50;5076:22;;5129:4;5121:13;;5117:27;-1:-1:-1;5107:55:1;;5158:1;5155;5148:12;5107:55;5181:73;5246:7;5241:2;5228:16;5223:2;5219;5215:11;5181:73;:::i;5265:180::-;5324:6;5377:2;5365:9;5356:7;5352:23;5348:32;5345:52;;;5393:1;5390;5383:12;5345:52;-1:-1:-1;5416:23:1;;5265:180;-1:-1:-1;5265:180:1:o;5450:257::-;5491:3;5529:5;5523:12;5556:6;5551:3;5544:19;5572:63;5628:6;5621:4;5616:3;5612:14;5605:4;5598:5;5594:16;5572:63;:::i;:::-;5689:2;5668:15;-1:-1:-1;;5664:29:1;5655:39;;;;5696:4;5651:50;;5450:257;-1:-1:-1;;5450:257:1:o;5712:1527::-;5936:3;5974:6;5968:13;6000:4;6013:51;6057:6;6052:3;6047:2;6039:6;6035:15;6013:51;:::i;:::-;6127:13;;6086:16;;;;6149:55;6127:13;6086:16;6171:15;;;6149:55;:::i;:::-;6293:13;;6226:20;;;6266:1;;6353;6375:18;;;;6428;;;;6455:93;;6533:4;6523:8;6519:19;6507:31;;6455:93;6596:2;6586:8;6583:16;6563:18;6560:40;6557:167;;;-1:-1:-1;;;6623:33:1;;6679:4;6676:1;6669:15;6709:4;6630:3;6697:17;6557:167;6740:18;6767:110;;;;6891:1;6886:328;;;;6733:481;;6767:110;-1:-1:-1;;6802:24:1;;6788:39;;6847:20;;;;-1:-1:-1;6767:110:1;;6886:328;12041:1;12034:14;;;12078:4;12065:18;;6981:1;6995:169;7009:8;7006:1;7003:15;6995:169;;;7091:14;;7076:13;;;7069:37;7134:16;;;;7026:10;;6995:169;;;6999:3;;7195:8;7188:5;7184:20;7177:27;;6733:481;-1:-1:-1;7230:3:1;;5712:1527;-1:-1:-1;;;;;;;;;;;5712:1527:1:o;7662:488::-;-1:-1:-1;;;;;7931:15:1;;;7913:34;;7983:15;;7978:2;7963:18;;7956:43;8030:2;8015:18;;8008:34;;;8078:3;8073:2;8058:18;;8051:31;;;7856:4;;8099:45;;8124:19;;8116:6;8099:45;:::i;:::-;8091:53;7662:488;-1:-1:-1;;;;;;7662:488:1:o;8155:632::-;8326:2;8378:21;;;8448:13;;8351:18;;;8470:22;;;8297:4;;8326:2;8549:15;;;;8523:2;8508:18;;;8297:4;8592:169;8606:6;8603:1;8600:13;8592:169;;;8667:13;;8655:26;;8736:15;;;;8701:12;;;;8628:1;8621:9;8592:169;;;-1:-1:-1;8778:3:1;;8155:632;-1:-1:-1;;;;;;8155:632:1:o;8984:219::-;9133:2;9122:9;9115:21;9096:4;9153:44;9193:2;9182:9;9178:18;9170:6;9153:44;:::i;10312:356::-;10514:2;10496:21;;;10533:18;;;10526:30;10592:34;10587:2;10572:18;;10565:62;10659:2;10644:18;;10312:356::o;12094:128::-;12134:3;12165:1;12161:6;12158:1;12155:13;12152:39;;;12171:18;;:::i;:::-;-1:-1:-1;12207:9:1;;12094:128::o;12227:120::-;12267:1;12293;12283:35;;12298:18;;:::i;:::-;-1:-1:-1;12332:9:1;;12227:120::o;12352:168::-;12392:7;12458:1;12454;12450:6;12446:14;12443:1;12440:21;12435:1;12428:9;12421:17;12417:45;12414:71;;;12465:18;;:::i;:::-;-1:-1:-1;12505:9:1;;12352:168::o;12525:125::-;12565:4;12593:1;12590;12587:8;12584:34;;;12598:18;;:::i;:::-;-1:-1:-1;12635:9:1;;12525:125::o;12655:258::-;12727:1;12737:113;12751:6;12748:1;12745:13;12737:113;;;12827:11;;;12821:18;12808:11;;;12801:39;12773:2;12766:10;12737:113;;;12868:6;12865:1;12862:13;12859:48;;;-1:-1:-1;;12903:1:1;12885:16;;12878:27;12655:258::o;12918:380::-;12997:1;12993:12;;;;13040;;;13061:61;;13115:4;13107:6;13103:17;13093:27;;13061:61;13168:2;13160:6;13157:14;13137:18;13134:38;13131:161;;;13214:10;13209:3;13205:20;13202:1;13195:31;13249:4;13246:1;13239:15;13277:4;13274:1;13267:15;13131:161;;12918:380;;;:::o;13303:135::-;13342:3;-1:-1:-1;;13363:17:1;;13360:43;;;13383:18;;:::i;:::-;-1:-1:-1;13430:1:1;13419:13;;13303:135::o;13443:112::-;13475:1;13501;13491:35;;13506:18;;:::i;:::-;-1:-1:-1;13540:9:1;;13443:112::o;13560:127::-;13621:10;13616:3;13612:20;13609:1;13602:31;13652:4;13649:1;13642:15;13676:4;13673:1;13666:15;13692:127;13753:10;13748:3;13744:20;13741:1;13734:31;13784:4;13781:1;13774:15;13808:4;13805:1;13798:15;13824:127;13885:10;13880:3;13876:20;13873:1;13866:31;13916:4;13913:1;13906:15;13940:4;13937:1;13930:15;13956:127;14017:10;14012:3;14008:20;14005:1;13998:31;14048:4;14045:1;14038:15;14072:4;14069:1;14062:15;14088:131;-1:-1:-1;;;;;;14162:32:1;;14152:43;;14142:71;;14209:1;14206;14199:12
Swarm Source
ipfs://427dd72fd017e1f97e22dd46a2bcfdb5f1da7b8163baff5cbe527278e6f3532d
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.