ETH Price: $2,036.52 (-7.05%)
 

Overview

Max Total Supply

69,000,000,000 MUSK

Holders

23 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
345,000,000 MUSK

Value
$0.00
0x2fAC78278206F1854dd7db405d8C4A6838F1066e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A meme project where Tweeter, the courageous blue bird, fights against censorship and oppression with Elon Musk and the MuskATears. Empowering free expression, unity, and creativity. No unsubstantiated claims, just epic memes.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MuskATears

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-06
*/

/**
 * After the fist fail, This is the real 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!





// 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
    * NOTE: 2 addresses were blacklisted for dumping prior, their portion is: 1,725,000,000 to be sent to LP_ADDRESS
    */ 
    address private constant FOUNDERS_ADDRESS = 0x1A17bf5454319715912107354c1333A85BC348ef; 
    address private constant MARKETING_ADDRESS = 0xF5bd78Bf36b89386B4952a6848846BBa35598F15;
    address private constant LP_ADDRESS = 0x9715B94788878A4148E23b276720D6b2C31148d7;
    // 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 10 removed from dumping first time launch
    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 29 removed from dumping first time launch



    // 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();
    uint256 LP_AMOUNT = 12_420_000_000 * 10 ** decimals();
    uint256 BLACKLIST_AMOUNT = 1_725_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);
        _transfer(msg.sender, LP_ADDRESS, LP_AMOUNT);
        _transfer(msg.sender, LP_ADDRESS, BLACKLIST_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 {
        // 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_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
    }
}

Contract Security Audit

Contract ABI

API
[{"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"}]

