ERC-721
Overview
Max Total Supply
83 BRD
Holders
67
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BRDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BRIDGES
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-07 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.0 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/interfaces/IERC165.sol // OpenZeppelin Contracts v4.4.0 (interfaces/IERC165.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts v4.4.0 (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol) 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; } } // File: BRIDGES.sol pragma solidity ^0.8.9; contract BRIDGES is ERC721, IERC2981, ReentrancyGuard, Ownable { using Counters for Counters.Counter; constructor (string memory customBaseURI_) ERC721("BRIDGES", "BRD") { customBaseURI = customBaseURI_; } /** MINTING **/ uint256 public constant MAX_SUPPLY = 83; uint256 public constant PRICE = 50000000000000000; Counters.Counter private supplyCounter; function mint() public payable nonReentrant { require(saleIsActive, "Sale not active"); require(totalSupply() < MAX_SUPPLY, "Exceeds max supply"); require(msg.value >= PRICE, "Insufficient payment, 0.05 ETH per item"); _safeMint(_msgSender(), totalSupply()); supplyCounter.increment(); } function totalSupply() public view returns (uint256) { return supplyCounter.current(); } /** ACTIVATION **/ bool public saleIsActive = true; function setSaleIsActive(bool saleIsActive_) external onlyOwner { saleIsActive = saleIsActive_; } /** URI HANDLING **/ string private customBaseURI; function setBaseURI(string memory customBaseURI_) external onlyOwner { customBaseURI = customBaseURI_; } function _baseURI() internal view virtual override returns (string memory) { return customBaseURI; } function tokenURI(uint256 tokenId) public view override returns (string memory) { return string(abi.encodePacked(super.tokenURI(tokenId), ".json")); } /** PAYOUT **/ function withdraw() public nonReentrant { uint256 balance = address(this).balance; Address.sendValue(payable(owner()), balance); } /** ROYALTIES **/ function royaltyInfo(uint256, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) { return (address(this), (salePrice * 500) / 10000); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, IERC165) returns (bool) { return ( interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId) ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive_","type":"bool"}],"name":"setSaleIsActive","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526009805460ff191660011790553480156200001e57600080fd5b5060405162002070380380620020708339810160408190526200004191620001df565b60408051808201825260078152664252494447455360c81b60208083019182528351808501909452600384526210949160ea1b9084015281519192916200008b9160009162000123565b508051620000a190600190602084019062000123565b5050600160065550620000b433620000d1565b8051620000c990600a90602084019062000123565b5050620002f8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013190620002bb565b90600052602060002090601f016020900481019282620001555760008555620001a0565b82601f106200017057805160ff1916838001178555620001a0565b82800160010185558215620001a0579182015b82811115620001a057825182559160200191906001019062000183565b50620001ae929150620001b2565b5090565b5b80821115620001ae5760008155600101620001b3565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620001f357600080fd5b82516001600160401b03808211156200020b57600080fd5b818501915085601f8301126200022057600080fd5b815181811115620002355762000235620001c9565b604051601f8201601f19908116603f01168101908382118183101715620002605762000260620001c9565b8160405282815288868487010111156200027957600080fd5b600093505b828410156200029d57848401860151818501870152928501926200027e565b82841115620002af5760008684830101525b98975050505050505050565b600181811c90821680620002d057607f821691505b60208210811415620002f257634e487b7160e01b600052602260045260246000fd5b50919050565b611d6880620003086000396000f3fe6080604052600436106101665760003560e01c806355f804b3116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610413578063e985e9c514610433578063eb8d24441461047c578063f2fde38b1461049657600080fd5b806395d89b41146103be578063a22cb465146103d3578063b88d4fde146103f357600080fd5b806355f804b3146103105780636352211e1461033057806370a0823114610350578063715018a6146103705780638d859f3e146103855780638da5cb5b146103a057600080fd5b806318160ddd1161012357806318160ddd1461024457806323b872dd146102675780632a55205a1461028757806332cb6b0c146102c65780633ccfd60b146102db57806342842e0e146102f057600080fd5b806301ffc9a71461016b57806302c88989146101a057806306fdde03146101c2578063081812fc146101e4578063095ea7b31461021c5780631249c58b1461023c575b600080fd5b34801561017757600080fd5b5061018b610186366004611761565b6104b6565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101c06101bb366004611793565b6104e1565b005b3480156101ce57600080fd5b506101d7610527565b6040516101979190611806565b3480156101f057600080fd5b506102046101ff366004611819565b6105b9565b6040516001600160a01b039091168152602001610197565b34801561022857600080fd5b506101c0610237366004611849565b61064e565b6101c0610764565b34801561025057600080fd5b506102596108d9565b604051908152602001610197565b34801561027357600080fd5b506101c0610282366004611873565b6108e9565b34801561029357600080fd5b506102a76102a23660046118af565b61091a565b604080516001600160a01b039093168352602083019190915201610197565b3480156102d257600080fd5b50610259605381565b3480156102e757600080fd5b506101c0610942565b3480156102fc57600080fd5b506101c061030b366004611873565b6109be565b34801561031c57600080fd5b506101c061032b36600461195d565b6109d9565b34801561033c57600080fd5b5061020461034b366004611819565b610a1a565b34801561035c57600080fd5b5061025961036b3660046119a6565b610a91565b34801561037c57600080fd5b506101c0610b18565b34801561039157600080fd5b5061025966b1a2bc2ec5000081565b3480156103ac57600080fd5b506007546001600160a01b0316610204565b3480156103ca57600080fd5b506101d7610b4e565b3480156103df57600080fd5b506101c06103ee3660046119c1565b610b5d565b3480156103ff57600080fd5b506101c061040e3660046119f4565b610b68565b34801561041f57600080fd5b506101d761042e366004611819565b610ba0565b34801561043f57600080fd5b5061018b61044e366004611a70565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561048857600080fd5b5060095461018b9060ff1681565b3480156104a257600080fd5b506101c06104b13660046119a6565b610bd1565b60006001600160e01b0319821663152a902d60e11b14806104db57506104db82610c6c565b92915050565b6007546001600160a01b031633146105145760405162461bcd60e51b815260040161050b90611a9a565b60405180910390fd5b6009805460ff1916911515919091179055565b60606000805461053690611acf565b80601f016020809104026020016040519081016040528092919081815260200182805461056290611acf565b80156105af5780601f10610584576101008083540402835291602001916105af565b820191906000526020600020905b81548152906001019060200180831161059257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106325760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161050b565b506000908152600460205260409020546001600160a01b031690565b600061065982610a1a565b9050806001600160a01b0316836001600160a01b031614156106c75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161050b565b336001600160a01b03821614806106e357506106e3813361044e565b6107555760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161050b565b61075f8383610cbc565b505050565b600260065414156107b75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050b565b600260065560095460ff166108005760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b604482015260640161050b565b605361080a6108d9565b1061084c5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161050b565b66b1a2bc2ec500003410156108b35760405162461bcd60e51b815260206004820152602760248201527f496e73756666696369656e74207061796d656e742c20302e30352045544820706044820152666572206974656d60c81b606482015260840161050b565b6108c4336108bf6108d9565b610d2a565b6108d2600880546001019055565b6001600655565b60006108e460085490565b905090565b6108f33382610d44565b61090f5760405162461bcd60e51b815260040161050b90611b0a565b61075f838383610e3b565b6000803061271061092d856101f4611b71565b6109379190611ba6565b915091509250929050565b600260065414156109955760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050b565b6002600655476109b66109b06007546001600160a01b031690565b82610fdb565b506001600655565b61075f83838360405180602001604052806000815250610b68565b6007546001600160a01b03163314610a035760405162461bcd60e51b815260040161050b90611a9a565b8051610a1690600a9060208401906116b2565b5050565b6000818152600260205260408120546001600160a01b0316806104db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161050b565b60006001600160a01b038216610afc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161050b565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610b425760405162461bcd60e51b815260040161050b90611a9a565b610b4c60006110f4565b565b60606001805461053690611acf565b610a16338383611146565b610b723383610d44565b610b8e5760405162461bcd60e51b815260040161050b90611b0a565b610b9a84848484611215565b50505050565b6060610bab82611248565b604051602001610bbb9190611bba565b6040516020818303038152906040529050919050565b6007546001600160a01b03163314610bfb5760405162461bcd60e51b815260040161050b90611a9a565b6001600160a01b038116610c605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050b565b610c69816110f4565b50565b60006001600160e01b031982166380ac58cd60e01b1480610c9d57506001600160e01b03198216635b5e139f60e01b145b806104db57506301ffc9a760e01b6001600160e01b03198316146104db565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cf182610a1a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610a16828260405180602001604052806000815250611323565b6000818152600260205260408120546001600160a01b0316610dbd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161050b565b6000610dc883610a1a565b9050806001600160a01b0316846001600160a01b03161480610e035750836001600160a01b0316610df8846105b9565b6001600160a01b0316145b80610e3357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e4e82610a1a565b6001600160a01b031614610eb65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161050b565b6001600160a01b038216610f185760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161050b565b610f23600082610cbc565b6001600160a01b0383166000908152600360205260408120805460019290610f4c908490611be3565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f7a908490611bfa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8047101561102b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161050b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611078576040519150601f19603f3d011682016040523d82523d6000602084013e61107d565b606091505b505090508061075f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161050b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156111a85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161050b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611220848484610e3b565b61122c84848484611356565b610b9a5760405162461bcd60e51b815260040161050b90611c12565b6000818152600260205260409020546060906001600160a01b03166112c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161050b565b60006112d1611463565b905060008151116112f1576040518060200160405280600081525061131c565b806112fb84611472565b60405160200161130c929190611c64565b6040516020818303038152906040525b9392505050565b61132d8383611570565b61133a6000848484611356565b61075f5760405162461bcd60e51b815260040161050b90611c12565b60006001600160a01b0384163b1561145857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061139a903390899088908890600401611c93565b602060405180830381600087803b1580156113b457600080fd5b505af19250505080156113e4575060408051601f3d908101601f191682019092526113e191810190611cd0565b60015b61143e573d808015611412576040519150601f19603f3d011682016040523d82523d6000602084013e611417565b606091505b5080516114365760405162461bcd60e51b815260040161050b90611c12565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e33565b506001949350505050565b6060600a805461053690611acf565b6060816114965750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114c057806114aa81611ced565b91506114b99050600a83611ba6565b915061149a565b60008167ffffffffffffffff8111156114db576114db6118d1565b6040519080825280601f01601f191660200182016040528015611505576020820181803683370190505b5090505b8415610e335761151a600183611be3565b9150611527600a86611d08565b611532906030611bfa565b60f81b81838151811061154757611547611d1c565b60200101906001600160f81b031916908160001a905350611569600a86611ba6565b9450611509565b6001600160a01b0382166115c65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161050b565b6000818152600260205260409020546001600160a01b03161561162b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161050b565b6001600160a01b0382166000908152600360205260408120805460019290611654908490611bfa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116be90611acf565b90600052602060002090601f0160209004810192826116e05760008555611726565b82601f106116f957805160ff1916838001178555611726565b82800160010185558215611726579182015b8281111561172657825182559160200191906001019061170b565b50611732929150611736565b5090565b5b808211156117325760008155600101611737565b6001600160e01b031981168114610c6957600080fd5b60006020828403121561177357600080fd5b813561131c8161174b565b8035801515811461178e57600080fd5b919050565b6000602082840312156117a557600080fd5b61131c8261177e565b60005b838110156117c95781810151838201526020016117b1565b83811115610b9a5750506000910152565b600081518084526117f28160208601602086016117ae565b601f01601f19169290920160200192915050565b60208152600061131c60208301846117da565b60006020828403121561182b57600080fd5b5035919050565b80356001600160a01b038116811461178e57600080fd5b6000806040838503121561185c57600080fd5b61186583611832565b946020939093013593505050565b60008060006060848603121561188857600080fd5b61189184611832565b925061189f60208501611832565b9150604084013590509250925092565b600080604083850312156118c257600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611902576119026118d1565b604051601f8501601f19908116603f0116810190828211818310171561192a5761192a6118d1565b8160405280935085815286868601111561194357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561196f57600080fd5b813567ffffffffffffffff81111561198657600080fd5b8201601f8101841361199757600080fd5b610e33848235602084016118e7565b6000602082840312156119b857600080fd5b61131c82611832565b600080604083850312156119d457600080fd5b6119dd83611832565b91506119eb6020840161177e565b90509250929050565b60008060008060808587031215611a0a57600080fd5b611a1385611832565b9350611a2160208601611832565b925060408501359150606085013567ffffffffffffffff811115611a4457600080fd5b8501601f81018713611a5557600080fd5b611a64878235602084016118e7565b91505092959194509250565b60008060408385031215611a8357600080fd5b611a8c83611832565b91506119eb60208401611832565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611ae357607f821691505b60208210811415611b0457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611b8b57611b8b611b5b565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611bb557611bb5611b90565b500490565b60008251611bcc8184602087016117ae565b64173539b7b760d91b920191825250600501919050565b600082821015611bf557611bf5611b5b565b500390565b60008219821115611c0d57611c0d611b5b565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351611c768184602088016117ae565b835190830190611c8a8183602088016117ae565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cc6908301846117da565b9695505050505050565b600060208284031215611ce257600080fd5b815161131c8161174b565b6000600019821415611d0157611d01611b5b565b5060010190565b600082611d1757611d17611b90565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122008db613d3667b0b8af3945405310f816945be8cf2ef85bf455ed51c37e7d20d764736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101665760003560e01c806355f804b3116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610413578063e985e9c514610433578063eb8d24441461047c578063f2fde38b1461049657600080fd5b806395d89b41146103be578063a22cb465146103d3578063b88d4fde146103f357600080fd5b806355f804b3146103105780636352211e1461033057806370a0823114610350578063715018a6146103705780638d859f3e146103855780638da5cb5b146103a057600080fd5b806318160ddd1161012357806318160ddd1461024457806323b872dd146102675780632a55205a1461028757806332cb6b0c146102c65780633ccfd60b146102db57806342842e0e146102f057600080fd5b806301ffc9a71461016b57806302c88989146101a057806306fdde03146101c2578063081812fc146101e4578063095ea7b31461021c5780631249c58b1461023c575b600080fd5b34801561017757600080fd5b5061018b610186366004611761565b6104b6565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101c06101bb366004611793565b6104e1565b005b3480156101ce57600080fd5b506101d7610527565b6040516101979190611806565b3480156101f057600080fd5b506102046101ff366004611819565b6105b9565b6040516001600160a01b039091168152602001610197565b34801561022857600080fd5b506101c0610237366004611849565b61064e565b6101c0610764565b34801561025057600080fd5b506102596108d9565b604051908152602001610197565b34801561027357600080fd5b506101c0610282366004611873565b6108e9565b34801561029357600080fd5b506102a76102a23660046118af565b61091a565b604080516001600160a01b039093168352602083019190915201610197565b3480156102d257600080fd5b50610259605381565b3480156102e757600080fd5b506101c0610942565b3480156102fc57600080fd5b506101c061030b366004611873565b6109be565b34801561031c57600080fd5b506101c061032b36600461195d565b6109d9565b34801561033c57600080fd5b5061020461034b366004611819565b610a1a565b34801561035c57600080fd5b5061025961036b3660046119a6565b610a91565b34801561037c57600080fd5b506101c0610b18565b34801561039157600080fd5b5061025966b1a2bc2ec5000081565b3480156103ac57600080fd5b506007546001600160a01b0316610204565b3480156103ca57600080fd5b506101d7610b4e565b3480156103df57600080fd5b506101c06103ee3660046119c1565b610b5d565b3480156103ff57600080fd5b506101c061040e3660046119f4565b610b68565b34801561041f57600080fd5b506101d761042e366004611819565b610ba0565b34801561043f57600080fd5b5061018b61044e366004611a70565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561048857600080fd5b5060095461018b9060ff1681565b3480156104a257600080fd5b506101c06104b13660046119a6565b610bd1565b60006001600160e01b0319821663152a902d60e11b14806104db57506104db82610c6c565b92915050565b6007546001600160a01b031633146105145760405162461bcd60e51b815260040161050b90611a9a565b60405180910390fd5b6009805460ff1916911515919091179055565b60606000805461053690611acf565b80601f016020809104026020016040519081016040528092919081815260200182805461056290611acf565b80156105af5780601f10610584576101008083540402835291602001916105af565b820191906000526020600020905b81548152906001019060200180831161059257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106325760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161050b565b506000908152600460205260409020546001600160a01b031690565b600061065982610a1a565b9050806001600160a01b0316836001600160a01b031614156106c75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161050b565b336001600160a01b03821614806106e357506106e3813361044e565b6107555760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161050b565b61075f8383610cbc565b505050565b600260065414156107b75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050b565b600260065560095460ff166108005760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b604482015260640161050b565b605361080a6108d9565b1061084c5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161050b565b66b1a2bc2ec500003410156108b35760405162461bcd60e51b815260206004820152602760248201527f496e73756666696369656e74207061796d656e742c20302e30352045544820706044820152666572206974656d60c81b606482015260840161050b565b6108c4336108bf6108d9565b610d2a565b6108d2600880546001019055565b6001600655565b60006108e460085490565b905090565b6108f33382610d44565b61090f5760405162461bcd60e51b815260040161050b90611b0a565b61075f838383610e3b565b6000803061271061092d856101f4611b71565b6109379190611ba6565b915091509250929050565b600260065414156109955760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050b565b6002600655476109b66109b06007546001600160a01b031690565b82610fdb565b506001600655565b61075f83838360405180602001604052806000815250610b68565b6007546001600160a01b03163314610a035760405162461bcd60e51b815260040161050b90611a9a565b8051610a1690600a9060208401906116b2565b5050565b6000818152600260205260408120546001600160a01b0316806104db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161050b565b60006001600160a01b038216610afc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161050b565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610b425760405162461bcd60e51b815260040161050b90611a9a565b610b4c60006110f4565b565b60606001805461053690611acf565b610a16338383611146565b610b723383610d44565b610b8e5760405162461bcd60e51b815260040161050b90611b0a565b610b9a84848484611215565b50505050565b6060610bab82611248565b604051602001610bbb9190611bba565b6040516020818303038152906040529050919050565b6007546001600160a01b03163314610bfb5760405162461bcd60e51b815260040161050b90611a9a565b6001600160a01b038116610c605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050b565b610c69816110f4565b50565b60006001600160e01b031982166380ac58cd60e01b1480610c9d57506001600160e01b03198216635b5e139f60e01b145b806104db57506301ffc9a760e01b6001600160e01b03198316146104db565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cf182610a1a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610a16828260405180602001604052806000815250611323565b6000818152600260205260408120546001600160a01b0316610dbd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161050b565b6000610dc883610a1a565b9050806001600160a01b0316846001600160a01b03161480610e035750836001600160a01b0316610df8846105b9565b6001600160a01b0316145b80610e3357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e4e82610a1a565b6001600160a01b031614610eb65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161050b565b6001600160a01b038216610f185760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161050b565b610f23600082610cbc565b6001600160a01b0383166000908152600360205260408120805460019290610f4c908490611be3565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f7a908490611bfa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8047101561102b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161050b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611078576040519150601f19603f3d011682016040523d82523d6000602084013e61107d565b606091505b505090508061075f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161050b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156111a85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161050b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611220848484610e3b565b61122c84848484611356565b610b9a5760405162461bcd60e51b815260040161050b90611c12565b6000818152600260205260409020546060906001600160a01b03166112c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161050b565b60006112d1611463565b905060008151116112f1576040518060200160405280600081525061131c565b806112fb84611472565b60405160200161130c929190611c64565b6040516020818303038152906040525b9392505050565b61132d8383611570565b61133a6000848484611356565b61075f5760405162461bcd60e51b815260040161050b90611c12565b60006001600160a01b0384163b1561145857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061139a903390899088908890600401611c93565b602060405180830381600087803b1580156113b457600080fd5b505af19250505080156113e4575060408051601f3d908101601f191682019092526113e191810190611cd0565b60015b61143e573d808015611412576040519150601f19603f3d011682016040523d82523d6000602084013e611417565b606091505b5080516114365760405162461bcd60e51b815260040161050b90611c12565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e33565b506001949350505050565b6060600a805461053690611acf565b6060816114965750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114c057806114aa81611ced565b91506114b99050600a83611ba6565b915061149a565b60008167ffffffffffffffff8111156114db576114db6118d1565b6040519080825280601f01601f191660200182016040528015611505576020820181803683370190505b5090505b8415610e335761151a600183611be3565b9150611527600a86611d08565b611532906030611bfa565b60f81b81838151811061154757611547611d1c565b60200101906001600160f81b031916908160001a905350611569600a86611ba6565b9450611509565b6001600160a01b0382166115c65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161050b565b6000818152600260205260409020546001600160a01b03161561162b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161050b565b6001600160a01b0382166000908152600360205260408120805460019290611654908490611bfa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116be90611acf565b90600052602060002090601f0160209004810192826116e05760008555611726565b82601f106116f957805160ff1916838001178555611726565b82800160010185558215611726579182015b8281111561172657825182559160200191906001019061170b565b50611732929150611736565b5090565b5b808211156117325760008155600101611737565b6001600160e01b031981168114610c6957600080fd5b60006020828403121561177357600080fd5b813561131c8161174b565b8035801515811461178e57600080fd5b919050565b6000602082840312156117a557600080fd5b61131c8261177e565b60005b838110156117c95781810151838201526020016117b1565b83811115610b9a5750506000910152565b600081518084526117f28160208601602086016117ae565b601f01601f19169290920160200192915050565b60208152600061131c60208301846117da565b60006020828403121561182b57600080fd5b5035919050565b80356001600160a01b038116811461178e57600080fd5b6000806040838503121561185c57600080fd5b61186583611832565b946020939093013593505050565b60008060006060848603121561188857600080fd5b61189184611832565b925061189f60208501611832565b9150604084013590509250925092565b600080604083850312156118c257600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611902576119026118d1565b604051601f8501601f19908116603f0116810190828211818310171561192a5761192a6118d1565b8160405280935085815286868601111561194357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561196f57600080fd5b813567ffffffffffffffff81111561198657600080fd5b8201601f8101841361199757600080fd5b610e33848235602084016118e7565b6000602082840312156119b857600080fd5b61131c82611832565b600080604083850312156119d457600080fd5b6119dd83611832565b91506119eb6020840161177e565b90509250929050565b60008060008060808587031215611a0a57600080fd5b611a1385611832565b9350611a2160208601611832565b925060408501359150606085013567ffffffffffffffff811115611a4457600080fd5b8501601f81018713611a5557600080fd5b611a64878235602084016118e7565b91505092959194509250565b60008060408385031215611a8357600080fd5b611a8c83611832565b91506119eb60208401611832565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611ae357607f821691505b60208210811415611b0457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611b8b57611b8b611b5b565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611bb557611bb5611b90565b500490565b60008251611bcc8184602087016117ae565b64173539b7b760d91b920191825250600501919050565b600082821015611bf557611bf5611b5b565b500390565b60008219821115611c0d57611c0d611b5b565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351611c768184602088016117ae565b835190830190611c8a8183602088016117ae565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cc6908301846117da565b9695505050505050565b600060208284031215611ce257600080fd5b815161131c8161174b565b6000600019821415611d0157611d01611b5b565b5060010190565b600082611d1757611d17611b90565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122008db613d3667b0b8af3945405310f816945be8cf2ef85bf455ed51c37e7d20d764736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : customBaseURI_ (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
41441:2119:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43297:260;;;;;;;;;;-1:-1:-1;43297:260:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;43297:260:0;;;;;;;;42329:105;;;;;;;;;;-1:-1:-1;42329:105:0;;;;;:::i;:::-;;:::i;:::-;;27120:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28679:221::-;;;;;;;;;;-1:-1:-1;28679:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;28679:221:0;1878:203:1;28202:411:0;;;;;;;;;;-1:-1:-1;28202:411:0;;;;;:::i;:::-;;:::i;41836:323::-;;;:::i;42165:96::-;;;;;;;;;;;;;:::i;:::-;;;2669:25:1;;;2657:2;2642:18;42165:96:0;2523:177:1;29429:339:0;;;;;;;;;;-1:-1:-1;29429:339:0;;;;;:::i;:::-;;:::i;43099:192::-;;;;;;;;;;-1:-1:-1;43099:192:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3483:32:1;;;3465:51;;3547:2;3532:18;;3525:34;;;;3438:18;43099:192:0;3291:274:1;41689:39:0;;;;;;;;;;;;41726:2;41689:39;;42925:145;;;;;;;;;;;;;:::i;29839:185::-;;;;;;;;;;-1:-1:-1;29839:185:0;;;;;:::i;:::-;;:::i;42501:112::-;;;;;;;;;;-1:-1:-1;42501:112:0;;;;;:::i;:::-;;:::i;26814:239::-;;;;;;;;;;-1:-1:-1;26814:239:0;;;;;:::i;:::-;;:::i;26544:208::-;;;;;;;;;;-1:-1:-1;26544:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;41735:49::-;;;;;;;;;;;;41767:17;41735:49;;5544:87;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;27289:104;;;;;;;;;;;;;:::i;28972:155::-;;;;;;;;;;-1:-1:-1;28972:155:0;;;;;:::i;:::-;;:::i;30095:328::-;;;;;;;;;;-1:-1:-1;30095:328:0;;;;;:::i;:::-;;:::i;42733:166::-;;;;;;;;;;-1:-1:-1;42733:166:0;;;;;:::i;:::-;;:::i;29198:164::-;;;;;;;;;;-1:-1:-1;29198:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29319:25:0;;;29295:4;29319:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29198:164;42291:31;;;;;;;;;;-1:-1:-1;42291:31:0;;;;;;;;6453:201;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;43297:260::-;43424:4;-1:-1:-1;;;;;;43456:41:0;;-1:-1:-1;;;43456:41:0;;:88;;;43508:36;43532:11;43508:23;:36::i;:::-;43440:111;43297:260;-1:-1:-1;;43297:260:0:o;42329:105::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;;;;;;;;;42400:12:::1;:28:::0;;-1:-1:-1;;42400:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42329:105::o;27120:100::-;27174:13;27207:5;27200:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27120:100;:::o;28679:221::-;28755:7;32022:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32022:16:0;28775:73;;;;-1:-1:-1;;;28775:73:0;;7130:2:1;28775:73:0;;;7112:21:1;7169:2;7149:18;;;7142:30;7208:34;7188:18;;;7181:62;-1:-1:-1;;;7259:18:1;;;7252:42;7311:19;;28775:73:0;6928:408:1;28775:73:0;-1:-1:-1;28868:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28868:24:0;;28679:221::o;28202:411::-;28283:13;28299:23;28314:7;28299:14;:23::i;:::-;28283:39;;28347:5;-1:-1:-1;;;;;28341:11:0;:2;-1:-1:-1;;;;;28341:11:0;;;28333:57;;;;-1:-1:-1;;;28333:57:0;;7543:2:1;28333:57:0;;;7525:21:1;7582:2;7562:18;;;7555:30;7621:34;7601:18;;;7594:62;-1:-1:-1;;;7672:18:1;;;7665:31;7713:19;;28333:57:0;7341:397:1;28333:57:0;4348:10;-1:-1:-1;;;;;28425:21:0;;;;:62;;-1:-1:-1;28450:37:0;28467:5;4348:10;29198:164;:::i;28450:37::-;28403:168;;;;-1:-1:-1;;;28403:168:0;;7945:2:1;28403:168:0;;;7927:21:1;7984:2;7964:18;;;7957:30;8023:34;8003:18;;;7996:62;8094:26;8074:18;;;8067:54;8138:19;;28403:168:0;7743:420:1;28403:168:0;28584:21;28593:2;28597:7;28584:8;:21::i;:::-;28272:341;28202:411;;:::o;41836:323::-;40427:1;41025:7;;:19;;41017:63;;;;-1:-1:-1;;;41017:63:0;;8370:2:1;41017:63:0;;;8352:21:1;8409:2;8389:18;;;8382:30;8448:33;8428:18;;;8421:61;8499:18;;41017:63:0;8168:355:1;41017:63:0;40427:1;41158:7;:18;41895:12:::1;::::0;::::1;;41887:40;;;::::0;-1:-1:-1;;;41887:40:0;;8730:2:1;41887:40:0::1;::::0;::::1;8712:21:1::0;8769:2;8749:18;;;8742:30;-1:-1:-1;;;8788:18:1;;;8781:45;8843:18;;41887:40:0::1;8528:339:1::0;41887:40:0::1;41726:2;41944:13;:11;:13::i;:::-;:26;41936:57;;;::::0;-1:-1:-1;;;41936:57:0;;9074:2:1;41936:57:0::1;::::0;::::1;9056:21:1::0;9113:2;9093:18;;;9086:30;-1:-1:-1;;;9132:18:1;;;9125:48;9190:18;;41936:57:0::1;8872:342:1::0;41936:57:0::1;41767:17;42010:9;:18;;42002:70;;;::::0;-1:-1:-1;;;42002:70:0;;9421:2:1;42002:70:0::1;::::0;::::1;9403:21:1::0;9460:2;9440:18;;;9433:30;9499:34;9479:18;;;9472:62;-1:-1:-1;;;9550:18:1;;;9543:37;9597:19;;42002:70:0::1;9219:403:1::0;42002:70:0::1;42081:38;4348:10:::0;42105:13:::1;:11;:13::i;:::-;42081:9;:38::i;:::-;42128:25;:13;1083:19:::0;;1101:1;1083:19;;;994:127;42128:25:::1;40383:1:::0;41337:7;:22;41836:323::o;42165:96::-;42209:7;42232:23;:13;964:14;;872:114;42232:23;42225:30;;42165:96;:::o;29429:339::-;29624:41;4348:10;29657:7;29624:18;:41::i;:::-;29616:103;;;;-1:-1:-1;;;29616:103:0;;;;;;;:::i;:::-;29732:28;29742:4;29748:2;29752:7;29732:9;:28::i;43099:192::-;43185:16;;43252:4;43279:5;43260:15;:9;43272:3;43260:15;:::i;:::-;43259:25;;;;:::i;:::-;43236:49;;;;43099:192;;;;;:::o;42925:145::-;40427:1;41025:7;;:19;;41017:63;;;;-1:-1:-1;;;41017:63:0;;8370:2:1;41017:63:0;;;8352:21:1;8409:2;8389:18;;;8382:30;8448:33;8428:18;;;8421:61;8499:18;;41017:63:0;8168:355:1;41017:63:0;40427:1;41158:7;:18;42990:21:::1;43020:44;43046:7;5617:6:::0;;-1:-1:-1;;;;;5617:6:0;;5544:87;43046:7:::1;43056;43020:17;:44::i;:::-;-1:-1:-1::0;40383:1:0;41337:7;:22;42925:145::o;29839:185::-;29977:39;29994:4;30000:2;30004:7;29977:39;;;;;;;;;;;;:16;:39::i;42501:112::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;42577:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42501:112:::0;:::o;26814:239::-;26886:7;26922:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26922:16:0;26957:19;26949:73;;;;-1:-1:-1;;;26949:73:0;;10809:2:1;26949:73:0;;;10791:21:1;10848:2;10828:18;;;10821:30;10887:34;10867:18;;;10860:62;-1:-1:-1;;;10938:18:1;;;10931:39;10987:19;;26949:73:0;10607:405:1;26544:208:0;26616:7;-1:-1:-1;;;;;26644:19:0;;26636:74;;;;-1:-1:-1;;;26636:74:0;;11219:2:1;26636:74:0;;;11201:21:1;11258:2;11238:18;;;11231:30;11297:34;11277:18;;;11270:62;-1:-1:-1;;;11348:18:1;;;11341:40;11398:19;;26636:74:0;11017:406:1;26636:74:0;-1:-1:-1;;;;;;26728:16:0;;;;;:9;:16;;;;;;;26544:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;27289:104::-;27345:13;27378:7;27371:14;;;;;:::i;28972:155::-;29067:52;4348:10;29100:8;29110;29067:18;:52::i;30095:328::-;30270:41;4348:10;30303:7;30270:18;:41::i;:::-;30262:103;;;;-1:-1:-1;;;30262:103:0;;;;;;;:::i;:::-;30376:39;30390:4;30396:2;30400:7;30409:5;30376:13;:39::i;:::-;30095:328;;;;:::o;42733:166::-;42803:13;42859:23;42874:7;42859:14;:23::i;:::-;42842:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;42828:65;;42733:166;;;:::o;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;12078:2:1;6534:73:0::1;::::0;::::1;12060:21:1::0;12117:2;12097:18;;;12090:30;12156:34;12136:18;;;12129:62;-1:-1:-1;;;12207:18:1;;;12200:36;12253:19;;6534:73:0::1;11876:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;26175:305::-;26277:4;-1:-1:-1;;;;;;26314:40:0;;-1:-1:-1;;;26314:40:0;;:105;;-1:-1:-1;;;;;;;26371:48:0;;-1:-1:-1;;;26371:48:0;26314:105;:158;;;-1:-1:-1;;;;;;;;;;19053:40:0;;;26436:36;18944:157;35915:174;35990:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35990:29:0;-1:-1:-1;;;;;35990:29:0;;;;;;;;:24;;36044:23;35990:24;36044:14;:23::i;:::-;-1:-1:-1;;;;;36035:46:0;;;;;;;;;;;35915:174;;:::o;32917:110::-;32993:26;33003:2;33007:7;32993:26;;;;;;;;;;;;:9;:26::i;32227:348::-;32320:4;32022:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32022:16:0;32337:73;;;;-1:-1:-1;;;32337:73:0;;12485:2:1;32337:73:0;;;12467:21:1;12524:2;12504:18;;;12497:30;12563:34;12543:18;;;12536:62;-1:-1:-1;;;12614:18:1;;;12607:42;12666:19;;32337:73:0;12283:408:1;32337:73:0;32421:13;32437:23;32452:7;32437:14;:23::i;:::-;32421:39;;32490:5;-1:-1:-1;;;;;32479:16:0;:7;-1:-1:-1;;;;;32479:16:0;;:51;;;;32523:7;-1:-1:-1;;;;;32499:31:0;:20;32511:7;32499:11;:20::i;:::-;-1:-1:-1;;;;;32499:31:0;;32479:51;:87;;;-1:-1:-1;;;;;;29319:25:0;;;29295:4;29319:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32534:32;32471:96;32227:348;-1:-1:-1;;;;32227:348:0:o;35219:578::-;35378:4;-1:-1:-1;;;;;35351:31:0;:23;35366:7;35351:14;:23::i;:::-;-1:-1:-1;;;;;35351:31:0;;35343:85;;;;-1:-1:-1;;;35343:85:0;;12898:2:1;35343:85:0;;;12880:21:1;12937:2;12917:18;;;12910:30;12976:34;12956:18;;;12949:62;-1:-1:-1;;;13027:18:1;;;13020:39;13076:19;;35343:85:0;12696:405:1;35343:85:0;-1:-1:-1;;;;;35447:16:0;;35439:65;;;;-1:-1:-1;;;35439:65:0;;13308:2:1;35439:65:0;;;13290:21:1;13347:2;13327:18;;;13320:30;13386:34;13366:18;;;13359:62;-1:-1:-1;;;13437:18:1;;;13430:34;13481:19;;35439:65:0;13106:400:1;35439:65:0;35621:29;35638:1;35642:7;35621:8;:29::i;:::-;-1:-1:-1;;;;;35663:15:0;;;;;;:9;:15;;;;;:20;;35682:1;;35663:15;:20;;35682:1;;35663:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35694:13:0;;;;;;:9;:13;;;;;:18;;35711:1;;35694:13;:18;;35711:1;;35694:18;:::i;:::-;;;;-1:-1:-1;;35723:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35723:21:0;-1:-1:-1;;;;;35723:21:0;;;;;;;;;35762:27;;35723:16;;35762:27;;;;;;;35219:578;;;:::o;9154:317::-;9269:6;9244:21;:31;;9236:73;;;;-1:-1:-1;;;9236:73:0;;13976:2:1;9236:73:0;;;13958:21:1;14015:2;13995:18;;;13988:30;14054:31;14034:18;;;14027:59;14103:18;;9236:73:0;13774:353:1;9236:73:0;9323:12;9341:9;-1:-1:-1;;;;;9341:14:0;9363:6;9341:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9322:52;;;9393:7;9385:78;;;;-1:-1:-1;;;9385:78:0;;14544:2:1;9385:78:0;;;14526:21:1;14583:2;14563:18;;;14556:30;14622:34;14602:18;;;14595:62;14693:28;14673:18;;;14666:56;14739:19;;9385:78:0;14342:422:1;6814:191:0;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;36231:315::-;36386:8;-1:-1:-1;;;;;36377:17:0;:5;-1:-1:-1;;;;;36377:17:0;;;36369:55;;;;-1:-1:-1;;;36369:55:0;;14971:2:1;36369:55:0;;;14953:21:1;15010:2;14990:18;;;14983:30;15049:27;15029:18;;;15022:55;15094:18;;36369:55:0;14769:349:1;36369:55:0;-1:-1:-1;;;;;36435:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36435:46:0;;;;;;;;;;36497:41;;540::1;;;36497::0;;513:18:1;36497:41:0;;;;;;;36231:315;;;:::o;31305:::-;31462:28;31472:4;31478:2;31482:7;31462:9;:28::i;:::-;31509:48;31532:4;31538:2;31542:7;31551:5;31509:22;:48::i;:::-;31501:111;;;;-1:-1:-1;;;31501:111:0;;;;;;;:::i;27464:334::-;31998:4;32022:16;;;:7;:16;;;;;;27537:13;;-1:-1:-1;;;;;32022:16:0;27563:76;;;;-1:-1:-1;;;27563:76:0;;15744:2:1;27563:76:0;;;15726:21:1;15783:2;15763:18;;;15756:30;15822:34;15802:18;;;15795:62;-1:-1:-1;;;15873:18:1;;;15866:45;15928:19;;27563:76:0;15542:411:1;27563:76:0;27652:21;27676:10;:8;:10::i;:::-;27652:34;;27728:1;27710:7;27704:21;:25;:86;;;;;;;;;;;;;;;;;27756:7;27765:18;:7;:16;:18::i;:::-;27739:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27704:86;27697:93;27464:334;-1:-1:-1;;;27464:334:0:o;33254:321::-;33384:18;33390:2;33394:7;33384:5;:18::i;:::-;33435:54;33466:1;33470:2;33474:7;33483:5;33435:22;:54::i;:::-;33413:154;;;;-1:-1:-1;;;33413:154:0;;;;;;;:::i;37111:799::-;37266:4;-1:-1:-1;;;;;37287:13:0;;8155:20;8203:8;37283:620;;37323:72;;-1:-1:-1;;;37323:72:0;;-1:-1:-1;;;;;37323:36:0;;;;;:72;;4348:10;;37374:4;;37380:7;;37389:5;;37323:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37323:72:0;;;;;;;;-1:-1:-1;;37323:72:0;;;;;;;;;;;;:::i;:::-;;;37319:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37565:13:0;;37561:272;;37608:60;;-1:-1:-1;;;37608:60:0;;;;;;;:::i;37561:272::-;37783:6;37777:13;37768:6;37764:2;37760:15;37753:38;37319:529;-1:-1:-1;;;;;;37446:51:0;-1:-1:-1;;;37446:51:0;;-1:-1:-1;37439:58:0;;37283:620;-1:-1:-1;37887:4:0;37111:799;;;;;;:::o;42619:108::-;42679:13;42708;42701:20;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;33911:382;-1:-1:-1;;;;;33991:16:0;;33983:61;;;;-1:-1:-1;;;33983:61:0;;17772:2:1;33983:61:0;;;17754:21:1;;;17791:18;;;17784:30;17850:34;17830:18;;;17823:62;17902:18;;33983:61:0;17570:356:1;33983:61:0;31998:4;32022:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32022:16:0;:30;34055:58;;;;-1:-1:-1;;;34055:58:0;;18133:2:1;34055:58:0;;;18115:21:1;18172:2;18152:18;;;18145:30;18211;18191:18;;;18184:58;18259:18;;34055:58:0;17931:352:1;34055:58:0;-1:-1:-1;;;;;34184:13:0;;;;;;:9;:13;;;;;:18;;34201:1;;34184:13;:18;;34201:1;;34184:18;:::i;:::-;;;;-1:-1:-1;;34213:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34213:21:0;-1:-1:-1;;;;;34213:21:0;;;;;;;;34252:33;;34213:16;;;34252:33;;34213:16;;34252:33;33911:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:248::-;3106:6;3114;3167:2;3155:9;3146:7;3142:23;3138:32;3135:52;;;3183:1;3180;3173:12;3135:52;-1:-1:-1;;3206:23:1;;;3276:2;3261:18;;;3248:32;;-1:-1:-1;3038:248:1:o;3570:127::-;3631:10;3626:3;3622:20;3619:1;3612:31;3662:4;3659:1;3652:15;3686:4;3683:1;3676:15;3702:632;3767:5;3797:18;3838:2;3830:6;3827:14;3824:40;;;3844:18;;:::i;:::-;3919:2;3913:9;3887:2;3973:15;;-1:-1:-1;;3969:24:1;;;3995:2;3965:33;3961:42;3949:55;;;4019:18;;;4039:22;;;4016:46;4013:72;;;4065:18;;:::i;:::-;4105:10;4101:2;4094:22;4134:6;4125:15;;4164:6;4156;4149:22;4204:3;4195:6;4190:3;4186:16;4183:25;4180:45;;;4221:1;4218;4211:12;4180:45;4271:6;4266:3;4259:4;4251:6;4247:17;4234:44;4326:1;4319:4;4310:6;4302;4298:19;4294:30;4287:41;;;;3702:632;;;;;:::o;4339:451::-;4408:6;4461:2;4449:9;4440:7;4436:23;4432:32;4429:52;;;4477:1;4474;4467:12;4429:52;4517:9;4504:23;4550:18;4542:6;4539:30;4536:50;;;4582:1;4579;4572:12;4536:50;4605:22;;4658:4;4650:13;;4646:27;-1:-1:-1;4636:55:1;;4687:1;4684;4677:12;4636:55;4710:74;4776:7;4771:2;4758:16;4753:2;4749;4745:11;4710:74;:::i;4795:186::-;4854:6;4907:2;4895:9;4886:7;4882:23;4878:32;4875:52;;;4923:1;4920;4913:12;4875:52;4946:29;4965:9;4946:29;:::i;4986:254::-;5051:6;5059;5112:2;5100:9;5091:7;5087:23;5083:32;5080:52;;;5128:1;5125;5118:12;5080:52;5151:29;5170:9;5151:29;:::i;:::-;5141:39;;5199:35;5230:2;5219:9;5215:18;5199:35;:::i;:::-;5189:45;;4986:254;;;;;:::o;5245:667::-;5340:6;5348;5356;5364;5417:3;5405:9;5396:7;5392:23;5388:33;5385:53;;;5434:1;5431;5424:12;5385:53;5457:29;5476:9;5457:29;:::i;:::-;5447:39;;5505:38;5539:2;5528:9;5524:18;5505:38;:::i;:::-;5495:48;;5590:2;5579:9;5575:18;5562:32;5552:42;;5645:2;5634:9;5630:18;5617:32;5672:18;5664:6;5661:30;5658:50;;;5704:1;5701;5694:12;5658:50;5727:22;;5780:4;5772:13;;5768:27;-1:-1:-1;5758:55:1;;5809:1;5806;5799:12;5758:55;5832:74;5898:7;5893:2;5880:16;5875:2;5871;5867:11;5832:74;:::i;:::-;5822:84;;;5245:667;;;;;;;:::o;5917:260::-;5985:6;5993;6046:2;6034:9;6025:7;6021:23;6017:32;6014:52;;;6062:1;6059;6052:12;6014:52;6085:29;6104:9;6085:29;:::i;:::-;6075:39;;6133:38;6167:2;6156:9;6152:18;6133:38;:::i;6182:356::-;6384:2;6366:21;;;6403:18;;;6396:30;6462:34;6457:2;6442:18;;6435:62;6529:2;6514:18;;6182:356::o;6543:380::-;6622:1;6618:12;;;;6665;;;6686:61;;6740:4;6732:6;6728:17;6718:27;;6686:61;6793:2;6785:6;6782:14;6762:18;6759:38;6756:161;;;6839:10;6834:3;6830:20;6827:1;6820:31;6874:4;6871:1;6864:15;6902:4;6899:1;6892:15;6756:161;;6543:380;;;:::o;9627:413::-;9829:2;9811:21;;;9868:2;9848:18;;;9841:30;9907:34;9902:2;9887:18;;9880:62;-1:-1:-1;;;9973:2:1;9958:18;;9951:47;10030:3;10015:19;;9627:413::o;10045:127::-;10106:10;10101:3;10097:20;10094:1;10087:31;10137:4;10134:1;10127:15;10161:4;10158:1;10151:15;10177:168;10217:7;10283:1;10279;10275:6;10271:14;10268:1;10265:21;10260:1;10253:9;10246:17;10242:45;10239:71;;;10290:18;;:::i;:::-;-1:-1:-1;10330:9:1;;10177:168::o;10350:127::-;10411:10;10406:3;10402:20;10399:1;10392:31;10442:4;10439:1;10432:15;10466:4;10463:1;10456:15;10482:120;10522:1;10548;10538:35;;10553:18;;:::i;:::-;-1:-1:-1;10587:9:1;;10482:120::o;11428:443::-;11660:3;11698:6;11692:13;11714:53;11760:6;11755:3;11748:4;11740:6;11736:17;11714:53;:::i;:::-;-1:-1:-1;;;11789:16:1;;11814:22;;;-1:-1:-1;11863:1:1;11852:13;;11428:443;-1:-1:-1;11428:443:1:o;13511:125::-;13551:4;13579:1;13576;13573:8;13570:34;;;13584:18;;:::i;:::-;-1:-1:-1;13621:9:1;;13511:125::o;13641:128::-;13681:3;13712:1;13708:6;13705:1;13702:13;13699:39;;;13718:18;;:::i;:::-;-1:-1:-1;13754:9:1;;13641:128::o;15123:414::-;15325:2;15307:21;;;15364:2;15344:18;;;15337:30;15403:34;15398:2;15383:18;;15376:62;-1:-1:-1;;;15469:2:1;15454:18;;15447:48;15527:3;15512:19;;15123:414::o;15958:470::-;16137:3;16175:6;16169:13;16191:53;16237:6;16232:3;16225:4;16217:6;16213:17;16191:53;:::i;:::-;16307:13;;16266:16;;;;16329:57;16307:13;16266:16;16363:4;16351:17;;16329:57;:::i;:::-;16402:20;;15958:470;-1:-1:-1;;;;15958:470:1:o;16433:489::-;-1:-1:-1;;;;;16702:15:1;;;16684:34;;16754:15;;16749:2;16734:18;;16727:43;16801:2;16786:18;;16779:34;;;16849:3;16844:2;16829:18;;16822:31;;;16627:4;;16870:46;;16896:19;;16888:6;16870:46;:::i;:::-;16862:54;16433:489;-1:-1:-1;;;;;;16433:489:1:o;16927:249::-;16996:6;17049:2;17037:9;17028:7;17024:23;17020:32;17017:52;;;17065:1;17062;17055:12;17017:52;17097:9;17091:16;17116:30;17140:5;17116:30;:::i;17181:135::-;17220:3;-1:-1:-1;;17241:17:1;;17238:43;;;17261:18;;:::i;:::-;-1:-1:-1;17308:1:1;17297:13;;17181:135::o;17321:112::-;17353:1;17379;17369:35;;17384:18;;:::i;:::-;-1:-1:-1;17418:9:1;;17321:112::o;17438:127::-;17499:10;17494:3;17490:20;17487:1;17480:31;17530:4;17527:1;17520:15;17554:4;17551:1;17544:15
Swarm Source
ipfs://08db613d3667b0b8af3945405310f816945be8cf2ef85bf455ed51c37e7d20d7
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.