ERC-20
Overview
Max Total Supply
33,333,333,333 ARES
Holders
46
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000921767839 ARESValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GodofWar
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-12 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, 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); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } 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() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); } interface IUniswapV2Router02 is IUniswapV2Router01 { } contract GodofWar is Context, IERC20, IERC20Metadata, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; // Anti bot mapping(address => uint256) public _blockNumberByAddress; bool public antiBotsActive = false; mapping(address => bool) public isContractExempt; uint public blockCooldownAmount = 1; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor() { _name = "God of War"; _symbol = "ARES"; uint e_totalSupply = 33_333_333_333 ether; // Anti bot isContractExempt[address(this)] = true; _mint(msg.sender, e_totalSupply); } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][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) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); // bots don't get ARES if(antiBotsActive) { if(!isContractExempt[from] && !isContractExempt[to]) { address human = ensureOneHuman(from, to); ensureMaxTxFrequency(human); _blockNumberByAddress[human] = block.number; } } // uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} // anti bot function isContract(address account) internal view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function ensureOneHuman(address _to, address _from) internal virtual returns (address) { require(!isContract(_to) || !isContract(_from), "No bots are allowed ARES!"); if (isContract(_to)) return _from; else return _to; } function ensureMaxTxFrequency(address addr) internal virtual { bool isAllowed = _blockNumberByAddress[addr] == 0 || ((_blockNumberByAddress[addr] + blockCooldownAmount) < (block.number + 1)); require(isAllowed, "Max tx frequency exceeded!"); } function setAntiBotsActive(bool value) external onlyOwner { antiBotsActive = value; } function setBlockCooldown(uint value) external onlyOwner { blockCooldownAmount = value; } function setContractExempt(address account, bool value) external onlyOwner { isContractExempt[account] = value; } // End anti bot }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"","type":"address"}],"name":"_blockNumberByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiBotsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockCooldownAmount","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isContractExempt","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setAntiBotsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBlockCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setContractExempt","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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
60806040526007805460ff1916905560016009553480156200002057600080fd5b506200002c33620000c2565b60408051808201909152600a81526923b7b21037b3102bb0b960b11b60208201526004906200005c9082620002a3565b506040805180820190915260048152634152455360e01b6020820152600590620000879082620002a3565b50306000908152600860205260409020805460ff191660011790556b6bb4afe4ca85cb07a8340000620000bb338262000112565b5062000397565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200016d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200018191906200036f565b90915550506001600160a01b03821660009081526001602052604081208054839290620001b09084906200036f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022a57607f821691505b6020821081036200024b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001fa57600081815260208120601f850160051c810160208610156200027a5750805b601f850160051c820191505b818110156200029b5782815560010162000286565b505050505050565b81516001600160401b03811115620002bf57620002bf620001ff565b620002d781620002d0845462000215565b8462000251565b602080601f8311600181146200030f5760008415620002f65750858301515b600019600386901b1c1916600185901b1785556200029b565b600085815260208120601f198616915b8281101562000340578886015182559484019460019091019084016200031f565b50858210156200035f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200039157634e487b7160e01b600052601160045260246000fd5b92915050565b6113a280620003a76000396000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c8063715018a6116100d85780639686d3221161008c578063dd62ed3e11610066578063dd62ed3e14610309578063f2fde38b1461034f578063f6887cd31461036257600080fd5b80639686d322146102d0578063a457c2d7146102e3578063a9059cbb146102f657600080fd5b806380f68310116100bd57806380f683101461028d5780638da5cb5b146102a057806395d89b41146102c857600080fd5b8063715018a61461026557806377a59f001461026d57600080fd5b806323b872dd1161012f5780633950935111610114578063395093511461020f57806341f20b681461022257806370a082311461022f57600080fd5b806323b872dd146101ed578063313ce5671461020057600080fd5b806313c72aed1161016057806313c72aed146101bd57806318160ddd146101d25780631868aadf146101e457600080fd5b806306fdde031461017c578063095ea7b31461019a575b600080fd5b610184610385565b6040516101919190611121565b60405180910390f35b6101ad6101a83660046111b6565b610417565b6040519015158152602001610191565b6101d06101cb3660046111e0565b610431565b005b6003545b604051908152602001610191565b6101d660095481565b6101ad6101fb3660046111f9565b6104bc565b60405160128152602001610191565b6101ad61021d3660046111b6565b6104e0565b6007546101ad9060ff1681565b6101d661023d366004611235565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6101d061052c565b6101d661027b366004611235565b60066020526000908152604090205481565b6101d061029b366004611267565b6105b9565b60005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610191565b61018461066b565b6101d06102de366004611282565b61067a565b6101ad6102f13660046111b6565b610751565b6101ad6103043660046111b6565b610822565b6101d66103173660046112b5565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b6101d061035d366004611235565b610830565b6101ad610370366004611235565b60086020526000908152604090205460ff1681565b606060048054610394906112df565b80601f01602080910402602001604051908101604052809291908181526020018280546103c0906112df565b801561040d5780601f106103e25761010080835404028352916020019161040d565b820191906000526020600020905b8154815290600101906020018083116103f057829003601f168201915b5050505050905090565b600033610425818585610960565b60019150505b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146104b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600955565b6000336104ca858285610b13565b6104d5858585610bea565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906104259082908690610527908790611332565b610960565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104ae565b6105b76000610f48565b565b60005473ffffffffffffffffffffffffffffffffffffffff16331461063a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104ae565b600780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b606060058054610394906112df565b60005473ffffffffffffffffffffffffffffffffffffffff1633146106fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104ae565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104ae565b6104d58286868403610960565b600033610425818585610bea565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104ae565b73ffffffffffffffffffffffffffffffffffffffff8116610954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104ae565b61095d81610f48565b50565b73ffffffffffffffffffffffffffffffffffffffff8316610a02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104ae565b73ffffffffffffffffffffffffffffffffffffffff8216610aa5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104ae565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600260209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610be45781811015610bd7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104ae565b610be48484848403610960565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610c8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104ae565b73ffffffffffffffffffffffffffffffffffffffff8216610d30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104ae565b60075460ff1615610ddb5773ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16158015610d97575073ffffffffffffffffffffffffffffffffffffffff821660009081526008602052604090205460ff16155b15610ddb576000610da88484610fbd565b9050610db381611047565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610e91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104ae565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260016020526040808220858503905591851681529081208054849290610ed5908490611332565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3b91815260200190565b60405180910390a3610be4565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610fcc5750813b155b611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4e6f20626f74732061726520616c6c6f7765642041524553210000000000000060448201526064016104ae565b823b1561104057508061042b565b508161042b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604081205415806110b4575061107f436001611332565b60095473ffffffffffffffffffffffffffffffffffffffff84166000908152600660205260409020546110b29190611332565b105b90508061111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d6178207478206672657175656e63792065786365656465642100000000000060448201526064016104ae565b5050565b600060208083528351808285015260005b8181101561114e57858101830151858201604001528201611132565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff811681146111b157600080fd5b919050565b600080604083850312156111c957600080fd5b6111d28361118d565b946020939093013593505050565b6000602082840312156111f257600080fd5b5035919050565b60008060006060848603121561120e57600080fd5b6112178461118d565b92506112256020850161118d565b9150604084013590509250925092565b60006020828403121561124757600080fd5b6112508261118d565b9392505050565b803580151581146111b157600080fd5b60006020828403121561127957600080fd5b61125082611257565b6000806040838503121561129557600080fd5b61129e8361118d565b91506112ac60208401611257565b90509250929050565b600080604083850312156112c857600080fd5b6112d18361118d565b91506112ac6020840161118d565b600181811c908216806112f357607f821691505b60208210810361132c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b8082018082111561042b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220badaf87ef885567ec579c27229604d506b1e28f07982f39c3e11e096719cf45a64736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101775760003560e01c8063715018a6116100d85780639686d3221161008c578063dd62ed3e11610066578063dd62ed3e14610309578063f2fde38b1461034f578063f6887cd31461036257600080fd5b80639686d322146102d0578063a457c2d7146102e3578063a9059cbb146102f657600080fd5b806380f68310116100bd57806380f683101461028d5780638da5cb5b146102a057806395d89b41146102c857600080fd5b8063715018a61461026557806377a59f001461026d57600080fd5b806323b872dd1161012f5780633950935111610114578063395093511461020f57806341f20b681461022257806370a082311461022f57600080fd5b806323b872dd146101ed578063313ce5671461020057600080fd5b806313c72aed1161016057806313c72aed146101bd57806318160ddd146101d25780631868aadf146101e457600080fd5b806306fdde031461017c578063095ea7b31461019a575b600080fd5b610184610385565b6040516101919190611121565b60405180910390f35b6101ad6101a83660046111b6565b610417565b6040519015158152602001610191565b6101d06101cb3660046111e0565b610431565b005b6003545b604051908152602001610191565b6101d660095481565b6101ad6101fb3660046111f9565b6104bc565b60405160128152602001610191565b6101ad61021d3660046111b6565b6104e0565b6007546101ad9060ff1681565b6101d661023d366004611235565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6101d061052c565b6101d661027b366004611235565b60066020526000908152604090205481565b6101d061029b366004611267565b6105b9565b60005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610191565b61018461066b565b6101d06102de366004611282565b61067a565b6101ad6102f13660046111b6565b610751565b6101ad6103043660046111b6565b610822565b6101d66103173660046112b5565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b6101d061035d366004611235565b610830565b6101ad610370366004611235565b60086020526000908152604090205460ff1681565b606060048054610394906112df565b80601f01602080910402602001604051908101604052809291908181526020018280546103c0906112df565b801561040d5780601f106103e25761010080835404028352916020019161040d565b820191906000526020600020905b8154815290600101906020018083116103f057829003601f168201915b5050505050905090565b600033610425818585610960565b60019150505b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146104b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600955565b6000336104ca858285610b13565b6104d5858585610bea565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906104259082908690610527908790611332565b610960565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104ae565b6105b76000610f48565b565b60005473ffffffffffffffffffffffffffffffffffffffff16331461063a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104ae565b600780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b606060058054610394906112df565b60005473ffffffffffffffffffffffffffffffffffffffff1633146106fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104ae565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104ae565b6104d58286868403610960565b600033610425818585610bea565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104ae565b73ffffffffffffffffffffffffffffffffffffffff8116610954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104ae565b61095d81610f48565b50565b73ffffffffffffffffffffffffffffffffffffffff8316610a02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104ae565b73ffffffffffffffffffffffffffffffffffffffff8216610aa5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104ae565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600260209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610be45781811015610bd7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104ae565b610be48484848403610960565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610c8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104ae565b73ffffffffffffffffffffffffffffffffffffffff8216610d30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104ae565b60075460ff1615610ddb5773ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16158015610d97575073ffffffffffffffffffffffffffffffffffffffff821660009081526008602052604090205460ff16155b15610ddb576000610da88484610fbd565b9050610db381611047565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610e91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104ae565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260016020526040808220858503905591851681529081208054849290610ed5908490611332565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3b91815260200190565b60405180910390a3610be4565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610fcc5750813b155b611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4e6f20626f74732061726520616c6c6f7765642041524553210000000000000060448201526064016104ae565b823b1561104057508061042b565b508161042b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604081205415806110b4575061107f436001611332565b60095473ffffffffffffffffffffffffffffffffffffffff84166000908152600660205260409020546110b29190611332565b105b90508061111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d6178207478206672657175656e63792065786365656465642100000000000060448201526064016104ae565b5050565b600060208083528351808285015260005b8181101561114e57858101830151858201604001528201611132565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff811681146111b157600080fd5b919050565b600080604083850312156111c957600080fd5b6111d28361118d565b946020939093013593505050565b6000602082840312156111f257600080fd5b5035919050565b60008060006060848603121561120e57600080fd5b6112178461118d565b92506112256020850161118d565b9150604084013590509250925092565b60006020828403121561124757600080fd5b6112508261118d565b9392505050565b803580151581146111b157600080fd5b60006020828403121561127957600080fd5b61125082611257565b6000806040838503121561129557600080fd5b61129e8361118d565b91506112ac60208401611257565b90509250929050565b600080604083850312156112c857600080fd5b6112d18361118d565b91506112ac6020840161118d565b600181811c908216806112f357607f821691505b60208210810361132c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b8082018082111561042b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220badaf87ef885567ec579c27229604d506b1e28f07982f39c3e11e096719cf45a64736f6c63430008110033
Deployed Bytecode Sourcemap
5587:13448:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6742:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9093:201;;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;9093:201:0;1086:187:1;18773:103:0;;;;;;:::i;:::-;;:::i;:::-;;7862:108;7950:12;;7862:108;;;1609:25:1;;;1597:2;1582:18;7862:108:0;1463:177:1;6057:35:0;;;;;;9874:295;;;;;;:::i;:::-;;:::i;7704:93::-;;;7787:2;2120:36:1;;2108:2;2093:18;7704:93:0;1978:184:1;10578:240:0;;;;;;:::i;:::-;;:::i;5961:34::-;;;;;;;;;8033:127;;;;;;:::i;:::-;8134:18;;8107:7;8134:18;;;:9;:18;;;;;;;8033:127;4435:103;;;:::i;5898:56::-;;;;;;:::i;:::-;;;;;;;;;;;;;;18666:99;;;;;;:::i;:::-;;:::i;3784:87::-;3830:7;3857:6;3784:87;;3857:6;;;;2854:74:1;;2842:2;2827:18;3784:87:0;2708:226:1;6961:104:0;;;:::i;18884:127::-;;;;;;:::i;:::-;;:::i;11321:438::-;;;;;;:::i;:::-;;:::i;8366:193::-;;;;;;:::i;:::-;;:::i;8622:151::-;;;;;;:::i;:::-;8738:18;;;;8711:7;8738:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8622:151;4693:201;;;;;;:::i;:::-;;:::i;6002:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;6742:100;6796:13;6829:5;6822:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6742:100;:::o;9093:201::-;9176:4;173:10;9232:32;173:10;9248:7;9257:6;9232:8;:32::i;:::-;9282:4;9275:11;;;9093:201;;;;;:::o;18773:103::-;3830:7;3857:6;4004:23;3857:6;173:10;4004:23;3996:68;;;;;;;4107:2:1;3996:68:0;;;4089:21:1;;;4126:18;;;4119:30;4185:34;4165:18;;;4158:62;4237:18;;3996:68:0;;;;;;;;;18841:19:::1;:27:::0;18773:103::o;9874:295::-;10005:4;173:10;10063:38;10079:4;173:10;10094:6;10063:15;:38::i;:::-;10112:27;10122:4;10128:2;10132:6;10112:9;:27::i;:::-;-1:-1:-1;10157:4:0;;9874:295;-1:-1:-1;;;;9874:295:0:o;10578:240::-;173:10;10666:4;10747:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;10666:4;;173:10;10722:66;;173:10;;10747:27;;:40;;10777:10;;10747:40;:::i;:::-;10722:8;:66::i;4435:103::-;3830:7;3857:6;4004:23;3857:6;173:10;4004:23;3996:68;;;;;;;4107:2:1;3996:68:0;;;4089:21:1;;;4126:18;;;4119:30;4185:34;4165:18;;;4158:62;4237:18;;3996:68:0;3905:356:1;3996:68:0;4500:30:::1;4527:1;4500:18;:30::i;:::-;4435:103::o:0;18666:99::-;3830:7;3857:6;4004:23;3857:6;173:10;4004:23;3996:68;;;;;;;4107:2:1;3996:68:0;;;4089:21:1;;;4126:18;;;4119:30;4185:34;4165:18;;;4158:62;4237:18;;3996:68:0;3905:356:1;3996:68:0;18735:14:::1;:22:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;18666:99::o;6961:104::-;7017:13;7050:7;7043:14;;;;;:::i;18884:127::-;3830:7;3857:6;4004:23;3857:6;173:10;4004:23;3996:68;;;;;;;4107:2:1;3996:68:0;;;4089:21:1;;;4126:18;;;4119:30;4185:34;4165:18;;;4158:62;4237:18;;3996:68:0;3905:356:1;3996:68:0;18970:25:::1;::::0;;;::::1;;::::0;;;:16:::1;:25;::::0;;;;:33;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;18884:127::o;11321:438::-;173:10;11414:4;11497:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;11414:4;;173:10;11543:35;;;;11535:85;;;;;;;4752:2:1;11535:85:0;;;4734:21:1;4791:2;4771:18;;;4764:30;4830:34;4810:18;;;4803:62;4901:7;4881:18;;;4874:35;4926:19;;11535:85:0;4550:401:1;11535:85:0;11656:60;11665:5;11672:7;11700:15;11681:16;:34;11656:8;:60::i;8366:193::-;8445:4;173:10;8501:28;173:10;8518:2;8522:6;8501:9;:28::i;4693:201::-;3830:7;3857:6;4004:23;3857:6;173:10;4004:23;3996:68;;;;;;;4107:2:1;3996:68:0;;;4089:21:1;;;4126:18;;;4119:30;4185:34;4165:18;;;4158:62;4237:18;;3996:68:0;3905:356:1;3996:68:0;4782:22:::1;::::0;::::1;4774:73;;;::::0;::::1;::::0;;5158:2:1;4774:73:0::1;::::0;::::1;5140:21:1::0;5197:2;5177:18;;;5170:30;5236:34;5216:18;;;5209:62;5307:8;5287:18;;;5280:36;5333:19;;4774:73:0::1;4956:402:1::0;4774:73:0::1;4858:28;4877:8;4858:18;:28::i;:::-;4693:201:::0;:::o;15317:380::-;15453:19;;;15445:68;;;;;;;5565:2:1;15445:68:0;;;5547:21:1;5604:2;5584:18;;;5577:30;5643:34;5623:18;;;5616:62;5714:6;5694:18;;;5687:34;5738:19;;15445:68:0;5363:400:1;15445:68:0;15532:21;;;15524:68;;;;;;;5970:2:1;15524:68:0;;;5952:21:1;6009:2;5989:18;;;5982:30;6048:34;6028:18;;;6021:62;6119:4;6099:18;;;6092:32;6141:19;;15524:68:0;5768:398:1;15524:68:0;15605:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15657:32;;1609:25:1;;;15657:32:0;;1582:18:1;15657:32:0;;;;;;;15317:380;;;:::o;15984:453::-;8738:18;;;;16119:24;8738:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;16206:17;16186:37;;16182:248;;16268:6;16248:16;:26;;16240:68;;;;;;;6373:2:1;16240:68:0;;;6355:21:1;6412:2;6392:18;;;6385:30;6451:31;6431:18;;;6424:59;6500:18;;16240:68:0;6171:353:1;16240:68:0;16352:51;16361:5;16368:7;16396:6;16377:16;:25;16352:8;:51::i;:::-;16108:329;15984:453;;;:::o;12238:1031::-;12369:18;;;12361:68;;;;;;;6731:2:1;12361:68:0;;;6713:21:1;6770:2;6750:18;;;6743:30;6809:34;6789:18;;;6782:62;6880:7;6860:18;;;6853:35;6905:19;;12361:68:0;6529:401:1;12361:68:0;12448:16;;;12440:64;;;;;;;7137:2:1;12440:64:0;;;7119:21:1;7176:2;7156:18;;;7149:30;7215:34;7195:18;;;7188:62;7286:5;7266:18;;;7259:33;7309:19;;12440:64:0;6935:399:1;12440:64:0;12603:14;;;;12600:303;;;12647:22;;;;;;;:16;:22;;;;;;;;12646:23;:48;;;;-1:-1:-1;12674:20:0;;;;;;;:16;:20;;;;;;;;12673:21;12646:48;12643:249;;;12728:13;12744:24;12759:4;12765:2;12744:14;:24::i;:::-;12728:40;;12787:27;12808:5;12787:20;:27::i;:::-;12833:28;;;;;;:21;:28;;;;;12864:12;12833:43;;12643:249;12950:15;;;12928:19;12950:15;;;:9;:15;;;;;;12984:21;;;;12976:72;;;;;;;7541:2:1;12976:72:0;;;7523:21:1;7580:2;7560:18;;;7553:30;7619:34;7599:18;;;7592:62;7690:8;7670:18;;;7663:36;7716:19;;12976:72:0;7339:402:1;12976:72:0;13084:15;;;;;;;;:9;:15;;;;;;13102:20;;;13084:38;;13144:13;;;;;;;;:23;;13116:6;;13084:15;13144:23;;13116:6;;13144:23;:::i;:::-;;;;;;;;13200:2;13185:26;;13194:4;13185:26;;;13204:6;13185:26;;;;1609:25:1;;1597:2;1582:18;;1463:177;13185:26:0;;;;;;;;13224:37;17037:125;5054:191;5128:16;5147:6;;;5164:17;;;;;;;;;;5197:40;;5147:6;;;;;;;5197:40;;5128:16;5197:40;5117:128;5054:191;:::o;18119:252::-;18197:7;18047:20;;18095:8;;18225:38;;-1:-1:-1;18047:20:0;;18095:8;18225:38;18217:76;;;;;;;7948:2:1;18217:76:0;;;7930:21:1;7987:2;7967:18;;;7960:30;8026:27;8006:18;;;7999:55;8071:18;;18217:76:0;7746:349:1;18217:76:0;18047:20;;18095:8;18304:59;;-1:-1:-1;18332:5:0;18325:12;;18304:59;-1:-1:-1;18360:3:0;18353:10;;18379:279;18468:27;;;18451:14;18468:27;;;:21;:27;;;;;;:32;;:123;;-1:-1:-1;18573:16:0;:12;18588:1;18573:16;:::i;:::-;18549:19;;18519:27;;;;;;;:21;:27;;;;;;:49;;18549:19;18519:49;:::i;:::-;18518:72;18468:123;18451:140;;18610:9;18602:48;;;;;;;8302:2:1;18602:48:0;;;8284:21:1;8341:2;8321:18;;;8314:30;8380:28;8360:18;;;8353:56;8426:18;;18602:48:0;8100:350:1;18602:48:0;18440:218;18379:279;:::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;1278:180::-;1337:6;1390:2;1378:9;1369:7;1365:23;1361:32;1358:52;;;1406:1;1403;1396:12;1358:52;-1:-1:-1;1429:23:1;;1278:180;-1:-1:-1;1278:180:1:o;1645:328::-;1722:6;1730;1738;1791:2;1779:9;1770:7;1766:23;1762:32;1759:52;;;1807:1;1804;1797:12;1759:52;1830:29;1849:9;1830:29;:::i;:::-;1820:39;;1878:38;1912:2;1901:9;1897:18;1878:38;:::i;:::-;1868:48;;1963:2;1952:9;1948:18;1935:32;1925:42;;1645:328;;;;;:::o;2167:186::-;2226:6;2279:2;2267:9;2258:7;2254:23;2250:32;2247:52;;;2295:1;2292;2285:12;2247:52;2318:29;2337:9;2318:29;:::i;:::-;2308:39;2167:186;-1:-1:-1;;;2167:186:1:o;2358:160::-;2423:20;;2479:13;;2472:21;2462:32;;2452:60;;2508:1;2505;2498:12;2523:180;2579:6;2632:2;2620:9;2611:7;2607:23;2603:32;2600:52;;;2648:1;2645;2638:12;2600:52;2671:26;2687:9;2671:26;:::i;2939:254::-;3004:6;3012;3065:2;3053:9;3044:7;3040:23;3036:32;3033:52;;;3081:1;3078;3071:12;3033:52;3104:29;3123:9;3104:29;:::i;:::-;3094:39;;3152:35;3183:2;3172:9;3168:18;3152:35;:::i;:::-;3142:45;;2939:254;;;;;:::o;3198:260::-;3266:6;3274;3327:2;3315:9;3306:7;3302:23;3298:32;3295:52;;;3343:1;3340;3333:12;3295:52;3366:29;3385:9;3366:29;:::i;:::-;3356:39;;3414:38;3448:2;3437:9;3433:18;3414:38;:::i;3463:437::-;3542:1;3538:12;;;;3585;;;3606:61;;3660:4;3652:6;3648:17;3638:27;;3606:61;3713:2;3705:6;3702:14;3682:18;3679:38;3676:218;;3750:77;3747:1;3740:88;3851:4;3848:1;3841:15;3879:4;3876:1;3869:15;3676:218;;3463:437;;;:::o;4266:279::-;4331:9;;;4352:10;;;4349:190;;;4395:77;4392:1;4385:88;4496:4;4493:1;4486:15;4524:4;4521:1;4514:15
Swarm Source
ipfs://badaf87ef885567ec579c27229604d506b1e28f07982f39c3e11e096719cf45a
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.