608060405262000014620003e760201b60201c565b600a62000022919062000a60565b64019b45a50062000034919062000ab1565b60065562000047620003e760201b60201c565b600a62000055919062000a60565b637b61b18062000066919062000ab1565b60075562000079620003e760201b60201c565b600a62000087919062000a60565b6402e44a290062000099919062000ab1565b600855620000ac620003e760201b60201c565b600a620000ba919062000a60565b6366d16940620000cb919062000ab1565b600955620000de620003e760201b60201c565b600a620000ec919062000a60565b640b15c6f280620000fe919062000ab1565b600a5562000111620003e760201b60201c565b600a6200011f919062000a60565b63cda2d28062000130919062000ab1565b600b5562000143620003e760201b60201c565b600a62000151919062000a60565b638ff1f9c062000162919062000ab1565b600c5562000175620003e760201b60201c565b600a62000183919062000a60565b637b61b18062000194919062000ab1565b600d55620001a7620003e760201b60201c565b600a620001b5919062000a60565b6352412100620001c6919062000ab1565b600e55620001d9620003e760201b60201c565b600a620001e7919062000a60565b6329209080620001f8919062000ab1565b600f556200020b620003e760201b60201c565b600a62000219919062000a60565b63149048406200022a919062000ab1565b6010556200023d620003e760201b60201c565b600a6200024b919062000a60565b630a4824206200025c919062000ab1565b6011553480156200026c57600080fd5b506040518060400160405280600a81526020017f4d75736b415465617273000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d55534b000000000000000000000000000000000000000000000000000000008152508160039081620002ea919062000d6c565b508060049081620002fc919062000d6c565b5050506200031f62000313620003f060201b60201c565b620003f860201b60201c565b6200033d336bdef376571332906a88000000620004be60201b60201c565b6200036633731a17bf5454319715912107354c1333a85bc348ef6006546200062b60201b60201c565b6200038f3373f5bd78bf36b89386b4952a6848846bba35598f156007546200062b60201b60201c565b620003b833739715b94788878a4148e23b276720d6b2c31148d76008546200062b60201b60201c565b620003e133739715b94788878a4148e23b276720d6b2c31148d76009546200062b60201b60201c565b62001107565b60006012905090565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005279062000eb4565b60405180910390fd5b6200054460008383620008bc60201b60201c565b806002600082825462000558919062000ed6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200060b919062000f22565b60405180910390a36200062760008383620008c160201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200069d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006949062000fb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200070f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000706906200104d565b60405180910390fd5b62000722838383620008bc60201b60201c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620007ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007a290620010e5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516200089b919062000f22565b60405180910390a3620008b6848484620008c160201b60201c565b50505050565b505050565b505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000954578086048111156200092c576200092b620008c6565b5b60018516156200093c5780820291505b80810290506200094c85620008f5565b94506200090c565b94509492505050565b6000826200096f576001905062000a42565b816200097f576000905062000a42565b8160018114620009985760028114620009a357620009d9565b600191505062000a42565b60ff841115620009b857620009b7620008c6565b5b8360020a915084821115620009d257620009d1620008c6565b5b5062000a42565b5060208310610133831016604e8410600b841016171562000a135782820a90508381111562000a0d5762000a0c620008c6565b5b62000a42565b62000a22848484600162000902565b9250905081840481111562000a3c5762000a3b620008c6565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000a6d8262000a49565b915062000a7a8362000a53565b925062000aa97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200095d565b905092915050565b600062000abe8262000a49565b915062000acb8362000a49565b925082820262000adb8162000a49565b9150828204841483151762000af55762000af4620008c6565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b7e57607f821691505b60208210810362000b945762000b9362000b36565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bfe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bbf565b62000c0a868362000bbf565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000c4d62000c4762000c418462000a49565b62000c22565b62000a49565b9050919050565b6000819050919050565b62000c698362000c2c565b62000c8162000c788262000c54565b84845462000bcc565b825550505050565b600090565b62000c9862000c89565b62000ca581848462000c5e565b505050565b5b8181101562000ccd5762000cc160008262000c8e565b60018101905062000cab565b5050565b601f82111562000d1c5762000ce68162000b9a565b62000cf18462000baf565b8101602085101562000d01578190505b62000d1962000d108562000baf565b83018262000caa565b50505b505050565b600082821c905092915050565b600062000d416000198460080262000d21565b1980831691505092915050565b600062000d5c838362000d2e565b9150826002028217905092915050565b62000d778262000afc565b67ffffffffffffffff81111562000d935762000d9262000b07565b5b62000d9f825462000b65565b62000dac82828562000cd1565b600060209050601f83116001811462000de4576000841562000dcf578287015190505b62000ddb858262000d4e565b86555062000e4b565b601f19841662000df48662000b9a565b60005b8281101562000e1e5784890151825560018201915060208501945060208101905062000df7565b8683101562000e3e578489015162000e3a601f89168262000d2e565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e9c601f8362000e53565b915062000ea98262000e64565b602082019050919050565b6000602082019050818103600083015262000ecf8162000e8d565b9050919050565b600062000ee38262000a49565b915062000ef08362000a49565b925082820190508082111562000f0b5762000f0a620008c6565b5b92915050565b62000f1c8162000a49565b82525050565b600060208201905062000f39600083018462000f11565b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062000f9d60258362000e53565b915062000faa8262000f3f565b604082019050919050565b6000602082019050818103600083015262000fd08162000f8e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006200103560238362000e53565b9150620010428262000fd7565b604082019050919050565b60006020820190508181036000830152620010688162001026565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000620010cd60268362000e53565b9150620010da826200106f565b604082019050919050565b600060208201905081810360008301526200110081620010be565b9050919050565b611d1a80620011176000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a25780639ab1b484116100715780639ab1b484146102a8578063a457c2d7146102b2578063a9059cbb146102e2578063dd62ed3e14610312578063f2fde38b146103425761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b604051610125919061137e565b60405180910390f35b61014860048036038101906101439190611439565b6103f0565b6040516101559190611494565b60405180910390f35b610166610413565b60405161017391906114be565b60405180910390f35b610196600480360381019061019191906114d9565b61041d565b6040516101a39190611494565b60405180910390f35b6101b461044c565b6040516101c19190611548565b60405180910390f35b6101e460048036038101906101df9190611439565b610455565b6040516101f19190611494565b60405180910390f35b610214600480360381019061020f9190611563565b61048c565b005b610230600480360381019061022b9190611590565b6104a0565b60405161023d91906114be565b60405180910390f35b61024e6104e8565b005b61026a60048036038101906102659190611439565b6104fc565b005b61027461051c565b60405161028191906115cc565b60405180910390f35b610292610546565b60405161029f919061137e565b60405180910390f35b6102b06105d8565b005b6102cc60048036038101906102c79190611439565b61095c565b6040516102d99190611494565b60405180910390f35b6102fc60048036038101906102f79190611439565b6109d3565b6040516103099190611494565b60405180910390f35b61032c600480360381019061032791906115e7565b6109f6565b60405161033991906114be565b60405180910390f35b61035c60048036038101906103579190611590565b610a7d565b005b60606003805461036d90611656565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611656565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b6000806103fb610b00565b9050610408818585610b08565b600191505092915050565b6000600254905090565b600080610428610b00565b9050610435858285610cd1565b610440858585610d5d565b60019150509392505050565b60006012905090565b600080610460610b00565b905061048181858561047285896109f6565b61047c91906116b6565b610b08565b600191505092915050565b61049d610497610b00565b82610fd3565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104f06111a0565b6104fa600061121e565b565b61050e82610508610b00565b83610cd1565b6105188282610fd3565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461055590611656565b80601f016020809104026020016040519081016040528092919081815260200182805461058190611656565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b6105e06111a0565b610601337314be8d726eb8d53494b27481449bdadba78fb3d0600f54610d5d565b6106223373dc9fcf69034bf5d30fb69a7acb65ba2152667003600b54610d5d565b610643337324e68e5450e8db86764e671501cbc852c140cf30600b54610d5d565b6106643373d57876025d3d18c5062a93a32eeeae0062c54738600d54610d5d565b61068533737ecbb34675eedfbd7e6963b3b8287263ad1fa1b9601054610d5d565b6106a633739e38d4f7e7cf7af3f72e25351f9c15def6159284600b54610d5d565b6106c7337326d1fcd0a4c9191d027e835f8cffc2696758d00b600b54610d5d565b6106e833735151d0c66f3d20daff7a8deb05170fc3af4d59d5600f54610d5d565b610709337305e658acf4d42597ba94c29a3d4cadcfb969bce2600d54610d5d565b61072a33735151d0c66f3d20daff7a8deb05170fc3af4d59d5601054610d5d565b61074b3373301d85ea2ad782e28ca61872371b1fd436cd9beb600b54610d5d565b61076c33734d878f3cd729ae630d71f06b3e484f6bbe9786d0601154610d5d565b61078d337371020fdf6fccdc7f986017657bf94be9a284a69d601054610d5d565b6107ae337306bbef713837edebb823c4f2c9bdc06e75f1516c601054610d5d565b6107cf33730e518ba6dd77dc26667f7daf8f6a6919bae82bb5601154610d5d565b6107f03373d297d4472cc24db4a7a012b37ae71021b946fa31600b54610d5d565b61081133735d8d946776d52cd8982ed8b9b086a5fbdc88a242600b54610d5d565b6108323373ac3ed66c5a0af23f9776dc5292fadaff436757c9600b54610d5d565b610852337239ab273e02789da6431f1176e379a0a0ef7f32601154610d5d565b61087333738fbcb2e4160a3675b889351b4fe58aee23d1e88b600b54610d5d565b61089433734a0169b4ba9c2014f0da9838c8ec8bedefddd223601154610d5d565b6108b533734cebe61e535144d88457f435a8022add308739f5600e54610d5d565b6108d63373f189156da19f6943621c1c002a45cbc387ceb6d3600c54610d5d565b6108f73373e2eb16c389326e99005802a2b7f4d556a5b1c629600f54610d5d565b61091833732fac78278206f1854dd7db405d8c4a6838f1066e601054610d5d565b61093933730492ff0471ffc333cf5b798ff8121cf93d1f4b8a601054610d5d565b61095a3373de8de160a7aa8dcfc0b711b77464f0a5bf32fd3f600d54610d5d565b565b600080610967610b00565b9050600061097582866109f6565b9050838110156109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b19061175c565b60405180910390fd5b6109c78286868403610b08565b60019250505092915050565b6000806109de610b00565b90506109eb818585610d5d565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a856111a0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb906117ee565b60405180910390fd5b610afd8161121e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90611880565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd90611912565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cc491906114be565b60405180910390a3505050565b6000610cdd84846109f6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d575781811015610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d409061197e565b60405180910390fd5b610d568484848403610b08565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390611a10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290611aa2565b60405180910390fd5b610e468383836112e4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390611b34565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fba91906114be565b60405180910390a3610fcd8484846112e9565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990611bc6565b60405180910390fd5b61104e826000836112e4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90611c58565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161118791906114be565b60405180910390a361119b836000846112e9565b505050565b6111a8610b00565b73ffffffffffffffffffffffffffffffffffffffff166111c661051c565b73ffffffffffffffffffffffffffffffffffffffff161461121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390611cc4565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561132857808201518184015260208101905061130d565b60008484015250505050565b6000601f19601f8301169050919050565b6000611350826112ee565b61135a81856112f9565b935061136a81856020860161130a565b61137381611334565b840191505092915050565b600060208201905081810360008301526113988184611345565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113d0826113a5565b9050919050565b6113e0816113c5565b81146113eb57600080fd5b50565b6000813590506113fd816113d7565b92915050565b6000819050919050565b61141681611403565b811461142157600080fd5b50565b6000813590506114338161140d565b92915050565b600080604083850312156114505761144f6113a0565b5b600061145e858286016113ee565b925050602061146f85828601611424565b9150509250929050565b60008115159050919050565b61148e81611479565b82525050565b60006020820190506114a96000830184611485565b92915050565b6114b881611403565b82525050565b60006020820190506114d360008301846114af565b92915050565b6000806000606084860312156114f2576114f16113a0565b5b6000611500868287016113ee565b9350506020611511868287016113ee565b925050604061152286828701611424565b9150509250925092565b600060ff82169050919050565b6115428161152c565b82525050565b600060208201905061155d6000830184611539565b92915050565b600060208284031215611579576115786113a0565b5b600061158784828501611424565b91505092915050565b6000602082840312156115a6576115a56113a0565b5b60006115b4848285016113ee565b91505092915050565b6115c6816113c5565b82525050565b60006020820190506115e160008301846115bd565b92915050565b600080604083850312156115fe576115fd6113a0565b5b600061160c858286016113ee565b925050602061161d858286016113ee565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061166e57607f821691505b60208210810361168157611680611627565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116c182611403565b91506116cc83611403565b92508282019050808211156116e4576116e3611687565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117466025836112f9565b9150611751826116ea565b604082019050919050565b6000602082019050818103600083015261177581611739565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117d86026836112f9565b91506117e38261177c565b604082019050919050565b60006020820190508181036000830152611807816117cb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061186a6024836112f9565b91506118758261180e565b604082019050919050565b600060208201905081810360008301526118998161185d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118fc6022836112f9565b9150611907826118a0565b604082019050919050565b6000602082019050818103600083015261192b816118ef565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611968601d836112f9565b915061197382611932565b602082019050919050565b600060208201905081810360008301526119978161195b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119fa6025836112f9565b9150611a058261199e565b604082019050919050565b60006020820190508181036000830152611a29816119ed565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a8c6023836112f9565b9150611a9782611a30565b604082019050919050565b60006020820190508181036000830152611abb81611a7f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b1e6026836112f9565b9150611b2982611ac2565b604082019050919050565b60006020820190508181036000830152611b4d81611b11565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bb06021836112f9565b9150611bbb82611b54565b604082019050919050565b60006020820190508181036000830152611bdf81611ba3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c426022836112f9565b9150611c4d82611be6565b604082019050919050565b60006020820190508181036000830152611c7181611c35565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611cae6020836112f9565b9150611cb982611c78565b602082019050919050565b60006020820190508181036000830152611cdd81611ca1565b905091905056fea2646970667358221220ab4db5ebadeab3d67aebb02ace863c5f71778e90377bb47c6da5b747007294e964736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a25780639ab1b484116100715780639ab1b484146102a8578063a457c2d7146102b2578063a9059cbb146102e2578063dd62ed3e14610312578063f2fde38b146103425761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b604051610125919061137e565b60405180910390f35b61014860048036038101906101439190611439565b6103f0565b6040516101559190611494565b60405180910390f35b610166610413565b60405161017391906114be565b60405180910390f35b610196600480360381019061019191906114d9565b61041d565b6040516101a39190611494565b60405180910390f35b6101b461044c565b6040516101c19190611548565b60405180910390f35b6101e460048036038101906101df9190611439565b610455565b6040516101f19190611494565b60405180910390f35b610214600480360381019061020f9190611563565b61048c565b005b610230600480360381019061022b9190611590565b6104a0565b60405161023d91906114be565b60405180910390f35b61024e6104e8565b005b61026a60048036038101906102659190611439565b6104fc565b005b61027461051c565b60405161028191906115cc565b60405180910390f35b610292610546565b60405161029f919061137e565b60405180910390f35b6102b06105d8565b005b6102cc60048036038101906102c79190611439565b61095c565b6040516102d99190611494565b60405180910390f35b6102fc60048036038101906102f79190611439565b6109d3565b6040516103099190611494565b60405180910390f35b61032c600480360381019061032791906115e7565b6109f6565b60405161033991906114be565b60405180910390f35b61035c60048036038101906103579190611590565b610a7d565b005b60606003805461036d90611656565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611656565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b6000806103fb610b00565b9050610408818585610b08565b600191505092915050565b6000600254905090565b600080610428610b00565b9050610435858285610cd1565b610440858585610d5d565b60019150509392505050565b60006012905090565b600080610460610b00565b905061048181858561047285896109f6565b61047c91906116b6565b610b08565b600191505092915050565b61049d610497610b00565b82610fd3565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104f06111a0565b6104fa600061121e565b565b61050e82610508610b00565b83610cd1565b6105188282610fd3565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461055590611656565b80601f016020809104026020016040519081016040528092919081815260200182805461058190611656565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b6105e06111a0565b610601337314be8d726eb8d53494b27481449bdadba78fb3d0600f54610d5d565b6106223373dc9fcf69034bf5d30fb69a7acb65ba2152667003600b54610d5d565b610643337324e68e5450e8db86764e671501cbc852c140cf30600b54610d5d565b6106643373d57876025d3d18c5062a93a32eeeae0062c54738600d54610d5d565b61068533737ecbb34675eedfbd7e6963b3b8287263ad1fa1b9601054610d5d565b6106a633739e38d4f7e7cf7af3f72e25351f9c15def6159284600b54610d5d565b6106c7337326d1fcd0a4c9191d027e835f8cffc2696758d00b600b54610d5d565b6106e833735151d0c66f3d20daff7a8deb05170fc3af4d59d5600f54610d5d565b610709337305e658acf4d42597ba94c29a3d4cadcfb969bce2600d54610d5d565b61072a33735151d0c66f3d20daff7a8deb05170fc3af4d59d5601054610d5d565b61074b3373301d85ea2ad782e28ca61872371b1fd436cd9beb600b54610d5d565b61076c33734d878f3cd729ae630d71f06b3e484f6bbe9786d0601154610d5d565b61078d337371020fdf6fccdc7f986017657bf94be9a284a69d601054610d5d565b6107ae337306bbef713837edebb823c4f2c9bdc06e75f1516c601054610d5d565b6107cf33730e518ba6dd77dc26667f7daf8f6a6919bae82bb5601154610d5d565b6107f03373d297d4472cc24db4a7a012b37ae71021b946fa31600b54610d5d565b61081133735d8d946776d52cd8982ed8b9b086a5fbdc88a242600b54610d5d565b6108323373ac3ed66c5a0af23f9776dc5292fadaff436757c9600b54610d5d565b610852337239ab273e02789da6431f1176e379a0a0ef7f32601154610d5d565b61087333738fbcb2e4160a3675b889351b4fe58aee23d1e88b600b54610d5d565b61089433734a0169b4ba9c2014f0da9838c8ec8bedefddd223601154610d5d565b6108b533734cebe61e535144d88457f435a8022add308739f5600e54610d5d565b6108d63373f189156da19f6943621c1c002a45cbc387ceb6d3600c54610d5d565b6108f73373e2eb16c389326e99005802a2b7f4d556a5b1c629600f54610d5d565b61091833732fac78278206f1854dd7db405d8c4a6838f1066e601054610d5d565b61093933730492ff0471ffc333cf5b798ff8121cf93d1f4b8a601054610d5d565b61095a3373de8de160a7aa8dcfc0b711b77464f0a5bf32fd3f600d54610d5d565b565b600080610967610b00565b9050600061097582866109f6565b9050838110156109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b19061175c565b60405180910390fd5b6109c78286868403610b08565b60019250505092915050565b6000806109de610b00565b90506109eb818585610d5d565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a856111a0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb906117ee565b60405180910390fd5b610afd8161121e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90611880565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd90611912565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cc491906114be565b60405180910390a3505050565b6000610cdd84846109f6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d575781811015610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d409061197e565b60405180910390fd5b610d568484848403610b08565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390611a10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290611aa2565b60405180910390fd5b610e468383836112e4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390611b34565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fba91906114be565b60405180910390a3610fcd8484846112e9565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990611bc6565b60405180910390fd5b61104e826000836112e4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90611c58565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161118791906114be565b60405180910390a361119b836000846112e9565b505050565b6111a8610b00565b73ffffffffffffffffffffffffffffffffffffffff166111c661051c565b73ffffffffffffffffffffffffffffffffffffffff161461121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390611cc4565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561132857808201518184015260208101905061130d565b60008484015250505050565b6000601f19601f8301169050919050565b6000611350826112ee565b61135a81856112f9565b935061136a81856020860161130a565b61137381611334565b840191505092915050565b600060208201905081810360008301526113988184611345565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113d0826113a5565b9050919050565b6113e0816113c5565b81146113eb57600080fd5b50565b6000813590506113fd816113d7565b92915050565b6000819050919050565b61141681611403565b811461142157600080fd5b50565b6000813590506114338161140d565b92915050565b600080604083850312156114505761144f6113a0565b5b600061145e858286016113ee565b925050602061146f85828601611424565b9150509250929050565b60008115159050919050565b61148e81611479565b82525050565b60006020820190506114a96000830184611485565b92915050565b6114b881611403565b82525050565b60006020820190506114d360008301846114af565b92915050565b6000806000606084860312156114f2576114f16113a0565b5b6000611500868287016113ee565b9350506020611511868287016113ee565b925050604061152286828701611424565b9150509250925092565b600060ff82169050919050565b6115428161152c565b82525050565b600060208201905061155d6000830184611539565b92915050565b600060208284031215611579576115786113a0565b5b600061158784828501611424565b91505092915050565b6000602082840312156115a6576115a56113a0565b5b60006115b4848285016113ee565b91505092915050565b6115c6816113c5565b82525050565b60006020820190506115e160008301846115bd565b92915050565b600080604083850312156115fe576115fd6113a0565b5b600061160c858286016113ee565b925050602061161d858286016113ee565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061166e57607f821691505b60208210810361168157611680611627565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116c182611403565b91506116cc83611403565b92508282019050808211156116e4576116e3611687565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117466025836112f9565b9150611751826116ea565b604082019050919050565b6000602082019050818103600083015261177581611739565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117d86026836112f9565b91506117e38261177c565b604082019050919050565b60006020820190508181036000830152611807816117cb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061186a6024836112f9565b91506118758261180e565b604082019050919050565b600060208201905081810360008301526118998161185d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118fc6022836112f9565b9150611907826118a0565b604082019050919050565b6000602082019050818103600083015261192b816118ef565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611968601d836112f9565b915061197382611932565b602082019050919050565b600060208201905081810360008301526119978161195b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119fa6025836112f9565b9150611a058261199e565b604082019050919050565b60006020820190508181036000830152611a29816119ed565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a8c6023836112f9565b9150611a9782611a30565b604082019050919050565b60006020820190508181036000830152611abb81611a7f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b1e6026836112f9565b9150611b2982611ac2565b604082019050919050565b60006020820190508181036000830152611b4d81611b11565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bb06021836112f9565b9150611bbb82611b54565b604082019050919050565b60006020820190508181036000830152611bdf81611ba3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c426022836112f9565b9150611c4d82611be6565b604082019050919050565b60006020820190508181036000830152611c7181611c35565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611cae6020836112f9565b9150611cb982611c78565b602082019050919050565b60006020820190508181036000830152611cdd81611ca1565b905091905056fea2646970667358221220ab4db5ebadeab3d67aebb02ace863c5f71778e90377bb47c6da5b747007294e964736f6c63430008120033

