Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
2,185,860.808854166666650872 RWASTE
Holders
2,923
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
7.117168561495993708 RWASTEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RadioactiveWaste
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // _ _ _ _ _ // /\_\ / /\ /\ \ /\ \ /\_\ // / / / _ / / \ \ \ \ \ \ \ / / / _ // / / / /\_\ / / /\ \ /\ \_\ /\ \_\\ \ \__ /\_\ // / / /__/ / / / / /\ \ \ / /\/_/ / /\/_/ \ \___\ / / / // / /\_____/ / / / / \ \ \ / / / _ / / / \__ / / / / // / /\_______/ / / /___/ /\ \ / / / /\ \ / / / / / / / / / // / / /\ \ \ / / /_____/ /\ \ / / / \ \_\ / / / / / / / / / // / / / \ \ \ / /_________/\ \ \ ___/ / /__ / / /_/ / / / / /___/ / / /// / / \ \ \ / / /_ __\ \_\/\__\/_/___\/ / /__\/ / / / /____\/ / //\/_/ \_\_\\_\___\ /____/_/\/_________/\/_______/ \/_________/ // // // /\_\ /\ \ /\ \ _ /\ \ /\ \ // / / / _ \ \ \ / \ \ /\_\ / \ \ / \ \ // / / / /\_\ /\ \_\ / /\ \ \_/ / // /\ \_\ __/ /\ \ \ // / / /__/ / / / /\/_/ / / /\ \___/ // / /\/_/ /___/ /\ \ \ // / /\_____/ / / / / / / / \/____// / / ______\___\/ / / / // / /\_______/ / / / / / / / / // / / /\_____\ / / / // / / /\ \ \ / / / / / / / / // / / \/____ / / / / _ // / / / \ \ \ ___/ / /__ / / / / / // / /_____/ / / \ \ \__/\_\ /// / / \ \ \ /\__\/_/___\/ / / / / // / /______\/ / \ \___\/ / //\/_/ \_\_\\/_________/\/_/ \/_/ \/___________/ \/___/_/ //An Augminted Labs Project - RWASTE IS A UTILITY TOKEN FOR THE KAIJU KINGS ECOSYSTEM. //$RWASTE is NOT an investment and has NO economic value. //It will be earned by active holding within the Kaiju Kingz ecosystem. Each Genesis Kaiju will be eligible to claim tokens at a rate of 5 $RWASTE per day. pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface iKaijuKingz { function balanceGenesis(address owner) external view returns(uint256); } contract RadioactiveWaste is ERC20, Ownable { iKaijuKingz public KaijuKingz; uint256 constant public BASE_RATE = 5 ether; uint256 public START; bool rewardPaused = false; mapping(address => uint256) public rewards; mapping(address => uint256) public lastUpdate; mapping(address => bool) public allowedAddresses; constructor(address kaijuAddress) ERC20("RadioactiveWaste", "RWASTE") { KaijuKingz = iKaijuKingz(kaijuAddress); START = block.timestamp; } function updateReward(address from, address to) external { require(msg.sender == address(KaijuKingz)); if(from != address(0)){ rewards[from] += getPendingReward(from); lastUpdate[from] = block.timestamp; } if(to != address(0)){ rewards[to] += getPendingReward(to); lastUpdate[to] = block.timestamp; } } function claimReward() external { require(!rewardPaused, "Claiming reward has been paused"); _mint(msg.sender, rewards[msg.sender] + getPendingReward(msg.sender)); rewards[msg.sender] = 0; lastUpdate[msg.sender] = block.timestamp; } // !ooh function claimLaboratoryExperimentRewards(address _address, uint256 _amount) external { require(!rewardPaused, "Claiming reward has been paused"); require(allowedAddresses[msg.sender], "Address does not have permission to distrubute tokens"); _mint(_address, _amount); } function burn(address user, uint256 amount) external { require(allowedAddresses[msg.sender] || msg.sender == address(KaijuKingz), "Address does not have permission to burn"); _burn(user, amount); } function getTotalClaimable(address user) external view returns(uint256) { return rewards[user] + getPendingReward(user); } function getPendingReward(address user) internal view returns(uint256) { return KaijuKingz.balanceGenesis(user) * BASE_RATE * (block.timestamp - (lastUpdate[user] >= START ? lastUpdate[user] : START)) / 86400; } function setAllowedAddresses(address _address, bool _access) public onlyOwner { allowedAddresses[_address] = _access; } function toggleReward() public onlyOwner { rewardPaused = !rewardPaused; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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 * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens 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 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^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); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"kaijuAddress","type":"address"}],"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":"BASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KaijuKingz","outputs":[{"internalType":"contract iKaijuKingz","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START","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":"","type":"address"}],"name":"allowedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"claimLaboratoryExperimentRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimReward","outputs":[],"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":[{"internalType":"address","name":"user","type":"address"}],"name":"getTotalClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"lastUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_access","type":"bool"}],"name":"setAllowedAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleReward","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"updateReward","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526008805460ff191690553480156200001b57600080fd5b5060405162001819380380620018198339810160408190526200003e91620001e1565b604080518082018252601081526f526164696f616374697665576173746560801b60208083019182528351808501909452600684526552574153544560d01b90840152815191929162000094916003916200013b565b508051620000aa9060049060208401906200013b565b5050506000620000bf6200013760201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600680546001600160a01b0319166001600160a01b0392909216919091179055426007556200024e565b3390565b828054620001499062000211565b90600052602060002090601f0160209004810192826200016d5760008555620001b8565b82601f106200018857805160ff1916838001178555620001b8565b82800160010185558215620001b8579182015b82811115620001b85782518255916020019190600101906200019b565b50620001c6929150620001ca565b5090565b5b80821115620001c65760008155600101620001cb565b600060208284031215620001f3578081fd5b81516001600160a01b03811681146200020a578182fd5b9392505050565b6002810460018216806200022657607f821691505b602082108114156200024857634e487b7160e01b600052602260045260246000fd5b50919050565b6115bb806200025e6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806389781912116100f9578063ac8724cf11610097578063cb03fb1e11610071578063cb03fb1e14610336578063d230af3a14610349578063dd62ed3e1461035c578063f2fde38b1461036f576101a9565b8063ac8724cf1461031e578063b88a802f14610326578063ba9a061a1461032e576101a9565b80639b39f5f4116100d35780639b39f5f4146102dd5780639dc29fac146102e5578063a457c2d7146102f8578063a9059cbb1461030b576101a9565b806389781912146102ad5780638da5cb5b146102c057806395d89b41146102d5576101a9565b8063313ce567116101665780634120657a116101405780634120657a1461027757806341910f901461028a57806370a0823114610292578063715018a6146102a5576101a9565b8063313ce5671461023a578063395093511461024f5780633de230c314610262576101a9565b806306fdde03146101ae5780630700037d146101cc578063095ea7b3146101ec57806318160ddd1461020c57806323b872dd14610214578063267e8ab614610227575b600080fd5b6101b6610382565b6040516101c39190611072565b60405180910390f35b6101df6101da366004610f4a565b610414565b6040516101c391906114af565b6101ff6101fa366004611012565b610426565b6040516101c39190611067565b6101df610443565b6101ff610222366004610f9d565b610449565b6101df610235366004610f4a565b6104e9565b61024261051f565b6040516101c391906114b8565b6101ff61025d366004611012565b610524565b610275610270366004611012565b610573565b005b6101ff610285366004610f4a565b6105d3565b6101df6105e8565b6101df6102a0366004610f4a565b6105f4565b61027561060f565b6102756102bb366004610fd8565b610698565b6102c8610702565b6040516101c39190611053565b6101b6610711565b6102c8610720565b6102756102f3366004611012565b61072f565b6101ff610306366004611012565b61077d565b6101ff610319366004611012565b6107f8565b61027561080c565b61027561085f565b6101df6108cf565b6101df610344366004610f4a565b6108d5565b610275610357366004610f6b565b6108e7565b6101df61036a366004610f6b565b6109c1565b61027561037d366004610f4a565b6109ec565b60606003805461039190611534565b80601f01602080910402602001604051908101604052809291908181526020018280546103bd90611534565b801561040a5780601f106103df5761010080835404028352916020019161040a565b820191906000526020600020905b8154815290600101906020018083116103ed57829003601f168201915b5050505050905090565b60096020526000908152604090205481565b600061043a610433610aad565b8484610ab1565b50600192915050565b60025490565b6000610456848484610b65565b6001600160a01b038416600090815260016020526040812081610477610aad565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104c35760405162461bcd60e51b81526004016104ba906112ec565b60405180910390fd5b6104de856104cf610aad565b6104d9868561151d565b610ab1565b506001949350505050565b60006104f482610c8d565b6001600160a01b03831660009081526009602052604090205461051791906114c6565b90505b919050565b601290565b600061043a610531610aad565b84846001600061053f610aad565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104d991906114c6565b60085460ff16156105965760405162461bcd60e51b81526004016104ba906112b5565b336000908152600b602052604090205460ff166105c55760405162461bcd60e51b81526004016104ba90611260565b6105cf8282610d88565b5050565b600b6020526000908152604090205460ff1681565b674563918244f4000081565b6001600160a01b031660009081526020819052604090205490565b610617610aad565b6001600160a01b0316610628610702565b6001600160a01b03161461064e5760405162461bcd60e51b81526004016104ba90611334565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6106a0610aad565b6001600160a01b03166106b1610702565b6001600160a01b0316146106d75760405162461bcd60e51b81526004016104ba90611334565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6005546001600160a01b031690565b60606004805461039190611534565b6006546001600160a01b031681565b336000908152600b602052604090205460ff168061075757506006546001600160a01b031633145b6107735760405162461bcd60e51b81526004016104ba906111d2565b6105cf8282610e48565b6000806001600061078c610aad565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156107d85760405162461bcd60e51b81526004016104ba90611433565b6107ee6107e3610aad565b856104d9868561151d565b5060019392505050565b600061043a610805610aad565b8484610b65565b610814610aad565b6001600160a01b0316610825610702565b6001600160a01b03161461084b5760405162461bcd60e51b81526004016104ba90611334565b6008805460ff19811660ff90911615179055565b60085460ff16156108825760405162461bcd60e51b81526004016104ba906112b5565b6108ae3361088f33610c8d565b336000908152600960205260409020546108a991906114c6565b610d88565b336000908152600960209081526040808320839055600a9091529020429055565b60075481565b600a6020526000908152604090205481565b6006546001600160a01b031633146108fe57600080fd5b6001600160a01b0382161561095f5761091682610c8d565b6001600160a01b0383166000908152600960205260408120805490919061093e9084906114c6565b90915550506001600160a01b0382166000908152600a602052604090204290555b6001600160a01b038116156105cf5761097781610c8d565b6001600160a01b0382166000908152600960205260408120805490919061099f9084906114c6565b90915550506001600160a01b03166000908152600a6020526040902042905550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109f4610aad565b6001600160a01b0316610a05610702565b6001600160a01b031614610a2b5760405162461bcd60e51b81526004016104ba90611334565b6001600160a01b038116610a515760405162461bcd60e51b81526004016104ba9061114a565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316610ad75760405162461bcd60e51b81526004016104ba906113ef565b6001600160a01b038216610afd5760405162461bcd60e51b81526004016104ba90611190565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610b589085906114af565b60405180910390a3505050565b6001600160a01b038316610b8b5760405162461bcd60e51b81526004016104ba906113aa565b6001600160a01b038216610bb15760405162461bcd60e51b81526004016104ba906110c5565b610bbc838383610f2e565b6001600160a01b03831660009081526020819052604090205481811015610bf55760405162461bcd60e51b81526004016104ba9061121a565b610bff828261151d565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610c359084906114c6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c7f91906114af565b60405180910390a350505050565b6007546001600160a01b0382166000908152600a6020526040812054909162015180911015610cbe57600754610cd8565b6001600160a01b0383166000908152600a60205260409020545b610ce2904261151d565b60065460405163e2b26b1560e01b8152674563918244f40000916001600160a01b03169063e2b26b1590610d1a908890600401611053565b60206040518083038186803b158015610d3257600080fd5b505afa158015610d46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6a919061103b565b610d7491906114fe565b610d7e91906114fe565b61051791906114de565b6001600160a01b038216610dae5760405162461bcd60e51b81526004016104ba90611478565b610dba60008383610f2e565b8060026000828254610dcc91906114c6565b90915550506001600160a01b03821660009081526020819052604081208054839290610df99084906114c6565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e3c9085906114af565b60405180910390a35050565b6001600160a01b038216610e6e5760405162461bcd60e51b81526004016104ba90611369565b610e7a82600083610f2e565b6001600160a01b03821660009081526020819052604090205481811015610eb35760405162461bcd60e51b81526004016104ba90611108565b610ebd828261151d565b6001600160a01b03841660009081526020819052604081209190915560028054849290610eeb90849061151d565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b589086906114af565b505050565b80356001600160a01b038116811461051a57600080fd5b600060208284031215610f5b578081fd5b610f6482610f33565b9392505050565b60008060408385031215610f7d578081fd5b610f8683610f33565b9150610f9460208401610f33565b90509250929050565b600080600060608486031215610fb1578081fd5b610fba84610f33565b9250610fc860208501610f33565b9150604084013590509250925092565b60008060408385031215610fea578182fd5b610ff383610f33565b915060208301358015158114611007578182fd5b809150509250929050565b60008060408385031215611024578182fd5b61102d83610f33565b946020939093013593505050565b60006020828403121561104c578081fd5b5051919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b8181101561109e57858101830151858201604001528201611082565b818111156110af5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526028908201527f4164647265737320646f6573206e6f742068617665207065726d697373696f6e604082015267103a3790313ab93760c11b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526035908201527f4164647265737320646f6573206e6f742068617665207065726d697373696f6e60408201527420746f206469737472756275746520746f6b656e7360581b606082015260800190565b6020808252601f908201527f436c61696d696e672072657761726420686173206265656e2070617573656400604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156114d9576114d961156f565b500190565b6000826114f957634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156115185761151861156f565b500290565b60008282101561152f5761152f61156f565b500390565b60028104600182168061154857607f821691505b6020821081141561156957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220cbb88e78e0424e028f6b6727070d70f19ee8205045240477f642a020f748ac9964736f6c634300080000330000000000000000000000000c2e57efddba8c768147d1fdf9176a0a6ebd5d83
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806389781912116100f9578063ac8724cf11610097578063cb03fb1e11610071578063cb03fb1e14610336578063d230af3a14610349578063dd62ed3e1461035c578063f2fde38b1461036f576101a9565b8063ac8724cf1461031e578063b88a802f14610326578063ba9a061a1461032e576101a9565b80639b39f5f4116100d35780639b39f5f4146102dd5780639dc29fac146102e5578063a457c2d7146102f8578063a9059cbb1461030b576101a9565b806389781912146102ad5780638da5cb5b146102c057806395d89b41146102d5576101a9565b8063313ce567116101665780634120657a116101405780634120657a1461027757806341910f901461028a57806370a0823114610292578063715018a6146102a5576101a9565b8063313ce5671461023a578063395093511461024f5780633de230c314610262576101a9565b806306fdde03146101ae5780630700037d146101cc578063095ea7b3146101ec57806318160ddd1461020c57806323b872dd14610214578063267e8ab614610227575b600080fd5b6101b6610382565b6040516101c39190611072565b60405180910390f35b6101df6101da366004610f4a565b610414565b6040516101c391906114af565b6101ff6101fa366004611012565b610426565b6040516101c39190611067565b6101df610443565b6101ff610222366004610f9d565b610449565b6101df610235366004610f4a565b6104e9565b61024261051f565b6040516101c391906114b8565b6101ff61025d366004611012565b610524565b610275610270366004611012565b610573565b005b6101ff610285366004610f4a565b6105d3565b6101df6105e8565b6101df6102a0366004610f4a565b6105f4565b61027561060f565b6102756102bb366004610fd8565b610698565b6102c8610702565b6040516101c39190611053565b6101b6610711565b6102c8610720565b6102756102f3366004611012565b61072f565b6101ff610306366004611012565b61077d565b6101ff610319366004611012565b6107f8565b61027561080c565b61027561085f565b6101df6108cf565b6101df610344366004610f4a565b6108d5565b610275610357366004610f6b565b6108e7565b6101df61036a366004610f6b565b6109c1565b61027561037d366004610f4a565b6109ec565b60606003805461039190611534565b80601f01602080910402602001604051908101604052809291908181526020018280546103bd90611534565b801561040a5780601f106103df5761010080835404028352916020019161040a565b820191906000526020600020905b8154815290600101906020018083116103ed57829003601f168201915b5050505050905090565b60096020526000908152604090205481565b600061043a610433610aad565b8484610ab1565b50600192915050565b60025490565b6000610456848484610b65565b6001600160a01b038416600090815260016020526040812081610477610aad565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104c35760405162461bcd60e51b81526004016104ba906112ec565b60405180910390fd5b6104de856104cf610aad565b6104d9868561151d565b610ab1565b506001949350505050565b60006104f482610c8d565b6001600160a01b03831660009081526009602052604090205461051791906114c6565b90505b919050565b601290565b600061043a610531610aad565b84846001600061053f610aad565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104d991906114c6565b60085460ff16156105965760405162461bcd60e51b81526004016104ba906112b5565b336000908152600b602052604090205460ff166105c55760405162461bcd60e51b81526004016104ba90611260565b6105cf8282610d88565b5050565b600b6020526000908152604090205460ff1681565b674563918244f4000081565b6001600160a01b031660009081526020819052604090205490565b610617610aad565b6001600160a01b0316610628610702565b6001600160a01b03161461064e5760405162461bcd60e51b81526004016104ba90611334565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6106a0610aad565b6001600160a01b03166106b1610702565b6001600160a01b0316146106d75760405162461bcd60e51b81526004016104ba90611334565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6005546001600160a01b031690565b60606004805461039190611534565b6006546001600160a01b031681565b336000908152600b602052604090205460ff168061075757506006546001600160a01b031633145b6107735760405162461bcd60e51b81526004016104ba906111d2565b6105cf8282610e48565b6000806001600061078c610aad565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156107d85760405162461bcd60e51b81526004016104ba90611433565b6107ee6107e3610aad565b856104d9868561151d565b5060019392505050565b600061043a610805610aad565b8484610b65565b610814610aad565b6001600160a01b0316610825610702565b6001600160a01b03161461084b5760405162461bcd60e51b81526004016104ba90611334565b6008805460ff19811660ff90911615179055565b60085460ff16156108825760405162461bcd60e51b81526004016104ba906112b5565b6108ae3361088f33610c8d565b336000908152600960205260409020546108a991906114c6565b610d88565b336000908152600960209081526040808320839055600a9091529020429055565b60075481565b600a6020526000908152604090205481565b6006546001600160a01b031633146108fe57600080fd5b6001600160a01b0382161561095f5761091682610c8d565b6001600160a01b0383166000908152600960205260408120805490919061093e9084906114c6565b90915550506001600160a01b0382166000908152600a602052604090204290555b6001600160a01b038116156105cf5761097781610c8d565b6001600160a01b0382166000908152600960205260408120805490919061099f9084906114c6565b90915550506001600160a01b03166000908152600a6020526040902042905550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109f4610aad565b6001600160a01b0316610a05610702565b6001600160a01b031614610a2b5760405162461bcd60e51b81526004016104ba90611334565b6001600160a01b038116610a515760405162461bcd60e51b81526004016104ba9061114a565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316610ad75760405162461bcd60e51b81526004016104ba906113ef565b6001600160a01b038216610afd5760405162461bcd60e51b81526004016104ba90611190565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610b589085906114af565b60405180910390a3505050565b6001600160a01b038316610b8b5760405162461bcd60e51b81526004016104ba906113aa565b6001600160a01b038216610bb15760405162461bcd60e51b81526004016104ba906110c5565b610bbc838383610f2e565b6001600160a01b03831660009081526020819052604090205481811015610bf55760405162461bcd60e51b81526004016104ba9061121a565b610bff828261151d565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610c359084906114c6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c7f91906114af565b60405180910390a350505050565b6007546001600160a01b0382166000908152600a6020526040812054909162015180911015610cbe57600754610cd8565b6001600160a01b0383166000908152600a60205260409020545b610ce2904261151d565b60065460405163e2b26b1560e01b8152674563918244f40000916001600160a01b03169063e2b26b1590610d1a908890600401611053565b60206040518083038186803b158015610d3257600080fd5b505afa158015610d46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6a919061103b565b610d7491906114fe565b610d7e91906114fe565b61051791906114de565b6001600160a01b038216610dae5760405162461bcd60e51b81526004016104ba90611478565b610dba60008383610f2e565b8060026000828254610dcc91906114c6565b90915550506001600160a01b03821660009081526020819052604081208054839290610df99084906114c6565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e3c9085906114af565b60405180910390a35050565b6001600160a01b038216610e6e5760405162461bcd60e51b81526004016104ba90611369565b610e7a82600083610f2e565b6001600160a01b03821660009081526020819052604090205481811015610eb35760405162461bcd60e51b81526004016104ba90611108565b610ebd828261151d565b6001600160a01b03841660009081526020819052604081209190915560028054849290610eeb90849061151d565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b589086906114af565b505050565b80356001600160a01b038116811461051a57600080fd5b600060208284031215610f5b578081fd5b610f6482610f33565b9392505050565b60008060408385031215610f7d578081fd5b610f8683610f33565b9150610f9460208401610f33565b90509250929050565b600080600060608486031215610fb1578081fd5b610fba84610f33565b9250610fc860208501610f33565b9150604084013590509250925092565b60008060408385031215610fea578182fd5b610ff383610f33565b915060208301358015158114611007578182fd5b809150509250929050565b60008060408385031215611024578182fd5b61102d83610f33565b946020939093013593505050565b60006020828403121561104c578081fd5b5051919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b8181101561109e57858101830151858201604001528201611082565b818111156110af5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526028908201527f4164647265737320646f6573206e6f742068617665207065726d697373696f6e604082015267103a3790313ab93760c11b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526035908201527f4164647265737320646f6573206e6f742068617665207065726d697373696f6e60408201527420746f206469737472756275746520746f6b656e7360581b606082015260800190565b6020808252601f908201527f436c61696d696e672072657761726420686173206265656e2070617573656400604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156114d9576114d961156f565b500190565b6000826114f957634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156115185761151861156f565b500290565b60008282101561152f5761152f61156f565b500390565b60028104600182168061154857607f821691505b6020821081141561156957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220cbb88e78e0424e028f6b6727070d70f19ee8205045240477f642a020f748ac9964736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000c2e57efddba8c768147d1fdf9176a0a6ebd5d83
-----Decoded View---------------
Arg [0] : kaijuAddress (address): 0x0c2E57EFddbA8c768147D1fdF9176a0A6EBd5d83
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000c2e57efddba8c768147d1fdf9176a0a6ebd5d83
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.