ERC-20
DeFi
Overview
Max Total Supply
999,999,700 FORM
Holders
3,008 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH (-0.07%)
Onchain Market Cap
$742,409.24
Circulating Supply Market Cap
$59,209.39
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,900.2 FORMValue
$1.41 ( ~0.000578821632803332 Eth) [0.0002%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FormToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-04-01 */ pragma solidity 0.6.12; // SPDX-License-Identifier: MIT /* * @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; } } /** * @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); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } /** * @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); } contract FormToken is Context, IERC20 { using SafeMath for uint; string _symbol; string _name; uint8 _decimals; uint _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; constructor( string memory symbol_, string memory name_, uint8 decimals_, address tokenOwner, uint256 initialSupply ) public { _symbol = symbol_; _name = name_; _decimals = decimals_; balances[tokenOwner] = initialSupply; _totalSupply = initialSupply; emit Transfer(address(0), tokenOwner, _totalSupply); } function symbol() external view returns (string memory) { return _symbol; } function name() external view returns (string memory) { return _name; } function decimals() external view returns (uint8) { return _decimals; } function totalSupply() override external view returns (uint) { return _totalSupply.sub(balances[address(0)]); } function balanceOf(address tokenOwner) override external view returns (uint balance) { return balances[tokenOwner]; } function transfer(address to, uint tokens) override external returns (bool success) { balances[_msgSender()] = balances[_msgSender()].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer(_msgSender(), to, tokens); return true; } function approve(address spender, uint tokens) override external returns (bool success) { allowed[_msgSender()][spender] = tokens; emit Approval(_msgSender(), spender, tokens); return true; } function transferFrom(address from, address to, uint tokens) override external returns (bool success) { balances[from] = balances[from].sub(tokens); allowed[from][_msgSender()] = allowed[from][_msgSender()].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer(from, to, tokens); return true; } function allowance(address tokenOwner, address spender) override external view returns (uint remaining) { return allowed[tokenOwner][spender]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"uint256","name":"initialSupply","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051610a28380380610a28833981810160405260a081101561003357600080fd5b810190808051604051939291908464010000000082111561005357600080fd5b90830190602082018581111561006857600080fd5b825164010000000081118282018810171561008257600080fd5b82525081516020918201929091019080838360005b838110156100af578181015183820152602001610097565b50505050905090810190601f1680156100dc5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156100ff57600080fd5b90830190602082018581111561011457600080fd5b825164010000000081118282018810171561012e57600080fd5b82525081516020918201929091019080838360005b8381101561015b578181015183820152602001610143565b50505050905090810190601f1680156101885780820380516001836020036101000a031916815260200191505b5060409081526020828101519183015160609093015187519295509293506101b591600091880190610238565b5083516101c9906001906020870190610238565b506002805460ff191660ff85161790556001600160a01b03821660008181526004602090815260408083208590556003859055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350505050506102cb565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061027957805160ff19168380011785556102a6565b828001600101855582156102a6579182015b828111156102a657825182559160200191906001019061028b565b506102b29291506102b6565b5090565b5b808211156102b257600081556001016102b7565b61074e806102da6000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c8063313ce56711610066578063313ce567146101a557806370a08231146101c357806395d89b41146101e9578063a9059cbb146101f1578063dd62ed3e1461021d57610093565b806306fdde0314610098578063095ea7b31461011557806318160ddd1461015557806323b872dd1461016f575b600080fd5b6100a061024b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100da5781810151838201526020016100c2565b50505050905090810190601f1680156101075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101416004803603604081101561012b57600080fd5b506001600160a01b0381351690602001356102e0565b604080519115158252519081900360200190f35b61015d610370565b60408051918252519081900360200190f35b6101416004803603606081101561018557600080fd5b506001600160a01b038135811691602081013590911690604001356103ad565b6101ad6104e1565b6040805160ff9092168252519081900360200190f35b61015d600480360360208110156101d957600080fd5b50356001600160a01b03166104ea565b6100a0610505565b6101416004803603604081101561020757600080fd5b506001600160a01b038135169060200135610566565b61015d6004803603604081101561023357600080fd5b506001600160a01b038135811691602001351661062b565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156102d65780601f106102ab576101008083540402835291602001916102d6565b820191906000526020600020905b8154815290600101906020018083116102b957829003601f168201915b5050505050905090565b600081600560006102ef610656565b6001600160a01b0390811682526020808301939093526040918201600090812091881680825291909352912091909155610327610656565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a350600192915050565b600080805260046020527f17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ec546003546103a89161065a565b905090565b6001600160a01b0383166000908152600460205260408120546103d0908361065a565b6001600160a01b0385166000908152600460209081526040808320939093556005905290812061042591849190610405610656565b6001600160a01b031681526020810191909152604001600020549061065a565b6001600160a01b038516600090815260056020526040812090610446610656565b6001600160a01b039081168252602080830193909352604091820160009081209490945586168352600490915290205461048090836106b7565b6001600160a01b0380851660008181526004602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b60025460ff1690565b6001600160a01b031660009081526004602052604090205490565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156102d65780601f106102ab576101008083540402835291602001916102d6565b60006105788260046000610405610656565b60046000610584610656565b6001600160a01b03908116825260208083019390935260409182016000908120949094558616835260049091529020546105be90836106b7565b6001600160a01b0384166000818152600460205260409020919091556105e2610656565b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a350600192915050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3390565b6000828211156106b1576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610711576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fea26469706673582212202f9b0d552b24c40e11d1b42c604e98cd6136e08c53db76e3426783c85fc6a2cd64736f6c634300060c003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000098a8f350853a1451d7e961480c1fbfdac39f8efc0000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000000000000000000000000004464f524d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011466f726d6174696f6e2046696e616e6365000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100935760003560e01c8063313ce56711610066578063313ce567146101a557806370a08231146101c357806395d89b41146101e9578063a9059cbb146101f1578063dd62ed3e1461021d57610093565b806306fdde0314610098578063095ea7b31461011557806318160ddd1461015557806323b872dd1461016f575b600080fd5b6100a061024b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100da5781810151838201526020016100c2565b50505050905090810190601f1680156101075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101416004803603604081101561012b57600080fd5b506001600160a01b0381351690602001356102e0565b604080519115158252519081900360200190f35b61015d610370565b60408051918252519081900360200190f35b6101416004803603606081101561018557600080fd5b506001600160a01b038135811691602081013590911690604001356103ad565b6101ad6104e1565b6040805160ff9092168252519081900360200190f35b61015d600480360360208110156101d957600080fd5b50356001600160a01b03166104ea565b6100a0610505565b6101416004803603604081101561020757600080fd5b506001600160a01b038135169060200135610566565b61015d6004803603604081101561023357600080fd5b506001600160a01b038135811691602001351661062b565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156102d65780601f106102ab576101008083540402835291602001916102d6565b820191906000526020600020905b8154815290600101906020018083116102b957829003601f168201915b5050505050905090565b600081600560006102ef610656565b6001600160a01b0390811682526020808301939093526040918201600090812091881680825291909352912091909155610327610656565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a350600192915050565b600080805260046020527f17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ec546003546103a89161065a565b905090565b6001600160a01b0383166000908152600460205260408120546103d0908361065a565b6001600160a01b0385166000908152600460209081526040808320939093556005905290812061042591849190610405610656565b6001600160a01b031681526020810191909152604001600020549061065a565b6001600160a01b038516600090815260056020526040812090610446610656565b6001600160a01b039081168252602080830193909352604091820160009081209490945586168352600490915290205461048090836106b7565b6001600160a01b0380851660008181526004602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b60025460ff1690565b6001600160a01b031660009081526004602052604090205490565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156102d65780601f106102ab576101008083540402835291602001916102d6565b60006105788260046000610405610656565b60046000610584610656565b6001600160a01b03908116825260208083019390935260409182016000908120949094558616835260049091529020546105be90836106b7565b6001600160a01b0384166000818152600460205260409020919091556105e2610656565b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a350600192915050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3390565b6000828211156106b1576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610711576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fea26469706673582212202f9b0d552b24c40e11d1b42c604e98cd6136e08c53db76e3426783c85fc6a2cd64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000098a8f350853a1451d7e961480c1fbfdac39f8efc0000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000000000000000000000000004464f524d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011466f726d6174696f6e2046696e616e6365000000000000000000000000000000
-----Decoded View---------------
Arg [0] : symbol_ (string): FORM
Arg [1] : name_ (string): Formation Finance
Arg [2] : decimals_ (uint8): 18
Arg [3] : tokenOwner (address): 0x98A8F350853a1451D7E961480c1fBfdaC39F8efC
Arg [4] : initialSupply (uint256): 1000000000000000000000000000
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000098a8f350853a1451d7e961480c1fbfdac39f8efc
Arg [4] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 464f524d00000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [8] : 466f726d6174696f6e2046696e616e6365000000000000000000000000000000
Deployed Bytecode Sourcemap
11051:2295:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11852:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12592:223;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12592:223:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12034:125;;;:::i;:::-;;;;;;;;;;;;;;;;12821:358;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12821:358:0;;;;;;;;;;;;;;;;;:::i;11943:85::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12165:131;;;;;;;;;;;;;;;;-1:-1:-1;12165:131:0;-1:-1:-1;;;;;12165:131:0;;:::i;11757:89::-;;;:::i;12302:284::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12302:284:0;;;;;;;;:::i;13185:158::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13185:158:0;;;;;;;;;;:::i;11852:85::-;11924:5;11917:12;;;;;;;;-1:-1:-1;;11917:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11891:13;;11917:12;;11924:5;;11917:12;;11924:5;11917:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11852:85;:::o;12592:223::-;12666:12;12724:6;12691:7;:21;12699:12;:10;:12::i;:::-;-1:-1:-1;;;;;12691:21:0;;;;;;;;;;;;;;;;;-1:-1:-1;12691:21:0;;;:30;;;;;;;;;;;;:39;;;;12755:12;:10;:12::i;:::-;-1:-1:-1;;;;;12746:39:0;;12778:6;12746:39;;;;;;;;;;;;;;;;;;-1:-1:-1;12803:4:0;12592:223;;;;:::o;12034:125::-;12089:4;12130:20;;;:8;:20;;;;12113:12;;:38;;:16;:38::i;:::-;12106:45;;12034:125;:::o;12821:358::-;-1:-1:-1;;;;;12951:14:0;;12909:12;12951:14;;;:8;:14;;;;;;:26;;12970:6;12951:18;:26::i;:::-;-1:-1:-1;;;;;12934:14:0;;;;;;:8;:14;;;;;;;;:43;;;;13018:7;:13;;;;;:39;;13050:6;;13018:13;13032:12;:10;:12::i;:::-;-1:-1:-1;;;;;13018:27:0;;;;;;;;;;;;-1:-1:-1;13018:27:0;;;:31;:39::i;:::-;-1:-1:-1;;;;;12988:13:0;;;;;;:7;:13;;;;;;13002:12;:10;:12::i;:::-;-1:-1:-1;;;;;12988:27:0;;;;;;;;;;;;;;;;;-1:-1:-1;12988:27:0;;;:69;;;;13083:12;;;;:8;:12;;;;;;:24;;13100:6;13083:16;:24::i;:::-;-1:-1:-1;;;;;13068:12:0;;;;;;;:8;:12;;;;;;;;;:39;;;;13123:26;;;;;;;13068:12;;13123:26;;;;;;;;;;;;;-1:-1:-1;13167:4:0;12821:358;;;;;:::o;11943:85::-;12011:9;;;;11943:85;:::o;12165:131::-;-1:-1:-1;;;;;12268:20:0;12236:12;12268:20;;;:8;:20;;;;;;;12165:131::o;11757:89::-;11831:7;11824:14;;;;;;;;-1:-1:-1;;11824:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11798:13;;11824:14;;11831:7;;11824:14;;11831:7;11824:14;;;;;;;;;;;;;;;;;;;;;;;;12302:284;12372:12;12422:34;12449:6;12422:8;:22;12431:12;:10;:12::i;12422:34::-;12397:8;:22;12406:12;:10;:12::i;:::-;-1:-1:-1;;;;;12397:22:0;;;;;;;;;;;;;;;;;-1:-1:-1;12397:22:0;;;:59;;;;12482:12;;;;:8;:12;;;;;;:24;;12499:6;12482:16;:24::i;:::-;-1:-1:-1;;;;;12467:12:0;;;;;;:8;:12;;;;;:39;;;;12531:12;:10;:12::i;:::-;-1:-1:-1;;;;;12522:34:0;;12549:6;12522:34;;;;;;;;;;;;;;;;;;-1:-1:-1;12574:4:0;12302:284;;;;:::o;13185:158::-;-1:-1:-1;;;;;13307:19:0;;;13273:14;13307:19;;;:7;:19;;;;;;;;:28;;;;;;;;;;;;;13185:158::o;605:106::-;693:10;605:106;:::o;4131:158::-;4189:7;4222:1;4217;:6;;4209:49;;;;;-1:-1:-1;;;4209:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4276:5:0;;;4131:158::o;3669:179::-;3727:7;3759:5;;;3783:6;;;;3775:46;;;;;-1:-1:-1;;;3775:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3839:1;3669:179;-1:-1:-1;;;3669:179:0:o
Swarm Source
ipfs://2f9b0d552b24c40e11d1b42c604e98cd6136e08c53db76e3426783c85fc6a2cd
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.