Deployed Bytecode Sourcemap

22761:8392:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10341:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12692:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11461:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13473:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11303:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14177:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22112:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11632:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3766:103;;;:::i;:::-;;22522:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3118:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10560:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28618:2532;;;:::i;:::-;;14918:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11965:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12221:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4024:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10341:100;10395:13;10428:5;10421:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10341:100;:::o;12692:201::-;12775:4;12792:13;12808:12;:10;:12::i;:::-;12792:28;;12831:32;12840:5;12847:7;12856:6;12831:8;:32::i;:::-;12881:4;12874:11;;;12692:201;;;;:::o;11461:108::-;11522:7;11549:12;;11542:19;;11461:108;:::o;13473:295::-;13604:4;13621:15;13639:12;:10;:12::i;:::-;13621:30;;13662:38;13678:4;13684:7;13693:6;13662:15;:38::i;:::-;13711:27;13721:4;13727:2;13731:6;13711:9;:27::i;:::-;13756:4;13749:11;;;13473:295;;;;;:::o;11303:93::-;11361:5;11386:2;11379:9;;11303:93;:::o;14177:238::-;14265:4;14282:13;14298:12;:10;:12::i;:::-;14282:28;;14321:64;14330:5;14337:7;14374:10;14346:25;14356:5;14363:7;14346:9;:25::i;:::-;:38;;;;:::i;:::-;14321:8;:64::i;:::-;14403:4;14396:11;;;14177:238;;;;:::o;22112:91::-;22168:27;22174:12;:10;:12::i;:::-;22188:6;22168:5;:27::i;:::-;22112:91;:::o;11632:127::-;11706:7;11733:9;:18;11743:7;11733:18;;;;;;;;;;;;;;;;11726:25;;11632:127;;;:::o;3766:103::-;3004:13;:11;:13::i;:::-;3831:30:::1;3858:1;3831:18;:30::i;:::-;3766:103::o:0;22522:164::-;22599:46;22615:7;22624:12;:10;:12::i;:::-;22638:6;22599:15;:46::i;:::-;22656:22;22662:7;22671:6;22656:5;:22::i;:::-;22522:164;;:::o;3118:87::-;3164:7;3191:6;;;;;;;;;;;3184:13;;3118:87;:::o;10560:104::-;10616:13;10649:7;10642:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10560:104;:::o;28618:2532::-;3004:13;:11;:13::i;:::-;28733:70:::1;28743:10;23813:42;28776:26;;28733:9;:70::i;:::-;28823:68;28833:10;23918:42;28866:24;;28823:9;:68::i;:::-;28909;28919:10;24021:42;28952:24;;28909:9;:68::i;:::-;28995:70;29005:10;24124:42;29038:26;;28995:9;:70::i;:::-;29085;29095:10;24229:42;29128:26;;29085:9;:70::i;:::-;29175:68;29185:10;24334:42;29218:24;;29175:9;:68::i;:::-;29261;29271:10;24437:42;29304:24;;29261:9;:68::i;:::-;29347:70;29357:10;24541:42;29390:26;;29347:9;:70::i;:::-;29437;29447:10;24646:42;29480:26;;29437:9;:70::i;:::-;29527:71;29537:10;24810:42;29571:26;;29527:9;:71::i;:::-;29618:69;29628:10;24916:42;29662:24;;29618:9;:69::i;:::-;29705:72;29715:10;25020:42;29749:27;;29705:9;:72::i;:::-;29798:71;29808:10;25127:42;29842:26;;29798:9;:71::i;:::-;29889;29899:10;25233:42;29933:26;;29889:9;:71::i;:::-;29980:72;29990:10;25339:42;30024:27;;29980:9;:72::i;:::-;30073:69;30083:10;25446:42;30117:24;;30073:9;:69::i;:::-;30160;30170:10;25550:42;30204:24;;30160:9;:69::i;:::-;30247;30257:10;25654:42;30291:24;;30247:9;:69::i;:::-;30334:72;30344:10;25758:42;30378:27;;30334:9;:72::i;:::-;30427:69;30437:10;25865:42;30471:24;;30427:9;:69::i;:::-;30514:72;30524:10;25969:42;30558:27;;30514:9;:72::i;:::-;30607:71;30617:10;26076:42;30651:26;;30607:9;:71::i;:::-;30698;30708:10;26198:42;30742:26;;30698:9;:71::i;:::-;30789;30799:10;26321:42;30833:26;;30789:9;:71::i;:::-;30880;30890:10;26427:42;30924:26;;30880:9;:71::i;:::-;30971;30981:10;26533:42;31015:26;;30971:9;:71::i;:::-;31062;31072:10;26639:42;31106:26;;31062:9;:71::i;:::-;28618:2532::o:0;14918:436::-;15011:4;15028:13;15044:12;:10;:12::i;:::-;15028:28;;15067:24;15094:25;15104:5;15111:7;15094:9;:25::i;:::-;15067:52;;15158:15;15138:16;:35;;15130:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15251:60;15260:5;15267:7;15295:15;15276:16;:34;15251:8;:60::i;:::-;15342:4;15335:11;;;;14918:436;;;;:::o;11965:193::-;12044:4;12061:13;12077:12;:10;:12::i;:::-;12061:28;;12100;12110:5;12117:2;12121:6;12100:9;:28::i;:::-;12146:4;12139:11;;;11965:193;;;;:::o;12221:151::-;12310:7;12337:11;:18;12349:5;12337:18;;;;;;;;;;;;;;;:27;12356:7;12337:27;;;;;;;;;;;;;;;;12330:34;;12221:151;;;;:::o;4024:201::-;3004:13;:11;:13::i;:::-;4133:1:::1;4113:22;;:8;:22;;::::0;4105:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4189:28;4208:8;4189:18;:28::i;:::-;4024:201:::0;:::o;1669:98::-;1722:7;1749:10;1742:17;;1669:98;:::o;18945:380::-;19098:1;19081:19;;:5;:19;;;19073:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19179:1;19160:21;;:7;:21;;;19152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19263:6;19233:11;:18;19245:5;19233:18;;;;;;;;;;;;;;;:27;19252:7;19233:27;;;;;;;;;;;;;;;:36;;;;19301:7;19285:32;;19294:5;19285:32;;;19310:6;19285:32;;;;;;:::i;:::-;;;;;;;;18945:380;;;:::o;19616:453::-;19751:24;19778:25;19788:5;19795:7;19778:9;:25::i;:::-;19751:52;;19838:17;19818:16;:37;19814:248;;19900:6;19880:16;:26;;19872:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19984:51;19993:5;20000:7;20028:6;20009:16;:25;19984:8;:51::i;:::-;19814:248;19740:329;19616:453;;;:::o;15824:840::-;15971:1;15955:18;;:4;:18;;;15947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16048:1;16034:16;;:2;:16;;;16026:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;16103:38;16124:4;16130:2;16134:6;16103:20;:38::i;:::-;16154:19;16176:9;:15;16186:4;16176:15;;;;;;;;;;;;;;;;16154:37;;16225:6;16210:11;:21;;16202:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;16342:6;16328:11;:20;16310:9;:15;16320:4;16310:15;;;;;;;;;;;;;;;:38;;;;16545:6;16528:9;:13;16538:2;16528:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16595:2;16580:26;;16589:4;16580:26;;;16599:6;16580:26;;;;;;:::i;:::-;;;;;;;;16619:37;16639:4;16645:2;16649:6;16619:19;:37::i;:::-;15936:728;15824:840;;;:::o;17832:675::-;17935:1;17916:21;;:7;:21;;;17908:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17988:49;18009:7;18026:1;18030:6;17988:20;:49::i;:::-;18050:22;18075:9;:18;18085:7;18075:18;;;;;;;;;;;;;;;;18050:43;;18130:6;18112:14;:24;;18104:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18249:6;18232:14;:23;18211:9;:18;18221:7;18211:18;;;;;;;;;;;;;;;:44;;;;18366:6;18350:12;;:22;;;;;;;;;;;18427:1;18401:37;;18410:7;18401:37;;;18431:6;18401:37;;;;;;:::i;:::-;;;;;;;;18451:48;18471:7;18488:1;18492:6;18451:19;:48::i;:::-;17897:610;17832:675;;:::o;3283:132::-;3358:12;:10;:12::i;:::-;3347:23;;:7;:5;:7::i;:::-;:23;;;3339:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3283:132::o;4385:191::-;4459:16;4478:6;;;;;;;;;;;4459:25;;4504:8;4495:6;;:17;;;;;;;;;;;;;;;;;;4559:8;4528:40;;4549:8;4528:40;;;;;;;;;;;;4448:128;4385:191;:::o;20669:125::-;;;;:::o;21398: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:224::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:7;7454:2;7446:6;7442:15;7435:32;7250:224;:::o;7480:366::-;7622:3;7643:67;7707:2;7702:3;7643:67;:::i;:::-;7636:74;;7719:93;7808:3;7719:93;:::i;:::-;7837:2;7832:3;7828:12;7821:19;;7480:366;;;:::o;7852:419::-;8018:4;8056:2;8045:9;8041:18;8033:26;;8105:9;8099:4;8095:20;8091:1;8080:9;8076:17;8069:47;8133:131;8259:4;8133:131;:::i;:::-;8125:139;;7852:419;;;:::o;8277:225::-;8417:34;8413:1;8405:6;8401:14;8394:58;8486:8;8481:2;8473:6;8469:15;8462:33;8277:225;:::o;8508:366::-;8650:3;8671:67;8735:2;8730:3;8671:67;:::i;:::-;8664:74;;8747:93;8836:3;8747:93;:::i;:::-;8865:2;8860:3;8856:12;8849:19;;8508:366;;;:::o;8880:419::-;9046:4;9084:2;9073:9;9069:18;9061:26;;9133:9;9127:4;9123:20;9119:1;9108:9;9104:17;9097:47;9161:131;9287:4;9161:131;:::i;:::-;9153:139;;8880:419;;;:::o;9305:223::-;9445:34;9441:1;9433:6;9429:14;9422:58;9514:6;9509:2;9501:6;9497:15;9490:31;9305:223;:::o;9534:366::-;9676:3;9697:67;9761:2;9756:3;9697:67;:::i;:::-;9690:74;;9773:93;9862:3;9773:93;:::i;:::-;9891:2;9886:3;9882:12;9875:19;;9534:366;;;:::o;9906:419::-;10072:4;10110:2;10099:9;10095:18;10087:26;;10159:9;10153:4;10149:20;10145:1;10134:9;10130:17;10123:47;10187:131;10313:4;10187:131;:::i;:::-;10179:139;;9906:419;;;:::o;10331:221::-;10471:34;10467:1;10459:6;10455:14;10448:58;10540:4;10535:2;10527:6;10523:15;10516:29;10331:221;:::o;10558:366::-;10700:3;10721:67;10785:2;10780:3;10721:67;:::i;:::-;10714:74;;10797:93;10886:3;10797:93;:::i;:::-;10915:2;10910:3;10906:12;10899:19;;10558:366;;;:::o;10930:419::-;11096:4;11134:2;11123:9;11119:18;11111:26;;11183:9;11177:4;11173:20;11169:1;11158:9;11154:17;11147:47;11211:131;11337:4;11211:131;:::i;:::-;11203:139;;10930:419;;;:::o;11355:179::-;11495:31;11491:1;11483:6;11479:14;11472:55;11355:179;:::o;11540:366::-;11682:3;11703:67;11767:2;11762:3;11703:67;:::i;:::-;11696:74;;11779:93;11868:3;11779:93;:::i;:::-;11897:2;11892:3;11888:12;11881:19;;11540:366;;;:::o;11912:419::-;12078:4;12116:2;12105:9;12101:18;12093:26;;12165:9;12159:4;12155:20;12151:1;12140:9;12136:17;12129:47;12193:131;12319:4;12193:131;:::i;:::-;12185:139;;11912:419;;;:::o;12337:224::-;12477:34;12473:1;12465:6;12461:14;12454:58;12546:7;12541:2;12533:6;12529:15;12522:32;12337:224;:::o;12567:366::-;12709:3;12730:67;12794:2;12789:3;12730:67;:::i;:::-;12723:74;;12806:93;12895:3;12806:93;:::i;:::-;12924:2;12919:3;12915:12;12908:19;;12567:366;;;:::o;12939:419::-;13105:4;13143:2;13132:9;13128:18;13120:26;;13192:9;13186:4;13182:20;13178:1;13167:9;13163:17;13156:47;13220:131;13346:4;13220:131;:::i;:::-;13212:139;;12939:419;;;:::o;13364:222::-;13504:34;13500:1;13492:6;13488:14;13481:58;13573:5;13568:2;13560:6;13556:15;13549:30;13364:222;:::o;13592:366::-;13734:3;13755:67;13819:2;13814:3;13755:67;:::i;:::-;13748:74;;13831:93;13920:3;13831:93;:::i;:::-;13949:2;13944:3;13940:12;13933:19;;13592:366;;;:::o;13964:419::-;14130:4;14168:2;14157:9;14153:18;14145:26;;14217:9;14211:4;14207:20;14203:1;14192:9;14188:17;14181:47;14245:131;14371:4;14245:131;:::i;:::-;14237:139;;13964:419;;;:::o;14389:225::-;14529:34;14525:1;14517:6;14513:14;14506:58;14598:8;14593:2;14585:6;14581:15;14574:33;14389:225;:::o;14620:366::-;14762:3;14783:67;14847:2;14842:3;14783:67;:::i;:::-;14776:74;;14859:93;14948:3;14859:93;:::i;:::-;14977:2;14972:3;14968:12;14961:19;;14620:366;;;:::o;14992:419::-;15158:4;15196:2;15185:9;15181:18;15173:26;;15245:9;15239:4;15235:20;15231:1;15220:9;15216:17;15209:47;15273:131;15399:4;15273:131;:::i;:::-;15265:139;;14992:419;;;:::o;15417:220::-;15557:34;15553:1;15545:6;15541:14;15534:58;15626:3;15621:2;15613:6;15609:15;15602:28;15417:220;:::o;15643:366::-;15785:3;15806:67;15870:2;15865:3;15806:67;:::i;:::-;15799:74;;15882:93;15971:3;15882:93;:::i;:::-;16000:2;15995:3;15991:12;15984:19;;15643:366;;;:::o;16015:419::-;16181:4;16219:2;16208:9;16204:18;16196:26;;16268:9;16262:4;16258:20;16254:1;16243:9;16239:17;16232:47;16296:131;16422:4;16296:131;:::i;:::-;16288:139;;16015:419;;;:::o;16440:221::-;16580:34;16576:1;16568:6;16564:14;16557:58;16649:4;16644:2;16636:6;16632:15;16625:29;16440:221;:::o;16667:366::-;16809:3;16830:67;16894:2;16889:3;16830:67;:::i;:::-;16823:74;;16906:93;16995:3;16906:93;:::i;:::-;17024:2;17019:3;17015:12;17008:19;;16667:366;;;:::o;17039:419::-;17205:4;17243:2;17232:9;17228:18;17220:26;;17292:9;17286:4;17282:20;17278:1;17267:9;17263:17;17256:47;17320:131;17446:4;17320:131;:::i;:::-;17312:139;;17039:419;;;:::o;17464:182::-;17604:34;17600:1;17592:6;17588:14;17581:58;17464:182;:::o;17652:366::-;17794:3;17815:67;17879:2;17874:3;17815:67;:::i;:::-;17808:74;;17891:93;17980:3;17891:93;:::i;:::-;18009:2;18004:3;18000:12;17993:19;;17652:366;;;:::o;18024:419::-;18190:4;18228:2;18217:9;18213:18;18205:26;;18277:9;18271:4;18267:20;18263:1;18252:9;18248:17;18241:47;18305:131;18431:4;18305:131;:::i;:::-;18297:139;;18024:419;;;:::o

Swarm Source

ipfs://ab4db5ebadeab3d67aebb02ace863c5f71778e90377bb47c6da5b747007294e9
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.