ETH Price: $2,421.55 (+0.05%)

Token

ZaddyZelenskyy (ZADDY)
 

Overview

Max Total Supply

49,433,451,472.26410789803107659 ZADDY

Holders

508

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
319,391.517631936856046275 ZADDY

Value
$0.00
0x4578a83477ab5f9147ed54ba9eb3be2a94a7af0f
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:
Zaddy

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-02
*/

// SPDX-License-Identifier: MIT

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol

// OpenZeppelin Contracts v4.3.2 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.3.2 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}

pragma solidity ^0.8.5;

// OpenZeppelin Contracts v4.3.2 (token/ERC20/ERC20.sol)


contract Ownable is Context
{
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

    /**
    * @dev Initializes the contract setting the deployer as the initial owner.
    */
    constructor ()
    {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
    * @dev Throws if called by any account other than the owner.
    */
    modifier onlyOwner()
    {
        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
    {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function getUnlockTime() public view returns (uint256)
    {
        return _lockTime;
    }

}

contract Zaddy is ERC20, Ownable
{
    mapping (address => bool) private _isExcludedFromFee;

    address[] private _excluded;

    address DevWallet1 = 0x90291D0778Af73C87Fc3865bF50A0Ca122E3a62E;
    address DevWallet2 = 0xF3dbe70188C49Dfbecbd6F16AF6dd3Ce8Ec93b81;
    address DevWallet3 = 0x8ddca023C1d0F4BF33a284DaEF38C3C5803ccb82;
    address DevWallet4 = 0xf8a22F34A07f4A9b04A195e46A43de04b69c6114;

    constructor() ERC20('ZaddyZelenskyy', 'ZADDY')
    {
        // Exclude dev wallet from fees for testing
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[DevWallet1] = true;
        _isExcludedFromFee[DevWallet2] = true;
        _isExcludedFromFee[DevWallet3] = true;
        _isExcludedFromFee[DevWallet4] = true;


        _mint(msg.sender, 50000000000 * 10 ** 18);
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool)
    {
        uint256 singleFee = (amount / 100);     //Calculate 1% fee
        uint256 burnFee = singleFee * 3 / 2;       //Calculate burn fee 1.5%
        uint256 devFee = singleFee * 6;      //Calculate dev wallet dee

        uint256 newAmmount = amount - burnFee - devFee; //Calculate new amount

        if(isExcludedFromFee(_msgSender()))
        {
            _transfer(_msgSender(), recipient, amount);
        }
        else
        {
            _transfer(_msgSender(), DevWallet1, devFee);
            _burn(_msgSender(), burnFee);
            _transfer(_msgSender(), recipient, newAmmount);
        }

        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool)
    {
        uint256 singleFee = (amount / 100);     //Calculate 1% fee
        uint256 burnFee = singleFee * 3 /2;       //Calculate burn fee 1.5%
        uint256 devFee = singleFee * 6;      //Calculate dev wallet dee

        uint256 newAmmount = amount - burnFee - devFee; //Calculate new amount

        uint256 currentAllowance = allowance(sender,_msgSender());

        if (currentAllowance != type(uint256).max)
        {
            require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");

            unchecked
            {
                _approve(sender, _msgSender(), currentAllowance - amount);
            }
        }

        if(isExcludedFromFee(_msgSender()))
        {
            _transfer(sender, recipient, amount);
        }
        else
        {
            _transfer(sender, DevWallet1, devFee);
            _burn(sender, burnFee);
            _transfer(sender, recipient, newAmmount);
        }

        return true;
    }

    function setExcludeFromFee(address account, bool excluded) external onlyOwner()
    {
        _isExcludedFromFee[account] = excluded;
    }

    function isExcludedFromFee(address account) public view returns(bool)
    {
        return _isExcludedFromFee[account];
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040527390291d0778af73c87fc3865bf50a0ca122e3a62e600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f3dbe70188c49dfbecbd6f16af6dd3ce8ec93b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738ddca023c1d0f4bf33a284daef38c3c5803ccb82600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f8a22f34a07f4a9b04a195e46a43de04b69c6114600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200016557600080fd5b506040518060400160405280600e81526020017f5a616464795a656c656e736b79790000000000000000000000000000000000008152506040518060400160405280600581526020017f5a414444590000000000000000000000000000000000000000000000000000008152508160039080519060200190620001ea92919062000737565b5080600490805190602001906200020392919062000737565b5050506000620002186200058260201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600160086000620002cd6200058a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200057c336ba18f07d736b90be550000000620005b460201b60201c565b62000993565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000627576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061e9062000848565b60405180910390fd5b6200063b600083836200072d60201b60201c565b80600260008282546200064f9190620008a3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620006a69190620008a3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200070d919062000911565b60405180910390a362000729600083836200073260201b60201c565b5050565b505050565b505050565b82805462000745906200095d565b90600052602060002090601f016020900481019282620007695760008555620007b5565b82601f106200078457805160ff1916838001178555620007b5565b82800160010185558215620007b5579182015b82811115620007b457825182559160200191906001019062000797565b5b509050620007c49190620007c8565b5090565b5b80821115620007e3576000816000905550600101620007c9565b5090565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000830601f83620007e7565b91506200083d82620007f8565b602082019050919050565b60006020820190508181036000830152620008638162000821565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008b0826200086a565b9150620008bd836200086a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008f557620008f462000874565b5b828201905092915050565b6200090b816200086a565b82525050565b600060208201905062000928600083018462000900565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200097657607f821691505b602082108114156200098d576200098c6200092e565b5b50919050565b61201080620009a36000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102be578063a9059cbb146102ee578063af9549e01461031e578063dd62ed3e1461033a578063f2fde38b1461036a5761010b565b806370a0823114610248578063715018a6146102785780638da5cb5b1461028257806395d89b41146102a05761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780635342acb4146101fa578063602bc62b1461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610386565b60405161012591906114fe565b60405180910390f35b610148600480360381019061014391906115b9565b610418565b6040516101559190611614565b60405180910390f35b610166610436565b604051610173919061163e565b60405180910390f35b61019660048036038101906101919190611659565b610440565b6040516101a39190611614565b60405180910390f35b6101b46105a7565b6040516101c191906116c8565b60405180910390f35b6101e460048036038101906101df91906115b9565b6105b0565b6040516101f19190611614565b60405180910390f35b610214600480360381019061020f91906116e3565b61065c565b6040516102219190611614565b60405180910390f35b6102326106b2565b60405161023f919061163e565b60405180910390f35b610262600480360381019061025d91906116e3565b6106bc565b60405161026f919061163e565b60405180910390f35b610280610704565b005b61028a61085c565b604051610297919061171f565b60405180910390f35b6102a8610886565b6040516102b591906114fe565b60405180910390f35b6102d860048036038101906102d391906115b9565b610918565b6040516102e59190611614565b60405180910390f35b610308600480360381019061030391906115b9565b610a03565b6040516103159190611614565b60405180910390f35b61033860048036038101906103339190611766565b610af0565b005b610354600480360381019061034f91906117a6565b610be2565b604051610361919061163e565b60405180910390f35b610384600480360381019061037f91906116e3565b610c69565b005b60606003805461039590611815565b80601f01602080910402602001604051908101604052809291908181526020018280546103c190611815565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b600061042c610425610e30565b8484610e38565b6001905092915050565b6000600254905090565b60008060648361045091906118a5565b90506000600260038361046391906118d6565b61046d91906118a5565b9050600060068361047e91906118d6565b9050600081838761048f9190611930565b6104999190611930565b905060006104ae896104a9610e30565b610be2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461052f578681101561051a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610511906119d6565b60405180910390fd5b61052e89610526610e30565b898403610e38565b5b61053f61053a610e30565b61065c565b156105545761054f898989611003565b610597565b61058189600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611003565b61058b8985611284565b610596898984611003565b5b6001955050505050509392505050565b60006012905090565b60006106526105bd610e30565b8484600160006105cb610e30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064d91906119f6565b610e38565b6001905092915050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600754905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61070c610e30565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461079b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079290611a98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461089590611815565b80601f01602080910402602001604051908101604052809291908181526020018280546108c190611815565b801561090e5780601f106108e35761010080835404028352916020019161090e565b820191906000526020600020905b8154815290600101906020018083116108f157829003601f168201915b5050505050905090565b60008060016000610927610e30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db90611b2a565b60405180910390fd5b6109f86109ef610e30565b85858403610e38565b600191505092915050565b600080606483610a1391906118a5565b905060006002600383610a2691906118d6565b610a3091906118a5565b90506000600683610a4191906118d6565b90506000818387610a529190611930565b610a5c9190611930565b9050610a6e610a69610e30565b61065c565b15610a8a57610a85610a7e610e30565b8888611003565b610ae2565b610abe610a95610e30565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611003565b610acf610ac9610e30565b84611284565b610ae1610ada610e30565b8883611003565b5b600194505050505092915050565b610af8610e30565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e90611a98565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c71610e30565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf790611a98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790611bbc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90611c4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90611ce0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ff6919061163e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a90611d72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90611e04565b60405180910390fd5b6110ee83838361145b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90611e96565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461120791906119f6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126b919061163e565b60405180910390a361127e848484611460565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90611f28565b60405180910390fd5b6113008260008361145b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90611fba565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113dd9190611930565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611442919061163e565b60405180910390a361145683600084611460565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561149f578082015181840152602081019050611484565b838111156114ae576000848401525b50505050565b6000601f19601f8301169050919050565b60006114d082611465565b6114da8185611470565b93506114ea818560208601611481565b6114f3816114b4565b840191505092915050565b6000602082019050818103600083015261151881846114c5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061155082611525565b9050919050565b61156081611545565b811461156b57600080fd5b50565b60008135905061157d81611557565b92915050565b6000819050919050565b61159681611583565b81146115a157600080fd5b50565b6000813590506115b38161158d565b92915050565b600080604083850312156115d0576115cf611520565b5b60006115de8582860161156e565b92505060206115ef858286016115a4565b9150509250929050565b60008115159050919050565b61160e816115f9565b82525050565b60006020820190506116296000830184611605565b92915050565b61163881611583565b82525050565b6000602082019050611653600083018461162f565b92915050565b60008060006060848603121561167257611671611520565b5b60006116808682870161156e565b93505060206116918682870161156e565b92505060406116a2868287016115a4565b9150509250925092565b600060ff82169050919050565b6116c2816116ac565b82525050565b60006020820190506116dd60008301846116b9565b92915050565b6000602082840312156116f9576116f8611520565b5b60006117078482850161156e565b91505092915050565b61171981611545565b82525050565b60006020820190506117346000830184611710565b92915050565b611743816115f9565b811461174e57600080fd5b50565b6000813590506117608161173a565b92915050565b6000806040838503121561177d5761177c611520565b5b600061178b8582860161156e565b925050602061179c85828601611751565b9150509250929050565b600080604083850312156117bd576117bc611520565b5b60006117cb8582860161156e565b92505060206117dc8582860161156e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061182d57607f821691505b60208210811415611841576118406117e6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118b082611583565b91506118bb83611583565b9250826118cb576118ca611847565b5b828204905092915050565b60006118e182611583565b91506118ec83611583565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561192557611924611876565b5b828202905092915050565b600061193b82611583565b915061194683611583565b92508282101561195957611958611876565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006119c0602883611470565b91506119cb82611964565b604082019050919050565b600060208201905081810360008301526119ef816119b3565b9050919050565b6000611a0182611583565b9150611a0c83611583565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a4157611a40611876565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a82602083611470565b9150611a8d82611a4c565b602082019050919050565b60006020820190508181036000830152611ab181611a75565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b14602583611470565b9150611b1f82611ab8565b604082019050919050565b60006020820190508181036000830152611b4381611b07565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ba6602683611470565b9150611bb182611b4a565b604082019050919050565b60006020820190508181036000830152611bd581611b99565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c38602483611470565b9150611c4382611bdc565b604082019050919050565b60006020820190508181036000830152611c6781611c2b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cca602283611470565b9150611cd582611c6e565b604082019050919050565b60006020820190508181036000830152611cf981611cbd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d5c602583611470565b9150611d6782611d00565b604082019050919050565b60006020820190508181036000830152611d8b81611d4f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611dee602383611470565b9150611df982611d92565b604082019050919050565b60006020820190508181036000830152611e1d81611de1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e80602683611470565b9150611e8b82611e24565b604082019050919050565b60006020820190508181036000830152611eaf81611e73565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f12602183611470565b9150611f1d82611eb6565b604082019050919050565b60006020820190508181036000830152611f4181611f05565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fa4602283611470565b9150611faf82611f48565b604082019050919050565b60006020820190508181036000830152611fd381611f97565b905091905056fea264697066735822122013ce3141039e89cf24367d973ba56a421bfad478e44434b588129acff706b87b64736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102be578063a9059cbb146102ee578063af9549e01461031e578063dd62ed3e1461033a578063f2fde38b1461036a5761010b565b806370a0823114610248578063715018a6146102785780638da5cb5b1461028257806395d89b41146102a05761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780635342acb4146101fa578063602bc62b1461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610386565b60405161012591906114fe565b60405180910390f35b610148600480360381019061014391906115b9565b610418565b6040516101559190611614565b60405180910390f35b610166610436565b604051610173919061163e565b60405180910390f35b61019660048036038101906101919190611659565b610440565b6040516101a39190611614565b60405180910390f35b6101b46105a7565b6040516101c191906116c8565b60405180910390f35b6101e460048036038101906101df91906115b9565b6105b0565b6040516101f19190611614565b60405180910390f35b610214600480360381019061020f91906116e3565b61065c565b6040516102219190611614565b60405180910390f35b6102326106b2565b60405161023f919061163e565b60405180910390f35b610262600480360381019061025d91906116e3565b6106bc565b60405161026f919061163e565b60405180910390f35b610280610704565b005b61028a61085c565b604051610297919061171f565b60405180910390f35b6102a8610886565b6040516102b591906114fe565b60405180910390f35b6102d860048036038101906102d391906115b9565b610918565b6040516102e59190611614565b60405180910390f35b610308600480360381019061030391906115b9565b610a03565b6040516103159190611614565b60405180910390f35b61033860048036038101906103339190611766565b610af0565b005b610354600480360381019061034f91906117a6565b610be2565b604051610361919061163e565b60405180910390f35b610384600480360381019061037f91906116e3565b610c69565b005b60606003805461039590611815565b80601f01602080910402602001604051908101604052809291908181526020018280546103c190611815565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b600061042c610425610e30565b8484610e38565b6001905092915050565b6000600254905090565b60008060648361045091906118a5565b90506000600260038361046391906118d6565b61046d91906118a5565b9050600060068361047e91906118d6565b9050600081838761048f9190611930565b6104999190611930565b905060006104ae896104a9610e30565b610be2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461052f578681101561051a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610511906119d6565b60405180910390fd5b61052e89610526610e30565b898403610e38565b5b61053f61053a610e30565b61065c565b156105545761054f898989611003565b610597565b61058189600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611003565b61058b8985611284565b610596898984611003565b5b6001955050505050509392505050565b60006012905090565b60006106526105bd610e30565b8484600160006105cb610e30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064d91906119f6565b610e38565b6001905092915050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600754905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61070c610e30565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461079b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079290611a98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461089590611815565b80601f01602080910402602001604051908101604052809291908181526020018280546108c190611815565b801561090e5780601f106108e35761010080835404028352916020019161090e565b820191906000526020600020905b8154815290600101906020018083116108f157829003601f168201915b5050505050905090565b60008060016000610927610e30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db90611b2a565b60405180910390fd5b6109f86109ef610e30565b85858403610e38565b600191505092915050565b600080606483610a1391906118a5565b905060006002600383610a2691906118d6565b610a3091906118a5565b90506000600683610a4191906118d6565b90506000818387610a529190611930565b610a5c9190611930565b9050610a6e610a69610e30565b61065c565b15610a8a57610a85610a7e610e30565b8888611003565b610ae2565b610abe610a95610e30565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611003565b610acf610ac9610e30565b84611284565b610ae1610ada610e30565b8883611003565b5b600194505050505092915050565b610af8610e30565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e90611a98565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c71610e30565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf790611a98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790611bbc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90611c4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90611ce0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ff6919061163e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a90611d72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90611e04565b60405180910390fd5b6110ee83838361145b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90611e96565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461120791906119f6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126b919061163e565b60405180910390a361127e848484611460565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90611f28565b60405180910390fd5b6113008260008361145b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90611fba565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113dd9190611930565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611442919061163e565b60405180910390a361145683600084611460565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561149f578082015181840152602081019050611484565b838111156114ae576000848401525b50505050565b6000601f19601f8301169050919050565b60006114d082611465565b6114da8185611470565b93506114ea818560208601611481565b6114f3816114b4565b840191505092915050565b6000602082019050818103600083015261151881846114c5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061155082611525565b9050919050565b61156081611545565b811461156b57600080fd5b50565b60008135905061157d81611557565b92915050565b6000819050919050565b61159681611583565b81146115a157600080fd5b50565b6000813590506115b38161158d565b92915050565b600080604083850312156115d0576115cf611520565b5b60006115de8582860161156e565b92505060206115ef858286016115a4565b9150509250929050565b60008115159050919050565b61160e816115f9565b82525050565b60006020820190506116296000830184611605565b92915050565b61163881611583565b82525050565b6000602082019050611653600083018461162f565b92915050565b60008060006060848603121561167257611671611520565b5b60006116808682870161156e565b93505060206116918682870161156e565b92505060406116a2868287016115a4565b9150509250925092565b600060ff82169050919050565b6116c2816116ac565b82525050565b60006020820190506116dd60008301846116b9565b92915050565b6000602082840312156116f9576116f8611520565b5b60006117078482850161156e565b91505092915050565b61171981611545565b82525050565b60006020820190506117346000830184611710565b92915050565b611743816115f9565b811461174e57600080fd5b50565b6000813590506117608161173a565b92915050565b6000806040838503121561177d5761177c611520565b5b600061178b8582860161156e565b925050602061179c85828601611751565b9150509250929050565b600080604083850312156117bd576117bc611520565b5b60006117cb8582860161156e565b92505060206117dc8582860161156e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061182d57607f821691505b60208210811415611841576118406117e6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118b082611583565b91506118bb83611583565b9250826118cb576118ca611847565b5b828204905092915050565b60006118e182611583565b91506118ec83611583565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561192557611924611876565b5b828202905092915050565b600061193b82611583565b915061194683611583565b92508282101561195957611958611876565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006119c0602883611470565b91506119cb82611964565b604082019050919050565b600060208201905081810360008301526119ef816119b3565b9050919050565b6000611a0182611583565b9150611a0c83611583565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a4157611a40611876565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a82602083611470565b9150611a8d82611a4c565b602082019050919050565b60006020820190508181036000830152611ab181611a75565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b14602583611470565b9150611b1f82611ab8565b604082019050919050565b60006020820190508181036000830152611b4381611b07565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ba6602683611470565b9150611bb182611b4a565b604082019050919050565b60006020820190508181036000830152611bd581611b99565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c38602483611470565b9150611c4382611bdc565b604082019050919050565b60006020820190508181036000830152611c6781611c2b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cca602283611470565b9150611cd582611c6e565b604082019050919050565b60006020820190508181036000830152611cf981611cbd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d5c602583611470565b9150611d6782611d00565b604082019050919050565b60006020820190508181036000830152611d8b81611d4f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611dee602383611470565b9150611df982611d92565b604082019050919050565b60006020820190508181036000830152611e1d81611de1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e80602683611470565b9150611e8b82611e24565b604082019050919050565b60006020820190508181036000830152611eaf81611e73565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f12602183611470565b9150611f1d82611eb6565b604082019050919050565b60006020820190508181036000830152611f4181611f05565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fa4602283611470565b9150611faf82611f48565b604082019050919050565b60006020820190508181036000830152611fd381611f97565b905091905056fea264697066735822122013ce3141039e89cf24367d973ba56a421bfad478e44434b588129acff706b87b64736f6c634300080c0033

Deployed Bytecode Sourcemap

18819:3261:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6896:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9063:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8016:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20671:1120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7858:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10615:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21949:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18715:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8187:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18153:153;;;:::i;:::-;;17509:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7115:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11333:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19909:754;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21799:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8765:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18458:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6896:100;6950:13;6983:5;6976:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6896:100;:::o;9063:169::-;9146:4;9163:39;9172:12;:10;:12::i;:::-;9186:7;9195:6;9163:8;:39::i;:::-;9220:4;9213:11;;9063:169;;;;:::o;8016:108::-;8077:7;8104:12;;8097:19;;8016:108;:::o;20671:1120::-;20777:4;20799:17;20829:3;20820:6;:12;;;;:::i;:::-;20799:34;;20867:15;20900:1;20897;20885:9;:13;;;;:::i;:::-;:16;;;;:::i;:::-;20867:34;;20944:14;20973:1;20961:9;:13;;;;:::i;:::-;20944:30;;21019:18;21059:6;21049:7;21040:6;:16;;;;:::i;:::-;:25;;;;:::i;:::-;21019:46;;21101:24;21128:30;21138:6;21145:12;:10;:12::i;:::-;21128:9;:30::i;:::-;21101:57;;21195:17;21175:16;:37;21171:289;;21266:6;21246:16;:26;;21238:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;21376:57;21385:6;21393:12;:10;:12::i;:::-;21426:6;21407:16;:25;21376:8;:57::i;:::-;21171:289;21475:31;21493:12;:10;:12::i;:::-;21475:17;:31::i;:::-;21472:288;;;21532:36;21542:6;21550:9;21561:6;21532:9;:36::i;:::-;21472:288;;;21619:37;21629:6;21637:10;;;;;;;;;;;21649:6;21619:9;:37::i;:::-;21671:22;21677:6;21685:7;21671:5;:22::i;:::-;21708:40;21718:6;21726:9;21737:10;21708:9;:40::i;:::-;21472:288;21779:4;21772:11;;;;;;;20671:1120;;;;;:::o;7858:93::-;7916:5;7941:2;7934:9;;7858:93;:::o;10615:215::-;10703:4;10720:80;10729:12;:10;:12::i;:::-;10743:7;10789:10;10752:11;:25;10764:12;:10;:12::i;:::-;10752:25;;;;;;;;;;;;;;;:34;10778:7;10752:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10720:8;:80::i;:::-;10818:4;10811:11;;10615:215;;;;:::o;21949:128::-;22013:4;22042:18;:27;22061:7;22042:27;;;;;;;;;;;;;;;;;;;;;;;;;22035:34;;21949:128;;;:::o;18715:95::-;18761:7;18793:9;;18786:16;;18715:95;:::o;8187:127::-;8261:7;8288:9;:18;8298:7;8288:18;;;;;;;;;;;;;;;;8281:25;;8187:127;;;:::o;18153:153::-;17739:12;:10;:12::i;:::-;17729:22;;:6;;;;;;;;;;;:22;;;17721:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18265:1:::1;18228:40;;18249:6;;;;;;;;;;;18228:40;;;;;;;;;;;;18296:1;18279:6;;:19;;;;;;;;;;;;;;;;;;18153:153::o:0;17509:84::-;17547:7;17579:6;;;;;;;;;;;17572:13;;17509:84;:::o;7115:104::-;7171:13;7204:7;7197:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7115:104;:::o;11333:413::-;11426:4;11443:24;11470:11;:25;11482:12;:10;:12::i;:::-;11470:25;;;;;;;;;;;;;;;:34;11496:7;11470:34;;;;;;;;;;;;;;;;11443:61;;11543:15;11523:16;:35;;11515:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11636:67;11645:12;:10;:12::i;:::-;11659:7;11687:15;11668:16;:34;11636:8;:67::i;:::-;11734:4;11727:11;;;11333:413;;;;:::o;19909:754::-;19995:4;20017:17;20047:3;20038:6;:12;;;;:::i;:::-;20017:34;;20085:15;20119:1;20115;20103:9;:13;;;;:::i;:::-;:17;;;;:::i;:::-;20085:35;;20163:14;20192:1;20180:9;:13;;;;:::i;:::-;20163:30;;20238:18;20278:6;20268:7;20259:6;:16;;;;:::i;:::-;:25;;;;:::i;:::-;20238:46;;20323:31;20341:12;:10;:12::i;:::-;20323:17;:31::i;:::-;20320:312;;;20380:42;20390:12;:10;:12::i;:::-;20404:9;20415:6;20380:9;:42::i;:::-;20320:312;;;20473:43;20483:12;:10;:12::i;:::-;20497:10;;;;;;;;;;;20509:6;20473:9;:43::i;:::-;20531:28;20537:12;:10;:12::i;:::-;20551:7;20531:5;:28::i;:::-;20574:46;20584:12;:10;:12::i;:::-;20598:9;20609:10;20574:9;:46::i;:::-;20320:312;20651:4;20644:11;;;;;;19909:754;;;;:::o;21799:142::-;17739:12;:10;:12::i;:::-;17729:22;;:6;;;;;;;;;;;:22;;;17721:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21925:8:::1;21895:18;:27;21914:7;21895:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;21799:142:::0;;:::o;8765:151::-;8854:7;8881:11;:18;8893:5;8881:18;;;;;;;;;;;;;;;:27;8900:7;8881:27;;;;;;;;;;;;;;;;8874:34;;8765:151;;;;:::o;18458:249::-;17739:12;:10;:12::i;:::-;17729:22;;:6;;;;;;;;;;;:22;;;17721:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18572:1:::1;18552:22;;:8;:22;;;;18544:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18662:8;18633:38;;18654:6;;;;;;;;;;;18633:38;;;;;;;;;;;;18691:8;18682:6;;:17;;;;;;;;;;;;;;;;;;18458:249:::0;:::o;765:98::-;818:7;845:10;838:17;;765:98;:::o;15017:380::-;15170:1;15153:19;;:5;:19;;;;15145:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15251:1;15232:21;;:7;:21;;;;15224:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15335:6;15305:11;:18;15317:5;15305:18;;;;;;;;;;;;;;;:27;15324:7;15305:27;;;;;;;;;;;;;;;:36;;;;15373:7;15357:32;;15366:5;15357:32;;;15382:6;15357:32;;;;;;:::i;:::-;;;;;;;;15017:380;;;:::o;12236:733::-;12394:1;12376:20;;:6;:20;;;;12368:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12478:1;12457:23;;:9;:23;;;;12449:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12533:47;12554:6;12562:9;12573:6;12533:20;:47::i;:::-;12593:21;12617:9;:17;12627:6;12617:17;;;;;;;;;;;;;;;;12593:41;;12670:6;12653:13;:23;;12645:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12791:6;12775:13;:22;12755:9;:17;12765:6;12755:17;;;;;;;;;;;;;;;:42;;;;12843:6;12819:9;:20;12829:9;12819:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12884:9;12867:35;;12876:6;12867:35;;;12895:6;12867:35;;;;;;:::i;:::-;;;;;;;;12915:46;12935:6;12943:9;12954:6;12915:19;:46::i;:::-;12357:612;12236:733;;;:::o;13988:591::-;14091:1;14072:21;;:7;:21;;;;14064:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14144:49;14165:7;14182:1;14186:6;14144:20;:49::i;:::-;14206:22;14231:9;:18;14241:7;14231:18;;;;;;;;;;;;;;;;14206:43;;14286:6;14268:14;:24;;14260:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14405:6;14388:14;:23;14367:9;:18;14377:7;14367:18;;;;;;;;;;;;;;;:44;;;;14449:6;14433:12;;:22;;;;;;;:::i;:::-;;;;;;;;14499:1;14473:37;;14482:7;14473:37;;;14503:6;14473:37;;;;;;:::i;:::-;;;;;;;;14523:48;14543:7;14560:1;14564:6;14523:19;:48::i;:::-;14053:526;13988:591;;:::o;15997:125::-;;;;:::o;16726: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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:116::-;5658:21;5673:5;5658:21;:::i;:::-;5651:5;5648:32;5638:60;;5694:1;5691;5684:12;5638:60;5588:116;:::o;5710:133::-;5753:5;5791:6;5778:20;5769:29;;5807:30;5831:5;5807:30;:::i;:::-;5710:133;;;;:::o;5849:468::-;5914:6;5922;5971:2;5959:9;5950:7;5946:23;5942:32;5939:119;;;5977:79;;:::i;:::-;5939:119;6097:1;6122:53;6167:7;6158:6;6147:9;6143:22;6122:53;:::i;:::-;6112:63;;6068:117;6224:2;6250:50;6292:7;6283:6;6272:9;6268:22;6250:50;:::i;:::-;6240:60;;6195:115;5849:468;;;;;:::o;6323:474::-;6391:6;6399;6448:2;6436:9;6427:7;6423:23;6419:32;6416:119;;;6454:79;;:::i;:::-;6416:119;6574:1;6599:53;6644:7;6635:6;6624:9;6620:22;6599:53;:::i;:::-;6589:63;;6545:117;6701:2;6727:53;6772:7;6763:6;6752:9;6748:22;6727:53;:::i;:::-;6717:63;;6672:118;6323:474;;;;;:::o;6803:180::-;6851:77;6848:1;6841:88;6948:4;6945:1;6938:15;6972:4;6969:1;6962:15;6989:320;7033:6;7070:1;7064:4;7060:12;7050:22;;7117:1;7111:4;7107:12;7138:18;7128:81;;7194:4;7186:6;7182:17;7172:27;;7128:81;7256:2;7248:6;7245:14;7225:18;7222:38;7219:84;;;7275:18;;:::i;:::-;7219:84;7040:269;6989:320;;;:::o;7315:180::-;7363:77;7360:1;7353:88;7460:4;7457:1;7450:15;7484:4;7481:1;7474:15;7501:180;7549:77;7546:1;7539:88;7646:4;7643:1;7636:15;7670:4;7667:1;7660:15;7687:185;7727:1;7744:20;7762:1;7744:20;:::i;:::-;7739:25;;7778:20;7796:1;7778:20;:::i;:::-;7773:25;;7817:1;7807:35;;7822:18;;:::i;:::-;7807:35;7864:1;7861;7857:9;7852:14;;7687:185;;;;:::o;7878:348::-;7918:7;7941:20;7959:1;7941:20;:::i;:::-;7936:25;;7975:20;7993:1;7975:20;:::i;:::-;7970:25;;8163:1;8095:66;8091:74;8088:1;8085:81;8080:1;8073:9;8066:17;8062:105;8059:131;;;8170:18;;:::i;:::-;8059:131;8218:1;8215;8211:9;8200:20;;7878:348;;;;:::o;8232:191::-;8272:4;8292:20;8310:1;8292:20;:::i;:::-;8287:25;;8326:20;8344:1;8326:20;:::i;:::-;8321:25;;8365:1;8362;8359:8;8356:34;;;8370:18;;:::i;:::-;8356:34;8415:1;8412;8408:9;8400:17;;8232:191;;;;:::o;8429:227::-;8569:34;8565:1;8557:6;8553:14;8546:58;8638:10;8633:2;8625:6;8621:15;8614:35;8429:227;:::o;8662:366::-;8804:3;8825:67;8889:2;8884:3;8825:67;:::i;:::-;8818:74;;8901:93;8990:3;8901:93;:::i;:::-;9019:2;9014:3;9010:12;9003:19;;8662:366;;;:::o;9034:419::-;9200:4;9238:2;9227:9;9223:18;9215:26;;9287:9;9281:4;9277:20;9273:1;9262:9;9258:17;9251:47;9315:131;9441:4;9315:131;:::i;:::-;9307:139;;9034:419;;;:::o;9459:305::-;9499:3;9518:20;9536:1;9518:20;:::i;:::-;9513:25;;9552:20;9570:1;9552:20;:::i;:::-;9547:25;;9706:1;9638:66;9634:74;9631:1;9628:81;9625:107;;;9712:18;;:::i;:::-;9625:107;9756:1;9753;9749:9;9742:16;;9459:305;;;;:::o;9770:182::-;9910:34;9906:1;9898:6;9894:14;9887:58;9770:182;:::o;9958:366::-;10100:3;10121:67;10185:2;10180:3;10121:67;:::i;:::-;10114:74;;10197:93;10286:3;10197:93;:::i;:::-;10315:2;10310:3;10306:12;10299:19;;9958:366;;;:::o;10330:419::-;10496:4;10534:2;10523:9;10519:18;10511:26;;10583:9;10577:4;10573:20;10569:1;10558:9;10554:17;10547:47;10611:131;10737:4;10611:131;:::i;:::-;10603:139;;10330:419;;;:::o;10755:224::-;10895:34;10891:1;10883:6;10879:14;10872:58;10964:7;10959:2;10951:6;10947:15;10940:32;10755:224;:::o;10985:366::-;11127:3;11148:67;11212:2;11207:3;11148:67;:::i;:::-;11141:74;;11224:93;11313:3;11224:93;:::i;:::-;11342:2;11337:3;11333:12;11326:19;;10985:366;;;:::o;11357:419::-;11523:4;11561:2;11550:9;11546:18;11538:26;;11610:9;11604:4;11600:20;11596:1;11585:9;11581:17;11574:47;11638:131;11764:4;11638:131;:::i;:::-;11630:139;;11357:419;;;:::o;11782:225::-;11922:34;11918:1;11910:6;11906:14;11899:58;11991:8;11986:2;11978:6;11974:15;11967:33;11782:225;:::o;12013:366::-;12155:3;12176:67;12240:2;12235:3;12176:67;:::i;:::-;12169:74;;12252:93;12341:3;12252:93;:::i;:::-;12370:2;12365:3;12361:12;12354:19;;12013:366;;;:::o;12385:419::-;12551:4;12589:2;12578:9;12574:18;12566:26;;12638:9;12632:4;12628:20;12624:1;12613:9;12609:17;12602:47;12666:131;12792:4;12666:131;:::i;:::-;12658:139;;12385:419;;;:::o;12810:223::-;12950:34;12946:1;12938:6;12934:14;12927:58;13019:6;13014:2;13006:6;13002:15;12995:31;12810:223;:::o;13039:366::-;13181:3;13202:67;13266:2;13261:3;13202:67;:::i;:::-;13195:74;;13278:93;13367:3;13278:93;:::i;:::-;13396:2;13391:3;13387:12;13380:19;;13039:366;;;:::o;13411:419::-;13577:4;13615:2;13604:9;13600:18;13592:26;;13664:9;13658:4;13654:20;13650:1;13639:9;13635:17;13628:47;13692:131;13818:4;13692:131;:::i;:::-;13684:139;;13411:419;;;:::o;13836:221::-;13976:34;13972:1;13964:6;13960:14;13953:58;14045:4;14040:2;14032:6;14028:15;14021:29;13836:221;:::o;14063:366::-;14205:3;14226:67;14290:2;14285:3;14226:67;:::i;:::-;14219:74;;14302:93;14391:3;14302:93;:::i;:::-;14420:2;14415:3;14411:12;14404:19;;14063:366;;;:::o;14435:419::-;14601:4;14639:2;14628:9;14624:18;14616:26;;14688:9;14682:4;14678:20;14674:1;14663:9;14659:17;14652:47;14716:131;14842:4;14716:131;:::i;:::-;14708:139;;14435:419;;;:::o;14860:224::-;15000:34;14996:1;14988:6;14984:14;14977:58;15069:7;15064:2;15056:6;15052:15;15045:32;14860:224;:::o;15090:366::-;15232:3;15253:67;15317:2;15312:3;15253:67;:::i;:::-;15246:74;;15329:93;15418:3;15329:93;:::i;:::-;15447:2;15442:3;15438:12;15431:19;;15090:366;;;:::o;15462:419::-;15628:4;15666:2;15655:9;15651:18;15643:26;;15715:9;15709:4;15705:20;15701:1;15690:9;15686:17;15679:47;15743:131;15869:4;15743:131;:::i;:::-;15735:139;;15462:419;;;:::o;15887:222::-;16027:34;16023:1;16015:6;16011:14;16004:58;16096:5;16091:2;16083:6;16079:15;16072:30;15887:222;:::o;16115:366::-;16257:3;16278:67;16342:2;16337:3;16278:67;:::i;:::-;16271:74;;16354:93;16443:3;16354:93;:::i;:::-;16472:2;16467:3;16463:12;16456:19;;16115:366;;;:::o;16487:419::-;16653:4;16691:2;16680:9;16676:18;16668:26;;16740:9;16734:4;16730:20;16726:1;16715:9;16711:17;16704:47;16768:131;16894:4;16768:131;:::i;:::-;16760:139;;16487:419;;;:::o;16912:225::-;17052:34;17048:1;17040:6;17036:14;17029:58;17121:8;17116:2;17108:6;17104:15;17097:33;16912:225;:::o;17143:366::-;17285:3;17306:67;17370:2;17365:3;17306:67;:::i;:::-;17299:74;;17382:93;17471:3;17382:93;:::i;:::-;17500:2;17495:3;17491:12;17484:19;;17143:366;;;:::o;17515:419::-;17681:4;17719:2;17708:9;17704:18;17696:26;;17768:9;17762:4;17758:20;17754:1;17743:9;17739:17;17732:47;17796:131;17922:4;17796:131;:::i;:::-;17788:139;;17515:419;;;:::o;17940:220::-;18080:34;18076:1;18068:6;18064:14;18057:58;18149:3;18144:2;18136:6;18132:15;18125:28;17940:220;:::o;18166:366::-;18308:3;18329:67;18393:2;18388:3;18329:67;:::i;:::-;18322:74;;18405:93;18494:3;18405:93;:::i;:::-;18523:2;18518:3;18514:12;18507:19;;18166:366;;;:::o;18538:419::-;18704:4;18742:2;18731:9;18727:18;18719:26;;18791:9;18785:4;18781:20;18777:1;18766:9;18762:17;18755:47;18819:131;18945:4;18819:131;:::i;:::-;18811:139;;18538:419;;;:::o;18963:221::-;19103:34;19099:1;19091:6;19087:14;19080:58;19172:4;19167:2;19159:6;19155:15;19148:29;18963:221;:::o;19190:366::-;19332:3;19353:67;19417:2;19412:3;19353:67;:::i;:::-;19346:74;;19429:93;19518:3;19429:93;:::i;:::-;19547:2;19542:3;19538:12;19531:19;;19190:366;;;:::o;19562:419::-;19728:4;19766:2;19755:9;19751:18;19743:26;;19815:9;19809:4;19805:20;19801:1;19790:9;19786:17;19779:47;19843:131;19969:4;19843:131;:::i;:::-;19835:139;;19562:419;;;:::o

Swarm Source

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