ERC-20
Source Code
Overview
Max Total Supply
1,000,000 ARA
Holders
132
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Ara
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/**
*Submitted for verification at Arbiscan.io on 2024-10-11
*/
// SPDX-License-Identifier: MIT
// 5
// 25
// 524
// 525 522
// 225 22222
// 5225 2222225
// 5225 522222255
// 5225 22222225555
// 2225 5222222255555
// 5 2222 222222544555554 88888 088888888888 88880
// 55 52225 2222225 4555554 8888880 088888888888 08880
// 52 422225222226 4555554 088808880 800 0880 88880 08888
// 525 222222225 4555554 0888008888 0888888808888888880 08888 88880
// 522 52222225 4555444 8888 08888 08888000000000008880 08888888888 08880
// 5222 522222225 455444 08880 08888 08880 0088880 08888888888 08880
// 42222 22222222222555 8444444 088888888888880 08888 08888888880 08888 08880
// 522252225962222225555555556444444 888800000008888 08888 88880 08880 08888 08880
// 42222225 4522555555555544444444 88880 0888008888 088888888880 08888 08880
// 4222222 44555555555444444446 0000 0000 0000 00000000000 00000 0000
// 22222225 66644544444444446
// 256052222225 000000
// 55 842222225555
// 56 84555555554444
pragma solidity 0.8.18;
error InsufficientAllowance();
error TransferError(string message);
error MintError(string message);
error BurnError(string message);
error ApproveError(string message);
error NotOwner();
error ZeroAddress();
error NotOperator();
/*
* @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 payable(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;
}
}
pragma solidity 0.8.18;
/**
* @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);
}
pragma solidity 0.8.18;
/**
* @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 {
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_decimals = 18;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual 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 {_setupDecimals} is
* called.
*
* 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 returns (uint8) {
return _decimals;
}
/**
* @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);
if(_allowances[sender][_msgSender()] < amount){
revert InsufficientAllowance();
}
_approve(sender, _msgSender(), _allowances[sender][_msgSender()] - 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) {
if(_allowances[_msgSender()][spender] < subtractedValue){
revert InsufficientAllowance();
}
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] - 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 {
if(sender == address(0)){
revert TransferError("ERC20: transfer from the zero address");
}
if(recipient == address(0)){
revert TransferError("ERC20: transfer to the zero address");
}
if(_balances[sender] < amount){
revert TransferError("ERC20: transfer amount exceeds balance");
}
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender] - amount;
_balances[recipient] = _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 {
if(account == address(0)) {
revert MintError("ERC20: mint to the zero address");
}
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply + (amount);
_balances[account] = _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 {
if(account == address(0)) {
revert BurnError("ERC20: burn from the zero address");
}
if(_balances[account] < amount){
revert BurnError("ERC20: burn amount exceeds balance");
}
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account] - amount;
_totalSupply = _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 {
if(owner == address(0)) {
revert ApproveError("ERC20: approve from the zero address");
}
if(spender == address(0)) {
revert ApproveError("ERC20: approve to the zero address");
}
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal virtual {
_decimals = decimals_;
}
/**
* @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 { }
}
pragma solidity 0.8.18;
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
}
pragma solidity 0.8.18;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow, so we distribute
return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
}
}
pragma solidity 0.8.18;
/**
* @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() {
if(owner() != _msgSender()){
revert NotOwner();
}
_;
}
/**
* @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 {
if(newOwner == address(0)) {
revert ZeroAddress();
}
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
pragma solidity 0.8.18;
contract Operator is Context, Ownable {
address private _operator;
event OperatorTransferred(address indexed previousOperator, address indexed newOperator);
constructor() {
_operator = _msgSender();
emit OperatorTransferred(address(0), _operator);
}
function operator() public view returns (address) {
return _operator;
}
modifier onlyOperator() {
if(_operator != msg.sender){
revert NotOperator();
}
_;
}
function isOperator() public view returns (bool) {
return _msgSender() == _operator;
}
function transferOperator(address newOperator_) public onlyOwner {
_transferOperator(newOperator_);
}
function _transferOperator(address newOperator_) internal {
if(newOperator_ == address(0)){
revert ZeroAddress();
}
emit OperatorTransferred(address(0), newOperator_);
_operator = newOperator_;
}
}
contract Ara is ERC20Burnable, Operator {
/**
* @notice Constructs the ARA ERC-20 contract.
*/
constructor() ERC20("AraFi", "ARA") {
_mint(msg.sender, 1000000 ether);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"string","name":"message","type":"string"}],"name":"ApproveError","type":"error"},{"inputs":[{"internalType":"string","name":"message","type":"string"}],"name":"BurnError","type":"error"},{"inputs":[],"name":"InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"string","name":"message","type":"string"}],"name":"MintError","type":"error"},{"inputs":[],"name":"NotOwner","type":"error"},{"inputs":[{"internalType":"string","name":"message","type":"string"}],"name":"TransferError","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"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":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405180604001604052806005815260200164417261466960d81b8152506040518060400160405280600381526020016241524160e81b81525081600390816200005d9190620002cb565b5060046200006c8282620002cb565b50506005805460ff19166012179055506000620000863390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600680546001600160a01b031916339081179091556040516000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3620001323369d3c21bcecceda100000062000138565b620003bf565b6001600160a01b0382166200019457604051636827d5d160e01b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600254620001a4919062000397565b6002556001600160a01b038216600090815260208190526040902054620001cd90829062000397565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200025257607f821691505b6020821081036200027357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200022257600081815260208120601f850160051c81016020861015620002a25750805b601f850160051c820191505b81811015620002c357828155600101620002ae565b505050505050565b81516001600160401b03811115620002e757620002e762000227565b620002ff81620002f884546200023d565b8462000279565b602080601f8311600181146200033757600084156200031e5750858301515b600019600386901b1c1916600185901b178555620002c3565b600085815260208120601f198616915b82811015620003685788860151825594840194600190910190840162000347565b5085821015620003875787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620003b957634e487b7160e01b600052601160045260246000fd5b92915050565b6110ed80620003cf6000396000f3fe608060405234801561001057600080fd5b506004361061011b5760003560e01c80634456eda2116100b257806395d89b4111610081578063a9059cbb11610066578063a9059cbb146102a9578063dd62ed3e146102bc578063f2fde38b1461030257600080fd5b806395d89b411461028e578063a457c2d71461029657600080fd5b80634456eda2146101d6578063570ca735146101f657806370a08231146102355780638da5cb5b1461026b57600080fd5b806329605e77116100ee57806329605e7714610186578063313ce5671461019b57806339509351146101b057806342966c68146101c357600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b600080fd5b610128610315565b6040516101359190610ea6565b60405180910390f35b61015161014c366004610f3b565b6103a7565b6040519015158152602001610135565b6002545b604051908152602001610135565b610151610181366004610f65565b6103be565b610199610194366004610fa1565b610487565b005b60055460405160ff9091168152602001610135565b6101516101be366004610f3b565b6104ea565b6101996101d1366004610fc3565b61052e565b60065473ffffffffffffffffffffffffffffffffffffffff163314610151565b60065473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610135565b610165610243366004610fa1565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b600554610100900473ffffffffffffffffffffffffffffffffffffffff16610210565b610128610538565b6101516102a4366004610f3b565b610547565b6101516102b7366004610f3b565b6105f4565b6101656102ca366004610fdc565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b610199610310366004610fa1565b610601565b6060600380546103249061100f565b80601f01602080910402602001604051908101604052809291908181526020018280546103509061100f565b801561039d5780601f106103725761010080835404028352916020019161039d565b820191906000526020600020905b81548152906001019060200180831161038057829003601f168201915b5050505050905090565b60006103b433848461073d565b5060015b92915050565b60006103cb8484846108f6565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054821115610435576040517f13be252b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff841660009081526001602090815260408083203380855292529091205461047d918691610478908690611091565b61073d565b5060019392505050565b60055473ffffffffffffffffffffffffffffffffffffffff6101009091041633146104de576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6104e781610bbd565b50565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916103b49185906104789086906110a4565b6104e73382610c94565b6060600480546103249061100f565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548211156105b1576040517f13be252b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff881684529091529020546103b491908590610478908690611091565b60006103b43384846108f6565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610658576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166106a5576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff83166107e4576040517fe6355b4a000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610887576040517fe6355b4a00000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016107db565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610999576040517ff187abe800000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107db565b73ffffffffffffffffffffffffffffffffffffffff8216610a3c576040517ff187abe800000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107db565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054811115610af1576040517ff187abe800000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016107db565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054610b22908290611091565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054610b5f9082906110a4565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016108e9565b73ffffffffffffffffffffffffffffffffffffffff8116610c0a576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff8216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8216610d37576040517f3665b4b000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016107db565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054811115610dec576040517f3665b4b000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016107db565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054610e1d908290611091565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902055600254610e51908290611091565b60025560405181815260009073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600060208083528351808285015260005b81811015610ed357858101830151858201604001528201610eb7565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610f3657600080fd5b919050565b60008060408385031215610f4e57600080fd5b610f5783610f12565b946020939093013593505050565b600080600060608486031215610f7a57600080fd5b610f8384610f12565b9250610f9160208501610f12565b9150604084013590509250925092565b600060208284031215610fb357600080fd5b610fbc82610f12565b9392505050565b600060208284031215610fd557600080fd5b5035919050565b60008060408385031215610fef57600080fd5b610ff883610f12565b915061100660208401610f12565b90509250929050565b600181811c9082168061102357607f821691505b60208210810361105c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156103b8576103b8611062565b808201808211156103b8576103b861106256fea26469706673582212203c24319dcc2fb3a6a40d018253878eec811dddc384197f1bfb389e0b4176389a64736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061011b5760003560e01c80634456eda2116100b257806395d89b4111610081578063a9059cbb11610066578063a9059cbb146102a9578063dd62ed3e146102bc578063f2fde38b1461030257600080fd5b806395d89b411461028e578063a457c2d71461029657600080fd5b80634456eda2146101d6578063570ca735146101f657806370a08231146102355780638da5cb5b1461026b57600080fd5b806329605e77116100ee57806329605e7714610186578063313ce5671461019b57806339509351146101b057806342966c68146101c357600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b600080fd5b610128610315565b6040516101359190610ea6565b60405180910390f35b61015161014c366004610f3b565b6103a7565b6040519015158152602001610135565b6002545b604051908152602001610135565b610151610181366004610f65565b6103be565b610199610194366004610fa1565b610487565b005b60055460405160ff9091168152602001610135565b6101516101be366004610f3b565b6104ea565b6101996101d1366004610fc3565b61052e565b60065473ffffffffffffffffffffffffffffffffffffffff163314610151565b60065473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610135565b610165610243366004610fa1565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b600554610100900473ffffffffffffffffffffffffffffffffffffffff16610210565b610128610538565b6101516102a4366004610f3b565b610547565b6101516102b7366004610f3b565b6105f4565b6101656102ca366004610fdc565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b610199610310366004610fa1565b610601565b6060600380546103249061100f565b80601f01602080910402602001604051908101604052809291908181526020018280546103509061100f565b801561039d5780601f106103725761010080835404028352916020019161039d565b820191906000526020600020905b81548152906001019060200180831161038057829003601f168201915b5050505050905090565b60006103b433848461073d565b5060015b92915050565b60006103cb8484846108f6565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054821115610435576040517f13be252b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff841660009081526001602090815260408083203380855292529091205461047d918691610478908690611091565b61073d565b5060019392505050565b60055473ffffffffffffffffffffffffffffffffffffffff6101009091041633146104de576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6104e781610bbd565b50565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916103b49185906104789086906110a4565b6104e73382610c94565b6060600480546103249061100f565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548211156105b1576040517f13be252b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff881684529091529020546103b491908590610478908690611091565b60006103b43384846108f6565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610658576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166106a5576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff83166107e4576040517fe6355b4a000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610887576040517fe6355b4a00000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016107db565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610999576040517ff187abe800000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107db565b73ffffffffffffffffffffffffffffffffffffffff8216610a3c576040517ff187abe800000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107db565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054811115610af1576040517ff187abe800000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016107db565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054610b22908290611091565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054610b5f9082906110a4565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016108e9565b73ffffffffffffffffffffffffffffffffffffffff8116610c0a576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff8216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8216610d37576040517f3665b4b000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016107db565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054811115610dec576040517f3665b4b000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016107db565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054610e1d908290611091565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902055600254610e51908290611091565b60025560405181815260009073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600060208083528351808285015260005b81811015610ed357858101830151858201604001528201610eb7565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610f3657600080fd5b919050565b60008060408385031215610f4e57600080fd5b610f5783610f12565b946020939093013593505050565b600080600060608486031215610f7a57600080fd5b610f8384610f12565b9250610f9160208501610f12565b9150604084013590509250925092565b600060208284031215610fb357600080fd5b610fbc82610f12565b9392505050565b600060208284031215610fd557600080fd5b5035919050565b60008060408385031215610fef57600080fd5b610ff883610f12565b915061100660208401610f12565b90509250929050565b600181811c9082168061102357607f821691505b60208210810361105c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156103b8576103b8611062565b808201808211156103b8576103b861106256fea26469706673582212203c24319dcc2fb3a6a40d018253878eec811dddc384197f1bfb389e0b4176389a64736f6c63430008120033
Deployed Bytecode Sourcemap
22064:207:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8556:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10702:169;;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;10702:169:0;1086:187:1;9655:108:0;9743:12;;9655:108;;;1424:25:1;;;1412:2;1397:18;9655:108:0;1278:177:1;11353:387:0;;;;;;:::i;:::-;;:::i;21685:115::-;;;;;;:::i;:::-;;:::i;:::-;;9499:91;9573:9;;9499:91;;9573:9;;;;2126:36:1;;2114:2;2099:18;9499:91:0;1984:184:1;12149:217:0;;;;;;:::i;:::-;;:::i;18380:91::-;;;;;;:::i;:::-;;:::i;21577:100::-;21660:9;;;;3497:10;21644:25;21577:100;;21348:85;21416:9;;;;21348:85;;;2534:42:1;2522:55;;;2504:74;;2492:2;2477:18;21348:85:0;2358:226:1;9826:127:0;;;;;;:::i;:::-;9927:18;;9900:7;9927:18;;;;;;;;;;;;9826:127;20312:87;20385:6;;;;;;;20312:87;;8766:95;;;:::i;12869:348::-;;;;;;:::i;:::-;;:::i;10166:175::-;;;;;;:::i;:::-;;:::i;10404:151::-;;;;;;:::i;:::-;10520:18;;;;10493:7;10520:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10404:151;20771:244;;;;;;:::i;:::-;;:::i;8556:91::-;8601:13;8634:5;8627:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8556:91;:::o;10702:169::-;10785:4;10802:39;3497:10;10825:7;10834:6;10802:8;:39::i;:::-;-1:-1:-1;10859:4:0;10702:169;;;;;:::o;11353:387::-;11459:4;11476:36;11486:6;11494:9;11505:6;11476:9;:36::i;:::-;11526:19;;;;;;;:11;:19;;;;;;;;3497:10;11526:33;;;;;;;;:42;-1:-1:-1;11523:103:0;;;11591:23;;;;;;;;;;;;;;11523:103;11667:19;;;;;;;:11;:19;;;;;;;;3497:10;11667:33;;;;;;;;;11636:74;;11645:6;;11667:42;;11703:6;;11667:42;:::i;:::-;11636:8;:74::i;:::-;-1:-1:-1;11728:4:0;11353:387;;;;;:::o;21685:115::-;20385:6;;20527:23;20385:6;;;;;3497:10;20527:23;20524:71;;20573:10;;;;;;;;;;;;;;20524:71;21761:31:::1;21779:12;21761:17;:31::i;:::-;21685:115:::0;:::o;12149:217::-;3497:10;12237:4;12286:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;12237:4;;12254:82;;12277:7;;12286:49;;12324:10;;12286:49;:::i;18380:91::-;18436:27;3497:10;18456:6;18436:5;:27::i;8766:95::-;8813:13;8846:7;8839:14;;;;;:::i;12869:348::-;3497:10;12962:4;12982:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;:52;-1:-1:-1;12979:113:0;;;13057:23;;;;;;;;;;;;;;12979:113;3497:10;13134:25;;;;:11;:25;;;;;;;;;:34;;;;;;;;;;13102:85;;3497:10;13125:7;;13134:52;;13171:15;;13134:52;:::i;10166:175::-;10252:4;10269:42;3497:10;10293:9;10304:6;10269:9;:42::i;20771:244::-;20385:6;;20527:23;20385:6;;;;;3497:10;20527:23;20524:71;;20573:10;;;;;;;;;;;;;;20524:71;20855:22:::1;::::0;::::1;20852:74;;20901:13;;;;;;;;;;;;;;20852:74;20962:6;::::0;20941:38:::1;::::0;::::1;::::0;;::::1;::::0;20962:6:::1;::::0;::::1;;::::0;20941:38:::1;::::0;;;::::1;20990:6;:17:::0;;::::1;::::0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;20771:244::o;16414:428::-;16511:19;;;16508:110;;16554:52;;;;;3950:2:1;16554:52:0;;;3932:21:1;3989:2;3969:18;;;3962:30;4028:34;4008:18;;;4001:62;4099:6;4079:18;;;4072:34;4123:19;;16554:52:0;;;;;;;;16508:110;16631:21;;;16628:110;;16676:50;;;;;4355:2:1;16676:50:0;;;4337:21:1;4394:2;4374:18;;;4367:30;4433:34;4413:18;;;4406:62;4504:4;4484:18;;;4477:32;4526:19;;16676:50:0;4153:398:1;16628:110:0;16750:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16802:32;;1424:25:1;;;16802:32:0;;1397:18:1;16802:32:0;;;;;;;;16414:428;;;:::o;13707:705::-;13808:20;;;13805:112;;13851:54;;;;;4758:2:1;13851:54:0;;;4740:21:1;4797:2;4777:18;;;4770:30;4836:34;4816:18;;;4809:62;4907:7;4887:18;;;4880:35;4932:19;;13851:54:0;4556:401:1;13805:112:0;13930:23;;;13927:113;;13976:52;;;;;5164:2:1;13976:52:0;;;5146:21:1;5203:2;5183:18;;;5176:30;5242:34;5222:18;;;5215:62;5313:5;5293:18;;;5286:33;5336:19;;13976:52:0;4962:399:1;13927:113:0;14054:17;;;:9;:17;;;;;;;;;;;:26;-1:-1:-1;14051:119:0;;;14103:55;;;;;5568:2:1;14103:55:0;;;5550:21:1;5607:2;5587:18;;;5580:30;5646:34;5626:18;;;5619:62;5717:8;5697:18;;;5690:36;5743:19;;14103:55:0;5366:402:1;14051:119:0;14262:17;;;:9;:17;;;;;;;;;;;:26;;14282:6;;14262:26;:::i;:::-;14242:17;;;;:9;:17;;;;;;;;;;;:46;;;;14322:20;;;;;;;:31;;14346:6;;14322:31;:::i;:::-;14299:20;;;;:9;:20;;;;;;;;;;;;:54;;;;14369:35;1424:25:1;;;14299:20:0;;14369:35;;;;;;1397:18:1;14369:35:0;1278:177:1;21808:249:0;21880:26;;;21877:77;;21929:13;;;;;;;;;;;;;;21877:77;21969:45;;;;;;21997:1;;21969:45;;21997:1;;21969:45;22025:9;:24;;;;;;;;;;;;;;;21808:249::o;15440:536::-;15519:21;;;15516:106;;15564:46;;;;;5975:2:1;15564:46:0;;;5957:21:1;6014:2;5994:18;;;5987:30;6053:34;6033:18;;;6026:62;6124:3;6104:18;;;6097:31;6145:19;;15564:46:0;5773:397:1;15516:106:0;15635:18;;;:9;:18;;;;;;;;;;;:27;-1:-1:-1;15632:112:0;;;15685:47;;;;;6377:2:1;15685:47:0;;;6359:21:1;6416:2;6396:18;;;6389:30;6455:34;6435:18;;;6428:62;6526:4;6506:18;;;6499:32;6548:19;;15685:47:0;6175:398:1;15632:112:0;15839:18;;;:9;:18;;;;;;;;;;;:27;;15860:6;;15839:27;:::i;:::-;15818:18;;;:9;:18;;;;;;;;;;:48;15892:12;;:23;;15908:6;;15892:23;:::i;:::-;15877:12;:38;15931:37;;1424:25:1;;;15957:1:0;;15931:37;;;;;;1412:2:1;1397:18;15931:37:0;;;;;;;15440:536;;:::o;14:607: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;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:254::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:1:o;1460:328::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1645:29;1664:9;1645:29;:::i;:::-;1635:39;;1693:38;1727:2;1716:9;1712:18;1693:38;:::i;:::-;1683:48;;1778:2;1767:9;1763:18;1750:32;1740:42;;1460:328;;;;;:::o;1793:186::-;1852:6;1905:2;1893:9;1884:7;1880:23;1876:32;1873:52;;;1921:1;1918;1911:12;1873:52;1944:29;1963:9;1944:29;:::i;:::-;1934:39;1793:186;-1:-1:-1;;;1793:186:1:o;2173:180::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;-1:-1:-1;2324:23:1;;2173:180;-1:-1:-1;2173:180:1:o;2589:260::-;2657:6;2665;2718:2;2706:9;2697:7;2693:23;2689:32;2686:52;;;2734:1;2731;2724:12;2686:52;2757:29;2776:9;2757:29;:::i;:::-;2747:39;;2805:38;2839:2;2828:9;2824:18;2805:38;:::i;:::-;2795:48;;2589:260;;;;;:::o;2854:437::-;2933:1;2929:12;;;;2976;;;2997:61;;3051:4;3043:6;3039:17;3029:27;;2997:61;3104:2;3096:6;3093:14;3073:18;3070:38;3067:218;;3141:77;3138:1;3131:88;3242:4;3239:1;3232:15;3270:4;3267:1;3260:15;3067:218;;2854:437;;;:::o;3296:184::-;3348:77;3345:1;3338:88;3445:4;3442:1;3435:15;3469:4;3466:1;3459:15;3485:128;3552:9;;;3573:11;;;3570:37;;;3587:18;;:::i;3618:125::-;3683:9;;;3704:10;;;3701:36;;;3717:18;;:::i
Swarm Source
ipfs://3c24319dcc2fb3a6a40d018253878eec811dddc384197f1bfb389e0b4176389a
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.
Add Token to MetaMask (Web3)