ETH Price: $2,699.37 (-3.89%)

Token

Mask Token (MSK)
 

Overview

Max Total Supply

71,450,000 MSK

Holders

974

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,000 MSK

Value
$0.00
0x2598b55772f0685156ff74c44980b8c28344b75b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MSKToken

Compiler Version
v0.7.0+commit.9e61f92b

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : MSKToken.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol";
import "./Token.sol";
/**
* @title MSKToken contract
* @dev Extends my ERC20
*/
contract MSKToken is Token {
constructor(address _nftAddress, uint256 maskDaoAllocation) Token("Mask Token", "MSK", _nftAddress) {
// MaskDAO requested allocation
// They will register a multisig wallet and I will send all these initial tokens to it
if (maskDaoAllocation > 0) {
_mint(msg.sender, maskDaoAllocation);
}
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 11 : Token.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/EnumerableSet.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
/**
* @title Token contract
* @dev Extends ERC20 Token Standard basic implementation
*/
contract Token is ERC20, Ownable {
using SafeMath for uint256;
using EnumerableSet for EnumerableSet.AddressSet;
// Address of NFT Smart contract. Only owners of this NFT can claim tokens
address public nftAddress;
// How much tokens can be claimed by one address (10k)
uint256 public constant TOKENS_PER_ADDRESS = 10000 * (10 ** 18);
// Mapping if tokens for certain NFT ID has already been claimed
mapping (uint256 => bool) private _claimedNfts;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 11 : Ownable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 11 : IERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 11 : SafeMath.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
uint256 c = a + b;
if (c < a) return (false, 0);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 11 : ERC20.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../../utils/Context.sol";
import "./IERC20.sol";
import "../../math/SafeMath.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 11 : IERC20.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 11 : IERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
import "../../introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 11 : IERC721Enumerable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
import "./IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 11 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <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 GSN 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 payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 11 : EnumerableSet.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "istanbul",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"},{"internalType":"uint256","name":"maskDaoAllocation","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOKENS_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"canClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipAirdropState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isAirdropActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"isOwnerClaimedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftId","type":"uint256"}],"name":"isTokensForNftClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nftBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805460ff191660011790553480156200001e57600080fd5b50604051620016e7380380620016e7833981810160405260408110156200004457600080fd5b508051602091820151604080518082018252600a81526926b0b9b5902a37b5b2b760b11b81860190815282518084019093526003808452624d534b60e81b968401969096528151949593949193869285928592620000a592909190620002e4565b508051620000bb906004906020840190620002e4565b50506005805460ff19166012179055506000620000d76200016a565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600680546001600160a01b0319166001600160a01b03929092169190911790555050801562000162576200016233826200016e565b505062000380565b3390565b6001600160a01b038216620001ca576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001d8600083836200027d565b620001f4816002546200028260201b62000c2c1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200022791839062000c2c62000282821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620002dd576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200032757805160ff191683800117855562000357565b8280016001018555821562000357579182015b82811115620003575782518255916020019190600101906200033a565b506200036592915062000369565b5090565b5b808211156200036557600081556001016200036a565b61135780620003906000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806354cb49f2116100c3578063a457c2d71161007c578063a457c2d71461038e578063a9059cbb146103ba578063bf3506c1146103e6578063dd62ed3e1461040c578063e20d810f1461043a578063f2fde38b146104425761014d565b806354cb49f21461030f5780635bf8633a1461032c57806370a0823114610350578063715018a6146103765780638da5cb5b1461037e57806395d89b41146103865761014d565b806318160ddd1161011557806318160ddd1461027557806323b872dd1461027d578063313ce567146102b357806339509351146102d15780633e75475f146102fd5780634e71d92d146103075761014d565b80630577a9051461015257806305ffdcfe1461016c57806306fdde03146101a6578063095ea7b3146102235780630e313e981461024f575b600080fd5b61015a610468565b60408051918252519081900360200190f35b6101926004803603602081101561018257600080fd5b50356001600160a01b0316610476565b604080519115158252519081900360200190f35b6101ae61048b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e85781810151838201526020016101d0565b50505050905090810190601f1680156102155780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101926004803603604081101561023957600080fd5b506001600160a01b038135169060200135610521565b61015a6004803603602081101561026557600080fd5b50356001600160a01b031661053f565b61015a6105c2565b6101926004803603606081101561029357600080fd5b506001600160a01b038135811691602081013590911690604001356105c8565b6102bb61064f565b6040805160ff9092168252519081900360200190f35b610192600480360360408110156102e757600080fd5b506001600160a01b038135169060200135610658565b6103056106a6565b005b61019261072e565b6101926004803603602081101561032557600080fd5b50356107f6565b61033461080b565b604080516001600160a01b039092168252519081900360200190f35b61015a6004803603602081101561036657600080fd5b50356001600160a01b031661081a565b610305610835565b6103346108f9565b6101ae61090d565b610192600480360360408110156103a457600080fd5b506001600160a01b03813516906020013561096e565b610192600480360360408110156103d057600080fd5b506001600160a01b0381351690602001356109d6565b610192600480360360208110156103fc57600080fd5b50356001600160a01b03166109ea565b61015a6004803603604081101561042257600080fd5b506001600160a01b0381358116916020013516610ad8565b610192610b03565b6103056004803603602081101561045857600080fd5b50356001600160a01b0316610b0c565b69021e19e0c9bab240000081565b6000610483600883610c8d565b90505b919050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105175780601f106104ec57610100808354040283529160200191610517565b820191906000526020600020905b8154815290600101906020018083116104fa57829003601f168201915b5050505050905090565b600061053561052e610ca2565b8484610ca6565b5060015b92915050565b600654604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561059057600080fd5b505afa1580156105a4573d6000803e3d6000fd5b505050506040513d60208110156105ba57600080fd5b505192915050565b60025490565b60006105d5848484610d92565b610645846105e1610ca2565b6106408560405180606001604052806028815260200161128c602891396001600160a01b038a1660009081526001602052604081209061061f610ca2565b6001600160a01b031681526020810191909152604001600020549190610eed565b610ca6565b5060019392505050565b60055460ff1690565b6000610535610665610ca2565b846106408560016000610676610ca2565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610c2c565b6106ae610ca2565b6001600160a01b03166106bf6108f9565b6001600160a01b03161461071a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a805460ff19811660ff90911615179055565b600a5460009060ff161515600114610783576040805162461bcd60e51b8152602060048201526013602482015272105a5c991c9bdc081a5cc8199a5b9a5cda1959606a1b604482015290519081900360640190fd5b600061078e33610f84565b90506001811515146107dd576040805162461bcd60e51b815260206004820152601360248201527253656e6465722063616e6e6f7420636c61696d60681b604482015290519081900360640190fd5b6107f13369021e19e0c9bab2400000611093565b905090565b60009081526007602052604090205460ff1690565b6006546001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b61083d610ca2565b6001600160a01b031661084e6108f9565b6001600160a01b0316146108a9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105175780601f106104ec57610100808354040283529160200191610517565b600061053561097b610ca2565b84610640856040518060600160405280602581526020016112fd60259139600160006109a5610ca2565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610eed565b60006105356109e3610ca2565b8484610d92565b60006109f582610476565b151560011480610a085750600a5460ff16155b15610a1557506000610486565b600080610a218461053f565b905060005b81811015610acf5760065460408051632f745c5960e01b81526001600160a01b0388811660048301526024820185905291516000939290921691632f745c5991604480820192602092909190829003018186803b158015610a8657600080fd5b505afa158015610a9a573d6000803e3d6000fd5b505050506040513d6020811015610ab057600080fd5b50519050610abd816107f6565b610ac657600193505b50600101610a26565b50909392505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600a5460ff1681565b610b14610ca2565b6001600160a01b0316610b256108f9565b6001600160a01b031614610b80576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610bc55760405162461bcd60e51b815260040180806020018281038252602681526020018061121e6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600082820183811015610c86576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000610c86836001600160a01b038416611183565b3390565b6001600160a01b038316610ceb5760405162461bcd60e51b81526004018080602001828103825260248152602001806112d96024913960400191505060405180910390fd5b6001600160a01b038216610d305760405162461bcd60e51b81526004018080602001828103825260228152602001806112446022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610dd75760405162461bcd60e51b81526004018080602001828103825260258152602001806112b46025913960400191505060405180910390fd5b6001600160a01b038216610e1c5760405162461bcd60e51b81526004018080602001828103825260238152602001806111fb6023913960400191505060405180910390fd5b610e2783838361119b565b610e6481604051806060016040528060268152602001611266602691396001600160a01b0386166000908152602081905260409020549190610eed565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e939082610c2c565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610f7c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f41578181015183820152602001610f29565b50505050905090810190601f168015610f6e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610f8f82610476565b151560011415610fa157506000610486565b600080610fad8461053f565b905060005b818110156110755760065460408051632f745c5960e01b81526001600160a01b0388811660048301526024820185905291516000939290921691632f745c5991604480820192602092909190829003018186803b15801561101257600080fd5b505afa158015611026573d6000803e3d6000fd5b505050506040513d602081101561103c57600080fd5b50519050611049816107f6565b61106c576000818152600760205260409020805460ff1916600190811790915593505b50600101610fb2565b506001821515141561108c57610acf6008856111a0565b5092915050565b6001600160a01b0382166110ee576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6110fa6000838361119b565b6002546111079082610c2c565b6002556001600160a01b03821660009081526020819052604090205461112d9082610c2c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60009081526001919091016020526040902054151590565b505050565b6000610c86836001600160a01b03841660006111bc8383611183565b6111f257508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610539565b50600061053956fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dbede5376fc9d37cfc81c93ef4947ef3532dd2d26725c6a545fead19056fc99e64736f6c63430007000033000000000000000000000000c2c747e0f7004f9e8817db2ca4997657a77469280000000000000000000000000000000000000000002ff9fa4cda6dd67a000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806354cb49f2116100c3578063a457c2d71161007c578063a457c2d71461038e578063a9059cbb146103ba578063bf3506c1146103e6578063dd62ed3e1461040c578063e20d810f1461043a578063f2fde38b146104425761014d565b806354cb49f21461030f5780635bf8633a1461032c57806370a0823114610350578063715018a6146103765780638da5cb5b1461037e57806395d89b41146103865761014d565b806318160ddd1161011557806318160ddd1461027557806323b872dd1461027d578063313ce567146102b357806339509351146102d15780633e75475f146102fd5780634e71d92d146103075761014d565b80630577a9051461015257806305ffdcfe1461016c57806306fdde03146101a6578063095ea7b3146102235780630e313e981461024f575b600080fd5b61015a610468565b60408051918252519081900360200190f35b6101926004803603602081101561018257600080fd5b50356001600160a01b0316610476565b604080519115158252519081900360200190f35b6101ae61048b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e85781810151838201526020016101d0565b50505050905090810190601f1680156102155780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101926004803603604081101561023957600080fd5b506001600160a01b038135169060200135610521565b61015a6004803603602081101561026557600080fd5b50356001600160a01b031661053f565b61015a6105c2565b6101926004803603606081101561029357600080fd5b506001600160a01b038135811691602081013590911690604001356105c8565b6102bb61064f565b6040805160ff9092168252519081900360200190f35b610192600480360360408110156102e757600080fd5b506001600160a01b038135169060200135610658565b6103056106a6565b005b61019261072e565b6101926004803603602081101561032557600080fd5b50356107f6565b61033461080b565b604080516001600160a01b039092168252519081900360200190f35b61015a6004803603602081101561036657600080fd5b50356001600160a01b031661081a565b610305610835565b6103346108f9565b6101ae61090d565b610192600480360360408110156103a457600080fd5b506001600160a01b03813516906020013561096e565b610192600480360360408110156103d057600080fd5b506001600160a01b0381351690602001356109d6565b610192600480360360208110156103fc57600080fd5b50356001600160a01b03166109ea565b61015a6004803603604081101561042257600080fd5b506001600160a01b0381358116916020013516610ad8565b610192610b03565b6103056004803603602081101561045857600080fd5b50356001600160a01b0316610b0c565b69021e19e0c9bab240000081565b6000610483600883610c8d565b90505b919050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105175780601f106104ec57610100808354040283529160200191610517565b820191906000526020600020905b8154815290600101906020018083116104fa57829003601f168201915b5050505050905090565b600061053561052e610ca2565b8484610ca6565b5060015b92915050565b600654604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561059057600080fd5b505afa1580156105a4573d6000803e3d6000fd5b505050506040513d60208110156105ba57600080fd5b505192915050565b60025490565b60006105d5848484610d92565b610645846105e1610ca2565b6106408560405180606001604052806028815260200161128c602891396001600160a01b038a1660009081526001602052604081209061061f610ca2565b6001600160a01b031681526020810191909152604001600020549190610eed565b610ca6565b5060019392505050565b60055460ff1690565b6000610535610665610ca2565b846106408560016000610676610ca2565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610c2c565b6106ae610ca2565b6001600160a01b03166106bf6108f9565b6001600160a01b03161461071a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a805460ff19811660ff90911615179055565b600a5460009060ff161515600114610783576040805162461bcd60e51b8152602060048201526013602482015272105a5c991c9bdc081a5cc8199a5b9a5cda1959606a1b604482015290519081900360640190fd5b600061078e33610f84565b90506001811515146107dd576040805162461bcd60e51b815260206004820152601360248201527253656e6465722063616e6e6f7420636c61696d60681b604482015290519081900360640190fd5b6107f13369021e19e0c9bab2400000611093565b905090565b60009081526007602052604090205460ff1690565b6006546001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b61083d610ca2565b6001600160a01b031661084e6108f9565b6001600160a01b0316146108a9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105175780601f106104ec57610100808354040283529160200191610517565b600061053561097b610ca2565b84610640856040518060600160405280602581526020016112fd60259139600160006109a5610ca2565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610eed565b60006105356109e3610ca2565b8484610d92565b60006109f582610476565b151560011480610a085750600a5460ff16155b15610a1557506000610486565b600080610a218461053f565b905060005b81811015610acf5760065460408051632f745c5960e01b81526001600160a01b0388811660048301526024820185905291516000939290921691632f745c5991604480820192602092909190829003018186803b158015610a8657600080fd5b505afa158015610a9a573d6000803e3d6000fd5b505050506040513d6020811015610ab057600080fd5b50519050610abd816107f6565b610ac657600193505b50600101610a26565b50909392505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600a5460ff1681565b610b14610ca2565b6001600160a01b0316610b256108f9565b6001600160a01b031614610b80576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610bc55760405162461bcd60e51b815260040180806020018281038252602681526020018061121e6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600082820183811015610c86576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000610c86836001600160a01b038416611183565b3390565b6001600160a01b038316610ceb5760405162461bcd60e51b81526004018080602001828103825260248152602001806112d96024913960400191505060405180910390fd5b6001600160a01b038216610d305760405162461bcd60e51b81526004018080602001828103825260228152602001806112446022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610dd75760405162461bcd60e51b81526004018080602001828103825260258152602001806112b46025913960400191505060405180910390fd5b6001600160a01b038216610e1c5760405162461bcd60e51b81526004018080602001828103825260238152602001806111fb6023913960400191505060405180910390fd5b610e2783838361119b565b610e6481604051806060016040528060268152602001611266602691396001600160a01b0386166000908152602081905260409020549190610eed565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e939082610c2c565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610f7c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f41578181015183820152602001610f29565b50505050905090810190601f168015610f6e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610f8f82610476565b151560011415610fa157506000610486565b600080610fad8461053f565b905060005b818110156110755760065460408051632f745c5960e01b81526001600160a01b0388811660048301526024820185905291516000939290921691632f745c5991604480820192602092909190829003018186803b15801561101257600080fd5b505afa158015611026573d6000803e3d6000fd5b505050506040513d602081101561103c57600080fd5b50519050611049816107f6565b61106c576000818152600760205260409020805460ff1916600190811790915593505b50600101610fb2565b506001821515141561108c57610acf6008856111a0565b5092915050565b6001600160a01b0382166110ee576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6110fa6000838361119b565b6002546111079082610c2c565b6002556001600160a01b03821660009081526020819052604090205461112d9082610c2c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60009081526001919091016020526040902054151590565b505050565b6000610c86836001600160a01b03841660006111bc8383611183565b6111f257508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610539565b50600061053956fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dbede5376fc9d37cfc81c93ef4947ef3532dd2d26725c6a545fead19056fc99e64736f6c63430007000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000c2c747e0f7004f9e8817db2ca4997657a77469280000000000000000000000000000000000000000002ff9fa4cda6dd67a000000

-----Decoded View---------------
Arg [0] : _nftAddress (address): 0xC2C747E0F7004F9E8817Db2ca4997657a7746928
Arg [1] : maskDaoAllocation (uint256): 58000000000000000000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c2c747e0f7004f9e8817db2ca4997657a7746928
Arg [1] : 0000000000000000000000000000000000000000002ff9fa4cda6dd67a000000


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.