ERC-20
Overview
Max Total Supply
69,000,000,000 MUSK
Holders
46
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
842,755,619.115180854383849935 MUSKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
MuskATears
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-05 */ /** * MuskATears is a meme project that tells the tale of a courageous blue baby bird named Tweeter * and her battle against the evil lords of Twitter-land. With the help of Elon Musk and the MuskATears, * Tweeter fights tirelessly against censorship and suppression, ultimately triumphing and ushering in a * new era of creativity, unity, and free expression. Join us in our quest for a censorship-free world! */ // Social media links: // Website: https://www.muskatears.com // Twitter: https://twitter.com/MuskATears // Follow us for memes, updates, and Elon Musk sightings! // Telegram: https://t.me/MuskATearsChat // Join our community of brave Tweeters and MuskATears! // Discord: https://discord.gg/MuskATears // Discuss the fight against censorship with like-minded individuals! // TikTok: https://www.tiktok.com/@muskatears1 // Watch our memes and join the fun! // Smart Contract: 0xe97b0De35ac2F4d0eA76a770871eb806f14400f1 // File: @openzeppelin/contracts/utils/Context.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts (last updated v4.8.0) (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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _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: * * - `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 {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: contracts/MuskATears.sol pragma solidity ^0.8.0; contract MuskATears is ERC20, ERC20Burnable, Ownable { // Set the initial supply of the token uint256 private constant INITIAL_SUPPLY = 69_000_000_000 * 10**18; /* Addresses for the founders, marketing, and community distribution * NOTE: For distribution info check: https://docs.muskatears.com/tokenomics/token-distribution * NOTE: LP allocations will stay in contract owners address to ensure buyback with fees and burn to zero address * NOTE: Hard coded address values based on tokenomics and distributed to early investors */ address private constant FOUNDERS_ADDRESS = 0x1A17bf5454319715912107354c1333A85BC348ef; address private constant MARKETING_ADDRESS = 0xF5bd78Bf36b89386B4952a6848846BBa35598F15; // Community Allocation Addresses address private constant COMMUNITY_ADDRESS_1 = 0x14bE8d726Eb8d53494B27481449bDADbA78fb3D0; // * 0.2 address private constant COMMUNITY_ADDRESS_2 = 0xDC9FCf69034bF5d30fb69a7ACB65ba2152667003; // * 1 address private constant COMMUNITY_ADDRESS_3 = 0x24E68e5450E8dB86764E671501cbC852C140cF30; // * 1 address private constant COMMUNITY_ADDRESS_4 = 0xD57876025d3D18C5062A93A32EEeaE0062c54738; // * 0.6 address private constant COMMUNITY_ADDRESS_5 = 0x7ecbb34675EEDFbd7e6963B3B8287263Ad1Fa1b9; // * 0.1 address private constant COMMUNITY_ADDRESS_6 = 0x9E38d4F7e7Cf7aF3f72E25351f9c15DeF6159284; // * 1 address private constant COMMUNITY_ADDRESS_7 = 0x26d1FCd0a4C9191D027E835F8CFFc2696758D00b; // * 1 address private constant COMMUNITY_ADDRESS_8 = 0x5151d0C66f3d20daff7a8deB05170fC3AF4D59D5; // * 0.2 address private constant COMMUNITY_ADDRESS_9 = 0x05E658aCf4d42597Ba94C29a3D4CaDCFB969bCE2; // * 0.6 address private constant COMMUNITY_ADDRESS_10 = 0x5b3a778B86ECE9530dF2195f24Ab0C5806ed4843; // * 0.4 address private constant COMMUNITY_ADDRESS_11 = 0x5151d0C66f3d20daff7a8deB05170fC3AF4D59D5; // * 0.1 address private constant COMMUNITY_ADDRESS_12 = 0x301d85Ea2aD782E28ca61872371b1FD436CD9beB; // * 1 address private constant COMMUNITY_ADDRESS_13 = 0x4d878F3CD729ae630D71f06b3e484f6bBE9786d0; // * 0.05 address private constant COMMUNITY_ADDRESS_14 = 0x71020fDf6FCcDC7f986017657BF94bE9A284a69d; // * 0.1 address private constant COMMUNITY_ADDRESS_15 = 0x06BbEf713837EDEBb823c4F2C9bdc06E75F1516C; // * 0.1 address private constant COMMUNITY_ADDRESS_16 = 0x0E518Ba6DD77Dc26667f7DAf8f6a6919BaE82bB5; // * 0.05 address private constant COMMUNITY_ADDRESS_17 = 0xD297D4472cc24DB4a7a012b37aE71021B946Fa31; // * 1 address private constant COMMUNITY_ADDRESS_18 = 0x5D8d946776d52cD8982eD8B9B086a5fBDc88a242; // * 1 address private constant COMMUNITY_ADDRESS_19 = 0xAc3ED66C5A0AF23F9776dC5292FaDaFF436757c9; // * 1 address private constant COMMUNITY_ADDRESS_20 = 0x0039aB273e02789Da6431f1176e379A0a0ef7f32; // * 0.05 address private constant COMMUNITY_ADDRESS_21 = 0x8FBCb2e4160a3675b889351B4fE58AeE23D1e88B; // * 1 address private constant COMMUNITY_ADDRESS_22 = 0x4A0169B4bA9c2014f0da9838C8eC8BedEfdDD223; // * 0.05 address private constant COMMUNITY_ADDRESS_23 = 0x4CEbE61E535144D88457F435a8022ADd308739f5; // * 0.4 from 2 transfer address private constant COMMUNITY_ADDRESS_24 = 0xf189156DA19f6943621C1C002A45CBc387ceb6d3; // * 0.7 from 2 transfers address private constant COMMUNITY_ADDRESS_25 = 0xE2Eb16C389326e99005802a2b7F4d556A5B1C629; // * 0.2 address private constant COMMUNITY_ADDRESS_26 = 0x2fAC78278206F1854dd7db405d8C4A6838F1066e; // * 0.1 address private constant COMMUNITY_ADDRESS_27 = 0x0492fF0471FFc333Cf5b798Ff8121cf93d1f4B8a; // * 0.1 address private constant COMMUNITY_ADDRESS_28 = 0xDe8dE160A7aa8DCFc0b711B77464F0a5BF32fd3F; // * 0.6 address private constant COMMUNITY_ADDRESS_29 = 0x6EF0b144cF25C53081b8a95b03219A1cd4f43ac0; // * 0.1 // Token amounts for the founders, marketing, and community distribution uint256 FOUNDERS_AMOUNT = 6_900_000_000 * 10 ** decimals(); uint256 MARKETING_AMOUNT = 2_070_000_000 * 10 ** decimals(); // Community Distribution = 47_610_000_000 uint256 COMMUNITY_DISTRIBUTION_TOTAL = 47_610_000_000 * 10 ** decimals(); // Calculation based on contribution uint256 COMMUNITY_DISTRIBUTION_1 = 3_450_000_000 * 10 ** decimals(); // 1 ETH = 5% uint256 COMMUNITY_DISTRIBUTION_0_7 = 2_415_000_000 * 10 ** decimals(); // 0.7 ETH = 3.5% uint256 COMMUNITY_DISTRIBUTION_0_6 = 2_070_000_000 * 10 ** decimals(); // 0.6 ETH = 3% uint256 COMMUNITY_DISTRIBUTION_0_4 = 1_380_000_000 * 10 ** decimals(); // 0.4 ETH = 2% uint256 COMMUNITY_DISTRIBUTION_0_2 = 690_000_000 * 10 ** decimals(); // 0.2 ETH = 1% uint256 COMMUNITY_DISTRIBUTION_0_1 = 345_000_000 * 10 ** decimals(); // 0.1 ETH = 0.5% uint256 COMMUNITY_DISTRIBUTION_0_05 = 172_500_000 * 10 ** decimals(); // 0.05ETH = 0.25% /** * @dev Constructor that mints the initial supply of the token and distributes it to the founders * and marketing addresses. */ constructor() ERC20("MuskATears", "MUSK") { _mint(msg.sender, INITIAL_SUPPLY); _transfer(msg.sender, FOUNDERS_ADDRESS, FOUNDERS_AMOUNT); _transfer(msg.sender, MARKETING_ADDRESS, MARKETING_AMOUNT); } /** * @dev Function that distributes the community distribution portion of the token supply to the specified wallet address. * Can only be called by the contract owner. */ function distributeTokens() external onlyOwner { // Check if the tokens have already been distributed uint256 supply = balanceOf(msg.sender); require(supply >= COMMUNITY_DISTRIBUTION_TOTAL, "Tokens already distributed"); // Transfer the tokens to the community address _transfer(msg.sender, COMMUNITY_ADDRESS_1, COMMUNITY_DISTRIBUTION_0_2); // * 0.2 _transfer(msg.sender, COMMUNITY_ADDRESS_2, COMMUNITY_DISTRIBUTION_1); // * 1 _transfer(msg.sender, COMMUNITY_ADDRESS_3, COMMUNITY_DISTRIBUTION_1); // * 1 _transfer(msg.sender, COMMUNITY_ADDRESS_4, COMMUNITY_DISTRIBUTION_0_6); // * 0.6 _transfer(msg.sender, COMMUNITY_ADDRESS_5, COMMUNITY_DISTRIBUTION_0_1); // * 0.1 _transfer(msg.sender, COMMUNITY_ADDRESS_6, COMMUNITY_DISTRIBUTION_1); // * 1 _transfer(msg.sender, COMMUNITY_ADDRESS_7, COMMUNITY_DISTRIBUTION_1); // * 1 _transfer(msg.sender, COMMUNITY_ADDRESS_8, COMMUNITY_DISTRIBUTION_0_2); // * 0.2 _transfer(msg.sender, COMMUNITY_ADDRESS_9, COMMUNITY_DISTRIBUTION_0_6); // * 0.6 _transfer(msg.sender, COMMUNITY_ADDRESS_10, COMMUNITY_DISTRIBUTION_0_4); // * 0.4 _transfer(msg.sender, COMMUNITY_ADDRESS_11, COMMUNITY_DISTRIBUTION_0_1); // * 0.1 _transfer(msg.sender, COMMUNITY_ADDRESS_12, COMMUNITY_DISTRIBUTION_1); // * 1 _transfer(msg.sender, COMMUNITY_ADDRESS_13, COMMUNITY_DISTRIBUTION_0_05); // * 0.05 _transfer(msg.sender, COMMUNITY_ADDRESS_14, COMMUNITY_DISTRIBUTION_0_1); // * 0.1 _transfer(msg.sender, COMMUNITY_ADDRESS_15, COMMUNITY_DISTRIBUTION_0_1); // * 0.1 _transfer(msg.sender, COMMUNITY_ADDRESS_16, COMMUNITY_DISTRIBUTION_0_05); // * 0.05 _transfer(msg.sender, COMMUNITY_ADDRESS_17, COMMUNITY_DISTRIBUTION_1); // * 1 _transfer(msg.sender, COMMUNITY_ADDRESS_18, COMMUNITY_DISTRIBUTION_1); // * 1 _transfer(msg.sender, COMMUNITY_ADDRESS_19, COMMUNITY_DISTRIBUTION_1); // * 1 _transfer(msg.sender, COMMUNITY_ADDRESS_20, COMMUNITY_DISTRIBUTION_0_05); // * 0.05 _transfer(msg.sender, COMMUNITY_ADDRESS_21, COMMUNITY_DISTRIBUTION_1); // * 1 _transfer(msg.sender, COMMUNITY_ADDRESS_22, COMMUNITY_DISTRIBUTION_0_05); // * 0.05 _transfer(msg.sender, COMMUNITY_ADDRESS_23, COMMUNITY_DISTRIBUTION_0_4); // * 0.4 _transfer(msg.sender, COMMUNITY_ADDRESS_24, COMMUNITY_DISTRIBUTION_0_7); // * 0.7 _transfer(msg.sender, COMMUNITY_ADDRESS_25, COMMUNITY_DISTRIBUTION_0_2); // * 0.2 _transfer(msg.sender, COMMUNITY_ADDRESS_26, COMMUNITY_DISTRIBUTION_0_1); // * 0.1 _transfer(msg.sender, COMMUNITY_ADDRESS_27, COMMUNITY_DISTRIBUTION_0_1); // * 0.1 _transfer(msg.sender, COMMUNITY_ADDRESS_28, COMMUNITY_DISTRIBUTION_0_6); // * 0.6 _transfer(msg.sender, COMMUNITY_ADDRESS_29, COMMUNITY_DISTRIBUTION_0_1); // * 0.1 } }
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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[],"name":"distributeTokens","outputs":[],"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
6080604052620000146200033060201b60201c565b600a620000229190620009a9565b64019b45a500620000349190620009fa565b600655620000476200033060201b60201c565b600a620000559190620009a9565b637b61b180620000669190620009fa565b600755620000796200033060201b60201c565b600a620000879190620009a9565b640b15c6f280620000999190620009fa565b600855620000ac6200033060201b60201c565b600a620000ba9190620009a9565b63cda2d280620000cb9190620009fa565b600955620000de6200033060201b60201c565b600a620000ec9190620009a9565b638ff1f9c0620000fd9190620009fa565b600a55620001106200033060201b60201c565b600a6200011e9190620009a9565b637b61b1806200012f9190620009fa565b600b55620001426200033060201b60201c565b600a620001509190620009a9565b6352412100620001619190620009fa565b600c55620001746200033060201b60201c565b600a620001829190620009a9565b6329209080620001939190620009fa565b600d55620001a66200033060201b60201c565b600a620001b49190620009a9565b6314904840620001c59190620009fa565b600e55620001d86200033060201b60201c565b600a620001e69190620009a9565b630a482420620001f79190620009fa565b600f553480156200020757600080fd5b506040518060400160405280600a81526020017f4d75736b415465617273000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d55534b00000000000000000000000000000000000000000000000000000000815250816003908162000285919062000cb5565b50806004908162000297919062000cb5565b505050620002ba620002ae6200033960201b60201c565b6200034160201b60201c565b620002d8336bdef376571332906a880000006200040760201b60201c565b6200030133731a17bf5454319715912107354c1333a85bc348ef6006546200057460201b60201c565b6200032a3373f5bd78bf36b89386b4952a6848846bba35598f156007546200057460201b60201c565b62001050565b60006012905090565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000479576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004709062000dfd565b60405180910390fd5b6200048d600083836200080560201b60201c565b8060026000828254620004a1919062000e1f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000554919062000e6b565b60405180910390a362000570600083836200080a60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620005e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005dd9062000efe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000658576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064f9062000f96565b60405180910390fd5b6200066b8383836200080560201b60201c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620006f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006eb906200102e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051620007e4919062000e6b565b60405180910390a3620007ff8484846200080a60201b60201c565b50505050565b505050565b505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200089d578086048111156200087557620008746200080f565b5b6001851615620008855780820291505b808102905062000895856200083e565b945062000855565b94509492505050565b600082620008b857600190506200098b565b81620008c857600090506200098b565b8160018114620008e15760028114620008ec5762000922565b60019150506200098b565b60ff8411156200090157620009006200080f565b5b8360020a9150848211156200091b576200091a6200080f565b5b506200098b565b5060208310610133831016604e8410600b84101617156200095c5782820a9050838111156200095657620009556200080f565b5b6200098b565b6200096b84848460016200084b565b925090508184048111156200098557620009846200080f565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620009b68262000992565b9150620009c3836200099c565b9250620009f27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620008a6565b905092915050565b600062000a078262000992565b915062000a148362000992565b925082820262000a248162000992565b9150828204841483151762000a3e5762000a3d6200080f565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ac757607f821691505b60208210810362000add5762000adc62000a7f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b477fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b08565b62000b53868362000b08565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b9662000b9062000b8a8462000992565b62000b6b565b62000992565b9050919050565b6000819050919050565b62000bb28362000b75565b62000bca62000bc18262000b9d565b84845462000b15565b825550505050565b600090565b62000be162000bd2565b62000bee81848462000ba7565b505050565b5b8181101562000c165762000c0a60008262000bd7565b60018101905062000bf4565b5050565b601f82111562000c655762000c2f8162000ae3565b62000c3a8462000af8565b8101602085101562000c4a578190505b62000c6262000c598562000af8565b83018262000bf3565b50505b505050565b600082821c905092915050565b600062000c8a6000198460080262000c6a565b1980831691505092915050565b600062000ca5838362000c77565b9150826002028217905092915050565b62000cc08262000a45565b67ffffffffffffffff81111562000cdc5762000cdb62000a50565b5b62000ce8825462000aae565b62000cf582828562000c1a565b600060209050601f83116001811462000d2d576000841562000d18578287015190505b62000d24858262000c97565b86555062000d94565b601f19841662000d3d8662000ae3565b60005b8281101562000d675784890151825560018201915060208501945060208101905062000d40565b8683101562000d87578489015162000d83601f89168262000c77565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000de5601f8362000d9c565b915062000df28262000dad565b602082019050919050565b6000602082019050818103600083015262000e188162000dd6565b9050919050565b600062000e2c8262000992565b915062000e398362000992565b925082820190508082111562000e545762000e536200080f565b5b92915050565b62000e658162000992565b82525050565b600060208201905062000e82600083018462000e5a565b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062000ee660258362000d9c565b915062000ef38262000e88565b604082019050919050565b6000602082019050818103600083015262000f198162000ed7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600062000f7e60238362000d9c565b915062000f8b8262000f20565b604082019050919050565b6000602082019050818103600083015262000fb18162000f6f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006200101660268362000d9c565b9150620010238262000fb8565b604082019050919050565b60006020820190508181036000830152620010498162001007565b9050919050565b611e1b80620010606000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a25780639ab1b484116100715780639ab1b484146102a8578063a457c2d7146102b2578063a9059cbb146102e2578063dd62ed3e14610312578063f2fde38b146103425761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611413565b60405180910390f35b610148600480360381019061014391906114ce565b6103f0565b6040516101559190611529565b60405180910390f35b610166610413565b6040516101739190611553565b60405180910390f35b6101966004803603810190610191919061156e565b61041d565b6040516101a39190611529565b60405180910390f35b6101b461044c565b6040516101c191906115dd565b60405180910390f35b6101e460048036038101906101df91906114ce565b610455565b6040516101f19190611529565b60405180910390f35b610214600480360381019061020f91906115f8565b61048c565b005b610230600480360381019061022b9190611625565b6104a0565b60405161023d9190611553565b60405180910390f35b61024e6104e8565b005b61026a600480360381019061026591906114ce565b6104fc565b005b61027461051c565b6040516102819190611661565b60405180910390f35b610292610546565b60405161029f9190611413565b60405180910390f35b6102b06105d8565b005b6102cc60048036038101906102c791906114ce565b6109f1565b6040516102d99190611529565b60405180910390f35b6102fc60048036038101906102f791906114ce565b610a68565b6040516103099190611529565b60405180910390f35b61032c6004803603810190610327919061167c565b610a8b565b6040516103399190611553565b60405180910390f35b61035c60048036038101906103579190611625565b610b12565b005b60606003805461036d906116eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610399906116eb565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b6000806103fb610b95565b9050610408818585610b9d565b600191505092915050565b6000600254905090565b600080610428610b95565b9050610435858285610d66565b610440858585610df2565b60019150509392505050565b60006012905090565b600080610460610b95565b90506104818185856104728589610a8b565b61047c919061174b565b610b9d565b600191505092915050565b61049d610497610b95565b82611068565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104f0611235565b6104fa60006112b3565b565b61050e82610508610b95565b83610d66565b6105188282611068565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610555906116eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610581906116eb565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b6105e0611235565b60006105eb336104a0565b9050600854811015610632576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610629906117cb565b60405180910390fd5b610653337314be8d726eb8d53494b27481449bdadba78fb3d0600d54610df2565b6106743373dc9fcf69034bf5d30fb69a7acb65ba2152667003600954610df2565b610695337324e68e5450e8db86764e671501cbc852c140cf30600954610df2565b6106b63373d57876025d3d18c5062a93a32eeeae0062c54738600b54610df2565b6106d733737ecbb34675eedfbd7e6963b3b8287263ad1fa1b9600e54610df2565b6106f833739e38d4f7e7cf7af3f72e25351f9c15def6159284600954610df2565b610719337326d1fcd0a4c9191d027e835f8cffc2696758d00b600954610df2565b61073a33735151d0c66f3d20daff7a8deb05170fc3af4d59d5600d54610df2565b61075b337305e658acf4d42597ba94c29a3d4cadcfb969bce2600b54610df2565b61077c33735b3a778b86ece9530df2195f24ab0c5806ed4843600c54610df2565b61079d33735151d0c66f3d20daff7a8deb05170fc3af4d59d5600e54610df2565b6107be3373301d85ea2ad782e28ca61872371b1fd436cd9beb600954610df2565b6107df33734d878f3cd729ae630d71f06b3e484f6bbe9786d0600f54610df2565b610800337371020fdf6fccdc7f986017657bf94be9a284a69d600e54610df2565b610821337306bbef713837edebb823c4f2c9bdc06e75f1516c600e54610df2565b61084233730e518ba6dd77dc26667f7daf8f6a6919bae82bb5600f54610df2565b6108633373d297d4472cc24db4a7a012b37ae71021b946fa31600954610df2565b61088433735d8d946776d52cd8982ed8b9b086a5fbdc88a242600954610df2565b6108a53373ac3ed66c5a0af23f9776dc5292fadaff436757c9600954610df2565b6108c5337239ab273e02789da6431f1176e379a0a0ef7f32600f54610df2565b6108e633738fbcb2e4160a3675b889351b4fe58aee23d1e88b600954610df2565b61090733734a0169b4ba9c2014f0da9838c8ec8bedefddd223600f54610df2565b61092833734cebe61e535144d88457f435a8022add308739f5600c54610df2565b6109493373f189156da19f6943621c1c002a45cbc387ceb6d3600a54610df2565b61096a3373e2eb16c389326e99005802a2b7f4d556a5b1c629600d54610df2565b61098b33732fac78278206f1854dd7db405d8c4a6838f1066e600e54610df2565b6109ac33730492ff0471ffc333cf5b798ff8121cf93d1f4b8a600e54610df2565b6109cd3373de8de160a7aa8dcfc0b711b77464f0a5bf32fd3f600b54610df2565b6109ee33736ef0b144cf25c53081b8a95b03219a1cd4f43ac0600e54610df2565b50565b6000806109fc610b95565b90506000610a0a8286610a8b565b905083811015610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a469061185d565b60405180910390fd5b610a5c8286868403610b9d565b60019250505092915050565b600080610a73610b95565b9050610a80818585610df2565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b1a611235565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b80906118ef565b60405180910390fd5b610b92816112b3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0390611981565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290611a13565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d599190611553565b60405180910390a3505050565b6000610d728484610a8b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dec5781811015610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590611a7f565b60405180910390fd5b610deb8484848403610b9d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890611b11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790611ba3565b60405180910390fd5b610edb838383611379565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890611c35565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161104f9190611553565b60405180910390a361106284848461137e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90611cc7565b60405180910390fd5b6110e382600083611379565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116090611d59565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161121c9190611553565b60405180910390a36112308360008461137e565b505050565b61123d610b95565b73ffffffffffffffffffffffffffffffffffffffff1661125b61051c565b73ffffffffffffffffffffffffffffffffffffffff16146112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890611dc5565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113bd5780820151818401526020810190506113a2565b60008484015250505050565b6000601f19601f8301169050919050565b60006113e582611383565b6113ef818561138e565b93506113ff81856020860161139f565b611408816113c9565b840191505092915050565b6000602082019050818103600083015261142d81846113da565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114658261143a565b9050919050565b6114758161145a565b811461148057600080fd5b50565b6000813590506114928161146c565b92915050565b6000819050919050565b6114ab81611498565b81146114b657600080fd5b50565b6000813590506114c8816114a2565b92915050565b600080604083850312156114e5576114e4611435565b5b60006114f385828601611483565b9250506020611504858286016114b9565b9150509250929050565b60008115159050919050565b6115238161150e565b82525050565b600060208201905061153e600083018461151a565b92915050565b61154d81611498565b82525050565b60006020820190506115686000830184611544565b92915050565b60008060006060848603121561158757611586611435565b5b600061159586828701611483565b93505060206115a686828701611483565b92505060406115b7868287016114b9565b9150509250925092565b600060ff82169050919050565b6115d7816115c1565b82525050565b60006020820190506115f260008301846115ce565b92915050565b60006020828403121561160e5761160d611435565b5b600061161c848285016114b9565b91505092915050565b60006020828403121561163b5761163a611435565b5b600061164984828501611483565b91505092915050565b61165b8161145a565b82525050565b60006020820190506116766000830184611652565b92915050565b6000806040838503121561169357611692611435565b5b60006116a185828601611483565b92505060206116b285828601611483565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061170357607f821691505b602082108103611716576117156116bc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061175682611498565b915061176183611498565b92508282019050808211156117795761177861171c565b5b92915050565b7f546f6b656e7320616c7265616479206469737472696275746564000000000000600082015250565b60006117b5601a8361138e565b91506117c08261177f565b602082019050919050565b600060208201905081810360008301526117e4816117a8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061184760258361138e565b9150611852826117eb565b604082019050919050565b600060208201905081810360008301526118768161183a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118d960268361138e565b91506118e48261187d565b604082019050919050565b60006020820190508181036000830152611908816118cc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061196b60248361138e565b91506119768261190f565b604082019050919050565b6000602082019050818103600083015261199a8161195e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006119fd60228361138e565b9150611a08826119a1565b604082019050919050565b60006020820190508181036000830152611a2c816119f0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a69601d8361138e565b9150611a7482611a33565b602082019050919050565b60006020820190508181036000830152611a9881611a5c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611afb60258361138e565b9150611b0682611a9f565b604082019050919050565b60006020820190508181036000830152611b2a81611aee565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b8d60238361138e565b9150611b9882611b31565b604082019050919050565b60006020820190508181036000830152611bbc81611b80565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c1f60268361138e565b9150611c2a82611bc3565b604082019050919050565b60006020820190508181036000830152611c4e81611c12565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cb160218361138e565b9150611cbc82611c55565b604082019050919050565b60006020820190508181036000830152611ce081611ca4565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d4360228361138e565b9150611d4e82611ce7565b604082019050919050565b60006020820190508181036000830152611d7281611d36565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611daf60208361138e565b9150611dba82611d79565b602082019050919050565b60006020820190508181036000830152611dde81611da2565b905091905056fea2646970667358221220cc86b7b950f4f76a8bc1fac32be49422f4860945f4f88166ff42b28bc095d82564736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a25780639ab1b484116100715780639ab1b484146102a8578063a457c2d7146102b2578063a9059cbb146102e2578063dd62ed3e14610312578063f2fde38b146103425761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611413565b60405180910390f35b610148600480360381019061014391906114ce565b6103f0565b6040516101559190611529565b60405180910390f35b610166610413565b6040516101739190611553565b60405180910390f35b6101966004803603810190610191919061156e565b61041d565b6040516101a39190611529565b60405180910390f35b6101b461044c565b6040516101c191906115dd565b60405180910390f35b6101e460048036038101906101df91906114ce565b610455565b6040516101f19190611529565b60405180910390f35b610214600480360381019061020f91906115f8565b61048c565b005b610230600480360381019061022b9190611625565b6104a0565b60405161023d9190611553565b60405180910390f35b61024e6104e8565b005b61026a600480360381019061026591906114ce565b6104fc565b005b61027461051c565b6040516102819190611661565b60405180910390f35b610292610546565b60405161029f9190611413565b60405180910390f35b6102b06105d8565b005b6102cc60048036038101906102c791906114ce565b6109f1565b6040516102d99190611529565b60405180910390f35b6102fc60048036038101906102f791906114ce565b610a68565b6040516103099190611529565b60405180910390f35b61032c6004803603810190610327919061167c565b610a8b565b6040516103399190611553565b60405180910390f35b61035c60048036038101906103579190611625565b610b12565b005b60606003805461036d906116eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610399906116eb565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b6000806103fb610b95565b9050610408818585610b9d565b600191505092915050565b6000600254905090565b600080610428610b95565b9050610435858285610d66565b610440858585610df2565b60019150509392505050565b60006012905090565b600080610460610b95565b90506104818185856104728589610a8b565b61047c919061174b565b610b9d565b600191505092915050565b61049d610497610b95565b82611068565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104f0611235565b6104fa60006112b3565b565b61050e82610508610b95565b83610d66565b6105188282611068565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610555906116eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610581906116eb565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b6105e0611235565b60006105eb336104a0565b9050600854811015610632576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610629906117cb565b60405180910390fd5b610653337314be8d726eb8d53494b27481449bdadba78fb3d0600d54610df2565b6106743373dc9fcf69034bf5d30fb69a7acb65ba2152667003600954610df2565b610695337324e68e5450e8db86764e671501cbc852c140cf30600954610df2565b6106b63373d57876025d3d18c5062a93a32eeeae0062c54738600b54610df2565b6106d733737ecbb34675eedfbd7e6963b3b8287263ad1fa1b9600e54610df2565b6106f833739e38d4f7e7cf7af3f72e25351f9c15def6159284600954610df2565b610719337326d1fcd0a4c9191d027e835f8cffc2696758d00b600954610df2565b61073a33735151d0c66f3d20daff7a8deb05170fc3af4d59d5600d54610df2565b61075b337305e658acf4d42597ba94c29a3d4cadcfb969bce2600b54610df2565b61077c33735b3a778b86ece9530df2195f24ab0c5806ed4843600c54610df2565b61079d33735151d0c66f3d20daff7a8deb05170fc3af4d59d5600e54610df2565b6107be3373301d85ea2ad782e28ca61872371b1fd436cd9beb600954610df2565b6107df33734d878f3cd729ae630d71f06b3e484f6bbe9786d0600f54610df2565b610800337371020fdf6fccdc7f986017657bf94be9a284a69d600e54610df2565b610821337306bbef713837edebb823c4f2c9bdc06e75f1516c600e54610df2565b61084233730e518ba6dd77dc26667f7daf8f6a6919bae82bb5600f54610df2565b6108633373d297d4472cc24db4a7a012b37ae71021b946fa31600954610df2565b61088433735d8d946776d52cd8982ed8b9b086a5fbdc88a242600954610df2565b6108a53373ac3ed66c5a0af23f9776dc5292fadaff436757c9600954610df2565b6108c5337239ab273e02789da6431f1176e379a0a0ef7f32600f54610df2565b6108e633738fbcb2e4160a3675b889351b4fe58aee23d1e88b600954610df2565b61090733734a0169b4ba9c2014f0da9838c8ec8bedefddd223600f54610df2565b61092833734cebe61e535144d88457f435a8022add308739f5600c54610df2565b6109493373f189156da19f6943621c1c002a45cbc387ceb6d3600a54610df2565b61096a3373e2eb16c389326e99005802a2b7f4d556a5b1c629600d54610df2565b61098b33732fac78278206f1854dd7db405d8c4a6838f1066e600e54610df2565b6109ac33730492ff0471ffc333cf5b798ff8121cf93d1f4b8a600e54610df2565b6109cd3373de8de160a7aa8dcfc0b711b77464f0a5bf32fd3f600b54610df2565b6109ee33736ef0b144cf25c53081b8a95b03219a1cd4f43ac0600e54610df2565b50565b6000806109fc610b95565b90506000610a0a8286610a8b565b905083811015610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a469061185d565b60405180910390fd5b610a5c8286868403610b9d565b60019250505092915050565b600080610a73610b95565b9050610a80818585610df2565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b1a611235565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b80906118ef565b60405180910390fd5b610b92816112b3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0390611981565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290611a13565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d599190611553565b60405180910390a3505050565b6000610d728484610a8b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dec5781811015610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590611a7f565b60405180910390fd5b610deb8484848403610b9d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890611b11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790611ba3565b60405180910390fd5b610edb838383611379565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890611c35565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161104f9190611553565b60405180910390a361106284848461137e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90611cc7565b60405180910390fd5b6110e382600083611379565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116090611d59565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161121c9190611553565b60405180910390a36112308360008461137e565b505050565b61123d610b95565b73ffffffffffffffffffffffffffffffffffffffff1661125b61051c565b73ffffffffffffffffffffffffffffffffffffffff16146112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890611dc5565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113bd5780820151818401526020810190506113a2565b60008484015250505050565b6000601f19601f8301169050919050565b60006113e582611383565b6113ef818561138e565b93506113ff81856020860161139f565b611408816113c9565b840191505092915050565b6000602082019050818103600083015261142d81846113da565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114658261143a565b9050919050565b6114758161145a565b811461148057600080fd5b50565b6000813590506114928161146c565b92915050565b6000819050919050565b6114ab81611498565b81146114b657600080fd5b50565b6000813590506114c8816114a2565b92915050565b600080604083850312156114e5576114e4611435565b5b60006114f385828601611483565b9250506020611504858286016114b9565b9150509250929050565b60008115159050919050565b6115238161150e565b82525050565b600060208201905061153e600083018461151a565b92915050565b61154d81611498565b82525050565b60006020820190506115686000830184611544565b92915050565b60008060006060848603121561158757611586611435565b5b600061159586828701611483565b93505060206115a686828701611483565b92505060406115b7868287016114b9565b9150509250925092565b600060ff82169050919050565b6115d7816115c1565b82525050565b60006020820190506115f260008301846115ce565b92915050565b60006020828403121561160e5761160d611435565b5b600061161c848285016114b9565b91505092915050565b60006020828403121561163b5761163a611435565b5b600061164984828501611483565b91505092915050565b61165b8161145a565b82525050565b60006020820190506116766000830184611652565b92915050565b6000806040838503121561169357611692611435565b5b60006116a185828601611483565b92505060206116b285828601611483565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061170357607f821691505b602082108103611716576117156116bc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061175682611498565b915061176183611498565b92508282019050808211156117795761177861171c565b5b92915050565b7f546f6b656e7320616c7265616479206469737472696275746564000000000000600082015250565b60006117b5601a8361138e565b91506117c08261177f565b602082019050919050565b600060208201905081810360008301526117e4816117a8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061184760258361138e565b9150611852826117eb565b604082019050919050565b600060208201905081810360008301526118768161183a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118d960268361138e565b91506118e48261187d565b604082019050919050565b60006020820190508181036000830152611908816118cc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061196b60248361138e565b91506119768261190f565b604082019050919050565b6000602082019050818103600083015261199a8161195e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006119fd60228361138e565b9150611a08826119a1565b604082019050919050565b60006020820190508181036000830152611a2c816119f0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a69601d8361138e565b9150611a7482611a33565b602082019050919050565b60006020820190508181036000830152611a9881611a5c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611afb60258361138e565b9150611b0682611a9f565b604082019050919050565b60006020820190508181036000830152611b2a81611aee565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b8d60238361138e565b9150611b9882611b31565b604082019050919050565b60006020820190508181036000830152611bbc81611b80565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c1f60268361138e565b9150611c2a82611bc3565b604082019050919050565b60006020820190508181036000830152611c4e81611c12565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cb160218361138e565b9150611cbc82611c55565b604082019050919050565b60006020820190508181036000830152611ce081611ca4565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d4360228361138e565b9150611d4e82611ce7565b604082019050919050565b60006020820190508181036000830152611d7281611d36565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611daf60208361138e565b9150611dba82611d79565b602082019050919050565b60006020820190508181036000830152611dde81611da2565b905091905056fea2646970667358221220cc86b7b950f4f76a8bc1fac32be49422f4860945f4f88166ff42b28bc095d82564736f6c63430008120033
Deployed Bytecode Sourcemap
22787:8419:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10367:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12718:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11487:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13499:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11329:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14203:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22138:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11658:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3792:103;;;:::i;:::-;;22548:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3144:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10586:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28290:2913;;;:::i;:::-;;14944:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11991:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12247:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4050:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10367:100;10421:13;10454:5;10447:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10367:100;:::o;12718:201::-;12801:4;12818:13;12834:12;:10;:12::i;:::-;12818:28;;12857:32;12866:5;12873:7;12882:6;12857:8;:32::i;:::-;12907:4;12900:11;;;12718:201;;;;:::o;11487:108::-;11548:7;11575:12;;11568:19;;11487:108;:::o;13499:295::-;13630:4;13647:15;13665:12;:10;:12::i;:::-;13647:30;;13688:38;13704:4;13710:7;13719:6;13688:15;:38::i;:::-;13737:27;13747:4;13753:2;13757:6;13737:9;:27::i;:::-;13782:4;13775:11;;;13499:295;;;;;:::o;11329:93::-;11387:5;11412:2;11405:9;;11329:93;:::o;14203:238::-;14291:4;14308:13;14324:12;:10;:12::i;:::-;14308:28;;14347:64;14356:5;14363:7;14400:10;14372:25;14382:5;14389:7;14372:9;:25::i;:::-;:38;;;;:::i;:::-;14347:8;:64::i;:::-;14429:4;14422:11;;;14203:238;;;;:::o;22138:91::-;22194:27;22200:12;:10;:12::i;:::-;22214:6;22194:5;:27::i;:::-;22138:91;:::o;11658:127::-;11732:7;11759:9;:18;11769:7;11759:18;;;;;;;;;;;;;;;;11752:25;;11658:127;;;:::o;3792:103::-;3030:13;:11;:13::i;:::-;3857:30:::1;3884:1;3857:18;:30::i;:::-;3792:103::o:0;22548:164::-;22625:46;22641:7;22650:12;:10;:12::i;:::-;22664:6;22625:15;:46::i;:::-;22682:22;22688:7;22697:6;22682:5;:22::i;:::-;22548:164;;:::o;3144:87::-;3190:7;3217:6;;;;;;;;;;;3210:13;;3144:87;:::o;10586:104::-;10642:13;10675:7;10668:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10586:104;:::o;28290:2913::-;3030:13;:11;:13::i;:::-;28410:14:::1;28427:21;28437:10;28427:9;:21::i;:::-;28410:38;;28477:28;;28467:6;:38;;28459:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;28604:70;28614:10;23633:42;28647:26;;28604:9;:70::i;:::-;28694:68;28704:10;23738:42;28737:24;;28694:9;:68::i;:::-;28780;28790:10;23841:42;28823:24;;28780:9;:68::i;:::-;28866:70;28876:10;23944:42;28909:26;;28866:9;:70::i;:::-;28956;28966:10;24049:42;28999:26;;28956:9;:70::i;:::-;29046:68;29056:10;24154:42;29089:24;;29046:9;:68::i;:::-;29132;29142:10;24257:42;29175:24;;29132:9;:68::i;:::-;29218:70;29228:10;24361:42;29261:26;;29218:9;:70::i;:::-;29308;29318:10;24466:42;29351:26;;29308:9;:70::i;:::-;29398:71;29408:10;24572:42;29442:26;;29398:9;:71::i;:::-;29489;29499:10;24678:42;29533:26;;29489:9;:71::i;:::-;29580:69;29590:10;24784:42;29624:24;;29580:9;:69::i;:::-;29667:72;29677:10;24888:42;29711:27;;29667:9;:72::i;:::-;29760:71;29770:10;24995:42;29804:26;;29760:9;:71::i;:::-;29851;29861:10;25101:42;29895:26;;29851:9;:71::i;:::-;29942:72;29952:10;25207:42;29986:27;;29942:9;:72::i;:::-;30035:69;30045:10;25314:42;30079:24;;30035:9;:69::i;:::-;30122;30132:10;25418:42;30166:24;;30122:9;:69::i;:::-;30209;30219:10;25522:42;30253:24;;30209:9;:69::i;:::-;30296:72;30306:10;25626:42;30340:27;;30296:9;:72::i;:::-;30389:69;30399:10;25733:42;30433:24;;30389:9;:69::i;:::-;30476:72;30486:10;25837:42;30520:27;;30476:9;:72::i;:::-;30569:71;30579:10;25944:42;30613:26;;30569:9;:71::i;:::-;30660;30670:10;26066:42;30704:26;;30660:9;:71::i;:::-;30751;30761:10;26189:42;30795:26;;30751:9;:71::i;:::-;30842;30852:10;26295:42;30886:26;;30842:9;:71::i;:::-;30933;30943:10;26401:42;30977:26;;30933:9;:71::i;:::-;31024;31034:10;26507:42;31068:26;;31024:9;:71::i;:::-;31115;31125:10;26613:42;31159:26;;31115:9;:71::i;:::-;28337:2866;28290:2913::o:0;14944:436::-;15037:4;15054:13;15070:12;:10;:12::i;:::-;15054:28;;15093:24;15120:25;15130:5;15137:7;15120:9;:25::i;:::-;15093:52;;15184:15;15164:16;:35;;15156:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15277:60;15286:5;15293:7;15321:15;15302:16;:34;15277:8;:60::i;:::-;15368:4;15361:11;;;;14944:436;;;;:::o;11991:193::-;12070:4;12087:13;12103:12;:10;:12::i;:::-;12087:28;;12126;12136:5;12143:2;12147:6;12126:9;:28::i;:::-;12172:4;12165:11;;;11991:193;;;;:::o;12247:151::-;12336:7;12363:11;:18;12375:5;12363:18;;;;;;;;;;;;;;;:27;12382:7;12363:27;;;;;;;;;;;;;;;;12356:34;;12247:151;;;;:::o;4050:201::-;3030:13;:11;:13::i;:::-;4159:1:::1;4139:22;;:8;:22;;::::0;4131:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4215:28;4234:8;4215:18;:28::i;:::-;4050:201:::0;:::o;1695:98::-;1748:7;1775:10;1768:17;;1695:98;:::o;18971:380::-;19124:1;19107:19;;:5;:19;;;19099:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19205:1;19186:21;;:7;:21;;;19178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19289:6;19259:11;:18;19271:5;19259:18;;;;;;;;;;;;;;;:27;19278:7;19259:27;;;;;;;;;;;;;;;:36;;;;19327:7;19311:32;;19320:5;19311:32;;;19336:6;19311:32;;;;;;:::i;:::-;;;;;;;;18971:380;;;:::o;19642:453::-;19777:24;19804:25;19814:5;19821:7;19804:9;:25::i;:::-;19777:52;;19864:17;19844:16;:37;19840:248;;19926:6;19906:16;:26;;19898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20010:51;20019:5;20026:7;20054:6;20035:16;:25;20010:8;:51::i;:::-;19840:248;19766:329;19642:453;;;:::o;15850:840::-;15997:1;15981:18;;:4;:18;;;15973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16074:1;16060:16;;:2;:16;;;16052:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;16129:38;16150:4;16156:2;16160:6;16129:20;:38::i;:::-;16180:19;16202:9;:15;16212:4;16202:15;;;;;;;;;;;;;;;;16180:37;;16251:6;16236:11;:21;;16228:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;16368:6;16354:11;:20;16336:9;:15;16346:4;16336:15;;;;;;;;;;;;;;;:38;;;;16571:6;16554:9;:13;16564:2;16554:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16621:2;16606:26;;16615:4;16606:26;;;16625:6;16606:26;;;;;;:::i;:::-;;;;;;;;16645:37;16665:4;16671:2;16675:6;16645:19;:37::i;:::-;15962:728;15850:840;;;:::o;17858:675::-;17961:1;17942:21;;:7;:21;;;17934:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18014:49;18035:7;18052:1;18056:6;18014:20;:49::i;:::-;18076:22;18101:9;:18;18111:7;18101:18;;;;;;;;;;;;;;;;18076:43;;18156:6;18138:14;:24;;18130:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18275:6;18258:14;:23;18237:9;:18;18247:7;18237:18;;;;;;;;;;;;;;;:44;;;;18392:6;18376:12;;:22;;;;;;;;;;;18453:1;18427:37;;18436:7;18427:37;;;18457:6;18427:37;;;;;;:::i;:::-;;;;;;;;18477:48;18497:7;18514:1;18518:6;18477:19;:48::i;:::-;17923:610;17858:675;;:::o;3309:132::-;3384:12;:10;:12::i;:::-;3373:23;;:7;:5;:7::i;:::-;:23;;;3365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3309:132::o;4411:191::-;4485:16;4504:6;;;;;;;;;;;4485:25;;4530:8;4521:6;;:17;;;;;;;;;;;;;;;;;;4585:8;4554:40;;4575:8;4554:40;;;;;;;;;;;;4474:128;4411:191;:::o;20695:125::-;;;;:::o;21424:124::-;;;;:::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:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:176::-;7390:28;7386:1;7378:6;7374:14;7367:52;7250:176;:::o;7432:366::-;7574:3;7595:67;7659:2;7654:3;7595:67;:::i;:::-;7588:74;;7671:93;7760:3;7671:93;:::i;:::-;7789:2;7784:3;7780:12;7773:19;;7432:366;;;:::o;7804:419::-;7970:4;8008:2;7997:9;7993:18;7985:26;;8057:9;8051:4;8047:20;8043:1;8032:9;8028:17;8021:47;8085:131;8211:4;8085:131;:::i;:::-;8077:139;;7804:419;;;:::o;8229:224::-;8369:34;8365:1;8357:6;8353:14;8346:58;8438:7;8433:2;8425:6;8421:15;8414:32;8229:224;:::o;8459:366::-;8601:3;8622:67;8686:2;8681:3;8622:67;:::i;:::-;8615:74;;8698:93;8787:3;8698:93;:::i;:::-;8816:2;8811:3;8807:12;8800:19;;8459:366;;;:::o;8831:419::-;8997:4;9035:2;9024:9;9020:18;9012:26;;9084:9;9078:4;9074:20;9070:1;9059:9;9055:17;9048:47;9112:131;9238:4;9112:131;:::i;:::-;9104:139;;8831:419;;;:::o;9256:225::-;9396:34;9392:1;9384:6;9380:14;9373:58;9465:8;9460:2;9452:6;9448:15;9441:33;9256:225;:::o;9487:366::-;9629:3;9650:67;9714:2;9709:3;9650:67;:::i;:::-;9643:74;;9726:93;9815:3;9726:93;:::i;:::-;9844:2;9839:3;9835:12;9828:19;;9487:366;;;:::o;9859:419::-;10025:4;10063:2;10052:9;10048:18;10040:26;;10112:9;10106:4;10102:20;10098:1;10087:9;10083:17;10076:47;10140:131;10266:4;10140:131;:::i;:::-;10132:139;;9859:419;;;:::o;10284:223::-;10424:34;10420:1;10412:6;10408:14;10401:58;10493:6;10488:2;10480:6;10476:15;10469:31;10284:223;:::o;10513:366::-;10655:3;10676:67;10740:2;10735:3;10676:67;:::i;:::-;10669:74;;10752:93;10841:3;10752:93;:::i;:::-;10870:2;10865:3;10861:12;10854:19;;10513:366;;;:::o;10885:419::-;11051:4;11089:2;11078:9;11074:18;11066:26;;11138:9;11132:4;11128:20;11124:1;11113:9;11109:17;11102:47;11166:131;11292:4;11166:131;:::i;:::-;11158:139;;10885:419;;;:::o;11310:221::-;11450:34;11446:1;11438:6;11434:14;11427:58;11519:4;11514:2;11506:6;11502:15;11495:29;11310:221;:::o;11537:366::-;11679:3;11700:67;11764:2;11759:3;11700:67;:::i;:::-;11693:74;;11776:93;11865:3;11776:93;:::i;:::-;11894:2;11889:3;11885:12;11878:19;;11537:366;;;:::o;11909:419::-;12075:4;12113:2;12102:9;12098:18;12090:26;;12162:9;12156:4;12152:20;12148:1;12137:9;12133:17;12126:47;12190:131;12316:4;12190:131;:::i;:::-;12182:139;;11909:419;;;:::o;12334:179::-;12474:31;12470:1;12462:6;12458:14;12451:55;12334:179;:::o;12519:366::-;12661:3;12682:67;12746:2;12741:3;12682:67;:::i;:::-;12675:74;;12758:93;12847:3;12758:93;:::i;:::-;12876:2;12871:3;12867:12;12860:19;;12519:366;;;:::o;12891:419::-;13057:4;13095:2;13084:9;13080:18;13072:26;;13144:9;13138:4;13134:20;13130:1;13119:9;13115:17;13108:47;13172:131;13298:4;13172:131;:::i;:::-;13164:139;;12891:419;;;:::o;13316:224::-;13456:34;13452:1;13444:6;13440:14;13433:58;13525:7;13520:2;13512:6;13508:15;13501:32;13316:224;:::o;13546:366::-;13688:3;13709:67;13773:2;13768:3;13709:67;:::i;:::-;13702:74;;13785:93;13874:3;13785:93;:::i;:::-;13903:2;13898:3;13894:12;13887:19;;13546:366;;;:::o;13918:419::-;14084:4;14122:2;14111:9;14107:18;14099:26;;14171:9;14165:4;14161:20;14157:1;14146:9;14142:17;14135:47;14199:131;14325:4;14199:131;:::i;:::-;14191:139;;13918:419;;;:::o;14343:222::-;14483:34;14479:1;14471:6;14467:14;14460:58;14552:5;14547:2;14539:6;14535:15;14528:30;14343:222;:::o;14571:366::-;14713:3;14734:67;14798:2;14793:3;14734:67;:::i;:::-;14727:74;;14810:93;14899:3;14810:93;:::i;:::-;14928:2;14923:3;14919:12;14912:19;;14571:366;;;:::o;14943:419::-;15109:4;15147:2;15136:9;15132:18;15124:26;;15196:9;15190:4;15186:20;15182:1;15171:9;15167:17;15160:47;15224:131;15350:4;15224:131;:::i;:::-;15216:139;;14943:419;;;:::o;15368:225::-;15508:34;15504:1;15496:6;15492:14;15485:58;15577:8;15572:2;15564:6;15560:15;15553:33;15368:225;:::o;15599:366::-;15741:3;15762:67;15826:2;15821:3;15762:67;:::i;:::-;15755:74;;15838:93;15927:3;15838:93;:::i;:::-;15956:2;15951:3;15947:12;15940:19;;15599:366;;;:::o;15971:419::-;16137:4;16175:2;16164:9;16160:18;16152:26;;16224:9;16218:4;16214:20;16210:1;16199:9;16195:17;16188:47;16252:131;16378:4;16252:131;:::i;:::-;16244:139;;15971:419;;;:::o;16396:220::-;16536:34;16532:1;16524:6;16520:14;16513:58;16605:3;16600:2;16592:6;16588:15;16581:28;16396:220;:::o;16622:366::-;16764:3;16785:67;16849:2;16844:3;16785:67;:::i;:::-;16778:74;;16861:93;16950:3;16861:93;:::i;:::-;16979:2;16974:3;16970:12;16963:19;;16622:366;;;:::o;16994:419::-;17160:4;17198:2;17187:9;17183:18;17175:26;;17247:9;17241:4;17237:20;17233:1;17222:9;17218:17;17211:47;17275:131;17401:4;17275:131;:::i;:::-;17267:139;;16994:419;;;:::o;17419:221::-;17559:34;17555:1;17547:6;17543:14;17536:58;17628:4;17623:2;17615:6;17611:15;17604:29;17419:221;:::o;17646:366::-;17788:3;17809:67;17873:2;17868:3;17809:67;:::i;:::-;17802:74;;17885:93;17974:3;17885:93;:::i;:::-;18003:2;17998:3;17994:12;17987:19;;17646:366;;;:::o;18018:419::-;18184:4;18222:2;18211:9;18207:18;18199:26;;18271:9;18265:4;18261:20;18257:1;18246:9;18242:17;18235:47;18299:131;18425:4;18299:131;:::i;:::-;18291:139;;18018:419;;;:::o;18443:182::-;18583:34;18579:1;18571:6;18567:14;18560:58;18443:182;:::o;18631:366::-;18773:3;18794:67;18858:2;18853:3;18794:67;:::i;:::-;18787:74;;18870:93;18959:3;18870:93;:::i;:::-;18988:2;18983:3;18979:12;18972:19;;18631:366;;;:::o;19003:419::-;19169:4;19207:2;19196:9;19192:18;19184:26;;19256:9;19250:4;19246:20;19242:1;19231:9;19227:17;19220:47;19284:131;19410:4;19284:131;:::i;:::-;19276:139;;19003:419;;;:::o
Swarm Source
ipfs://cc86b7b950f4f76a8bc1fac32be49422f4860945f4f88166ff42b28bc095d825
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.