ERC-20
Overview
Max Total Supply
100,000,000 CREDIT
Holders
11
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 3 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ChineseSocialCredit
Compiler Version
v0.8.23+commit.f704f362
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-06-09 */ // Website https://chinesesocialcredit.vip/ // https://knowyourmeme.com/memes/events/chinas-social-credit-system-15-social-credit // SPDX-License-Identifier: MIT pragma solidity >0.4.0 <= 0.9.0; interface IBEP20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @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); } /* * @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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () { } function _msgSender() internal view returns (address) { return msg.sender; } function _msgData() internal view 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, 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) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * 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); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @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. */ 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 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 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract ChineseSocialCredit is Context, IBEP20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; uint8 private _decimals; string private _symbol; string private _name; constructor() { _name = "Chinese Social Credit"; _symbol = "CREDIT"; _decimals = 3; _totalSupply = 100000000000; _balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address) { return owner(); } /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() external view returns (string memory) { return _name; } /** * @dev See {BEP20-totalSupply}. */ function totalSupply() external view returns (uint256) { return _totalSupply; } /** * @dev See {BEP20-balanceOf}. */ function balanceOf(address account) external view returns (uint256) { return _balances[account]; } /** * @dev See {BEP20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) external returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {BEP20-allowance}. */ function allowance(address owner, address spender) external view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {BEP20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {BEP20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {BEP20}; * * 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) external returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: transfer amount exceeds allowance")); 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 {BEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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 {BEP20-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 returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero")); return true; } /** * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner */ /** * @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 { require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(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. */ /** * @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 { require(account != address(0), "BEP20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "BEP20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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 { require(owner != address(0), "BEP20: approve from the zero address"); require(spender != address(0), "BEP20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "BEP20: burn amount exceeds allowance")); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"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":[{"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":[],"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":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"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":[],"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"}]
Contract Creation Code
608060405234801562000010575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152601581527f4368696e65736520536f6369616c2043726564697400000000000000000000006020820152600690620000949082620001cf565b5060408051808201909152600681526510d49151125560d21b6020820152600590620000c19082620001cf565b506004805460ff1916600390811790915564174876e80090819055335f8181526001602052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620001239190815260200190565b60405180910390a36200029b565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200015a57607f821691505b6020821081036200017957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001ca57805f5260205f20601f840160051c81016020851015620001a65750805b601f840160051c820191505b81811015620001c7575f8155600101620001b2565b50505b505050565b81516001600160401b03811115620001eb57620001eb62000131565b6200020381620001fc845462000145565b846200017f565b602080601f83116001811462000239575f8415620002215750858301515b5f19600386901b1c1916600185901b17855562000293565b5f85815260208120601f198616915b82811015620002695788860151825594840194600190910190840162000248565b50858210156200028757878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b610b4580620002a95f395ff3fe608060405234801561000f575f80fd5b50600436106100f0575f3560e01c8063715018a611610093578063a457c2d711610063578063a457c2d7146101f0578063a9059cbb14610203578063dd62ed3e14610216578063f2fde38b1461024e575f80fd5b8063715018a6146101aa578063893d20e8146101b45780638da5cb5b146101d857806395d89b41146101e8575f80fd5b806323b872dd116100ce57806323b872dd14610147578063313ce5671461015a578063395093511461016f57806370a0823114610182575f80fd5b806306fdde03146100f4578063095ea7b31461011257806318160ddd14610135575b5f80fd5b6100fc610261565b6040516101099190610918565b60405180910390f35b61012561012036600461097f565b6102f1565b6040519015158152602001610109565b6003545b604051908152602001610109565b6101256101553660046109a7565b610307565b60045460405160ff9091168152602001610109565b61012561017d36600461097f565b61036e565b6101396101903660046109e0565b6001600160a01b03165f9081526001602052604090205490565b6101b26103a3565b005b5f546001600160a01b03165b6040516001600160a01b039091168152602001610109565b5f546001600160a01b03166101c0565b6100fc610449565b6101256101fe36600461097f565b610458565b61012561021136600461097f565b6104a5565b6101396102243660046109f9565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101b261025c3660046109e0565b6104b1565b60606006805461027090610a2a565b80601f016020809104026020016040519081016040528092919081815260200182805461029c90610a2a565b80156102e75780601f106102be576101008083540402835291602001916102e7565b820191905f5260205f20905b8154815290600101906020018083116102ca57829003601f168201915b5050505050905090565b5f6102fd338484610516565b5060015b92915050565b5f61031384848461063a565b610364843361035f85604051806060016040528060288152602001610a9d602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906107bd565b610516565b5060019392505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102fd91859061035f90866107f5565b5f546001600160a01b031633146104015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b60606005805461027090610a2a565b5f6102fd338461035f85604051806060016040528060258152602001610aeb60259139335f9081526002602090815260408083206001600160a01b038d16845290915290205491906107bd565b5f6102fd33848461063a565b5f546001600160a01b0316331461050a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f8565b6105138161085a565b50565b6001600160a01b0383166105785760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f8565b6001600160a01b0382166105d95760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f8565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661069e5760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f8565b6001600160a01b0382166107005760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f8565b61073c81604051806060016040528060268152602001610ac5602691396001600160a01b0386165f9081526001602052604090205491906107bd565b6001600160a01b038085165f90815260016020526040808220939093559084168152205461076a90826107f5565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061062d9085815260200190565b5f81848411156107e05760405162461bcd60e51b81526004016103f89190610918565b505f6107ec8486610a76565b95945050505050565b5f806108018385610a89565b9050838110156108535760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103f8565b9392505050565b6001600160a01b0381166108bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f8565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b5f602080835283518060208501525f5b8181101561094457858101830151858201604001528201610928565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461097a575f80fd5b919050565b5f8060408385031215610990575f80fd5b61099983610964565b946020939093013593505050565b5f805f606084860312156109b9575f80fd5b6109c284610964565b92506109d060208501610964565b9150604084013590509250925092565b5f602082840312156109f0575f80fd5b61085382610964565b5f8060408385031215610a0a575f80fd5b610a1383610964565b9150610a2160208401610964565b90509250929050565b600181811c90821680610a3e57607f821691505b602082108103610a5c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561030157610301610a62565b8082018082111561030157610301610a6256fe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f972c210e93a46cf64004d3f4a8ffe97ed766cb9bb58ad7d3e302dcdedc9319964736f6c63430008170033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100f0575f3560e01c8063715018a611610093578063a457c2d711610063578063a457c2d7146101f0578063a9059cbb14610203578063dd62ed3e14610216578063f2fde38b1461024e575f80fd5b8063715018a6146101aa578063893d20e8146101b45780638da5cb5b146101d857806395d89b41146101e8575f80fd5b806323b872dd116100ce57806323b872dd14610147578063313ce5671461015a578063395093511461016f57806370a0823114610182575f80fd5b806306fdde03146100f4578063095ea7b31461011257806318160ddd14610135575b5f80fd5b6100fc610261565b6040516101099190610918565b60405180910390f35b61012561012036600461097f565b6102f1565b6040519015158152602001610109565b6003545b604051908152602001610109565b6101256101553660046109a7565b610307565b60045460405160ff9091168152602001610109565b61012561017d36600461097f565b61036e565b6101396101903660046109e0565b6001600160a01b03165f9081526001602052604090205490565b6101b26103a3565b005b5f546001600160a01b03165b6040516001600160a01b039091168152602001610109565b5f546001600160a01b03166101c0565b6100fc610449565b6101256101fe36600461097f565b610458565b61012561021136600461097f565b6104a5565b6101396102243660046109f9565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101b261025c3660046109e0565b6104b1565b60606006805461027090610a2a565b80601f016020809104026020016040519081016040528092919081815260200182805461029c90610a2a565b80156102e75780601f106102be576101008083540402835291602001916102e7565b820191905f5260205f20905b8154815290600101906020018083116102ca57829003601f168201915b5050505050905090565b5f6102fd338484610516565b5060015b92915050565b5f61031384848461063a565b610364843361035f85604051806060016040528060288152602001610a9d602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906107bd565b610516565b5060019392505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102fd91859061035f90866107f5565b5f546001600160a01b031633146104015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b60606005805461027090610a2a565b5f6102fd338461035f85604051806060016040528060258152602001610aeb60259139335f9081526002602090815260408083206001600160a01b038d16845290915290205491906107bd565b5f6102fd33848461063a565b5f546001600160a01b0316331461050a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f8565b6105138161085a565b50565b6001600160a01b0383166105785760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f8565b6001600160a01b0382166105d95760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f8565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661069e5760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f8565b6001600160a01b0382166107005760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f8565b61073c81604051806060016040528060268152602001610ac5602691396001600160a01b0386165f9081526001602052604090205491906107bd565b6001600160a01b038085165f90815260016020526040808220939093559084168152205461076a90826107f5565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061062d9085815260200190565b5f81848411156107e05760405162461bcd60e51b81526004016103f89190610918565b505f6107ec8486610a76565b95945050505050565b5f806108018385610a89565b9050838110156108535760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103f8565b9392505050565b6001600160a01b0381166108bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f8565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b5f602080835283518060208501525f5b8181101561094457858101830151858201604001528201610928565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461097a575f80fd5b919050565b5f8060408385031215610990575f80fd5b61099983610964565b946020939093013593505050565b5f805f606084860312156109b9575f80fd5b6109c284610964565b92506109d060208501610964565b9150604084013590509250925092565b5f602082840312156109f0575f80fd5b61085382610964565b5f8060408385031215610a0a575f80fd5b610a1383610964565b9150610a2160208401610964565b90509250929050565b600181811c90821680610a3e57607f821691505b602082108103610a5c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561030157610301610a62565b8082018082111561030157610301610a6256fe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f972c210e93a46cf64004d3f4a8ffe97ed766cb9bb58ad7d3e302dcdedc9319964736f6c63430008170033
Deployed Bytecode Sourcemap
11459:7409:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12509:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13549:144;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;13549:144:0;1004:187:1;12644:87:0;12713:12;;12644:87;;;1342:25:1;;;1330:2;1315:18;12644:87:0;1196:177:1;14138:292:0;;;;;;:::i;:::-;;:::i;12237:79::-;12301:9;;12237:79;;12301:9;;;;1853:36:1;;1841:2;1826:18;12237:79:0;1711:184:1;14812:200:0;;;;;;:::i;:::-;;:::i;12785:106::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12867:18:0;12844:7;12867:18;;;:9;:18;;;;;;;12785:106;10761:130;;;:::i;:::-;;12099:79;12142:7;10220:6;-1:-1:-1;;;;;10220:6:0;12099:79;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;12099:79:0;2091:203:1;10159:73:0;10197:7;10220:6;-1:-1:-1;;;;;10220:6:0;10159:73;;12373:83;;;:::i;15484:251::-;;;;;;:::i;:::-;;:::i;13085:150::-;;;;;;:::i;:::-;;:::i;13289:130::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13386:18:0;;;13363:7;13386:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13289:130;11036:103;;;;;;:::i;:::-;;:::i;12509:79::-;12548:13;12577:5;12570:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12509:79;:::o;13549:144::-;13617:4;13630:39;3940:10;13653:7;13662:6;13630:8;:39::i;:::-;-1:-1:-1;13683:4:0;13549:144;;;;;:::o;14138:292::-;14229:4;14242:36;14252:6;14260:9;14271:6;14242:9;:36::i;:::-;14285:121;14294:6;3940:10;14316:89;14354:6;14316:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14316:19:0;;;;;;:11;:19;;;;;;;;3940:10;14316:33;;;;;;;;;;:37;:89::i;:::-;14285:8;:121::i;:::-;-1:-1:-1;14420:4:0;14138:292;;;;;:::o;14812:200::-;3940:10;14892:4;14937:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14937:34:0;;;;;;;;;;14892:4;;14905:83;;14928:7;;14937:50;;14976:10;14937:38;:50::i;10761:130::-;10353:6;;-1:-1:-1;;;;;10353:6:0;3940:10;10353:22;10345:67;;;;-1:-1:-1;;;10345:67:0;;3151:2:1;10345:67:0;;;3133:21:1;;;3170:18;;;3163:30;3229:34;3209:18;;;3202:62;3281:18;;10345:67:0;;;;;;;;;10856:1:::1;10840:6:::0;;10819:40:::1;::::0;-1:-1:-1;;;;;10840:6:0;;::::1;::::0;10819:40:::1;::::0;10856:1;;10819:40:::1;10883:1;10866:19:::0;;-1:-1:-1;;;;;;10866:19:0::1;::::0;;10761:130::o;12373:83::-;12414:13;12443:7;12436:14;;;;;:::i;15484:251::-;15569:4;15582:129;3940:10;15605:7;15614:96;15653:15;15614:96;;;;;;;;;;;;;;;;;3940:10;15614:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15614:34:0;;;;;;;;;;;;:38;:96::i;13085:150::-;13156:4;13169:42;3940:10;13193:9;13204:6;13169:9;:42::i;11036:103::-;10353:6;;-1:-1:-1;;;;;10353:6:0;3940:10;10353:22;10345:67;;;;-1:-1:-1;;;10345:67:0;;3151:2:1;10345:67:0;;;3133:21:1;;;3170:18;;;3163:30;3229:34;3209:18;;;3202:62;3281:18;;10345:67:0;2949:356:1;10345:67:0;11105:28:::1;11124:8;11105:18;:28::i;:::-;11036:103:::0;:::o;18151:320::-;-1:-1:-1;;;;;18241:19:0;;18233:68;;;;-1:-1:-1;;;18233:68:0;;3512:2:1;18233:68:0;;;3494:21:1;3551:2;3531:18;;;3524:30;3590:34;3570:18;;;3563:62;-1:-1:-1;;;3641:18:1;;;3634:34;3685:19;;18233:68:0;3310:400:1;18233:68:0;-1:-1:-1;;;;;18316:21:0;;18308:68;;;;-1:-1:-1;;;18308:68:0;;3917:2:1;18308:68:0;;;3899:21:1;3956:2;3936:18;;;3929:30;3995:34;3975:18;;;3968:62;-1:-1:-1;;;4046:18:1;;;4039:32;4088:19;;18308:68:0;3715:398:1;18308:68:0;-1:-1:-1;;;;;18385:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18433:32;;1342:25:1;;;18433:32:0;;1315:18:1;18433:32:0;;;;;;;;18151:320;;;:::o;16393:449::-;-1:-1:-1;;;;;16487:20:0;;16479:70;;;;-1:-1:-1;;;16479:70:0;;4320:2:1;16479:70:0;;;4302:21:1;4359:2;4339:18;;;4332:30;4398:34;4378:18;;;4371:62;-1:-1:-1;;;4449:18:1;;;4442:35;4494:19;;16479:70:0;4118:401:1;16479:70:0;-1:-1:-1;;;;;16564:23:0;;16556:71;;;;-1:-1:-1;;;16556:71:0;;4726:2:1;16556:71:0;;;4708:21:1;4765:2;4745:18;;;4738:30;4804:34;4784:18;;;4777:62;-1:-1:-1;;;4855:18:1;;;4848:33;4898:19;;16556:71:0;4524:399:1;16556:71:0;16656;16678:6;16656:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16656:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;16636:17:0;;;;;;;:9;:17;;;;;;:91;;;;16757:20;;;;;;;:32;;16782:6;16757:24;:32::i;:::-;-1:-1:-1;;;;;16734:20:0;;;;;;;:9;:20;;;;;;;:55;;;;16801:35;;;;;;;;;;16829:6;1342:25:1;;1330:2;1315:18;;1196:177;5823:178:0;5909:7;5941:12;5933:6;;;;5925:29;;;;-1:-1:-1;;;5925:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5961:9:0;5973:5;5977:1;5973;:5;:::i;:::-;5961:17;5823:178;-1:-1:-1;;;;;5823:178:0:o;4996:167::-;5054:7;;5082:5;5086:1;5082;:5;:::i;:::-;5070:17;;5107:1;5102;:6;;5094:46;;;;-1:-1:-1;;;5094:46:0;;5525:2:1;5094:46:0;;;5507:21:1;5564:2;5544:18;;;5537:30;5603:29;5583:18;;;5576:57;5650:18;;5094:46:0;5323:351:1;5094:46:0;5156:1;4996:167;-1:-1:-1;;;4996:167:0:o;11237:215::-;-1:-1:-1;;;;;11307:22:0;;11299:73;;;;-1:-1:-1;;;11299:73:0;;5881:2:1;11299:73:0;;;5863:21:1;5920:2;5900:18;;;5893:30;5959:34;5939:18;;;5932:62;-1:-1:-1;;;6010:18:1;;;6003:36;6056:19;;11299:73:0;5679:402:1;11299:73:0;11405:6;;;11384:38;;-1:-1:-1;;;;;11384:38:0;;;;11405:6;;;11384:38;;;11429:6;:17;;-1:-1:-1;;;;;;11429:17:0;-1:-1:-1;;;;;11429:17:0;;;;;;;;;;11237:215::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;4928:127::-;4989:10;4984:3;4980:20;4977:1;4970:31;5020:4;5017:1;5010:15;5044:4;5041:1;5034:15;5060:128;5127:9;;;5148:11;;;5145:37;;;5162:18;;:::i;5193:125::-;5258:9;;;5279:10;;;5276:36;;;5292:18;;:::i
Swarm Source
ipfs://f972c210e93a46cf64004d3f4a8ffe97ed766cb9bb58ad7d3e302dcdedc93199
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.