ERC-20
Overview
Max Total Supply
100,000,000 COT
Holders
87
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
997.92324982367150716 COTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CatOfTrump
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-06-03 */ // SPDX-License-Identifier: UNLICENSED /** * * CCCCC tt fff TTTTTTT * CC C aa aa tt oooo ff TTT rr rr uu uu mm mm mmmm pp pp * CC aa aaa tttt oo oo ffff TTT rrr r uu uu mmm mm mm ppp pp * CC C aa aaa tt oo oo ff TTT rr uu uu mmm mm mm pppppp * CCCCC aaa aa tttt oooo ff TTT rr uuuu u mmm mm mm pp * pp * * DESCRIPTION : Cat Of Trump | United States * WEBSITE : www.cotus.wtf * TELEGRAM : www.t.me/catoftrump * TWITTER : www.twitter.com/cotuswtf * */ 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) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @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 _checkOwner() 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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } /** * @dev 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); } /** * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead 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}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, 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`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev 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); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } contract CatOfTrump is ERC20, Ownable { constructor() ERC20("Cat Of Trump", "COT") { _mint(_msgSender(), 100_000_000 * 1e18); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[],"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"}]
Contract Creation Code
608060405234801561000f575f80fd5b506040518060400160405280600c81526020017f436174204f66205472756d7000000000000000000000000000000000000000008152506040518060400160405280600381526020017f434f540000000000000000000000000000000000000000000000000000000000815250816003908161008b919061054f565b50806004908161009b919061054f565b5050506100ba6100af6100e760201b60201c565b6100ee60201b60201c565b6100e26100cb6100e760201b60201c565b6a52b7d2dcc80cd2e40000006101b160201b60201c565b61071e565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361021f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021690610678565b60405180910390fd5b6102305f838361030b60201b60201c565b8060025f82825461024191906106c3565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516102ee9190610705565b60405180910390a36103075f838361031060201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061039057607f821691505b6020821081036103a3576103a261034c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026104057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826103ca565b61040f86836103ca565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61045361044e61044984610427565b610430565b610427565b9050919050565b5f819050919050565b61046c83610439565b6104806104788261045a565b8484546103d6565b825550505050565b5f90565b610494610488565b61049f818484610463565b505050565b5b818110156104c2576104b75f8261048c565b6001810190506104a5565b5050565b601f821115610507576104d8816103a9565b6104e1846103bb565b810160208510156104f0578190505b6105046104fc856103bb565b8301826104a4565b50505b505050565b5f82821c905092915050565b5f6105275f198460080261050c565b1980831691505092915050565b5f61053f8383610518565b9150826002028217905092915050565b61055882610315565b67ffffffffffffffff8111156105715761057061031f565b5b61057b8254610379565b6105868282856104c6565b5f60209050601f8311600181146105b7575f84156105a5578287015190505b6105af8582610534565b865550610616565b601f1984166105c5866103a9565b5f5b828110156105ec578489015182556001820191506020850194506020810190506105c7565b868310156106095784890151610605601f891682610518565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610662601f8361061e565b915061066d8261062e565b602082019050919050565b5f6020820190508181035f83015261068f81610656565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6106cd82610427565b91506106d883610427565b92508282019050808211156106f0576106ef610696565b5b92915050565b6106ff81610427565b82525050565b5f6020820190506107185f8301846106f6565b92915050565b61154a8061072b5f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a457c2d711610064578063a457c2d71461024c578063a9059cbb1461027c578063dd62ed3e146102ac578063f2fde38b146102dc576100e8565b8063715018a6146102065780638da5cb5b1461021057806395d89b411461022e576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f8565b6040516101019190610d46565b60405180910390f35b610124600480360381019061011f9190610df7565b610388565b6040516101319190610e4f565b60405180910390f35b6101426103aa565b60405161014f9190610e77565b60405180910390f35b610172600480360381019061016d9190610e90565b6103b3565b60405161017f9190610e4f565b60405180910390f35b6101906103e1565b60405161019d9190610efb565b60405180910390f35b6101c060048036038101906101bb9190610df7565b6103e9565b6040516101cd9190610e4f565b60405180910390f35b6101f060048036038101906101eb9190610f14565b61041f565b6040516101fd9190610e77565b60405180910390f35b61020e610464565b005b610218610477565b6040516102259190610f4e565b60405180910390f35b61023661049f565b6040516102439190610d46565b60405180910390f35b61026660048036038101906102619190610df7565b61052f565b6040516102739190610e4f565b60405180910390f35b61029660048036038101906102919190610df7565b6105a4565b6040516102a39190610e4f565b60405180910390f35b6102c660048036038101906102c19190610f67565b6105c6565b6040516102d39190610e77565b60405180910390f35b6102f660048036038101906102f19190610f14565b610648565b005b60606003805461030790610fd2565b80601f016020809104026020016040519081016040528092919081815260200182805461033390610fd2565b801561037e5780601f106103555761010080835404028352916020019161037e565b820191905f5260205f20905b81548152906001019060200180831161036157829003601f168201915b5050505050905090565b5f806103926106ca565b905061039f8185856106d1565b600191505092915050565b5f600254905090565b5f806103bd6106ca565b90506103ca858285610894565b6103d585858561091f565b60019150509392505050565b5f6012905090565b5f806103f36106ca565b905061041481858561040585896105c6565b61040f919061102f565b6106d1565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61046c610b8b565b6104755f610c09565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104ae90610fd2565b80601f01602080910402602001604051908101604052809291908181526020018280546104da90610fd2565b80156105255780601f106104fc57610100808354040283529160200191610525565b820191905f5260205f20905b81548152906001019060200180831161050857829003601f168201915b5050505050905090565b5f806105396106ca565b90505f61054682866105c6565b90508381101561058b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610582906110d2565b60405180910390fd5b61059882868684036106d1565b60019250505092915050565b5f806105ae6106ca565b90506105bb81858561091f565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610650610b8b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b590611160565b60405180910390fd5b6106c781610c09565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361073f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610736906111ee565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a49061127c565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108879190610e77565b60405180910390a3505050565b5f61089f84846105c6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610919578181101561090b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610902906112e4565b60405180910390fd5b61091884848484036106d1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490611372565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f290611400565b60405180910390fd5b610a06838383610ccc565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a809061148e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b729190610e77565b60405180910390a3610b85848484610cd1565b50505050565b610b936106ca565b73ffffffffffffffffffffffffffffffffffffffff16610bb1610477565b73ffffffffffffffffffffffffffffffffffffffff1614610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe906114f6565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610d1882610cd6565b610d228185610ce0565b9350610d32818560208601610cf0565b610d3b81610cfe565b840191505092915050565b5f6020820190508181035f830152610d5e8184610d0e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d9382610d6a565b9050919050565b610da381610d89565b8114610dad575f80fd5b50565b5f81359050610dbe81610d9a565b92915050565b5f819050919050565b610dd681610dc4565b8114610de0575f80fd5b50565b5f81359050610df181610dcd565b92915050565b5f8060408385031215610e0d57610e0c610d66565b5b5f610e1a85828601610db0565b9250506020610e2b85828601610de3565b9150509250929050565b5f8115159050919050565b610e4981610e35565b82525050565b5f602082019050610e625f830184610e40565b92915050565b610e7181610dc4565b82525050565b5f602082019050610e8a5f830184610e68565b92915050565b5f805f60608486031215610ea757610ea6610d66565b5b5f610eb486828701610db0565b9350506020610ec586828701610db0565b9250506040610ed686828701610de3565b9150509250925092565b5f60ff82169050919050565b610ef581610ee0565b82525050565b5f602082019050610f0e5f830184610eec565b92915050565b5f60208284031215610f2957610f28610d66565b5b5f610f3684828501610db0565b91505092915050565b610f4881610d89565b82525050565b5f602082019050610f615f830184610f3f565b92915050565b5f8060408385031215610f7d57610f7c610d66565b5b5f610f8a85828601610db0565b9250506020610f9b85828601610db0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610fe957607f821691505b602082108103610ffc57610ffb610fa5565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61103982610dc4565b915061104483610dc4565b925082820190508082111561105c5761105b611002565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6110bc602583610ce0565b91506110c782611062565b604082019050919050565b5f6020820190508181035f8301526110e9816110b0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61114a602683610ce0565b9150611155826110f0565b604082019050919050565b5f6020820190508181035f8301526111778161113e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6111d8602483610ce0565b91506111e38261117e565b604082019050919050565b5f6020820190508181035f830152611205816111cc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611266602283610ce0565b91506112718261120c565b604082019050919050565b5f6020820190508181035f8301526112938161125a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6112ce601d83610ce0565b91506112d98261129a565b602082019050919050565b5f6020820190508181035f8301526112fb816112c2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61135c602583610ce0565b915061136782611302565b604082019050919050565b5f6020820190508181035f83015261138981611350565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6113ea602383610ce0565b91506113f582611390565b604082019050919050565b5f6020820190508181035f830152611417816113de565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611478602683610ce0565b91506114838261141e565b604082019050919050565b5f6020820190508181035f8301526114a58161146c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6114e0602083610ce0565b91506114eb826114ac565b602082019050919050565b5f6020820190508181035f83015261150d816114d4565b905091905056fea2646970667358221220c281c37a48339d1141ff4f25778a92c507635e65fad63e2915d629c9e2ab661f64736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a457c2d711610064578063a457c2d71461024c578063a9059cbb1461027c578063dd62ed3e146102ac578063f2fde38b146102dc576100e8565b8063715018a6146102065780638da5cb5b1461021057806395d89b411461022e576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f8565b6040516101019190610d46565b60405180910390f35b610124600480360381019061011f9190610df7565b610388565b6040516101319190610e4f565b60405180910390f35b6101426103aa565b60405161014f9190610e77565b60405180910390f35b610172600480360381019061016d9190610e90565b6103b3565b60405161017f9190610e4f565b60405180910390f35b6101906103e1565b60405161019d9190610efb565b60405180910390f35b6101c060048036038101906101bb9190610df7565b6103e9565b6040516101cd9190610e4f565b60405180910390f35b6101f060048036038101906101eb9190610f14565b61041f565b6040516101fd9190610e77565b60405180910390f35b61020e610464565b005b610218610477565b6040516102259190610f4e565b60405180910390f35b61023661049f565b6040516102439190610d46565b60405180910390f35b61026660048036038101906102619190610df7565b61052f565b6040516102739190610e4f565b60405180910390f35b61029660048036038101906102919190610df7565b6105a4565b6040516102a39190610e4f565b60405180910390f35b6102c660048036038101906102c19190610f67565b6105c6565b6040516102d39190610e77565b60405180910390f35b6102f660048036038101906102f19190610f14565b610648565b005b60606003805461030790610fd2565b80601f016020809104026020016040519081016040528092919081815260200182805461033390610fd2565b801561037e5780601f106103555761010080835404028352916020019161037e565b820191905f5260205f20905b81548152906001019060200180831161036157829003601f168201915b5050505050905090565b5f806103926106ca565b905061039f8185856106d1565b600191505092915050565b5f600254905090565b5f806103bd6106ca565b90506103ca858285610894565b6103d585858561091f565b60019150509392505050565b5f6012905090565b5f806103f36106ca565b905061041481858561040585896105c6565b61040f919061102f565b6106d1565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61046c610b8b565b6104755f610c09565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104ae90610fd2565b80601f01602080910402602001604051908101604052809291908181526020018280546104da90610fd2565b80156105255780601f106104fc57610100808354040283529160200191610525565b820191905f5260205f20905b81548152906001019060200180831161050857829003601f168201915b5050505050905090565b5f806105396106ca565b90505f61054682866105c6565b90508381101561058b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610582906110d2565b60405180910390fd5b61059882868684036106d1565b60019250505092915050565b5f806105ae6106ca565b90506105bb81858561091f565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610650610b8b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b590611160565b60405180910390fd5b6106c781610c09565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361073f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610736906111ee565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a49061127c565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108879190610e77565b60405180910390a3505050565b5f61089f84846105c6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610919578181101561090b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610902906112e4565b60405180910390fd5b61091884848484036106d1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490611372565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f290611400565b60405180910390fd5b610a06838383610ccc565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a809061148e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b729190610e77565b60405180910390a3610b85848484610cd1565b50505050565b610b936106ca565b73ffffffffffffffffffffffffffffffffffffffff16610bb1610477565b73ffffffffffffffffffffffffffffffffffffffff1614610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe906114f6565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610d1882610cd6565b610d228185610ce0565b9350610d32818560208601610cf0565b610d3b81610cfe565b840191505092915050565b5f6020820190508181035f830152610d5e8184610d0e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d9382610d6a565b9050919050565b610da381610d89565b8114610dad575f80fd5b50565b5f81359050610dbe81610d9a565b92915050565b5f819050919050565b610dd681610dc4565b8114610de0575f80fd5b50565b5f81359050610df181610dcd565b92915050565b5f8060408385031215610e0d57610e0c610d66565b5b5f610e1a85828601610db0565b9250506020610e2b85828601610de3565b9150509250929050565b5f8115159050919050565b610e4981610e35565b82525050565b5f602082019050610e625f830184610e40565b92915050565b610e7181610dc4565b82525050565b5f602082019050610e8a5f830184610e68565b92915050565b5f805f60608486031215610ea757610ea6610d66565b5b5f610eb486828701610db0565b9350506020610ec586828701610db0565b9250506040610ed686828701610de3565b9150509250925092565b5f60ff82169050919050565b610ef581610ee0565b82525050565b5f602082019050610f0e5f830184610eec565b92915050565b5f60208284031215610f2957610f28610d66565b5b5f610f3684828501610db0565b91505092915050565b610f4881610d89565b82525050565b5f602082019050610f615f830184610f3f565b92915050565b5f8060408385031215610f7d57610f7c610d66565b5b5f610f8a85828601610db0565b9250506020610f9b85828601610db0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610fe957607f821691505b602082108103610ffc57610ffb610fa5565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61103982610dc4565b915061104483610dc4565b925082820190508082111561105c5761105b611002565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6110bc602583610ce0565b91506110c782611062565b604082019050919050565b5f6020820190508181035f8301526110e9816110b0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61114a602683610ce0565b9150611155826110f0565b604082019050919050565b5f6020820190508181035f8301526111778161113e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6111d8602483610ce0565b91506111e38261117e565b604082019050919050565b5f6020820190508181035f830152611205816111cc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611266602283610ce0565b91506112718261120c565b604082019050919050565b5f6020820190508181035f8301526112938161125a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6112ce601d83610ce0565b91506112d98261129a565b602082019050919050565b5f6020820190508181035f8301526112fb816112c2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61135c602583610ce0565b915061136782611302565b604082019050919050565b5f6020820190508181035f83015261138981611350565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6113ea602383610ce0565b91506113f582611390565b604082019050919050565b5f6020820190508181035f830152611417816113de565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611478602683610ce0565b91506114838261141e565b604082019050919050565b5f6020820190508181035f8301526114a58161146c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6114e0602083610ce0565b91506114eb826114ac565b602082019050919050565b5f6020820190508181035f83015261150d816114d4565b905091905056fea2646970667358221220c281c37a48339d1141ff4f25778a92c507635e65fad63e2915d629c9e2ab661f64736f6c634300081a0033
Deployed Bytecode Sourcemap
20294:149:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9317:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11677:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10446:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12458:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10288:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13128:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10617:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3293:103;;;:::i;:::-;;2652:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9536:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13869:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10950:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11206:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3551:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9317:100;9371:13;9404:5;9397:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9317:100;:::o;11677:201::-;11760:4;11777:13;11793:12;:10;:12::i;:::-;11777:28;;11816:32;11825:5;11832:7;11841:6;11816:8;:32::i;:::-;11866:4;11859:11;;;11677:201;;;;:::o;10446:108::-;10507:7;10534:12;;10527:19;;10446:108;:::o;12458:261::-;12555:4;12572:15;12590:12;:10;:12::i;:::-;12572:30;;12613:38;12629:4;12635:7;12644:6;12613:15;:38::i;:::-;12662:27;12672:4;12678:2;12682:6;12662:9;:27::i;:::-;12707:4;12700:11;;;12458:261;;;;;:::o;10288:93::-;10346:5;10371:2;10364:9;;10288:93;:::o;13128:238::-;13216:4;13233:13;13249:12;:10;:12::i;:::-;13233:28;;13272:64;13281:5;13288:7;13325:10;13297:25;13307:5;13314:7;13297:9;:25::i;:::-;:38;;;;:::i;:::-;13272:8;:64::i;:::-;13354:4;13347:11;;;13128:238;;;;:::o;10617:127::-;10691:7;10718:9;:18;10728:7;10718:18;;;;;;;;;;;;;;;;10711:25;;10617:127;;;:::o;3293:103::-;2538:13;:11;:13::i;:::-;3358:30:::1;3385:1;3358:18;:30::i;:::-;3293:103::o:0;2652:87::-;2698:7;2725:6;;;;;;;;;;;2718:13;;2652:87;:::o;9536:104::-;9592:13;9625:7;9618:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9536:104;:::o;13869:436::-;13962:4;13979:13;13995:12;:10;:12::i;:::-;13979:28;;14018:24;14045:25;14055:5;14062:7;14045:9;:25::i;:::-;14018:52;;14109:15;14089:16;:35;;14081:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14202:60;14211:5;14218:7;14246:15;14227:16;:34;14202:8;:60::i;:::-;14293:4;14286:11;;;;13869:436;;;;:::o;10950:193::-;11029:4;11046:13;11062:12;:10;:12::i;:::-;11046:28;;11085;11095:5;11102:2;11106:6;11085:9;:28::i;:::-;11131:4;11124:11;;;10950:193;;;;:::o;11206:151::-;11295:7;11322:11;:18;11334:5;11322:18;;;;;;;;;;;;;;;:27;11341:7;11322:27;;;;;;;;;;;;;;;;11315:34;;11206:151;;;;:::o;3551:201::-;2538:13;:11;:13::i;:::-;3660:1:::1;3640:22;;:8;:22;;::::0;3632:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3716:28;3735:8;3716:18;:28::i;:::-;3551:201:::0;:::o;1252:98::-;1305:7;1332:10;1325:17;;1252:98;:::o;17846:346::-;17965:1;17948:19;;:5;:19;;;17940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18046:1;18027:21;;:7;:21;;;18019:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18130:6;18100:11;:18;18112:5;18100:18;;;;;;;;;;;;;;;:27;18119:7;18100:27;;;;;;;;;;;;;;;:36;;;;18168:7;18152:32;;18161:5;18152:32;;;18177:6;18152:32;;;;;;:::i;:::-;;;;;;;;17846:346;;;:::o;18483:419::-;18584:24;18611:25;18621:5;18628:7;18611:9;:25::i;:::-;18584:52;;18671:17;18651:16;:37;18647:248;;18733:6;18713:16;:26;;18705:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18817:51;18826:5;18833:7;18861:6;18842:16;:25;18817:8;:51::i;:::-;18647:248;18573:329;18483:419;;;:::o;14775:798::-;14888:1;14872:18;;:4;:18;;;14864:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14965:1;14951:16;;:2;:16;;;14943:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15020:38;15041:4;15047:2;15051:6;15020:20;:38::i;:::-;15071:19;15093:9;:15;15103:4;15093:15;;;;;;;;;;;;;;;;15071:37;;15142:6;15127:11;:21;;15119:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15259:6;15245:11;:20;15227:9;:15;15237:4;15227:15;;;;;;;;;;;;;;;:38;;;;15454:6;15437:9;:13;15447:2;15437:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15504:2;15489:26;;15498:4;15489:26;;;15508:6;15489:26;;;;;;:::i;:::-;;;;;;;;15528:37;15548:4;15554:2;15558:6;15528:19;:37::i;:::-;14853:720;14775:798;;;:::o;2817:132::-;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2817:132::o;3912:191::-;3986:16;4005:6;;;;;;;;;;;3986:25;;4031:8;4022:6;;:17;;;;;;;;;;;;;;;;;;4086:8;4055:40;;4076:8;4055:40;;;;;;;;;;;;3975:128;3912:191;:::o;19502:91::-;;;;:::o;20197:90::-;;;;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:320;6143:6;6180:1;6174:4;6170:12;6160:22;;6227:1;6221:4;6217:12;6248:18;6238:81;;6304:4;6296:6;6292:17;6282:27;;6238:81;6366:2;6358:6;6355:14;6335:18;6332:38;6329:84;;6385:18;;:::i;:::-;6329:84;6150:269;6099:320;;;:::o;6425:180::-;6473:77;6470:1;6463:88;6570:4;6567:1;6560:15;6594:4;6591:1;6584:15;6611:191;6651:3;6670:20;6688:1;6670:20;:::i;:::-;6665:25;;6704:20;6722:1;6704:20;:::i;:::-;6699:25;;6747:1;6744;6740:9;6733:16;;6768:3;6765:1;6762:10;6759:36;;;6775:18;;:::i;:::-;6759:36;6611:191;;;;:::o;6808:224::-;6948:34;6944:1;6936:6;6932:14;6925:58;7017:7;7012:2;7004:6;7000:15;6993:32;6808:224;:::o;7038:366::-;7180:3;7201:67;7265:2;7260:3;7201:67;:::i;:::-;7194:74;;7277:93;7366:3;7277:93;:::i;:::-;7395:2;7390:3;7386:12;7379:19;;7038:366;;;:::o;7410:419::-;7576:4;7614:2;7603:9;7599:18;7591:26;;7663:9;7657:4;7653:20;7649:1;7638:9;7634:17;7627:47;7691:131;7817:4;7691:131;:::i;:::-;7683:139;;7410:419;;;:::o;7835:225::-;7975:34;7971:1;7963:6;7959:14;7952:58;8044:8;8039:2;8031:6;8027:15;8020:33;7835:225;:::o;8066:366::-;8208:3;8229:67;8293:2;8288:3;8229:67;:::i;:::-;8222:74;;8305:93;8394:3;8305:93;:::i;:::-;8423:2;8418:3;8414:12;8407:19;;8066:366;;;:::o;8438:419::-;8604:4;8642:2;8631:9;8627:18;8619:26;;8691:9;8685:4;8681:20;8677:1;8666:9;8662:17;8655:47;8719:131;8845:4;8719:131;:::i;:::-;8711:139;;8438:419;;;:::o;8863:223::-;9003:34;8999:1;8991:6;8987:14;8980:58;9072:6;9067:2;9059:6;9055:15;9048:31;8863:223;:::o;9092:366::-;9234:3;9255:67;9319:2;9314:3;9255:67;:::i;:::-;9248:74;;9331:93;9420:3;9331:93;:::i;:::-;9449:2;9444:3;9440:12;9433:19;;9092:366;;;:::o;9464:419::-;9630:4;9668:2;9657:9;9653:18;9645:26;;9717:9;9711:4;9707:20;9703:1;9692:9;9688:17;9681:47;9745:131;9871:4;9745:131;:::i;:::-;9737:139;;9464:419;;;:::o;9889:221::-;10029:34;10025:1;10017:6;10013:14;10006:58;10098:4;10093:2;10085:6;10081:15;10074:29;9889:221;:::o;10116:366::-;10258:3;10279:67;10343:2;10338:3;10279:67;:::i;:::-;10272:74;;10355:93;10444:3;10355:93;:::i;:::-;10473:2;10468:3;10464:12;10457:19;;10116:366;;;:::o;10488:419::-;10654:4;10692:2;10681:9;10677:18;10669:26;;10741:9;10735:4;10731:20;10727:1;10716:9;10712:17;10705:47;10769:131;10895:4;10769:131;:::i;:::-;10761:139;;10488:419;;;:::o;10913:179::-;11053:31;11049:1;11041:6;11037:14;11030:55;10913:179;:::o;11098:366::-;11240:3;11261:67;11325:2;11320:3;11261:67;:::i;:::-;11254:74;;11337:93;11426:3;11337:93;:::i;:::-;11455:2;11450:3;11446:12;11439:19;;11098:366;;;:::o;11470:419::-;11636:4;11674:2;11663:9;11659:18;11651:26;;11723:9;11717:4;11713:20;11709:1;11698:9;11694:17;11687:47;11751:131;11877:4;11751:131;:::i;:::-;11743:139;;11470:419;;;:::o;11895:224::-;12035:34;12031:1;12023:6;12019:14;12012:58;12104:7;12099:2;12091:6;12087:15;12080:32;11895:224;:::o;12125:366::-;12267:3;12288:67;12352:2;12347:3;12288:67;:::i;:::-;12281:74;;12364:93;12453:3;12364:93;:::i;:::-;12482:2;12477:3;12473:12;12466:19;;12125:366;;;:::o;12497:419::-;12663:4;12701:2;12690:9;12686:18;12678:26;;12750:9;12744:4;12740:20;12736:1;12725:9;12721:17;12714:47;12778:131;12904:4;12778:131;:::i;:::-;12770:139;;12497:419;;;:::o;12922:222::-;13062:34;13058:1;13050:6;13046:14;13039:58;13131:5;13126:2;13118:6;13114:15;13107:30;12922:222;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13150:366;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13522:419;;;:::o;13947:225::-;14087:34;14083:1;14075:6;14071:14;14064:58;14156:8;14151:2;14143:6;14139:15;14132:33;13947:225;:::o;14178:366::-;14320:3;14341:67;14405:2;14400:3;14341:67;:::i;:::-;14334:74;;14417:93;14506:3;14417:93;:::i;:::-;14535:2;14530:3;14526:12;14519:19;;14178:366;;;:::o;14550:419::-;14716:4;14754:2;14743:9;14739:18;14731:26;;14803:9;14797:4;14793:20;14789:1;14778:9;14774:17;14767:47;14831:131;14957:4;14831:131;:::i;:::-;14823:139;;14550:419;;;:::o;14975:182::-;15115:34;15111:1;15103:6;15099:14;15092:58;14975:182;:::o;15163:366::-;15305:3;15326:67;15390:2;15385:3;15326:67;:::i;:::-;15319:74;;15402:93;15491:3;15402:93;:::i;:::-;15520:2;15515:3;15511:12;15504:19;;15163:366;;;:::o;15535:419::-;15701:4;15739:2;15728:9;15724:18;15716:26;;15788:9;15782:4;15778:20;15774:1;15763:9;15759:17;15752:47;15816:131;15942:4;15816:131;:::i;:::-;15808:139;;15535:419;;;:::o
Swarm Source
ipfs://c281c37a48339d1141ff4f25778a92c507635e65fad63e2915d629c9e2ab661f
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.