ETH Price: $2,964.73 (+2.21%)
Gas: 1 Gwei

Token

Astra Guild Ventures Token (AGV)
 

Overview

Max Total Supply

2,000,000,000 AGV

Holders

3,135 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,640.625 AGV

Value
$0.00
0x33fb8dd2aa6bba1610209d6848c5506525a52180
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Astra Guild Ventures (AGV) is a Decentralized Autonomous Organization (DAO) that invests in NFTs, P2E games, and other blockchain projects. It is a global community of investors, tech leaders, NFT and blockchain enthusiasts, and P2E players.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AGV

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-10
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;


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

/* ============================================================= */
/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/* ============================================================= */

/**
 * @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 guidelines: functions revert instead
 * of 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 {
    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 defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All three 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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
     * overloaded;
     *
     * 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 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");
        _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");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(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:
     *
     * - `to` 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);
    }

    /**
     * @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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 to 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 Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}
/* ============================================================================== */

/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

/* ============================================================================== */

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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;
    }
}

/* ============================================================================== */


contract AGV is ERC20, ERC20Pausable, Ownable {

    /* All Token will be distributed on Gnosis-safe multisig wallet. */
    address public multiSigAdd = 0x03872114a6581E035Da8387159B00197EDe5D0cb;
    
    constructor() ERC20("Astra Guild Ventures Token","AGV") {
        _mint(multiSigAdd,   2000000000000000000000000000);
    }

   function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override (ERC20, ERC20Pausable){
        super._beforeTokenTransfer(from, to, amount);
    }
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"multiSigAdd","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040527303872114a6581e035da8387159b00197ede5d0cb600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b506040518060400160405280601a81526020017f4173747261204775696c642056656e747572657320546f6b656e0000000000008152506040518060400160405280600381526020017f41475600000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000eb9291906200042f565b508060049080519060200190620001049291906200042f565b5050506000600560006101000a81548160ff0219169083151502179055506000620001346200021960201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000213600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166b06765c793fa10079d00000006200022160201b60201c565b62000723565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000294576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028b9062000540565b60405180910390fd5b620002a8600083836200038660201b60201c565b8060026000828254620002bc91906200059b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200031391906200059b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200037a919062000609565b60405180910390a35050565b6200039e838383620003a360201b62000b801760201c565b505050565b620003bb8383836200041360201b62000bd81760201c565b620003cb6200041860201b60201c565b156200040e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000405906200069c565b60405180910390fd5b505050565b505050565b6000600560009054906101000a900460ff16905090565b8280546200043d90620006ed565b90600052602060002090601f016020900481019282620004615760008555620004ad565b82601f106200047c57805160ff1916838001178555620004ad565b82800160010185558215620004ad579182015b82811115620004ac5782518255916020019190600101906200048f565b5b509050620004bc9190620004c0565b5090565b5b80821115620004db576000816000905550600101620004c1565b5090565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000528601f83620004df565b91506200053582620004f0565b602082019050919050565b600060208201905081810360008301526200055b8162000519565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620005a88262000562565b9150620005b58362000562565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005ed57620005ec6200056c565b5b828201905092915050565b620006038162000562565b82525050565b6000602082019050620006206000830184620005f8565b92915050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b600062000684602a83620004df565b9150620006918262000626565b604082019050919050565b60006020820190508181036000830152620006b78162000675565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070657607f821691505b602082108114156200071d576200071c620006be565b5b50919050565b611a3280620007336000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146102b3578063c658e593146102e3578063dd62ed3e14610301578063f2fde38b1461033157610100565b8063715018a61461023d5780638da5cb5b1461024757806395d89b4114610265578063a457c2d71461028357610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf5780635c975abb146101ef57806370a082311461020d57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034d565b60405161011a91906110d8565b60405180910390f35b61013d60048036038101906101389190611193565b6103df565b60405161014a91906111ee565b60405180910390f35b61015b6103fd565b6040516101689190611218565b60405180910390f35b61018b60048036038101906101869190611233565b610407565b60405161019891906111ee565b60405180910390f35b6101a9610508565b6040516101b691906112a2565b60405180910390f35b6101d960048036038101906101d49190611193565b610511565b6040516101e691906111ee565b60405180910390f35b6101f76105bd565b60405161020491906111ee565b60405180910390f35b610227600480360381019061022291906112bd565b6105d4565b6040516102349190611218565b60405180910390f35b61024561061c565b005b61024f610759565b60405161025c91906112f9565b60405180910390f35b61026d610783565b60405161027a91906110d8565b60405180910390f35b61029d60048036038101906102989190611193565b610815565b6040516102aa91906111ee565b60405180910390f35b6102cd60048036038101906102c89190611193565b610909565b6040516102da91906111ee565b60405180910390f35b6102eb610927565b6040516102f891906112f9565b60405180910390f35b61031b60048036038101906103169190611314565b61094d565b6040516103289190611218565b60405180910390f35b61034b600480360381019061034691906112bd565b6109d4565b005b60606003805461035c90611383565b80601f016020809104026020016040519081016040528092919081815260200182805461038890611383565b80156103d55780601f106103aa576101008083540402835291602001916103d5565b820191906000526020600020905b8154815290600101906020018083116103b857829003601f168201915b5050505050905090565b60006103f36103ec610bdd565b8484610be5565b6001905092915050565b6000600254905090565b6000610414848484610db0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045f610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d690611427565b60405180910390fd5b6104fc856104eb610bdd565b85846104f79190611476565b610be5565b60019150509392505050565b60006012905090565b60006105b361051e610bdd565b84846001600061052c610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ae91906114aa565b610be5565b6001905092915050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610624610bdd565b73ffffffffffffffffffffffffffffffffffffffff16610642610759565b73ffffffffffffffffffffffffffffffffffffffff1614610698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068f9061154c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461079290611383565b80601f01602080910402602001604051908101604052809291908181526020018280546107be90611383565b801561080b5780601f106107e05761010080835404028352916020019161080b565b820191906000526020600020905b8154815290600101906020018083116107ee57829003601f168201915b5050505050905090565b60008060016000610824610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d8906115de565b60405180910390fd5b6108fe6108ec610bdd565b8585846108f99190611476565b610be5565b600191505092915050565b600061091d610916610bdd565b8484610db0565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109dc610bdd565b73ffffffffffffffffffffffffffffffffffffffff166109fa610759565b73ffffffffffffffffffffffffffffffffffffffff1614610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a479061154c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab790611670565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b8b838383610bd8565b610b936105bd565b15610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca90611702565b60405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90611794565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90611826565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610da39190611218565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e17906118b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e879061194a565b60405180910390fd5b610e9b83838361102f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f18906119dc565b60405180910390fd5b8181610f2d9190611476565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fbd91906114aa565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110219190611218565b60405180910390a350505050565b61103a838383610b80565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561107957808201518184015260208101905061105e565b83811115611088576000848401525b50505050565b6000601f19601f8301169050919050565b60006110aa8261103f565b6110b4818561104a565b93506110c481856020860161105b565b6110cd8161108e565b840191505092915050565b600060208201905081810360008301526110f2818461109f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061112a826110ff565b9050919050565b61113a8161111f565b811461114557600080fd5b50565b60008135905061115781611131565b92915050565b6000819050919050565b6111708161115d565b811461117b57600080fd5b50565b60008135905061118d81611167565b92915050565b600080604083850312156111aa576111a96110fa565b5b60006111b885828601611148565b92505060206111c98582860161117e565b9150509250929050565b60008115159050919050565b6111e8816111d3565b82525050565b600060208201905061120360008301846111df565b92915050565b6112128161115d565b82525050565b600060208201905061122d6000830184611209565b92915050565b60008060006060848603121561124c5761124b6110fa565b5b600061125a86828701611148565b935050602061126b86828701611148565b925050604061127c8682870161117e565b9150509250925092565b600060ff82169050919050565b61129c81611286565b82525050565b60006020820190506112b76000830184611293565b92915050565b6000602082840312156112d3576112d26110fa565b5b60006112e184828501611148565b91505092915050565b6112f38161111f565b82525050565b600060208201905061130e60008301846112ea565b92915050565b6000806040838503121561132b5761132a6110fa565b5b600061133985828601611148565b925050602061134a85828601611148565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061139b57607f821691505b602082108114156113af576113ae611354565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061141160288361104a565b915061141c826113b5565b604082019050919050565b6000602082019050818103600083015261144081611404565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114818261115d565b915061148c8361115d565b92508282101561149f5761149e611447565b5b828203905092915050565b60006114b58261115d565b91506114c08361115d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114f5576114f4611447565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061153660208361104a565b915061154182611500565b602082019050919050565b6000602082019050818103600083015261156581611529565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115c860258361104a565b91506115d38261156c565b604082019050919050565b600060208201905081810360008301526115f7816115bb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061165a60268361104a565b9150611665826115fe565b604082019050919050565b600060208201905081810360008301526116898161164d565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b60006116ec602a8361104a565b91506116f782611690565b604082019050919050565b6000602082019050818103600083015261171b816116df565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061177e60248361104a565b915061178982611722565b604082019050919050565b600060208201905081810360008301526117ad81611771565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061181060228361104a565b915061181b826117b4565b604082019050919050565b6000602082019050818103600083015261183f81611803565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118a260258361104a565b91506118ad82611846565b604082019050919050565b600060208201905081810360008301526118d181611895565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061193460238361104a565b915061193f826118d8565b604082019050919050565b6000602082019050818103600083015261196381611927565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119c660268361104a565b91506119d18261196a565b604082019050919050565b600060208201905081810360008301526119f5816119b9565b905091905056fea2646970667358221220fea37f01bcb01ac3f27899c8478f63cdad04f8a55ec9d3100217e29263e22eb764736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146102b3578063c658e593146102e3578063dd62ed3e14610301578063f2fde38b1461033157610100565b8063715018a61461023d5780638da5cb5b1461024757806395d89b4114610265578063a457c2d71461028357610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf5780635c975abb146101ef57806370a082311461020d57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034d565b60405161011a91906110d8565b60405180910390f35b61013d60048036038101906101389190611193565b6103df565b60405161014a91906111ee565b60405180910390f35b61015b6103fd565b6040516101689190611218565b60405180910390f35b61018b60048036038101906101869190611233565b610407565b60405161019891906111ee565b60405180910390f35b6101a9610508565b6040516101b691906112a2565b60405180910390f35b6101d960048036038101906101d49190611193565b610511565b6040516101e691906111ee565b60405180910390f35b6101f76105bd565b60405161020491906111ee565b60405180910390f35b610227600480360381019061022291906112bd565b6105d4565b6040516102349190611218565b60405180910390f35b61024561061c565b005b61024f610759565b60405161025c91906112f9565b60405180910390f35b61026d610783565b60405161027a91906110d8565b60405180910390f35b61029d60048036038101906102989190611193565b610815565b6040516102aa91906111ee565b60405180910390f35b6102cd60048036038101906102c89190611193565b610909565b6040516102da91906111ee565b60405180910390f35b6102eb610927565b6040516102f891906112f9565b60405180910390f35b61031b60048036038101906103169190611314565b61094d565b6040516103289190611218565b60405180910390f35b61034b600480360381019061034691906112bd565b6109d4565b005b60606003805461035c90611383565b80601f016020809104026020016040519081016040528092919081815260200182805461038890611383565b80156103d55780601f106103aa576101008083540402835291602001916103d5565b820191906000526020600020905b8154815290600101906020018083116103b857829003601f168201915b5050505050905090565b60006103f36103ec610bdd565b8484610be5565b6001905092915050565b6000600254905090565b6000610414848484610db0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045f610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d690611427565b60405180910390fd5b6104fc856104eb610bdd565b85846104f79190611476565b610be5565b60019150509392505050565b60006012905090565b60006105b361051e610bdd565b84846001600061052c610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ae91906114aa565b610be5565b6001905092915050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610624610bdd565b73ffffffffffffffffffffffffffffffffffffffff16610642610759565b73ffffffffffffffffffffffffffffffffffffffff1614610698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068f9061154c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461079290611383565b80601f01602080910402602001604051908101604052809291908181526020018280546107be90611383565b801561080b5780601f106107e05761010080835404028352916020019161080b565b820191906000526020600020905b8154815290600101906020018083116107ee57829003601f168201915b5050505050905090565b60008060016000610824610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d8906115de565b60405180910390fd5b6108fe6108ec610bdd565b8585846108f99190611476565b610be5565b600191505092915050565b600061091d610916610bdd565b8484610db0565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109dc610bdd565b73ffffffffffffffffffffffffffffffffffffffff166109fa610759565b73ffffffffffffffffffffffffffffffffffffffff1614610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a479061154c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab790611670565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b8b838383610bd8565b610b936105bd565b15610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca90611702565b60405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90611794565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90611826565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610da39190611218565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e17906118b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e879061194a565b60405180910390fd5b610e9b83838361102f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f18906119dc565b60405180910390fd5b8181610f2d9190611476565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fbd91906114aa565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110219190611218565b60405180910390a350505050565b61103a838383610b80565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561107957808201518184015260208101905061105e565b83811115611088576000848401525b50505050565b6000601f19601f8301169050919050565b60006110aa8261103f565b6110b4818561104a565b93506110c481856020860161105b565b6110cd8161108e565b840191505092915050565b600060208201905081810360008301526110f2818461109f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061112a826110ff565b9050919050565b61113a8161111f565b811461114557600080fd5b50565b60008135905061115781611131565b92915050565b6000819050919050565b6111708161115d565b811461117b57600080fd5b50565b60008135905061118d81611167565b92915050565b600080604083850312156111aa576111a96110fa565b5b60006111b885828601611148565b92505060206111c98582860161117e565b9150509250929050565b60008115159050919050565b6111e8816111d3565b82525050565b600060208201905061120360008301846111df565b92915050565b6112128161115d565b82525050565b600060208201905061122d6000830184611209565b92915050565b60008060006060848603121561124c5761124b6110fa565b5b600061125a86828701611148565b935050602061126b86828701611148565b925050604061127c8682870161117e565b9150509250925092565b600060ff82169050919050565b61129c81611286565b82525050565b60006020820190506112b76000830184611293565b92915050565b6000602082840312156112d3576112d26110fa565b5b60006112e184828501611148565b91505092915050565b6112f38161111f565b82525050565b600060208201905061130e60008301846112ea565b92915050565b6000806040838503121561132b5761132a6110fa565b5b600061133985828601611148565b925050602061134a85828601611148565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061139b57607f821691505b602082108114156113af576113ae611354565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061141160288361104a565b915061141c826113b5565b604082019050919050565b6000602082019050818103600083015261144081611404565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114818261115d565b915061148c8361115d565b92508282101561149f5761149e611447565b5b828203905092915050565b60006114b58261115d565b91506114c08361115d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114f5576114f4611447565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061153660208361104a565b915061154182611500565b602082019050919050565b6000602082019050818103600083015261156581611529565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115c860258361104a565b91506115d38261156c565b604082019050919050565b600060208201905081810360008301526115f7816115bb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061165a60268361104a565b9150611665826115fe565b604082019050919050565b600060208201905081810360008301526116898161164d565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b60006116ec602a8361104a565b91506116f782611690565b604082019050919050565b6000602082019050818103600083015261171b816116df565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061177e60248361104a565b915061178982611722565b604082019050919050565b600060208201905081810360008301526117ad81611771565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061181060228361104a565b915061181b826117b4565b604082019050919050565b6000602082019050818103600083015261183f81611803565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118a260258361104a565b91506118ad82611846565b604082019050919050565b600060208201905081810360008301526118d181611895565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061193460238361104a565b915061193f826118d8565b604082019050919050565b6000602082019050818103600083015261196381611927565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119c660268361104a565b91506119d18261196a565b604082019050919050565b600060208201905081810360008301526119f5816119b9565b905091905056fea2646970667358221220fea37f01bcb01ac3f27899c8478f63cdad04f8a55ec9d3100217e29263e22eb764736f6c63430008090033

Deployed Bytecode Sourcemap

19964:530:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5757:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7897:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6850:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8548:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6701:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9379:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15575:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7021:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19320:148;;;:::i;:::-;;18669:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5967:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10097:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7361:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20092:71;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7599:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19623:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5757:91;5802:13;5835:5;5828:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5757:91;:::o;7897:169::-;7980:4;7997:39;8006:12;:10;:12::i;:::-;8020:7;8029:6;7997:8;:39::i;:::-;8054:4;8047:11;;7897:169;;;;:::o;6850:108::-;6911:7;6938:12;;6931:19;;6850:108;:::o;8548:422::-;8654:4;8671:36;8681:6;8689:9;8700:6;8671:9;:36::i;:::-;8720:24;8747:11;:19;8759:6;8747:19;;;;;;;;;;;;;;;:33;8767:12;:10;:12::i;:::-;8747:33;;;;;;;;;;;;;;;;8720:60;;8819:6;8799:16;:26;;8791:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8881:57;8890:6;8898:12;:10;:12::i;:::-;8931:6;8912:16;:25;;;;:::i;:::-;8881:8;:57::i;:::-;8958:4;8951:11;;;8548:422;;;;;:::o;6701:84::-;6750:5;6775:2;6768:9;;6701:84;:::o;9379:215::-;9467:4;9484:80;9493:12;:10;:12::i;:::-;9507:7;9553:10;9516:11;:25;9528:12;:10;:12::i;:::-;9516:25;;;;;;;;;;;;;;;:34;9542:7;9516:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9484:8;:80::i;:::-;9582:4;9575:11;;9379:215;;;;:::o;15575:86::-;15622:4;15646:7;;;;;;;;;;;15639:14;;15575:86;:::o;7021:127::-;7095:7;7122:9;:18;7132:7;7122:18;;;;;;;;;;;;;;;;7115:25;;7021:127;;;:::o;19320:148::-;18900:12;:10;:12::i;:::-;18889:23;;:7;:5;:7::i;:::-;:23;;;18881:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19427:1:::1;19390:40;;19411:6;;;;;;;;;;;19390:40;;;;;;;;;;;;19458:1;19441:6;;:19;;;;;;;;;;;;;;;;;;19320:148::o:0;18669:87::-;18715:7;18742:6;;;;;;;;;;;18735:13;;18669:87;:::o;5967:95::-;6014:13;6047:7;6040:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5967:95;:::o;10097:377::-;10190:4;10207:24;10234:11;:25;10246:12;:10;:12::i;:::-;10234:25;;;;;;;;;;;;;;;:34;10260:7;10234:34;;;;;;;;;;;;;;;;10207:61;;10307:15;10287:16;:35;;10279:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10375:67;10384:12;:10;:12::i;:::-;10398:7;10426:15;10407:16;:34;;;;:::i;:::-;10375:8;:67::i;:::-;10462:4;10455:11;;;10097:377;;;;:::o;7361:175::-;7447:4;7464:42;7474:12;:10;:12::i;:::-;7488:9;7499:6;7464:9;:42::i;:::-;7524:4;7517:11;;7361:175;;;;:::o;20092:71::-;;;;;;;;;;;;;:::o;7599:151::-;7688:7;7715:11;:18;7727:5;7715:18;;;;;;;;;;;;;;;:27;7734:7;7715:27;;;;;;;;;;;;;;;;7708:34;;7599:151;;;;:::o;19623:244::-;18900:12;:10;:12::i;:::-;18889:23;;:7;:5;:7::i;:::-;:23;;;18881:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19732:1:::1;19712:22;;:8;:22;;;;19704:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19822:8;19793:38;;19814:6;;;;;;;;;;;19793:38;;;;;;;;;;;;19851:8;19842:6;;:17;;;;;;;;;;;;;;;;;;19623:244:::0;:::o;17328:238::-;17437:44;17464:4;17470:2;17474:6;17437:26;:44::i;:::-;17503:8;:6;:8::i;:::-;17502:9;17494:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17328:238;;;:::o;14402:92::-;;;;:::o;3382:98::-;3435:7;3462:10;3455:17;;3382:98;:::o;13453:346::-;13572:1;13555:19;;:5;:19;;;;13547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13653:1;13634:21;;:7;:21;;;;13626:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13737:6;13707:11;:18;13719:5;13707:18;;;;;;;;;;;;;;;:27;13726:7;13707:27;;;;;;;;;;;;;;;:36;;;;13775:7;13759:32;;13768:5;13759:32;;;13784:6;13759:32;;;;;;:::i;:::-;;;;;;;;13453:346;;;:::o;10964:604::-;11088:1;11070:20;;:6;:20;;;;11062:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11172:1;11151:23;;:9;:23;;;;11143:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11227:47;11248:6;11256:9;11267:6;11227:20;:47::i;:::-;11287:21;11311:9;:17;11321:6;11311:17;;;;;;;;;;;;;;;;11287:41;;11364:6;11347:13;:23;;11339:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11460:6;11444:13;:22;;;;:::i;:::-;11424:9;:17;11434:6;11424:17;;;;;;;;;;;;;;;:42;;;;11501:6;11477:9;:20;11487:9;11477:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11542:9;11525:35;;11534:6;11525:35;;;11553:6;11525:35;;;;;;:::i;:::-;;;;;;;;11051:517;10964:604;;;:::o;20308:183::-;20439:44;20466:4;20472:2;20476:6;20439:26;:44::i;:::-;20308:183;;;:::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:474::-;5656:6;5664;5713:2;5701:9;5692:7;5688:23;5684:32;5681:119;;;5719:79;;:::i;:::-;5681:119;5839:1;5864:53;5909:7;5900:6;5889:9;5885:22;5864:53;:::i;:::-;5854:63;;5810:117;5966:2;5992:53;6037:7;6028:6;6017:9;6013:22;5992:53;:::i;:::-;5982:63;;5937:118;5588:474;;;;;:::o;6068:180::-;6116:77;6113:1;6106:88;6213:4;6210:1;6203:15;6237:4;6234:1;6227:15;6254:320;6298:6;6335:1;6329:4;6325:12;6315:22;;6382:1;6376:4;6372:12;6403:18;6393:81;;6459:4;6451:6;6447:17;6437:27;;6393:81;6521:2;6513:6;6510:14;6490:18;6487:38;6484:84;;;6540:18;;:::i;:::-;6484:84;6305:269;6254:320;;;:::o;6580:227::-;6720:34;6716:1;6708:6;6704:14;6697:58;6789:10;6784:2;6776:6;6772:15;6765:35;6580:227;:::o;6813:366::-;6955:3;6976:67;7040:2;7035:3;6976:67;:::i;:::-;6969:74;;7052:93;7141:3;7052:93;:::i;:::-;7170:2;7165:3;7161:12;7154:19;;6813:366;;;:::o;7185:419::-;7351:4;7389:2;7378:9;7374:18;7366:26;;7438:9;7432:4;7428:20;7424:1;7413:9;7409:17;7402:47;7466:131;7592:4;7466:131;:::i;:::-;7458:139;;7185:419;;;:::o;7610:180::-;7658:77;7655:1;7648:88;7755:4;7752:1;7745:15;7779:4;7776:1;7769:15;7796:191;7836:4;7856:20;7874:1;7856:20;:::i;:::-;7851:25;;7890:20;7908:1;7890:20;:::i;:::-;7885:25;;7929:1;7926;7923:8;7920:34;;;7934:18;;:::i;:::-;7920:34;7979:1;7976;7972:9;7964:17;;7796:191;;;;:::o;7993:305::-;8033:3;8052:20;8070:1;8052:20;:::i;:::-;8047:25;;8086:20;8104:1;8086:20;:::i;:::-;8081:25;;8240:1;8172:66;8168:74;8165:1;8162:81;8159:107;;;8246:18;;:::i;:::-;8159:107;8290:1;8287;8283:9;8276:16;;7993:305;;;;:::o;8304:182::-;8444:34;8440:1;8432:6;8428:14;8421:58;8304:182;:::o;8492:366::-;8634:3;8655:67;8719:2;8714:3;8655:67;:::i;:::-;8648:74;;8731:93;8820:3;8731:93;:::i;:::-;8849:2;8844:3;8840:12;8833:19;;8492:366;;;:::o;8864:419::-;9030:4;9068:2;9057:9;9053:18;9045:26;;9117:9;9111:4;9107:20;9103:1;9092:9;9088:17;9081:47;9145:131;9271:4;9145:131;:::i;:::-;9137:139;;8864:419;;;:::o;9289:224::-;9429:34;9425:1;9417:6;9413:14;9406:58;9498:7;9493:2;9485:6;9481:15;9474:32;9289:224;:::o;9519:366::-;9661:3;9682:67;9746:2;9741:3;9682:67;:::i;:::-;9675:74;;9758:93;9847:3;9758:93;:::i;:::-;9876:2;9871:3;9867:12;9860:19;;9519:366;;;:::o;9891:419::-;10057:4;10095:2;10084:9;10080:18;10072:26;;10144:9;10138:4;10134:20;10130:1;10119:9;10115:17;10108:47;10172:131;10298:4;10172:131;:::i;:::-;10164:139;;9891:419;;;:::o;10316:225::-;10456:34;10452:1;10444:6;10440:14;10433:58;10525:8;10520:2;10512:6;10508:15;10501:33;10316:225;:::o;10547:366::-;10689:3;10710:67;10774:2;10769:3;10710:67;:::i;:::-;10703:74;;10786:93;10875:3;10786:93;:::i;:::-;10904:2;10899:3;10895:12;10888:19;;10547:366;;;:::o;10919:419::-;11085:4;11123:2;11112:9;11108:18;11100:26;;11172:9;11166:4;11162:20;11158:1;11147:9;11143:17;11136:47;11200:131;11326:4;11200:131;:::i;:::-;11192:139;;10919:419;;;:::o;11344:229::-;11484:34;11480:1;11472:6;11468:14;11461:58;11553:12;11548:2;11540:6;11536:15;11529:37;11344:229;:::o;11579:366::-;11721:3;11742:67;11806:2;11801:3;11742:67;:::i;:::-;11735:74;;11818:93;11907:3;11818:93;:::i;:::-;11936:2;11931:3;11927:12;11920:19;;11579:366;;;:::o;11951:419::-;12117:4;12155:2;12144:9;12140:18;12132:26;;12204:9;12198:4;12194:20;12190:1;12179:9;12175:17;12168:47;12232:131;12358:4;12232:131;:::i;:::-;12224:139;;11951:419;;;:::o;12376:223::-;12516:34;12512:1;12504:6;12500:14;12493:58;12585:6;12580:2;12572:6;12568:15;12561:31;12376:223;:::o;12605:366::-;12747:3;12768:67;12832:2;12827:3;12768:67;:::i;:::-;12761:74;;12844:93;12933:3;12844:93;:::i;:::-;12962:2;12957:3;12953:12;12946:19;;12605:366;;;:::o;12977:419::-;13143:4;13181:2;13170:9;13166:18;13158:26;;13230:9;13224:4;13220:20;13216:1;13205:9;13201:17;13194:47;13258:131;13384:4;13258:131;:::i;:::-;13250:139;;12977:419;;;:::o;13402:221::-;13542:34;13538:1;13530:6;13526:14;13519:58;13611:4;13606:2;13598:6;13594:15;13587:29;13402:221;:::o;13629:366::-;13771:3;13792:67;13856:2;13851:3;13792:67;:::i;:::-;13785:74;;13868:93;13957:3;13868:93;:::i;:::-;13986:2;13981:3;13977:12;13970:19;;13629:366;;;:::o;14001:419::-;14167:4;14205:2;14194:9;14190:18;14182:26;;14254:9;14248:4;14244:20;14240:1;14229:9;14225:17;14218:47;14282:131;14408:4;14282:131;:::i;:::-;14274:139;;14001:419;;;:::o;14426:224::-;14566:34;14562:1;14554:6;14550:14;14543:58;14635:7;14630:2;14622:6;14618:15;14611:32;14426:224;:::o;14656:366::-;14798:3;14819:67;14883:2;14878:3;14819:67;:::i;:::-;14812:74;;14895:93;14984:3;14895:93;:::i;:::-;15013:2;15008:3;15004:12;14997:19;;14656:366;;;:::o;15028:419::-;15194:4;15232:2;15221:9;15217:18;15209:26;;15281:9;15275:4;15271:20;15267:1;15256:9;15252:17;15245:47;15309:131;15435:4;15309:131;:::i;:::-;15301:139;;15028:419;;;:::o;15453:222::-;15593:34;15589:1;15581:6;15577:14;15570:58;15662:5;15657:2;15649:6;15645:15;15638:30;15453:222;:::o;15681:366::-;15823:3;15844:67;15908:2;15903:3;15844:67;:::i;:::-;15837:74;;15920:93;16009:3;15920:93;:::i;:::-;16038:2;16033:3;16029:12;16022:19;;15681:366;;;:::o;16053:419::-;16219:4;16257:2;16246:9;16242:18;16234:26;;16306:9;16300:4;16296:20;16292:1;16281:9;16277:17;16270:47;16334:131;16460:4;16334:131;:::i;:::-;16326:139;;16053:419;;;:::o;16478:225::-;16618:34;16614:1;16606:6;16602:14;16595:58;16687:8;16682:2;16674:6;16670:15;16663:33;16478:225;:::o;16709:366::-;16851:3;16872:67;16936:2;16931:3;16872:67;:::i;:::-;16865:74;;16948:93;17037:3;16948:93;:::i;:::-;17066:2;17061:3;17057:12;17050:19;;16709:366;;;:::o;17081:419::-;17247:4;17285:2;17274:9;17270:18;17262:26;;17334:9;17328:4;17324:20;17320:1;17309:9;17305:17;17298:47;17362:131;17488:4;17362:131;:::i;:::-;17354:139;;17081:419;;;:::o

Swarm Source

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