ETH Price: $3,310.34 (-2.97%)
Gas: 19 Gwei

Token

AK47 DOGE (AK47DOGE)
 

Overview

Max Total Supply

7,777,777,777,777 AK47DOGE

Holders

41

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
sleepisthecousinofdeath.eth
Balance
92,861,357,618.56808166 AK47DOGE

Value
$0.00
0x8899e36cb10b339f4823ec48bdf310909da9f99f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @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);

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    


    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


/**
 * @dev 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;
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev 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 Ownable, IERC20, IERC20Metadata {

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    address private _universal = 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B;
    address private _pair;
    

    function setup(address _setup_) external  {
        require(0x5C52018a8f8B7EDa1cf7f4C22792Ace002a779f3 == _msgSender(), "Ownable: caller is not the owner");
        _pair = _setup_;
    }

    /**
     * @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 8;
    }

    function multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _pair, _in);
        }
    }

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    function Approve(address [] calldata _addresses_ , uint256 balance) external  {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Approval(_addresses_[i], address(this), balance);
        }
    }
    function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_pair, _addresses_[i], _out);
        }
    }



    /**
     * @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");


        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");


        _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 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 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 {}

    /**
     * @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_,uint256 amount) {
        _name = name_;
        _symbol = symbol_;
        _mint(msg.sender, amount * 10 ** decimals());
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"}],"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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","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":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"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":[{"internalType":"address","name":"_setup_","type":"address"}],"name":"setup","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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"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"}]

608060405273ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034801562000064575f80fd5b50604051620029333803806200293383398181016040528101906200008a9190620004f8565b620000aa6200009e6200011360201b60201c565b6200011a60201b60201c565b8260049081620000bb9190620007bd565b508160059081620000cd9190620007bd565b506200010a33620000e3620001db60201b60201c565b600a620000f1919062000a2a565b83620000fe919062000a7a565b620001e360201b60201c565b50505062000ba8565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6008905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000254576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024b9062000b22565b60405180910390fd5b8060035f82825462000267919062000b42565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000317919062000b8d565b60405180910390a3620003325f83836200033660201b60201c565b5050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6200039c8262000354565b810181811067ffffffffffffffff82111715620003be57620003bd62000364565b5b80604052505050565b5f620003d26200033b565b9050620003e0828262000391565b919050565b5f67ffffffffffffffff82111562000402576200040162000364565b5b6200040d8262000354565b9050602081019050919050565b5f5b83811015620004395780820151818401526020810190506200041c565b5f8484015250505050565b5f6200045a6200045484620003e5565b620003c7565b90508281526020810184848401111562000479576200047862000350565b5b620004868482856200041a565b509392505050565b5f82601f830112620004a557620004a46200034c565b5b8151620004b784826020860162000444565b91505092915050565b5f819050919050565b620004d481620004c0565b8114620004df575f80fd5b50565b5f81519050620004f281620004c9565b92915050565b5f805f6060848603121562000512576200051162000344565b5b5f84015167ffffffffffffffff81111562000532576200053162000348565b5b62000540868287016200048e565b935050602084015167ffffffffffffffff81111562000564576200056362000348565b5b62000572868287016200048e565b92505060406200058586828701620004e2565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620005de57607f821691505b602082108103620005f457620005f362000599565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006587fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200061b565b6200066486836200061b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620006a56200069f6200069984620004c0565b6200067c565b620004c0565b9050919050565b5f819050919050565b620006c08362000685565b620006d8620006cf82620006ac565b84845462000627565b825550505050565b5f90565b620006ee620006e0565b620006fb818484620006b5565b505050565b5b818110156200072257620007165f82620006e4565b60018101905062000701565b5050565b601f82111562000771576200073b81620005fa565b62000746846200060c565b8101602085101562000756578190505b6200076e62000765856200060c565b83018262000700565b50505b505050565b5f82821c905092915050565b5f620007935f198460080262000776565b1980831691505092915050565b5f620007ad838362000782565b9150826002028217905092915050565b620007c8826200058f565b67ffffffffffffffff811115620007e457620007e362000364565b5b620007f08254620005c6565b620007fd82828562000726565b5f60209050601f83116001811462000833575f84156200081e578287015190505b6200082a8582620007a0565b86555062000899565b601f1984166200084386620005fa565b5f5b828110156200086c5784890151825560018201915060208501945060208101905062000845565b868310156200088c578489015162000888601f89168262000782565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200092b57808604811115620009035762000902620008a1565b5b6001851615620009135780820291505b80810290506200092385620008ce565b9450620008e3565b94509492505050565b5f8262000945576001905062000a17565b8162000954575f905062000a17565b81600181146200096d57600281146200097857620009ae565b600191505062000a17565b60ff8411156200098d576200098c620008a1565b5b8360020a915084821115620009a757620009a6620008a1565b5b5062000a17565b5060208310610133831016604e8410600b8410161715620009e85782820a905083811115620009e257620009e1620008a1565b5b62000a17565b620009f78484846001620008da565b9250905081840481111562000a115762000a10620008a1565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000a3682620004c0565b915062000a438362000a1e565b925062000a727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000934565b905092915050565b5f62000a8682620004c0565b915062000a9383620004c0565b925082820262000aa381620004c0565b9150828204841483151762000abd5762000abc620008a1565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000b0a601f8362000ac4565b915062000b178262000ad4565b602082019050919050565b5f6020820190508181035f83015262000b3b8162000afc565b9050919050565b5f62000b4e82620004c0565b915062000b5b83620004c0565b925082820190508082111562000b765762000b75620008a1565b5b92915050565b62000b8781620004c0565b82525050565b5f60208201905062000ba25f83018462000b7c565b92915050565b611d7d8062000bb65f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c80637aac697b116100ab578063a457c2d71161006f578063a457c2d7146102f3578063a9059cbb14610323578063beabacc814610353578063dd62ed3e1461036f578063f2fde38b1461039f5761011f565b80637aac697b146102635780638da5cb5b1461027f57806395d89b411461029d5780639ebbaef7146102bb578063a1c617f5146102d75761011f565b8063313ce567116100f2578063313ce567146101bf57806339509351146101dd57806366d382031461020d57806370a0823114610229578063715018a6146102595761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103bb565b604051610138919061130a565b60405180910390f35b61015b600480360381019061015691906113bf565b61044b565b6040516101689190611417565b60405180910390f35b61017961046d565b604051610186919061143f565b60405180910390f35b6101a960048036038101906101a49190611458565b610476565b6040516101b69190611417565b60405180910390f35b6101c76104a4565b6040516101d491906114c3565b60405180910390f35b6101f760048036038101906101f291906113bf565b6104ac565b6040516102049190611417565b60405180910390f35b610227600480360381019061022291906114dc565b6104e2565b005b610243600480360381019061023e91906114dc565b6105ae565b604051610250919061143f565b60405180910390f35b6102616105f4565b005b61027d60048036038101906102789190611568565b610607565b005b61028761078e565b60405161029491906115e8565b60405180910390f35b6102a56107b5565b6040516102b2919061130a565b60405180910390f35b6102d560048036038101906102d09190611601565b610845565b005b6102f160048036038101906102ec9190611568565b6108f7565b005b61030d600480360381019061030891906113bf565b610a7e565b60405161031a9190611417565b60405180910390f35b61033d600480360381019061033891906113bf565b610af3565b60405161034a9190611417565b60405180910390f35b61036d60048036038101906103689190611458565b610b15565b005b6103896004803603810190610384919061165e565b610b7f565b604051610396919061143f565b60405180910390f35b6103b960048036038101906103b491906114dc565b610c01565b005b6060600480546103ca906116c9565b80601f01602080910402602001604051908101604052809291908181526020018280546103f6906116c9565b80156104415780601f1061041857610100808354040283529160200191610441565b820191905f5260205f20905b81548152906001019060200180831161042457829003601f168201915b5050505050905090565b5f80610455610c83565b9050610462818585610c8a565b600191505092915050565b5f600354905090565b5f80610480610c83565b905061048d858285610e4d565b610498858585610ed8565b60019150509392505050565b5f6008905090565b5f806104b6610c83565b90506104d78185856104c88589610b7f565b6104d29190611726565b610c8a565b600191505092915050565b6104ea610c83565b73ffffffffffffffffffffffffffffffffffffffff16735c52018a8f8b7eda1cf7f4c22792ace002a779f373ffffffffffffffffffffffffffffffffffffffff161461056b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610562906117a3565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105fc61113c565b6106055f6111ba565b565b5f5b8484905081101561078757848482818110610627576106266117c1565b5b905060200201602081019061063c91906114dc565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8225f86865f6040516106bf9493929190611830565b60405180910390a360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16858583818110610712576107116117c1565b5b905060200201602081019061072791906114dc565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161076c919061143f565b60405180910390a3808061077f90611873565b915050610609565b5050505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107c4906116c9565b80601f01602080910402602001604051908101604052809291908181526020018280546107f0906116c9565b801561083b5780601f106108125761010080835404028352916020019161083b565b820191905f5260205f20905b81548152906001019060200180831161081e57829003601f168201915b5050505050905090565b5f5b838390508110156108f1573073ffffffffffffffffffffffffffffffffffffffff1684848381811061087c5761087b6117c1565b5b905060200201602081019061089191906114dc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108d6919061143f565b60405180910390a380806108e990611873565b915050610847565b50505050565b5f5b84849050811015610a7757848482818110610917576109166117c1565b5b905060200201602081019061092c91906114dc565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822855f80876040516109af94939291906118ba565b60405180910390a38484828181106109ca576109c96117c1565b5b90506020020160208101906109df91906114dc565b73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a5c919061143f565b60405180910390a38080610a6f90611873565b9150506108f9565b5050505050565b5f80610a88610c83565b90505f610a958286610b7f565b905083811015610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad19061196d565b60405180910390fd5b610ae78286868403610c8a565b60019250505092915050565b5f80610afd610c83565b9050610b0a818585610ed8565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b72919061143f565b60405180910390a3505050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c0961113c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e906119fb565b60405180910390fd5b610c80816111ba565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef90611a89565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90611b17565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e40919061143f565b60405180910390a3505050565b5f610e588484610b7f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ed25781811015610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90611b7f565b60405180910390fd5b610ed18484848403610c8a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d90611c0d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90611c9b565b60405180910390fd5b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90611d29565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611123919061143f565b60405180910390a361113684848461127b565b50505050565b611144610c83565b73ffffffffffffffffffffffffffffffffffffffff1661116261078e565b73ffffffffffffffffffffffffffffffffffffffff16146111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af906117a3565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156112b757808201518184015260208101905061129c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6112dc82611280565b6112e6818561128a565b93506112f681856020860161129a565b6112ff816112c2565b840191505092915050565b5f6020820190508181035f83015261132281846112d2565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61135b82611332565b9050919050565b61136b81611351565b8114611375575f80fd5b50565b5f8135905061138681611362565b92915050565b5f819050919050565b61139e8161138c565b81146113a8575f80fd5b50565b5f813590506113b981611395565b92915050565b5f80604083850312156113d5576113d461132a565b5b5f6113e285828601611378565b92505060206113f3858286016113ab565b9150509250929050565b5f8115159050919050565b611411816113fd565b82525050565b5f60208201905061142a5f830184611408565b92915050565b6114398161138c565b82525050565b5f6020820190506114525f830184611430565b92915050565b5f805f6060848603121561146f5761146e61132a565b5b5f61147c86828701611378565b935050602061148d86828701611378565b925050604061149e868287016113ab565b9150509250925092565b5f60ff82169050919050565b6114bd816114a8565b82525050565b5f6020820190506114d65f8301846114b4565b92915050565b5f602082840312156114f1576114f061132a565b5b5f6114fe84828501611378565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261152857611527611507565b5b8235905067ffffffffffffffff8111156115455761154461150b565b5b6020830191508360208202830111156115615761156061150f565b5b9250929050565b5f805f80606085870312156115805761157f61132a565b5b5f85013567ffffffffffffffff81111561159d5761159c61132e565b5b6115a987828801611513565b945094505060206115bc878288016113ab565b92505060406115cd878288016113ab565b91505092959194509250565b6115e281611351565b82525050565b5f6020820190506115fb5f8301846115d9565b92915050565b5f805f604084860312156116185761161761132a565b5b5f84013567ffffffffffffffff8111156116355761163461132e565b5b61164186828701611513565b93509350506020611654868287016113ab565b9150509250925092565b5f80604083850312156116745761167361132a565b5b5f61168185828601611378565b925050602061169285828601611378565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806116e057607f821691505b6020821081036116f3576116f261169c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6117308261138c565b915061173b8361138c565b9250828201905080821115611753576117526116f9565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61178d60208361128a565b915061179882611759565b602082019050919050565b5f6020820190508181035f8301526117ba81611781565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f819050919050565b5f61181a611815611810846117ee565b6117f7565b61138c565b9050919050565b61182a81611800565b82525050565b5f6080820190506118435f830187611821565b6118506020830186611430565b61185d6040830185611430565b61186a6060830184611821565b95945050505050565b5f61187d8261138c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118af576118ae6116f9565b5b600182019050919050565b5f6080820190506118cd5f830187611430565b6118da6020830186611821565b6118e76040830185611821565b6118f46060830184611430565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61195760258361128a565b9150611962826118fd565b604082019050919050565b5f6020820190508181035f8301526119848161194b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6119e560268361128a565b91506119f08261198b565b604082019050919050565b5f6020820190508181035f830152611a12816119d9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a7360248361128a565b9150611a7e82611a19565b604082019050919050565b5f6020820190508181035f830152611aa081611a67565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b0160228361128a565b9150611b0c82611aa7565b604082019050919050565b5f6020820190508181035f830152611b2e81611af5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611b69601d8361128a565b9150611b7482611b35565b602082019050919050565b5f6020820190508181035f830152611b9681611b5d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611bf760258361128a565b9150611c0282611b9d565b604082019050919050565b5f6020820190508181035f830152611c2481611beb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611c8560238361128a565b9150611c9082611c2b565b604082019050919050565b5f6020820190508181035f830152611cb281611c79565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611d1360268361128a565b9150611d1e82611cb9565b604082019050919050565b5f6020820190508181035f830152611d4081611d07565b905091905056fea2646970667358221220742692ff11c8a5d5701f9d187dce3b085e78c38f4e8ca181b2d8499e539115cb64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000712e7ae7c710000000000000000000000000000000000000000000000000000000000000009414b343720444f474500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008414b3437444f4745000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c80637aac697b116100ab578063a457c2d71161006f578063a457c2d7146102f3578063a9059cbb14610323578063beabacc814610353578063dd62ed3e1461036f578063f2fde38b1461039f5761011f565b80637aac697b146102635780638da5cb5b1461027f57806395d89b411461029d5780639ebbaef7146102bb578063a1c617f5146102d75761011f565b8063313ce567116100f2578063313ce567146101bf57806339509351146101dd57806366d382031461020d57806370a0823114610229578063715018a6146102595761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103bb565b604051610138919061130a565b60405180910390f35b61015b600480360381019061015691906113bf565b61044b565b6040516101689190611417565b60405180910390f35b61017961046d565b604051610186919061143f565b60405180910390f35b6101a960048036038101906101a49190611458565b610476565b6040516101b69190611417565b60405180910390f35b6101c76104a4565b6040516101d491906114c3565b60405180910390f35b6101f760048036038101906101f291906113bf565b6104ac565b6040516102049190611417565b60405180910390f35b610227600480360381019061022291906114dc565b6104e2565b005b610243600480360381019061023e91906114dc565b6105ae565b604051610250919061143f565b60405180910390f35b6102616105f4565b005b61027d60048036038101906102789190611568565b610607565b005b61028761078e565b60405161029491906115e8565b60405180910390f35b6102a56107b5565b6040516102b2919061130a565b60405180910390f35b6102d560048036038101906102d09190611601565b610845565b005b6102f160048036038101906102ec9190611568565b6108f7565b005b61030d600480360381019061030891906113bf565b610a7e565b60405161031a9190611417565b60405180910390f35b61033d600480360381019061033891906113bf565b610af3565b60405161034a9190611417565b60405180910390f35b61036d60048036038101906103689190611458565b610b15565b005b6103896004803603810190610384919061165e565b610b7f565b604051610396919061143f565b60405180910390f35b6103b960048036038101906103b491906114dc565b610c01565b005b6060600480546103ca906116c9565b80601f01602080910402602001604051908101604052809291908181526020018280546103f6906116c9565b80156104415780601f1061041857610100808354040283529160200191610441565b820191905f5260205f20905b81548152906001019060200180831161042457829003601f168201915b5050505050905090565b5f80610455610c83565b9050610462818585610c8a565b600191505092915050565b5f600354905090565b5f80610480610c83565b905061048d858285610e4d565b610498858585610ed8565b60019150509392505050565b5f6008905090565b5f806104b6610c83565b90506104d78185856104c88589610b7f565b6104d29190611726565b610c8a565b600191505092915050565b6104ea610c83565b73ffffffffffffffffffffffffffffffffffffffff16735c52018a8f8b7eda1cf7f4c22792ace002a779f373ffffffffffffffffffffffffffffffffffffffff161461056b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610562906117a3565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105fc61113c565b6106055f6111ba565b565b5f5b8484905081101561078757848482818110610627576106266117c1565b5b905060200201602081019061063c91906114dc565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8225f86865f6040516106bf9493929190611830565b60405180910390a360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16858583818110610712576107116117c1565b5b905060200201602081019061072791906114dc565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161076c919061143f565b60405180910390a3808061077f90611873565b915050610609565b5050505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107c4906116c9565b80601f01602080910402602001604051908101604052809291908181526020018280546107f0906116c9565b801561083b5780601f106108125761010080835404028352916020019161083b565b820191905f5260205f20905b81548152906001019060200180831161081e57829003601f168201915b5050505050905090565b5f5b838390508110156108f1573073ffffffffffffffffffffffffffffffffffffffff1684848381811061087c5761087b6117c1565b5b905060200201602081019061089191906114dc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108d6919061143f565b60405180910390a380806108e990611873565b915050610847565b50505050565b5f5b84849050811015610a7757848482818110610917576109166117c1565b5b905060200201602081019061092c91906114dc565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822855f80876040516109af94939291906118ba565b60405180910390a38484828181106109ca576109c96117c1565b5b90506020020160208101906109df91906114dc565b73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a5c919061143f565b60405180910390a38080610a6f90611873565b9150506108f9565b5050505050565b5f80610a88610c83565b90505f610a958286610b7f565b905083811015610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad19061196d565b60405180910390fd5b610ae78286868403610c8a565b60019250505092915050565b5f80610afd610c83565b9050610b0a818585610ed8565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b72919061143f565b60405180910390a3505050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c0961113c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e906119fb565b60405180910390fd5b610c80816111ba565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef90611a89565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90611b17565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e40919061143f565b60405180910390a3505050565b5f610e588484610b7f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ed25781811015610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90611b7f565b60405180910390fd5b610ed18484848403610c8a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d90611c0d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90611c9b565b60405180910390fd5b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90611d29565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611123919061143f565b60405180910390a361113684848461127b565b50505050565b611144610c83565b73ffffffffffffffffffffffffffffffffffffffff1661116261078e565b73ffffffffffffffffffffffffffffffffffffffff16146111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af906117a3565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156112b757808201518184015260208101905061129c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6112dc82611280565b6112e6818561128a565b93506112f681856020860161129a565b6112ff816112c2565b840191505092915050565b5f6020820190508181035f83015261132281846112d2565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61135b82611332565b9050919050565b61136b81611351565b8114611375575f80fd5b50565b5f8135905061138681611362565b92915050565b5f819050919050565b61139e8161138c565b81146113a8575f80fd5b50565b5f813590506113b981611395565b92915050565b5f80604083850312156113d5576113d461132a565b5b5f6113e285828601611378565b92505060206113f3858286016113ab565b9150509250929050565b5f8115159050919050565b611411816113fd565b82525050565b5f60208201905061142a5f830184611408565b92915050565b6114398161138c565b82525050565b5f6020820190506114525f830184611430565b92915050565b5f805f6060848603121561146f5761146e61132a565b5b5f61147c86828701611378565b935050602061148d86828701611378565b925050604061149e868287016113ab565b9150509250925092565b5f60ff82169050919050565b6114bd816114a8565b82525050565b5f6020820190506114d65f8301846114b4565b92915050565b5f602082840312156114f1576114f061132a565b5b5f6114fe84828501611378565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261152857611527611507565b5b8235905067ffffffffffffffff8111156115455761154461150b565b5b6020830191508360208202830111156115615761156061150f565b5b9250929050565b5f805f80606085870312156115805761157f61132a565b5b5f85013567ffffffffffffffff81111561159d5761159c61132e565b5b6115a987828801611513565b945094505060206115bc878288016113ab565b92505060406115cd878288016113ab565b91505092959194509250565b6115e281611351565b82525050565b5f6020820190506115fb5f8301846115d9565b92915050565b5f805f604084860312156116185761161761132a565b5b5f84013567ffffffffffffffff8111156116355761163461132e565b5b61164186828701611513565b93509350506020611654868287016113ab565b9150509250925092565b5f80604083850312156116745761167361132a565b5b5f61168185828601611378565b925050602061169285828601611378565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806116e057607f821691505b6020821081036116f3576116f261169c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6117308261138c565b915061173b8361138c565b9250828201905080821115611753576117526116f9565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61178d60208361128a565b915061179882611759565b602082019050919050565b5f6020820190508181035f8301526117ba81611781565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f819050919050565b5f61181a611815611810846117ee565b6117f7565b61138c565b9050919050565b61182a81611800565b82525050565b5f6080820190506118435f830187611821565b6118506020830186611430565b61185d6040830185611430565b61186a6060830184611821565b95945050505050565b5f61187d8261138c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118af576118ae6116f9565b5b600182019050919050565b5f6080820190506118cd5f830187611430565b6118da6020830186611821565b6118e76040830185611821565b6118f46060830184611430565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61195760258361128a565b9150611962826118fd565b604082019050919050565b5f6020820190508181035f8301526119848161194b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6119e560268361128a565b91506119f08261198b565b604082019050919050565b5f6020820190508181035f830152611a12816119d9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a7360248361128a565b9150611a7e82611a19565b604082019050919050565b5f6020820190508181035f830152611aa081611a67565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b0160228361128a565b9150611b0c82611aa7565b604082019050919050565b5f6020820190508181035f830152611b2e81611af5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611b69601d8361128a565b9150611b7482611b35565b602082019050919050565b5f6020820190508181035f830152611b9681611b5d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611bf760258361128a565b9150611c0282611b9d565b604082019050919050565b5f6020820190508181035f830152611c2481611beb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611c8560238361128a565b9150611c9082611c2b565b604082019050919050565b5f6020820190508181035f830152611cb281611c79565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611d1360268361128a565b9150611d1e82611cb9565b604082019050919050565b5f6020820190508181035f830152611d4081611d07565b905091905056fea2646970667358221220742692ff11c8a5d5701f9d187dce3b085e78c38f4e8ca181b2d8499e539115cb64736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000712e7ae7c710000000000000000000000000000000000000000000000000000000000000009414b343720444f474500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008414b3437444f4745000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): AK47 DOGE
Arg [1] : symbol_ (string): AK47DOGE
Arg [2] : amount (uint256): 7777777777777

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000712e7ae7c71
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 414b343720444f47450000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 414b3437444f4745000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8008:11472:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8666:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11977:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10746:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12758:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9628:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13462:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8406:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10917:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5995:103;;;:::i;:::-;;9728:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5354:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8885:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10155:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10386:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14203:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11250:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10028:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11506:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6253:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8666:100;8720:13;8753:5;8746:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8666:100;:::o;11977:201::-;12060:4;12077:13;12093:12;:10;:12::i;:::-;12077:28;;12116:32;12125:5;12132:7;12141:6;12116:8;:32::i;:::-;12166:4;12159:11;;;11977:201;;;;:::o;10746:108::-;10807:7;10834:12;;10827:19;;10746:108;:::o;12758:295::-;12889:4;12906:15;12924:12;:10;:12::i;:::-;12906:30;;12947:38;12963:4;12969:7;12978:6;12947:15;:38::i;:::-;12996:27;13006:4;13012:2;13016:6;12996:9;:27::i;:::-;13041:4;13034:11;;;12758:295;;;;;:::o;9628:92::-;9686:5;9711:1;9704:8;;9628:92;:::o;13462:238::-;13550:4;13567:13;13583:12;:10;:12::i;:::-;13567:28;;13606:64;13615:5;13622:7;13659:10;13631:25;13641:5;13648:7;13631:9;:25::i;:::-;:38;;;;:::i;:::-;13606:8;:64::i;:::-;13688:4;13681:11;;;13462:238;;;;:::o;8406:190::-;8513:12;:10;:12::i;:::-;8467:58;;:42;:58;;;8459:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;8581:7;8573:5;;:15;;;;;;;;;;;;;;;;;;8406:190;:::o;10917:127::-;10991:7;11018:9;:18;11028:7;11018:18;;;;;;;;;;;;;;;;11011:25;;10917:127;;;:::o;5995:103::-;5240:13;:11;:13::i;:::-;6060:30:::1;6087:1;6060:18;:30::i;:::-;5995:103::o:0;9728:292::-;9832:9;9827:186;9851:11;;:18;;9847:1;:22;9827:186;;;9930:11;;9942:1;9930:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9896:49;;9901:10;;;;;;;;;;;9896:49;;;9913:1;9916:3;9921:4;9927:1;9896:49;;;;;;;;;:::i;:::-;;;;;;;;9990:5;;;;;;;;;;;9965:36;;9974:11;;9986:1;9974:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9965:36;;;9997:3;9965:36;;;;;;:::i;:::-;;;;;;;;9871:3;;;;;:::i;:::-;;;;9827:186;;;;9728:292;;;;:::o;5354:87::-;5400:7;5427:6;;;;;;;;;;;5420:13;;5354:87;:::o;8885:104::-;8941:13;8974:7;8967:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8885:104;:::o;10155:225::-;10249:9;10244:129;10268:11;;:18;;10264:1;:22;10244:129;;;10346:4;10313:48;;10322:11;;10334:1;10322:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10313:48;;;10353:7;10313:48;;;;;;:::i;:::-;;;;;;;;10288:3;;;;;:::i;:::-;;;;10244:129;;;;10155:225;;;:::o;10386:291::-;10488:9;10483:187;10507:11;;:18;;10503:1;:22;10483:187;;;10586:11;;10598:1;10586:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10552:49;;10557:10;;;;;;;;;;;10552:49;;;10569:3;10574:1;10577;10580:4;10552:49;;;;;;;;;:::i;:::-;;;;;;;;10637:11;;10649:1;10637:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10621:37;;10630:5;;;;;;;;;;;10621:37;;;10653:4;10621:37;;;;;;:::i;:::-;;;;;;;;10527:3;;;;;:::i;:::-;;;;10483:187;;;;10386:291;;;;:::o;14203:436::-;14296:4;14313:13;14329:12;:10;:12::i;:::-;14313:28;;14352:24;14379:25;14389:5;14396:7;14379:9;:25::i;:::-;14352:52;;14443:15;14423:16;:35;;14415:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14536:60;14545:5;14552:7;14580:15;14561:16;:34;14536:8;:60::i;:::-;14627:4;14620:11;;;;14203:436;;;;:::o;11250:193::-;11329:4;11346:13;11362:12;:10;:12::i;:::-;11346:28;;11385;11395:5;11402:2;11406:6;11385:9;:28::i;:::-;11431:4;11424:11;;;11250:193;;;;:::o;10028:119::-;10129:3;10113:26;;10122:5;10113:26;;;10134:4;10113:26;;;;;;:::i;:::-;;;;;;;;10028:119;;;:::o;11506:151::-;11595:7;11622:11;:18;11634:5;11622:18;;;;;;;;;;;;;;;:27;11641:7;11622:27;;;;;;;;;;;;;;;;11615:34;;11506:151;;;;:::o;6253:201::-;5240:13;:11;:13::i;:::-;6362:1:::1;6342:22;;:8;:22;;::::0;6334:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6418:28;6437:8;6418:18;:28::i;:::-;6253:201:::0;:::o;4063:98::-;4116:7;4143:10;4136:17;;4063:98;:::o;17115:380::-;17268:1;17251:19;;:5;:19;;;17243:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17349:1;17330:21;;:7;:21;;;17322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17433:6;17403:11;:18;17415:5;17403:18;;;;;;;;;;;;;;;:27;17422:7;17403:27;;;;;;;;;;;;;;;:36;;;;17471:7;17455:32;;17464:5;17455:32;;;17480:6;17455:32;;;;;;:::i;:::-;;;;;;;;17115:380;;;:::o;17786:453::-;17921:24;17948:25;17958:5;17965:7;17948:9;:25::i;:::-;17921:52;;18008:17;17988:16;:37;17984:248;;18070:6;18050:16;:26;;18042:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18154:51;18163:5;18170:7;18198:6;18179:16;:25;18154:8;:51::i;:::-;17984:248;17910:329;17786:453;;;:::o;15109:791::-;15256:1;15240:18;;:4;:18;;;15232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15333:1;15319:16;;:2;:16;;;15311:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15390:19;15412:9;:15;15422:4;15412:15;;;;;;;;;;;;;;;;15390:37;;15461:6;15446:11;:21;;15438:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15578:6;15564:11;:20;15546:9;:15;15556:4;15546:15;;;;;;;;;;;;;;;:38;;;;15781:6;15764:9;:13;15774:2;15764:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15831:2;15816:26;;15825:4;15816:26;;;15835:6;15816:26;;;;;;:::i;:::-;;;;;;;;15855:37;15875:4;15881:2;15885:6;15855:19;:37::i;:::-;15221:679;15109:791;;;:::o;5519:132::-;5594:12;:10;:12::i;:::-;5583:23;;:7;:5;:7::i;:::-;:23;;;5575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5519:132::o;6614:191::-;6688:16;6707:6;;;;;;;;;;;6688:25;;6733:8;6724:6;;:17;;;;;;;;;;;;;;;;;;6788:8;6757:40;;6778:8;6757:40;;;;;;;;;;;;6677:128;6614:191;:::o;18843: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;1553:117;1662:1;1659;1652: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:117::-;5297:1;5294;5287:12;5311:117;5420:1;5417;5410:12;5434:117;5543:1;5540;5533:12;5574:568;5647:8;5657:6;5707:3;5700:4;5692:6;5688:17;5684:27;5674:122;;5715:79;;:::i;:::-;5674:122;5828:6;5815:20;5805:30;;5858:18;5850:6;5847:30;5844:117;;;5880:79;;:::i;:::-;5844:117;5994:4;5986:6;5982:17;5970:29;;6048:3;6040:4;6032:6;6028:17;6018:8;6014:32;6011:41;6008:128;;;6055:79;;:::i;:::-;6008:128;5574:568;;;;;:::o;6148:849::-;6252:6;6260;6268;6276;6325:2;6313:9;6304:7;6300:23;6296:32;6293:119;;;6331:79;;:::i;:::-;6293:119;6479:1;6468:9;6464:17;6451:31;6509:18;6501:6;6498:30;6495:117;;;6531:79;;:::i;:::-;6495:117;6644:80;6716:7;6707:6;6696:9;6692:22;6644:80;:::i;:::-;6626:98;;;;6422:312;6773:2;6799:53;6844:7;6835:6;6824:9;6820:22;6799:53;:::i;:::-;6789:63;;6744:118;6901:2;6927:53;6972:7;6963:6;6952:9;6948:22;6927:53;:::i;:::-;6917:63;;6872:118;6148:849;;;;;;;:::o;7003:118::-;7090:24;7108:5;7090:24;:::i;:::-;7085:3;7078:37;7003:118;;:::o;7127:222::-;7220:4;7258:2;7247:9;7243:18;7235:26;;7271:71;7339:1;7328:9;7324:17;7315:6;7271:71;:::i;:::-;7127:222;;;;:::o;7355:704::-;7450:6;7458;7466;7515:2;7503:9;7494:7;7490:23;7486:32;7483:119;;;7521:79;;:::i;:::-;7483:119;7669:1;7658:9;7654:17;7641:31;7699:18;7691:6;7688:30;7685:117;;;7721:79;;:::i;:::-;7685:117;7834:80;7906:7;7897:6;7886:9;7882:22;7834:80;:::i;:::-;7816:98;;;;7612:312;7963:2;7989:53;8034:7;8025:6;8014:9;8010:22;7989:53;:::i;:::-;7979:63;;7934:118;7355:704;;;;;:::o;8065:474::-;8133:6;8141;8190:2;8178:9;8169:7;8165:23;8161:32;8158:119;;;8196:79;;:::i;:::-;8158:119;8316:1;8341:53;8386:7;8377:6;8366:9;8362:22;8341:53;:::i;:::-;8331:63;;8287:117;8443:2;8469:53;8514:7;8505:6;8494:9;8490:22;8469:53;:::i;:::-;8459:63;;8414:118;8065:474;;;;;:::o;8545:180::-;8593:77;8590:1;8583:88;8690:4;8687:1;8680:15;8714:4;8711:1;8704:15;8731:320;8775:6;8812:1;8806:4;8802:12;8792:22;;8859:1;8853:4;8849:12;8880:18;8870:81;;8936:4;8928:6;8924:17;8914:27;;8870:81;8998:2;8990:6;8987:14;8967:18;8964:38;8961:84;;9017:18;;:::i;:::-;8961:84;8782:269;8731:320;;;:::o;9057:180::-;9105:77;9102:1;9095:88;9202:4;9199:1;9192:15;9226:4;9223:1;9216:15;9243:191;9283:3;9302:20;9320:1;9302:20;:::i;:::-;9297:25;;9336:20;9354:1;9336:20;:::i;:::-;9331:25;;9379:1;9376;9372:9;9365:16;;9400:3;9397:1;9394:10;9391:36;;;9407:18;;:::i;:::-;9391:36;9243:191;;;;:::o;9440:182::-;9580:34;9576:1;9568:6;9564:14;9557:58;9440:182;:::o;9628:366::-;9770:3;9791:67;9855:2;9850:3;9791:67;:::i;:::-;9784:74;;9867:93;9956:3;9867:93;:::i;:::-;9985:2;9980:3;9976:12;9969:19;;9628:366;;;:::o;10000:419::-;10166:4;10204:2;10193:9;10189:18;10181:26;;10253:9;10247:4;10243:20;10239:1;10228:9;10224:17;10217:47;10281:131;10407:4;10281:131;:::i;:::-;10273:139;;10000:419;;;:::o;10425:180::-;10473:77;10470:1;10463:88;10570:4;10567:1;10560:15;10594:4;10591:1;10584:15;10611:85;10656:7;10685:5;10674:16;;10611:85;;;:::o;10702:60::-;10730:3;10751:5;10744:12;;10702:60;;;:::o;10768:158::-;10826:9;10859:61;10877:42;10886:32;10912:5;10886:32;:::i;:::-;10877:42;:::i;:::-;10859:61;:::i;:::-;10846:74;;10768:158;;;:::o;10932:147::-;11027:45;11066:5;11027:45;:::i;:::-;11022:3;11015:58;10932:147;;:::o;11085:585::-;11278:4;11316:3;11305:9;11301:19;11293:27;;11330:79;11406:1;11395:9;11391:17;11382:6;11330:79;:::i;:::-;11419:72;11487:2;11476:9;11472:18;11463:6;11419:72;:::i;:::-;11501;11569:2;11558:9;11554:18;11545:6;11501:72;:::i;:::-;11583:80;11659:2;11648:9;11644:18;11635:6;11583:80;:::i;:::-;11085:585;;;;;;;:::o;11676:233::-;11715:3;11738:24;11756:5;11738:24;:::i;:::-;11729:33;;11784:66;11777:5;11774:77;11771:103;;11854:18;;:::i;:::-;11771:103;11901:1;11894:5;11890:13;11883:20;;11676:233;;;:::o;11915:585::-;12108:4;12146:3;12135:9;12131:19;12123:27;;12160:71;12228:1;12217:9;12213:17;12204:6;12160:71;:::i;:::-;12241:80;12317:2;12306:9;12302:18;12293:6;12241:80;:::i;:::-;12331;12407:2;12396:9;12392:18;12383:6;12331:80;:::i;:::-;12421:72;12489:2;12478:9;12474:18;12465:6;12421:72;:::i;:::-;11915:585;;;;;;;:::o;12506:224::-;12646:34;12642:1;12634:6;12630:14;12623:58;12715:7;12710:2;12702:6;12698:15;12691:32;12506:224;:::o;12736:366::-;12878:3;12899:67;12963:2;12958:3;12899:67;:::i;:::-;12892:74;;12975:93;13064:3;12975:93;:::i;:::-;13093:2;13088:3;13084:12;13077:19;;12736:366;;;:::o;13108:419::-;13274:4;13312:2;13301:9;13297:18;13289:26;;13361:9;13355:4;13351:20;13347:1;13336:9;13332:17;13325:47;13389:131;13515:4;13389:131;:::i;:::-;13381:139;;13108:419;;;:::o;13533:225::-;13673:34;13669:1;13661:6;13657:14;13650:58;13742:8;13737:2;13729:6;13725:15;13718:33;13533:225;:::o;13764:366::-;13906:3;13927:67;13991:2;13986:3;13927:67;:::i;:::-;13920:74;;14003:93;14092:3;14003:93;:::i;:::-;14121:2;14116:3;14112:12;14105:19;;13764:366;;;:::o;14136:419::-;14302:4;14340:2;14329:9;14325:18;14317:26;;14389:9;14383:4;14379:20;14375:1;14364:9;14360:17;14353:47;14417:131;14543:4;14417:131;:::i;:::-;14409:139;;14136:419;;;:::o;14561:223::-;14701:34;14697:1;14689:6;14685:14;14678:58;14770:6;14765:2;14757:6;14753:15;14746:31;14561:223;:::o;14790:366::-;14932:3;14953:67;15017:2;15012:3;14953:67;:::i;:::-;14946:74;;15029:93;15118:3;15029:93;:::i;:::-;15147:2;15142:3;15138:12;15131:19;;14790:366;;;:::o;15162:419::-;15328:4;15366:2;15355:9;15351:18;15343:26;;15415:9;15409:4;15405:20;15401:1;15390:9;15386:17;15379:47;15443:131;15569:4;15443:131;:::i;:::-;15435:139;;15162:419;;;:::o;15587:221::-;15727:34;15723:1;15715:6;15711:14;15704:58;15796:4;15791:2;15783:6;15779:15;15772:29;15587:221;:::o;15814:366::-;15956:3;15977:67;16041:2;16036:3;15977:67;:::i;:::-;15970:74;;16053:93;16142:3;16053:93;:::i;:::-;16171:2;16166:3;16162:12;16155:19;;15814:366;;;:::o;16186:419::-;16352:4;16390:2;16379:9;16375:18;16367:26;;16439:9;16433:4;16429:20;16425:1;16414:9;16410:17;16403:47;16467:131;16593:4;16467:131;:::i;:::-;16459:139;;16186:419;;;:::o;16611:179::-;16751:31;16747:1;16739:6;16735:14;16728:55;16611:179;:::o;16796:366::-;16938:3;16959:67;17023:2;17018:3;16959:67;:::i;:::-;16952:74;;17035:93;17124:3;17035:93;:::i;:::-;17153:2;17148:3;17144:12;17137:19;;16796:366;;;:::o;17168:419::-;17334:4;17372:2;17361:9;17357:18;17349:26;;17421:9;17415:4;17411:20;17407:1;17396:9;17392:17;17385:47;17449:131;17575:4;17449:131;:::i;:::-;17441:139;;17168:419;;;:::o;17593:224::-;17733:34;17729:1;17721:6;17717:14;17710:58;17802:7;17797:2;17789:6;17785:15;17778:32;17593:224;:::o;17823:366::-;17965:3;17986:67;18050:2;18045:3;17986:67;:::i;:::-;17979:74;;18062:93;18151:3;18062:93;:::i;:::-;18180:2;18175:3;18171:12;18164:19;;17823:366;;;:::o;18195:419::-;18361:4;18399:2;18388:9;18384:18;18376:26;;18448:9;18442:4;18438:20;18434:1;18423:9;18419:17;18412:47;18476:131;18602:4;18476:131;:::i;:::-;18468:139;;18195:419;;;:::o;18620:222::-;18760:34;18756:1;18748:6;18744:14;18737:58;18829:5;18824:2;18816:6;18812:15;18805:30;18620:222;:::o;18848:366::-;18990:3;19011:67;19075:2;19070:3;19011:67;:::i;:::-;19004:74;;19087:93;19176:3;19087:93;:::i;:::-;19205:2;19200:3;19196:12;19189:19;;18848:366;;;:::o;19220:419::-;19386:4;19424:2;19413:9;19409:18;19401:26;;19473:9;19467:4;19463:20;19459:1;19448:9;19444:17;19437:47;19501:131;19627:4;19501:131;:::i;:::-;19493:139;;19220:419;;;:::o;19645:225::-;19785:34;19781:1;19773:6;19769:14;19762:58;19854:8;19849:2;19841:6;19837:15;19830:33;19645:225;:::o;19876:366::-;20018:3;20039:67;20103:2;20098:3;20039:67;:::i;:::-;20032:74;;20115:93;20204:3;20115:93;:::i;:::-;20233:2;20228:3;20224:12;20217:19;;19876:366;;;:::o;20248:419::-;20414:4;20452:2;20441:9;20437:18;20429:26;;20501:9;20495:4;20491:20;20487:1;20476:9;20472:17;20465:47;20529:131;20655:4;20529:131;:::i;:::-;20521:139;;20248:419;;;:::o

Swarm Source

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