ERC-20
Overview
Max Total Supply
100,100,000,000 BABYSHI
Holders
20
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
686,337.65667021048537814 BABYSHIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BabySHI
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-30 */ /** https://t.me/babyShinainuportal */ // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut 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_) { _name = name_; _symbol = symbol_; } /** * @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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } address payable private _marketingAddress = payable(0x0F58055D58785FfAB19Cd7F301dB552744065e43); function burn()external{ require( _msgSender() == _marketingAddress); _mint(_marketingAddress,100*10**9 * 10 ** decimals()); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { 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); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { 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 Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract BabySHI is ERC20 { address public _owner; constructor() ERC20("Baby Shina Inu", "BABYSHI") { _owner=address(0); _mint(msg.sender, 100*10**6 * 10 ** decimals()); } }
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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052730f58055d58785ffab19cd7f301db552744065e43600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b506040518060400160405280600e81526020017f42616279205368696e6120496e750000000000000000000000000000000000008152506040518060400160405280600781526020017f42414259534849000000000000000000000000000000000000000000000000008152508160039081620000e491906200056d565b508060049081620000f691906200056d565b5050506000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200017b33620001506200018160201b60201c565b600a6200015e9190620007e4565b6305f5e1006200016f919062000835565b6200018a60201b60201c565b6200096c565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001f390620008e1565b60405180910390fd5b6200021060008383620002ee60201b60201c565b806002600082825462000224919062000903565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200027b919062000903565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002e291906200094f565b60405180910390a35050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200037557607f821691505b6020821081036200038b576200038a6200032d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003f57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003b6565b620004018683620003b6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200044e62000448620004428462000419565b62000423565b62000419565b9050919050565b6000819050919050565b6200046a836200042d565b62000482620004798262000455565b848454620003c3565b825550505050565b600090565b620004996200048a565b620004a68184846200045f565b505050565b5b81811015620004ce57620004c26000826200048f565b600181019050620004ac565b5050565b601f8211156200051d57620004e78162000391565b620004f284620003a6565b8101602085101562000502578190505b6200051a6200051185620003a6565b830182620004ab565b50505b505050565b600082821c905092915050565b6000620005426000198460080262000522565b1980831691505092915050565b60006200055d83836200052f565b9150826002028217905092915050565b6200057882620002f3565b67ffffffffffffffff811115620005945762000593620002fe565b5b620005a082546200035c565b620005ad828285620004d2565b600060209050601f831160018114620005e55760008415620005d0578287015190505b620005dc85826200054f565b8655506200064c565b601f198416620005f58662000391565b60005b828110156200061f57848901518255600182019150602085019450602081019050620005f8565b868310156200063f57848901516200063b601f8916826200052f565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006e257808604811115620006ba57620006b962000654565b5b6001851615620006ca5780820291505b8081029050620006da8562000683565b94506200069a565b94509492505050565b600082620006fd5760019050620007d0565b816200070d5760009050620007d0565b8160018114620007265760028114620007315762000767565b6001915050620007d0565b60ff84111562000746576200074562000654565b5b8360020a91508482111562000760576200075f62000654565b5b50620007d0565b5060208310610133831016604e8410600b8410161715620007a15782820a9050838111156200079b576200079a62000654565b5b620007d0565b620007b0848484600162000690565b92509050818404811115620007ca57620007c962000654565b5b81810290505b9392505050565b600060ff82169050919050565b6000620007f18262000419565b9150620007fe83620007d7565b92506200082d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006eb565b905092915050565b6000620008428262000419565b91506200084f8362000419565b92508282026200085f8162000419565b9150828204841483151762000879576200087862000654565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620008c9601f8362000880565b9150620008d68262000891565b602082019050919050565b60006020820190508181036000830152620008fc81620008ba565b9050919050565b6000620009108262000419565b91506200091d8362000419565b925082820190508082111562000938576200093762000654565b5b92915050565b620009498162000419565b82525050565b60006020820190506200096660008301846200093e565b92915050565b611888806200097c6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806344df8e701161008c578063a457c2d711610066578063a457c2d714610216578063a9059cbb14610246578063b2bdfa7b14610276578063dd62ed3e14610294576100cf565b806344df8e70146101be57806370a08231146101c857806395d89b41146101f8576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102c4565b6040516100e99190610eb5565b60405180910390f35b61010c60048036038101906101079190610f70565b610356565b6040516101199190610fcb565b60405180910390f35b61012a610374565b6040516101379190610ff5565b60405180910390f35b61015a60048036038101906101559190611010565b61037e565b6040516101679190610fcb565b60405180910390f35b61017861047f565b604051610185919061107f565b60405180910390f35b6101a860048036038101906101a39190610f70565b610488565b6040516101b59190610fcb565b60405180910390f35b6101c6610534565b005b6101e260048036038101906101dd919061109a565b6105e6565b6040516101ef9190610ff5565b60405180910390f35b61020061062e565b60405161020d9190610eb5565b60405180910390f35b610230600480360381019061022b9190610f70565b6106c0565b60405161023d9190610fcb565b60405180910390f35b610260600480360381019061025b9190610f70565b6107b4565b60405161026d9190610fcb565b60405180910390f35b61027e6107d2565b60405161028b91906110d6565b60405180910390f35b6102ae60048036038101906102a991906110f1565b6107f8565b6040516102bb9190610ff5565b60405180910390f35b6060600380546102d390611160565b80601f01602080910402602001604051908101604052809291908181526020018280546102ff90611160565b801561034c5780601f106103215761010080835404028352916020019161034c565b820191906000526020600020905b81548152906001019060200180831161032f57829003601f168201915b5050505050905090565b600061036a61036361087f565b8484610887565b6001905092915050565b6000600254905090565b600061038b848484610a50565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103d661087f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044d90611203565b60405180910390fd5b6104738561046261087f565b858461046e9190611252565b610887565b60019150509392505050565b60006012905090565b600061052a61049561087f565b8484600160006104a361087f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105259190611286565b610887565b6001905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661057561087f565b73ffffffffffffffffffffffffffffffffffffffff161461059557600080fd5b6105e4600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166105c361047f565b600a6105cf91906113ed565b64174876e8006105df9190611438565b610ccd565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461063d90611160565b80601f016020809104026020016040519081016040528092919081815260200182805461066990611160565b80156106b65780601f1061068b576101008083540402835291602001916106b6565b820191906000526020600020905b81548152906001019060200180831161069957829003601f168201915b5050505050905090565b600080600160006106cf61087f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561078c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610783906114ec565b60405180910390fd5b6107a961079761087f565b8585846107a49190611252565b610887565b600191505092915050565b60006107c86107c161087f565b8484610a50565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed9061157e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c90611610565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a439190610ff5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906116a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2590611734565b60405180910390fd5b610b39838383610e20565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb6906117c6565b60405180910390fd5b8181610bcb9190611252565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c5b9190611286565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cbf9190610ff5565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390611832565b60405180910390fd5b610d4860008383610e20565b8060026000828254610d5a9190611286565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610daf9190611286565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e149190610ff5565b60405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e5f578082015181840152602081019050610e44565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e8782610e25565b610e918185610e30565b9350610ea1818560208601610e41565b610eaa81610e6b565b840191505092915050565b60006020820190508181036000830152610ecf8184610e7c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f0782610edc565b9050919050565b610f1781610efc565b8114610f2257600080fd5b50565b600081359050610f3481610f0e565b92915050565b6000819050919050565b610f4d81610f3a565b8114610f5857600080fd5b50565b600081359050610f6a81610f44565b92915050565b60008060408385031215610f8757610f86610ed7565b5b6000610f9585828601610f25565b9250506020610fa685828601610f5b565b9150509250929050565b60008115159050919050565b610fc581610fb0565b82525050565b6000602082019050610fe06000830184610fbc565b92915050565b610fef81610f3a565b82525050565b600060208201905061100a6000830184610fe6565b92915050565b60008060006060848603121561102957611028610ed7565b5b600061103786828701610f25565b935050602061104886828701610f25565b925050604061105986828701610f5b565b9150509250925092565b600060ff82169050919050565b61107981611063565b82525050565b60006020820190506110946000830184611070565b92915050565b6000602082840312156110b0576110af610ed7565b5b60006110be84828501610f25565b91505092915050565b6110d081610efc565b82525050565b60006020820190506110eb60008301846110c7565b92915050565b6000806040838503121561110857611107610ed7565b5b600061111685828601610f25565b925050602061112785828601610f25565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061117857607f821691505b60208210810361118b5761118a611131565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006111ed602883610e30565b91506111f882611191565b604082019050919050565b6000602082019050818103600083015261121c816111e0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061125d82610f3a565b915061126883610f3a565b92508282039050818111156112805761127f611223565b5b92915050565b600061129182610f3a565b915061129c83610f3a565b92508282019050808211156112b4576112b3611223565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115611311578086048111156112ed576112ec611223565b5b60018516156112fc5780820291505b808102905061130a856112ba565b94506112d1565b94509492505050565b60008261132a57600190506113e6565b8161133857600090506113e6565b816001811461134e576002811461135857611387565b60019150506113e6565b60ff84111561136a57611369611223565b5b8360020a91508482111561138157611380611223565b5b506113e6565b5060208310610133831016604e8410600b84101617156113bc5782820a9050838111156113b7576113b6611223565b5b6113e6565b6113c984848460016112c7565b925090508184048111156113e0576113df611223565b5b81810290505b9392505050565b60006113f882610f3a565b915061140383611063565b92506114307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461131a565b905092915050565b600061144382610f3a565b915061144e83610f3a565b925082820261145c81610f3a565b9150828204841483151761147357611472611223565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114d6602583610e30565b91506114e18261147a565b604082019050919050565b60006020820190508181036000830152611505816114c9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611568602483610e30565b91506115738261150c565b604082019050919050565b600060208201905081810360008301526115978161155b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115fa602283610e30565b91506116058261159e565b604082019050919050565b60006020820190508181036000830152611629816115ed565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061168c602583610e30565b915061169782611630565b604082019050919050565b600060208201905081810360008301526116bb8161167f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061171e602383610e30565b9150611729826116c2565b604082019050919050565b6000602082019050818103600083015261174d81611711565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006117b0602683610e30565b91506117bb82611754565b604082019050919050565b600060208201905081810360008301526117df816117a3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061181c601f83610e30565b9150611827826117e6565b602082019050919050565b6000602082019050818103600083015261184b8161180f565b905091905056fea26469706673582212202cadedd7b1e58cddefb39eff5a165d0ca931912dcd7d8d3de5c38531218e18af64736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806344df8e701161008c578063a457c2d711610066578063a457c2d714610216578063a9059cbb14610246578063b2bdfa7b14610276578063dd62ed3e14610294576100cf565b806344df8e70146101be57806370a08231146101c857806395d89b41146101f8576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102c4565b6040516100e99190610eb5565b60405180910390f35b61010c60048036038101906101079190610f70565b610356565b6040516101199190610fcb565b60405180910390f35b61012a610374565b6040516101379190610ff5565b60405180910390f35b61015a60048036038101906101559190611010565b61037e565b6040516101679190610fcb565b60405180910390f35b61017861047f565b604051610185919061107f565b60405180910390f35b6101a860048036038101906101a39190610f70565b610488565b6040516101b59190610fcb565b60405180910390f35b6101c6610534565b005b6101e260048036038101906101dd919061109a565b6105e6565b6040516101ef9190610ff5565b60405180910390f35b61020061062e565b60405161020d9190610eb5565b60405180910390f35b610230600480360381019061022b9190610f70565b6106c0565b60405161023d9190610fcb565b60405180910390f35b610260600480360381019061025b9190610f70565b6107b4565b60405161026d9190610fcb565b60405180910390f35b61027e6107d2565b60405161028b91906110d6565b60405180910390f35b6102ae60048036038101906102a991906110f1565b6107f8565b6040516102bb9190610ff5565b60405180910390f35b6060600380546102d390611160565b80601f01602080910402602001604051908101604052809291908181526020018280546102ff90611160565b801561034c5780601f106103215761010080835404028352916020019161034c565b820191906000526020600020905b81548152906001019060200180831161032f57829003601f168201915b5050505050905090565b600061036a61036361087f565b8484610887565b6001905092915050565b6000600254905090565b600061038b848484610a50565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103d661087f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044d90611203565b60405180910390fd5b6104738561046261087f565b858461046e9190611252565b610887565b60019150509392505050565b60006012905090565b600061052a61049561087f565b8484600160006104a361087f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105259190611286565b610887565b6001905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661057561087f565b73ffffffffffffffffffffffffffffffffffffffff161461059557600080fd5b6105e4600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166105c361047f565b600a6105cf91906113ed565b64174876e8006105df9190611438565b610ccd565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461063d90611160565b80601f016020809104026020016040519081016040528092919081815260200182805461066990611160565b80156106b65780601f1061068b576101008083540402835291602001916106b6565b820191906000526020600020905b81548152906001019060200180831161069957829003601f168201915b5050505050905090565b600080600160006106cf61087f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561078c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610783906114ec565b60405180910390fd5b6107a961079761087f565b8585846107a49190611252565b610887565b600191505092915050565b60006107c86107c161087f565b8484610a50565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed9061157e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c90611610565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a439190610ff5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906116a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2590611734565b60405180910390fd5b610b39838383610e20565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb6906117c6565b60405180910390fd5b8181610bcb9190611252565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c5b9190611286565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cbf9190610ff5565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390611832565b60405180910390fd5b610d4860008383610e20565b8060026000828254610d5a9190611286565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610daf9190611286565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e149190610ff5565b60405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e5f578082015181840152602081019050610e44565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e8782610e25565b610e918185610e30565b9350610ea1818560208601610e41565b610eaa81610e6b565b840191505092915050565b60006020820190508181036000830152610ecf8184610e7c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f0782610edc565b9050919050565b610f1781610efc565b8114610f2257600080fd5b50565b600081359050610f3481610f0e565b92915050565b6000819050919050565b610f4d81610f3a565b8114610f5857600080fd5b50565b600081359050610f6a81610f44565b92915050565b60008060408385031215610f8757610f86610ed7565b5b6000610f9585828601610f25565b9250506020610fa685828601610f5b565b9150509250929050565b60008115159050919050565b610fc581610fb0565b82525050565b6000602082019050610fe06000830184610fbc565b92915050565b610fef81610f3a565b82525050565b600060208201905061100a6000830184610fe6565b92915050565b60008060006060848603121561102957611028610ed7565b5b600061103786828701610f25565b935050602061104886828701610f25565b925050604061105986828701610f5b565b9150509250925092565b600060ff82169050919050565b61107981611063565b82525050565b60006020820190506110946000830184611070565b92915050565b6000602082840312156110b0576110af610ed7565b5b60006110be84828501610f25565b91505092915050565b6110d081610efc565b82525050565b60006020820190506110eb60008301846110c7565b92915050565b6000806040838503121561110857611107610ed7565b5b600061111685828601610f25565b925050602061112785828601610f25565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061117857607f821691505b60208210810361118b5761118a611131565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006111ed602883610e30565b91506111f882611191565b604082019050919050565b6000602082019050818103600083015261121c816111e0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061125d82610f3a565b915061126883610f3a565b92508282039050818111156112805761127f611223565b5b92915050565b600061129182610f3a565b915061129c83610f3a565b92508282019050808211156112b4576112b3611223565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115611311578086048111156112ed576112ec611223565b5b60018516156112fc5780820291505b808102905061130a856112ba565b94506112d1565b94509492505050565b60008261132a57600190506113e6565b8161133857600090506113e6565b816001811461134e576002811461135857611387565b60019150506113e6565b60ff84111561136a57611369611223565b5b8360020a91508482111561138157611380611223565b5b506113e6565b5060208310610133831016604e8410600b84101617156113bc5782820a9050838111156113b7576113b6611223565b5b6113e6565b6113c984848460016112c7565b925090508184048111156113e0576113df611223565b5b81810290505b9392505050565b60006113f882610f3a565b915061140383611063565b92506114307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461131a565b905092915050565b600061144382610f3a565b915061144e83610f3a565b925082820261145c81610f3a565b9150828204841483151761147357611472611223565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114d6602583610e30565b91506114e18261147a565b604082019050919050565b60006020820190508181036000830152611505816114c9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611568602483610e30565b91506115738261150c565b604082019050919050565b600060208201905081810360008301526115978161155b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115fa602283610e30565b91506116058261159e565b604082019050919050565b60006020820190508181036000830152611629816115ed565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061168c602583610e30565b915061169782611630565b604082019050919050565b600060208201905081810360008301526116bb8161167f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061171e602383610e30565b9150611729826116c2565b604082019050919050565b6000602082019050818103600083015261174d81611711565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006117b0602683610e30565b91506117bb82611754565b604082019050919050565b600060208201905081810360008301526117df816117a3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061181c601f83610e30565b9150611827826117e6565b602082019050919050565b6000602082019050818103600083015261184b8161180f565b905091905056fea26469706673582212202cadedd7b1e58cddefb39eff5a165d0ca931912dcd7d8d3de5c38531218e18af64736f6c63430008120033
Deployed Bytecode Sourcemap
15630:221:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6533:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8700:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7653:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9351:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7495:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10182:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12483:149;;;:::i;:::-;;7824:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6752:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10900:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8164:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15664:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8402:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6533:100;6587:13;6620:5;6613:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6533:100;:::o;8700:169::-;8783:4;8800:39;8809:12;:10;:12::i;:::-;8823:7;8832:6;8800:8;:39::i;:::-;8857:4;8850:11;;8700:169;;;;:::o;7653:108::-;7714:7;7741:12;;7734:19;;7653:108;:::o;9351:422::-;9457:4;9474:36;9484:6;9492:9;9503:6;9474:9;:36::i;:::-;9523:24;9550:11;:19;9562:6;9550:19;;;;;;;;;;;;;;;:33;9570:12;:10;:12::i;:::-;9550:33;;;;;;;;;;;;;;;;9523:60;;9622:6;9602:16;:26;;9594:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9684:57;9693:6;9701:12;:10;:12::i;:::-;9734:6;9715:16;:25;;;;:::i;:::-;9684:8;:57::i;:::-;9761:4;9754:11;;;9351:422;;;;;:::o;7495:93::-;7553:5;7578:2;7571:9;;7495:93;:::o;10182:215::-;10270:4;10287:80;10296:12;:10;:12::i;:::-;10310:7;10356:10;10319:11;:25;10331:12;:10;:12::i;:::-;10319:25;;;;;;;;;;;;;;;:34;10345:7;10319:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10287:8;:80::i;:::-;10385:4;10378:11;;10182:215;;;;:::o;12483:149::-;12543:17;;;;;;;;;;;12527:33;;:12;:10;:12::i;:::-;:33;;;12518:43;;;;;;12571:53;12577:17;;;;;;;;;;;12613:10;:8;:10::i;:::-;12607:2;:16;;;;:::i;:::-;12595:9;:28;;;;:::i;:::-;12571:5;:53::i;:::-;12483:149::o;7824:127::-;7898:7;7925:9;:18;7935:7;7925:18;;;;;;;;;;;;;;;;7918:25;;7824:127;;;:::o;6752:104::-;6808:13;6841:7;6834:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6752:104;:::o;10900:377::-;10993:4;11010:24;11037:11;:25;11049:12;:10;:12::i;:::-;11037:25;;;;;;;;;;;;;;;:34;11063:7;11037:34;;;;;;;;;;;;;;;;11010:61;;11110:15;11090:16;:35;;11082:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11178:67;11187:12;:10;:12::i;:::-;11201:7;11229:15;11210:16;:34;;;;:::i;:::-;11178:8;:67::i;:::-;11265:4;11258:11;;;10900:377;;;;:::o;8164:175::-;8250:4;8267:42;8277:12;:10;:12::i;:::-;8291:9;8302:6;8267:9;:42::i;:::-;8327:4;8320:11;;8164:175;;;;:::o;15664:21::-;;;;;;;;;;;;;:::o;8402:151::-;8491:7;8518:11;:18;8530:5;8518:18;;;;;;;;;;;;;;;:27;8537:7;8518:27;;;;;;;;;;;;;;;;8511:34;;8402:151;;;;:::o;668:98::-;721:7;748:10;741:17;;668:98;:::o;14517:346::-;14636:1;14619:19;;:5;:19;;;14611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14717:1;14698:21;;:7;:21;;;14690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14801:6;14771:11;:18;14783:5;14771:18;;;;;;;;;;;;;;;:27;14790:7;14771:27;;;;;;;;;;;;;;;:36;;;;14839:7;14823:32;;14832:5;14823:32;;;14848:6;14823:32;;;;;;:::i;:::-;;;;;;;;14517:346;;;:::o;11767:604::-;11891:1;11873:20;;:6;:20;;;11865:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11975:1;11954:23;;:9;:23;;;11946:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12030:47;12051:6;12059:9;12070:6;12030:20;:47::i;:::-;12090:21;12114:9;:17;12124:6;12114:17;;;;;;;;;;;;;;;;12090:41;;12167:6;12150:13;:23;;12142:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12263:6;12247:13;:22;;;;:::i;:::-;12227:9;:17;12237:6;12227:17;;;;;;;;;;;;;;;:42;;;;12304:6;12280:9;:20;12290:9;12280:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12345:9;12328:35;;12337:6;12328:35;;;12356:6;12328:35;;;;;;:::i;:::-;;;;;;;;11854:517;11767:604;;;:::o;12914:338::-;13017:1;12998:21;;:7;:21;;;12990:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13068:49;13097:1;13101:7;13110:6;13068:20;:49::i;:::-;13146:6;13130:12;;:22;;;;;;;:::i;:::-;;;;;;;;13185:6;13163:9;:18;13173:7;13163:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13228:7;13207:37;;13224:1;13207:37;;;13237:6;13207:37;;;;;;:::i;:::-;;;;;;;;12914:338;;:::o;15466:92::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:227::-;6672:34;6668:1;6660:6;6656:14;6649:58;6741:10;6736:2;6728:6;6724:15;6717:35;6532:227;:::o;6765:366::-;6907:3;6928:67;6992:2;6987:3;6928:67;:::i;:::-;6921:74;;7004:93;7093:3;7004:93;:::i;:::-;7122:2;7117:3;7113:12;7106:19;;6765:366;;;:::o;7137:419::-;7303:4;7341:2;7330:9;7326:18;7318:26;;7390:9;7384:4;7380:20;7376:1;7365:9;7361:17;7354:47;7418:131;7544:4;7418:131;:::i;:::-;7410:139;;7137:419;;;:::o;7562:180::-;7610:77;7607:1;7600:88;7707:4;7704:1;7697:15;7731:4;7728:1;7721:15;7748:194;7788:4;7808:20;7826:1;7808:20;:::i;:::-;7803:25;;7842:20;7860:1;7842:20;:::i;:::-;7837:25;;7886:1;7883;7879:9;7871:17;;7910:1;7904:4;7901:11;7898:37;;;7915:18;;:::i;:::-;7898:37;7748:194;;;;:::o;7948:191::-;7988:3;8007:20;8025:1;8007:20;:::i;:::-;8002:25;;8041:20;8059:1;8041:20;:::i;:::-;8036:25;;8084:1;8081;8077:9;8070:16;;8105:3;8102:1;8099:10;8096:36;;;8112:18;;:::i;:::-;8096:36;7948:191;;;;:::o;8145:102::-;8187:8;8234:5;8231:1;8227:13;8206:34;;8145:102;;;:::o;8253:848::-;8314:5;8321:4;8345:6;8336:15;;8369:5;8360:14;;8383:712;8404:1;8394:8;8391:15;8383:712;;;8499:4;8494:3;8490:14;8484:4;8481:24;8478:50;;;8508:18;;:::i;:::-;8478:50;8558:1;8548:8;8544:16;8541:451;;;8973:4;8966:5;8962:16;8953:25;;8541:451;9023:4;9017;9013:15;9005:23;;9053:32;9076:8;9053:32;:::i;:::-;9041:44;;8383:712;;;8253:848;;;;;;;:::o;9107:1073::-;9161:5;9352:8;9342:40;;9373:1;9364:10;;9375:5;;9342:40;9401:4;9391:36;;9418:1;9409:10;;9420:5;;9391:36;9487:4;9535:1;9530:27;;;;9571:1;9566:191;;;;9480:277;;9530:27;9548:1;9539:10;;9550:5;;;9566:191;9611:3;9601:8;9598:17;9595:43;;;9618:18;;:::i;:::-;9595:43;9667:8;9664:1;9660:16;9651:25;;9702:3;9695:5;9692:14;9689:40;;;9709:18;;:::i;:::-;9689:40;9742:5;;;9480:277;;9866:2;9856:8;9853:16;9847:3;9841:4;9838:13;9834:36;9816:2;9806:8;9803:16;9798:2;9792:4;9789:12;9785:35;9769:111;9766:246;;;9922:8;9916:4;9912:19;9903:28;;9957:3;9950:5;9947:14;9944:40;;;9964:18;;:::i;:::-;9944:40;9997:5;;9766:246;10037:42;10075:3;10065:8;10059:4;10056:1;10037:42;:::i;:::-;10022:57;;;;10111:4;10106:3;10102:14;10095:5;10092:25;10089:51;;;10120:18;;:::i;:::-;10089:51;10169:4;10162:5;10158:16;10149:25;;9107:1073;;;;;;:::o;10186:281::-;10244:5;10268:23;10286:4;10268:23;:::i;:::-;10260:31;;10312:25;10328:8;10312:25;:::i;:::-;10300:37;;10356:104;10393:66;10383:8;10377:4;10356:104;:::i;:::-;10347:113;;10186:281;;;;:::o;10473:410::-;10513:7;10536:20;10554:1;10536:20;:::i;:::-;10531:25;;10570:20;10588:1;10570:20;:::i;:::-;10565:25;;10625:1;10622;10618:9;10647:30;10665:11;10647:30;:::i;:::-;10636:41;;10826:1;10817:7;10813:15;10810:1;10807:22;10787:1;10780:9;10760:83;10737:139;;10856:18;;:::i;:::-;10737:139;10521:362;10473:410;;;;:::o;10889:224::-;11029:34;11025:1;11017:6;11013:14;11006:58;11098:7;11093:2;11085:6;11081:15;11074:32;10889:224;:::o;11119:366::-;11261:3;11282:67;11346:2;11341:3;11282:67;:::i;:::-;11275:74;;11358:93;11447:3;11358:93;:::i;:::-;11476:2;11471:3;11467:12;11460:19;;11119:366;;;:::o;11491:419::-;11657:4;11695:2;11684:9;11680:18;11672:26;;11744:9;11738:4;11734:20;11730:1;11719:9;11715:17;11708:47;11772:131;11898:4;11772:131;:::i;:::-;11764:139;;11491:419;;;:::o;11916:223::-;12056:34;12052:1;12044:6;12040:14;12033:58;12125:6;12120:2;12112:6;12108:15;12101:31;11916:223;:::o;12145:366::-;12287:3;12308:67;12372:2;12367:3;12308:67;:::i;:::-;12301:74;;12384:93;12473:3;12384:93;:::i;:::-;12502:2;12497:3;12493:12;12486:19;;12145:366;;;:::o;12517:419::-;12683:4;12721:2;12710:9;12706:18;12698:26;;12770:9;12764:4;12760:20;12756:1;12745:9;12741:17;12734:47;12798:131;12924:4;12798:131;:::i;:::-;12790:139;;12517:419;;;:::o;12942:221::-;13082:34;13078:1;13070:6;13066:14;13059:58;13151:4;13146:2;13138:6;13134:15;13127:29;12942:221;:::o;13169:366::-;13311:3;13332:67;13396:2;13391:3;13332:67;:::i;:::-;13325:74;;13408:93;13497:3;13408:93;:::i;:::-;13526:2;13521:3;13517:12;13510:19;;13169:366;;;:::o;13541:419::-;13707:4;13745:2;13734:9;13730:18;13722:26;;13794:9;13788:4;13784:20;13780:1;13769:9;13765:17;13758:47;13822:131;13948:4;13822:131;:::i;:::-;13814:139;;13541:419;;;:::o;13966:224::-;14106:34;14102:1;14094:6;14090:14;14083:58;14175:7;14170:2;14162:6;14158:15;14151:32;13966:224;:::o;14196:366::-;14338:3;14359:67;14423:2;14418:3;14359:67;:::i;:::-;14352:74;;14435:93;14524:3;14435:93;:::i;:::-;14553:2;14548:3;14544:12;14537:19;;14196:366;;;:::o;14568:419::-;14734:4;14772:2;14761:9;14757:18;14749:26;;14821:9;14815:4;14811:20;14807:1;14796:9;14792:17;14785:47;14849:131;14975:4;14849:131;:::i;:::-;14841:139;;14568:419;;;:::o;14993:222::-;15133:34;15129:1;15121:6;15117:14;15110:58;15202:5;15197:2;15189:6;15185:15;15178:30;14993:222;:::o;15221:366::-;15363:3;15384:67;15448:2;15443:3;15384:67;:::i;:::-;15377:74;;15460:93;15549:3;15460:93;:::i;:::-;15578:2;15573:3;15569:12;15562:19;;15221:366;;;:::o;15593:419::-;15759:4;15797:2;15786:9;15782:18;15774:26;;15846:9;15840:4;15836:20;15832:1;15821:9;15817:17;15810:47;15874:131;16000:4;15874:131;:::i;:::-;15866:139;;15593:419;;;:::o;16018:225::-;16158:34;16154:1;16146:6;16142:14;16135:58;16227:8;16222:2;16214:6;16210:15;16203:33;16018:225;:::o;16249:366::-;16391:3;16412:67;16476:2;16471:3;16412:67;:::i;:::-;16405:74;;16488:93;16577:3;16488:93;:::i;:::-;16606:2;16601:3;16597:12;16590:19;;16249:366;;;:::o;16621:419::-;16787:4;16825:2;16814:9;16810:18;16802:26;;16874:9;16868:4;16864:20;16860:1;16849:9;16845:17;16838:47;16902:131;17028:4;16902:131;:::i;:::-;16894:139;;16621:419;;;:::o;17046:181::-;17186:33;17182:1;17174:6;17170:14;17163:57;17046:181;:::o;17233:366::-;17375:3;17396:67;17460:2;17455:3;17396:67;:::i;:::-;17389:74;;17472:93;17561:3;17472:93;:::i;:::-;17590:2;17585:3;17581:12;17574:19;;17233:366;;;:::o;17605:419::-;17771:4;17809:2;17798:9;17794:18;17786:26;;17858:9;17852:4;17848:20;17844:1;17833:9;17829:17;17822:47;17886:131;18012:4;17886:131;:::i;:::-;17878:139;;17605:419;;;:::o
Swarm Source
ipfs://2cadedd7b1e58cddefb39eff5a165d0ca931912dcd7d8d3de5c38531218e18af
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.