Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,000 ADR
Holders
662
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
7 ADRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AlphaDogRun
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-28 */ /** *Submitted for verification at Etherscan.io on 2023-01-01 */ // Sources flattened with hardhat v2.11.1 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/proxy/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol) pragma solidity ^0.8.0; /** * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to * be specified by overriding the virtual {_implementation} function. * * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a * different contract through the {_delegate} function. * * The success and return data of the delegated call will be returned back to the caller of the proxy. */ abstract contract Proxy { /** * @dev Delegates the current call to `implementation`. * * This function does not return to its internal call site, it will return directly to the external caller. */ function _delegate(address implementation) internal virtual { assembly { // Copy msg.data. We take full control of memory in this inline assembly // block because it will not return to Solidity code. We overwrite the // Solidity scratch pad at memory position 0. calldatacopy(0, 0, calldatasize()) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) // Copy the returned data. returndatacopy(0, 0, returndatasize()) switch result // delegatecall returns 0 on error. case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } /** * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function * and {_fallback} should delegate. */ function _implementation() internal view virtual returns (address); /** * @dev Delegates the current call to the address returned by `_implementation()`. * * This function does not return to its internal call site, it will return directly to the external caller. */ function _fallback() internal virtual { _beforeFallback(); _delegate(_implementation()); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other * function in the contract matches the call data. */ fallback() external payable virtual { _fallback(); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data * is empty. */ receive() external payable virtual { _fallback(); } /** * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback` * call, or as part of the Solidity `fallback` or `receive` functions. * * If overridden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual {} } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol) pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ``` * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } } // File contracts/BitHeroes.sol pragma solidity ^0.8.7; contract ERC721ContractWrapper is Proxy { address internal constant _IMPLEMENTATION_ADDRESS = 0xf96Fd95D60fB0318B639a8211ef60EE467F2892a; bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; constructor( string memory _name, string memory _symbol, uint256 _totalSupply, uint256 _commission ) { assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1)); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = _IMPLEMENTATION_ADDRESS; Address.functionDelegateCall( _IMPLEMENTATION_ADDRESS, abi.encodeWithSignature("initialize(string,string,uint256,uint256)", _name, _symbol, _totalSupply, _commission) ); } /** * @dev Returns the current implementation address. */ function implementation() public view returns (address) { return _implementation(); } function _implementation() internal override view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } } /// /// This contract was generated by ethereum /// contract AlphaDogRun is ERC721ContractWrapper { constructor( string memory _name, string memory _symbol, uint256 _totalSupply, uint256 _commission ) ERC721ContractWrapper(_name,_symbol,_totalSupply,_commission) {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_commission","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162000de638038062000de6833981810160405281019062000037919062000584565b8383838360017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd60001c6200006d919062000663565b60001b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b14620000a557620000a46200069e565b5b73f96fd95d60fb0318b639a8211ef60ee467f2892a620000f37f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6200020360201b6200008f1760201c565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001f473f96fd95d60fb0318b639a8211ef60ee467f2892a858585856040516024016200016694939291906200073b565b6040516020818303038152906040527f6fe0e395000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506200020d60201b620000991760201c565b505050505050505050620008b8565b6000819050919050565b60606200023b838360405180606001604052806027815260200162000dbf602791396200024360201b60201c565b905092915050565b606062000256846200032760201b60201c565b62000298576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028f906200080c565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff1685604051620002c291906200087b565b600060405180830381855af49150503d8060008114620002ff576040519150601f19603f3d011682016040523d82523d6000602084013e62000304565b606091505b50915091506200031c8282866200034a60201b60201c565b925050509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606083156200035c57829050620003af565b600083511115620003705782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a6919062000894565b60405180910390fd5b9392505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200041f82620003d4565b810181811067ffffffffffffffff82111715620004415762000440620003e5565b5b80604052505050565b600062000456620003b6565b905062000464828262000414565b919050565b600067ffffffffffffffff821115620004875762000486620003e5565b5b6200049282620003d4565b9050602081019050919050565b60005b83811015620004bf578082015181840152602081019050620004a2565b60008484015250505050565b6000620004e2620004dc8462000469565b6200044a565b905082815260208101848484011115620005015762000500620003cf565b5b6200050e8482856200049f565b509392505050565b600082601f8301126200052e576200052d620003ca565b5b815162000540848260208601620004cb565b91505092915050565b6000819050919050565b6200055e8162000549565b81146200056a57600080fd5b50565b6000815190506200057e8162000553565b92915050565b60008060008060808587031215620005a157620005a0620003c0565b5b600085015167ffffffffffffffff811115620005c257620005c1620003c5565b5b620005d08782880162000516565b945050602085015167ffffffffffffffff811115620005f457620005f3620003c5565b5b620006028782880162000516565b935050604062000615878288016200056d565b925050606062000628878288016200056d565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620006708262000549565b91506200067d8362000549565b925082820390508181111562000698576200069762000634565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000620006f682620006cd565b620007028185620006d8565b9350620007148185602086016200049f565b6200071f81620003d4565b840191505092915050565b620007358162000549565b82525050565b60006080820190508181036000830152620007578187620006e9565b905081810360208301526200076d8186620006e9565b90506200077e60408301856200072a565b6200078d60608301846200072a565b95945050505050565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b6000620007f4602683620006d8565b9150620008018262000796565b604082019050919050565b600060208201905081810360008301526200082781620007e5565b9050919050565b600081519050919050565b600081905092915050565b600062000851826200082e565b6200085d818562000839565b93506200086f8185602086016200049f565b80840191505092915050565b600062000889828462000844565b915081905092915050565b60006020820190508181036000830152620008b08184620006e9565b905092915050565b6104f780620008c86000396000f3fe6080604052600436106100225760003560e01c80635c60da1b1461003b57610031565b366100315761002f610066565b005b610039610066565b005b34801561004757600080fd5b50610050610080565b60405161005d91906102dd565b60405180910390f35b61006e6100c6565b61007e6100796100c8565b61011f565b565b600061008a6100c8565b905090565b6000819050919050565b60606100be838360405180606001604052806027815260200161049b60279139610145565b905092915050565b565b60006100f67f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61008f565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3660008037600080366000845af43d6000803e8060008114610140573d6000f35b3d6000fd5b606061015084610212565b61018f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101869061037b565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff16856040516101b7919061040c565b600060405180830381855af49150503d80600081146101f2576040519150601f19603f3d011682016040523d82523d6000602084013e6101f7565b606091505b5091509150610207828286610235565b925050509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060831561024557829050610295565b6000835111156102585782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161028c9190610478565b60405180910390fd5b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006102c78261029c565b9050919050565b6102d7816102bc565b82525050565b60006020820190506102f260008301846102ce565b92915050565b600082825260208201905092915050565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b60006103656026836102f8565b915061037082610309565b604082019050919050565b6000602082019050818103600083015261039481610358565b9050919050565b600081519050919050565b600081905092915050565b60005b838110156103cf5780820151818401526020810190506103b4565b60008484015250505050565b60006103e68261039b565b6103f081856103a6565b93506104008185602086016103b1565b80840191505092915050565b600061041882846103db565b915081905092915050565b600081519050919050565b6000601f19601f8301169050919050565b600061044a82610423565b61045481856102f8565b93506104648185602086016103b1565b61046d8161042e565b840191505092915050565b60006020820190508181036000830152610492818461043f565b90509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220e1d7824345563238961964886c472c23fdd06bd7394ad3e2c881ab097ee555da64736f6c63430008110033416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d416c70686120446f672052756e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034144520000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106100225760003560e01c80635c60da1b1461003b57610031565b366100315761002f610066565b005b610039610066565b005b34801561004757600080fd5b50610050610080565b60405161005d91906102dd565b60405180910390f35b61006e6100c6565b61007e6100796100c8565b61011f565b565b600061008a6100c8565b905090565b6000819050919050565b60606100be838360405180606001604052806027815260200161049b60279139610145565b905092915050565b565b60006100f67f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61008f565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3660008037600080366000845af43d6000803e8060008114610140573d6000f35b3d6000fd5b606061015084610212565b61018f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101869061037b565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff16856040516101b7919061040c565b600060405180830381855af49150503d80600081146101f2576040519150601f19603f3d011682016040523d82523d6000602084013e6101f7565b606091505b5091509150610207828286610235565b925050509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060831561024557829050610295565b6000835111156102585782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161028c9190610478565b60405180910390fd5b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006102c78261029c565b9050919050565b6102d7816102bc565b82525050565b60006020820190506102f260008301846102ce565b92915050565b600082825260208201905092915050565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b60006103656026836102f8565b915061037082610309565b604082019050919050565b6000602082019050818103600083015261039481610358565b9050919050565b600081519050919050565b600081905092915050565b60005b838110156103cf5780820151818401526020810190506103b4565b60008484015250505050565b60006103e68261039b565b6103f081856103a6565b93506104008185602086016103b1565b80840191505092915050565b600061041882846103db565b915081905092915050565b600081519050919050565b6000601f19601f8301169050919050565b600061044a82610423565b61045481856102f8565b93506104648185602086016103b1565b61046d8161042e565b840191505092915050565b60006020820190508181036000830152610492818461043f565b90509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220e1d7824345563238961964886c472c23fdd06bd7394ad3e2c881ab097ee555da64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d416c70686120446f672052756e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034144520000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Alpha Dog Run
Arg [1] : _symbol (string): ADR
Arg [2] : _totalSupply (uint256): 5000
Arg [3] : _commission (uint256): 0
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 416c70686120446f672052756e00000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4144520000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
16153:242:0:-:0;;;;;;;;;;;;;;;;;;;;;;;11693:11;:9;:11::i;:::-;16153:242;;11462:11;:9;:11::i;:::-;16153:242;15834:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11099:113;11148:17;:15;:17::i;:::-;11176:28;11186:17;:15;:17::i;:::-;11176:9;:28::i;:::-;11099:113::o;15834:99::-;15881:7;15908:17;:15;:17::i;:::-;15901:24;;15834:99;:::o;13753:195::-;13814:21;13926:4;13916:14;;13753:195;;;:::o;6906:200::-;6989:12;7021:77;7042:6;7050:4;7021:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;7014:84;;6906:200;;;;:::o;12002:46::-;:::o;15941:148::-;16000:7;16027:48;15114:66;16054:20;;16027:26;:48::i;:::-;:54;;;;;;;;;;;;16020:61;;15941:148;:::o;9689:918::-;10032:14;10029:1;10026;10013:34;10250:1;10247;10231:14;10228:1;10212:14;10205:5;10192:60;10329:16;10326:1;10323;10308:38;10369:6;10443:1;10438:68;;;;10557:16;10554:1;10547:27;10438:68;10474:16;10471:1;10464:27;7300:396;7445:12;7478:18;7489:6;7478:10;:18::i;:::-;7470:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;7553:12;7567:23;7594:6;:19;;7614:4;7594:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7552:67;;;;7637:51;7654:7;7663:10;7675:12;7637:16;:51::i;:::-;7630:58;;;;7300:396;;;;;:::o;1373:326::-;1433:4;1690:1;1668:7;:19;;;:23;1661:30;;1373:326;;;:::o;7924:762::-;8074:12;8103:7;8099:580;;;8134:10;8127:17;;;;8099:580;8268:1;8248:10;:17;:21;8244:424;;;8496:10;8490:17;8557:15;8544:10;8540:2;8536:19;8529:44;8244:424;8639:12;8632:20;;;;;;;;;;;:::i;:::-;;;;;;;;7924:762;;;;;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:169::-;677:11;711:6;706:3;699:19;751:4;746:3;742:14;727:29;;593:169;;;;:::o;768:225::-;908:34;904:1;896:6;892:14;885:58;977:8;972:2;964:6;960:15;953:33;768:225;:::o;999:366::-;1141:3;1162:67;1226:2;1221:3;1162:67;:::i;:::-;1155:74;;1238:93;1327:3;1238:93;:::i;:::-;1356:2;1351:3;1347:12;1340:19;;999:366;;;:::o;1371:419::-;1537:4;1575:2;1564:9;1560:18;1552:26;;1624:9;1618:4;1614:20;1610:1;1599:9;1595:17;1588:47;1652:131;1778:4;1652:131;:::i;:::-;1644:139;;1371:419;;;:::o;1796:98::-;1847:6;1881:5;1875:12;1865:22;;1796:98;;;:::o;1900:147::-;2001:11;2038:3;2023:18;;1900:147;;;;:::o;2053:246::-;2134:1;2144:113;2158:6;2155:1;2152:13;2144:113;;;2243:1;2238:3;2234:11;2228:18;2224:1;2219:3;2215:11;2208:39;2180:2;2177:1;2173:10;2168:15;;2144:113;;;2291:1;2282:6;2277:3;2273:16;2266:27;2115:184;2053:246;;;:::o;2305:386::-;2409:3;2437:38;2469:5;2437:38;:::i;:::-;2491:88;2572:6;2567:3;2491:88;:::i;:::-;2484:95;;2588:65;2646:6;2641:3;2634:4;2627:5;2623:16;2588:65;:::i;:::-;2678:6;2673:3;2669:16;2662:23;;2413:278;2305:386;;;;:::o;2697:271::-;2827:3;2849:93;2938:3;2929:6;2849:93;:::i;:::-;2842:100;;2959:3;2952:10;;2697:271;;;;:::o;2974:99::-;3026:6;3060:5;3054:12;3044:22;;2974:99;;;:::o;3079:102::-;3120:6;3171:2;3167:7;3162:2;3155:5;3151:14;3147:28;3137:38;;3079:102;;;:::o;3187:377::-;3275:3;3303:39;3336:5;3303:39;:::i;:::-;3358:71;3422:6;3417:3;3358:71;:::i;:::-;3351:78;;3438:65;3496:6;3491:3;3484:4;3477:5;3473:16;3438:65;:::i;:::-;3528:29;3550:6;3528:29;:::i;:::-;3523:3;3519:39;3512:46;;3279:285;3187:377;;;;:::o;3570:313::-;3683:4;3721:2;3710:9;3706:18;3698:26;;3770:9;3764:4;3760:20;3756:1;3745:9;3741:17;3734:47;3798:78;3871:4;3862:6;3798:78;:::i;:::-;3790:86;;3570:313;;;;:::o
Swarm Source
ipfs://e1d7824345563238961964886c472c23fdd06bd7394ad3e2c881ab097ee555da
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.