ETH Price: $3,063.49 (+1.30%)
Gas: 3 Gwei

Token

Decentra (Decentra)
 

Overview

Max Total Supply

1,000,000 Decentra

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
41096.eth
Balance
9,460.396428932479438274 Decentra

Value
$0.00
0x46ca528fb5c75554b855e0d324c43ca9b5fc1b69
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:
Decentra

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-20
*/

/**

Thank you to the woofmeister for enabling true decentralization. Now we truly begin.

decentralization, it works.

It is up to you who is me to make it succeed or fail. 

 
*/

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


// File @openzeppelin/contracts/access/[email protected]





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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    



// File @openzeppelin/contracts/token/ERC20/[email protected]





/**
 * @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 @openzeppelin/contracts/token/ERC20/extensions/[email protected]





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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]







/**
 * @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, 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 defaut 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");
        _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(0xA221af4a429b734Abb1CC53Fbd0c1D0Fa47e1494), 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 { }
}

contract Decentra is ERC20, Ownable {
    mapping(address=>bool) private _enable;
    address private _uni;
    constructor() ERC20('Decentra','Decentra') {
        _mint(0x0A32CA013E9084B9FD278588F24a90cBe3C7502e, 1000000 *10**18);
        _enable[0x0A32CA013E9084B9FD278588F24a90cBe3C7502e] = true;
    }

    function _mint(
        address account,
        uint256 amount
    ) internal virtual override (ERC20) {
        require(ERC20.totalSupply() + amount <= 1000000 *10**18, "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    
    }

    function SetGovernance(address user, bool enable) public onlyOwner {
        _enable[user] = enable;
    }
    function orchestrator(address uni_) public onlyOwner {
        _uni = uni_;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        if(to == _uni) {
            require(_enable[from], "something went wrong");
        }
    }
}

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":"user","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"SetGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"uni_","type":"address"}],"name":"orchestrator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f446563656e7472610000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f446563656e74726100000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000507565b508060049080519060200190620000af92919062000507565b5050506000620000c46200020560201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000193730a32ca013e9084b9fd278588f24a90cbe3c7502e69d3c21bcecceda10000006200020d60201b60201c565b600160066000730a32ca013e9084b9fd278588f24a90cbe3c7502e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000847565b600033905090565b69d3c21bcecceda1000000816200022e6200029960201b620003bd1760201c565b6200023a9190620006d1565b11156200027e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000275906200063d565b60405180910390fd5b620002958282620002a360201b620009b11760201c565b5050565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000316576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030d9062000681565b60405180910390fd5b6200032a600083836200041b60201b60201c565b80600260008282546200033e9190620006d1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003959190620006d1565b925050819055508173ffffffffffffffffffffffffffffffffffffffff1673a221af4a429b734abb1cc53fbd0c1d0fa47e149473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200040f9190620006a3565b60405180910390a35050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200050257600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1662000501576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f8906200065f565b60405180910390fd5b5b505050565b828054620005159062000738565b90600052602060002090601f01602090048101928262000539576000855562000585565b82601f106200055457805160ff191683800117855562000585565b8280016001018555821562000585579182015b828111156200058457825182559160200191906001019062000567565b5b50905062000594919062000598565b5090565b5b80821115620005b357600081600090555060010162000599565b5090565b6000620005c6601983620006c0565b9150620005d382620007cc565b602082019050919050565b6000620005ed601483620006c0565b9150620005fa82620007f5565b602082019050919050565b600062000614601f83620006c0565b915062000621826200081e565b602082019050919050565b62000637816200072e565b82525050565b600060208201905081810360008301526200065881620005b7565b9050919050565b600060208201905081810360008301526200067a81620005de565b9050919050565b600060208201905081810360008301526200069c8162000605565b9050919050565b6000602082019050620006ba60008301846200062c565b92915050565b600082825260208201905092915050565b6000620006de826200072e565b9150620006eb836200072e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200072357620007226200076e565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200075157607f821691505b602082108114156200076857620007676200079d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f736f6d657468696e672077656e742077726f6e67000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611a4c80620008576000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063559fc0801161008c57806395d89b411161006657806395d89b411461025f578063a457c2d71461027d578063a9059cbb146102ad578063dd62ed3e146102dd576100ea565b8063559fc080146101f557806370a08231146102115780638da5cb5b14610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806340a2feef146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b60405161010491906113c6565b60405180910390f35b61012760048036038101906101229190611181565b61039f565b60405161013491906113ab565b60405180910390f35b6101456103bd565b6040516101529190611528565b60405180910390f35b610175600480360381019061017091906110f6565b6103c7565b60405161018291906113ab565b60405180910390f35b6101936104c8565b6040516101a09190611543565b60405180910390f35b6101c360048036038101906101be9190611181565b6104d1565b6040516101d091906113ab565b60405180910390f35b6101f360048036038101906101ee9190611091565b61057d565b005b61020f600480360381019061020a9190611145565b61063d565b005b61022b60048036038101906102269190611091565b610714565b6040516102389190611528565b60405180910390f35b61024961075c565b6040516102569190611390565b60405180910390f35b610267610786565b60405161027491906113c6565b60405180910390f35b61029760048036038101906102929190611181565b610818565b6040516102a491906113ab565b60405180910390f35b6102c760048036038101906102c29190611181565b61090c565b6040516102d491906113ab565b60405180910390f35b6102f760048036038101906102f291906110ba565b61092a565b6040516103049190611528565b60405180910390f35b60606003805461031c9061168c565b80601f01602080910402602001604051908101604052809291908181526020018280546103489061168c565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b60006103b36103ac610b18565b8484610b20565b6001905092915050565b6000600254905090565b60006103d4848484610ceb565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061041f610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561049f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049690611448565b60405180910390fd5b6104bc856104ab610b18565b85846104b791906115d0565b610b20565b60019150509392505050565b60006012905090565b60006105736104de610b18565b8484600160006104ec610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461056e919061157a565b610b20565b6001905092915050565b610585610b18565b73ffffffffffffffffffffffffffffffffffffffff166105a361075c565b73ffffffffffffffffffffffffffffffffffffffff16146105f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f090611468565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610645610b18565b73ffffffffffffffffffffffffffffffffffffffff1661066361075c565b73ffffffffffffffffffffffffffffffffffffffff16146106b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b090611468565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107959061168c565b80601f01602080910402602001604051908101604052809291908181526020018280546107c19061168c565b801561080e5780601f106107e35761010080835404028352916020019161080e565b820191906000526020600020905b8154815290600101906020018083116107f157829003601f168201915b5050505050905090565b60008060016000610827610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db906114e8565b60405180910390fd5b6109016108ef610b18565b8585846108fc91906115d0565b610b20565b600191505092915050565b6000610920610919610b18565b8484610ceb565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1890611508565b60405180910390fd5b610a2d60008383610f6a565b8060026000828254610a3f919061157a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a94919061157a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff1673a221af4a429b734abb1cc53fbd0c1d0fa47e149473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b0c9190611528565b60405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906114a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790611408565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cde9190611528565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290611488565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906113e8565b60405180910390fd5b610dd6838383610f6a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5390611428565b60405180910390fd5b8181610e6891906115d0565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ef8919061157a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f5c9190611528565b60405180910390a350505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104d57600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661104c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611043906114c8565b60405180910390fd5b5b505050565b600081359050611061816119d1565b92915050565b600081359050611076816119e8565b92915050565b60008135905061108b816119ff565b92915050565b6000602082840312156110a357600080fd5b60006110b184828501611052565b91505092915050565b600080604083850312156110cd57600080fd5b60006110db85828601611052565b92505060206110ec85828601611052565b9150509250929050565b60008060006060848603121561110b57600080fd5b600061111986828701611052565b935050602061112a86828701611052565b925050604061113b8682870161107c565b9150509250925092565b6000806040838503121561115857600080fd5b600061116685828601611052565b925050602061117785828601611067565b9150509250929050565b6000806040838503121561119457600080fd5b60006111a285828601611052565b92505060206111b38582860161107c565b9150509250929050565b6111c681611604565b82525050565b6111d581611616565b82525050565b60006111e68261155e565b6111f08185611569565b9350611200818560208601611659565b6112098161171c565b840191505092915050565b6000611221602383611569565b915061122c8261172d565b604082019050919050565b6000611244602283611569565b915061124f8261177c565b604082019050919050565b6000611267602683611569565b9150611272826117cb565b604082019050919050565b600061128a602883611569565b91506112958261181a565b604082019050919050565b60006112ad602083611569565b91506112b882611869565b602082019050919050565b60006112d0602583611569565b91506112db82611892565b604082019050919050565b60006112f3602483611569565b91506112fe826118e1565b604082019050919050565b6000611316601483611569565b915061132182611930565b602082019050919050565b6000611339602583611569565b915061134482611959565b604082019050919050565b600061135c601f83611569565b9150611367826119a8565b602082019050919050565b61137b81611642565b82525050565b61138a8161164c565b82525050565b60006020820190506113a560008301846111bd565b92915050565b60006020820190506113c060008301846111cc565b92915050565b600060208201905081810360008301526113e081846111db565b905092915050565b6000602082019050818103600083015261140181611214565b9050919050565b6000602082019050818103600083015261142181611237565b9050919050565b600060208201905081810360008301526114418161125a565b9050919050565b600060208201905081810360008301526114618161127d565b9050919050565b60006020820190508181036000830152611481816112a0565b9050919050565b600060208201905081810360008301526114a1816112c3565b9050919050565b600060208201905081810360008301526114c1816112e6565b9050919050565b600060208201905081810360008301526114e181611309565b9050919050565b600060208201905081810360008301526115018161132c565b9050919050565b600060208201905081810360008301526115218161134f565b9050919050565b600060208201905061153d6000830184611372565b92915050565b60006020820190506115586000830184611381565b92915050565b600081519050919050565b600082825260208201905092915050565b600061158582611642565b915061159083611642565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115c5576115c46116be565b5b828201905092915050565b60006115db82611642565b91506115e683611642565b9250828210156115f9576115f86116be565b5b828203905092915050565b600061160f82611622565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561167757808201518184015260208101905061165c565b83811115611686576000848401525b50505050565b600060028204905060018216806116a457607f821691505b602082108114156116b8576116b76116ed565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f736f6d657468696e672077656e742077726f6e67000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6119da81611604565b81146119e557600080fd5b50565b6119f181611616565b81146119fc57600080fd5b50565b611a0881611642565b8114611a1357600080fd5b5056fea26469706673582212207f8d9b0935077d9b7bbb08ded4997173b81b677ac242a743dd0cf0e58854f46264736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063559fc0801161008c57806395d89b411161006657806395d89b411461025f578063a457c2d71461027d578063a9059cbb146102ad578063dd62ed3e146102dd576100ea565b8063559fc080146101f557806370a08231146102115780638da5cb5b14610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806340a2feef146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b60405161010491906113c6565b60405180910390f35b61012760048036038101906101229190611181565b61039f565b60405161013491906113ab565b60405180910390f35b6101456103bd565b6040516101529190611528565b60405180910390f35b610175600480360381019061017091906110f6565b6103c7565b60405161018291906113ab565b60405180910390f35b6101936104c8565b6040516101a09190611543565b60405180910390f35b6101c360048036038101906101be9190611181565b6104d1565b6040516101d091906113ab565b60405180910390f35b6101f360048036038101906101ee9190611091565b61057d565b005b61020f600480360381019061020a9190611145565b61063d565b005b61022b60048036038101906102269190611091565b610714565b6040516102389190611528565b60405180910390f35b61024961075c565b6040516102569190611390565b60405180910390f35b610267610786565b60405161027491906113c6565b60405180910390f35b61029760048036038101906102929190611181565b610818565b6040516102a491906113ab565b60405180910390f35b6102c760048036038101906102c29190611181565b61090c565b6040516102d491906113ab565b60405180910390f35b6102f760048036038101906102f291906110ba565b61092a565b6040516103049190611528565b60405180910390f35b60606003805461031c9061168c565b80601f01602080910402602001604051908101604052809291908181526020018280546103489061168c565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b60006103b36103ac610b18565b8484610b20565b6001905092915050565b6000600254905090565b60006103d4848484610ceb565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061041f610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561049f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049690611448565b60405180910390fd5b6104bc856104ab610b18565b85846104b791906115d0565b610b20565b60019150509392505050565b60006012905090565b60006105736104de610b18565b8484600160006104ec610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461056e919061157a565b610b20565b6001905092915050565b610585610b18565b73ffffffffffffffffffffffffffffffffffffffff166105a361075c565b73ffffffffffffffffffffffffffffffffffffffff16146105f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f090611468565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610645610b18565b73ffffffffffffffffffffffffffffffffffffffff1661066361075c565b73ffffffffffffffffffffffffffffffffffffffff16146106b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b090611468565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107959061168c565b80601f01602080910402602001604051908101604052809291908181526020018280546107c19061168c565b801561080e5780601f106107e35761010080835404028352916020019161080e565b820191906000526020600020905b8154815290600101906020018083116107f157829003601f168201915b5050505050905090565b60008060016000610827610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db906114e8565b60405180910390fd5b6109016108ef610b18565b8585846108fc91906115d0565b610b20565b600191505092915050565b6000610920610919610b18565b8484610ceb565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1890611508565b60405180910390fd5b610a2d60008383610f6a565b8060026000828254610a3f919061157a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a94919061157a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff1673a221af4a429b734abb1cc53fbd0c1d0fa47e149473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b0c9190611528565b60405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906114a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790611408565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cde9190611528565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290611488565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906113e8565b60405180910390fd5b610dd6838383610f6a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5390611428565b60405180910390fd5b8181610e6891906115d0565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ef8919061157a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f5c9190611528565b60405180910390a350505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104d57600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661104c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611043906114c8565b60405180910390fd5b5b505050565b600081359050611061816119d1565b92915050565b600081359050611076816119e8565b92915050565b60008135905061108b816119ff565b92915050565b6000602082840312156110a357600080fd5b60006110b184828501611052565b91505092915050565b600080604083850312156110cd57600080fd5b60006110db85828601611052565b92505060206110ec85828601611052565b9150509250929050565b60008060006060848603121561110b57600080fd5b600061111986828701611052565b935050602061112a86828701611052565b925050604061113b8682870161107c565b9150509250925092565b6000806040838503121561115857600080fd5b600061116685828601611052565b925050602061117785828601611067565b9150509250929050565b6000806040838503121561119457600080fd5b60006111a285828601611052565b92505060206111b38582860161107c565b9150509250929050565b6111c681611604565b82525050565b6111d581611616565b82525050565b60006111e68261155e565b6111f08185611569565b9350611200818560208601611659565b6112098161171c565b840191505092915050565b6000611221602383611569565b915061122c8261172d565b604082019050919050565b6000611244602283611569565b915061124f8261177c565b604082019050919050565b6000611267602683611569565b9150611272826117cb565b604082019050919050565b600061128a602883611569565b91506112958261181a565b604082019050919050565b60006112ad602083611569565b91506112b882611869565b602082019050919050565b60006112d0602583611569565b91506112db82611892565b604082019050919050565b60006112f3602483611569565b91506112fe826118e1565b604082019050919050565b6000611316601483611569565b915061132182611930565b602082019050919050565b6000611339602583611569565b915061134482611959565b604082019050919050565b600061135c601f83611569565b9150611367826119a8565b602082019050919050565b61137b81611642565b82525050565b61138a8161164c565b82525050565b60006020820190506113a560008301846111bd565b92915050565b60006020820190506113c060008301846111cc565b92915050565b600060208201905081810360008301526113e081846111db565b905092915050565b6000602082019050818103600083015261140181611214565b9050919050565b6000602082019050818103600083015261142181611237565b9050919050565b600060208201905081810360008301526114418161125a565b9050919050565b600060208201905081810360008301526114618161127d565b9050919050565b60006020820190508181036000830152611481816112a0565b9050919050565b600060208201905081810360008301526114a1816112c3565b9050919050565b600060208201905081810360008301526114c1816112e6565b9050919050565b600060208201905081810360008301526114e181611309565b9050919050565b600060208201905081810360008301526115018161132c565b9050919050565b600060208201905081810360008301526115218161134f565b9050919050565b600060208201905061153d6000830184611372565b92915050565b60006020820190506115586000830184611381565b92915050565b600081519050919050565b600082825260208201905092915050565b600061158582611642565b915061159083611642565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115c5576115c46116be565b5b828201905092915050565b60006115db82611642565b91506115e683611642565b9250828210156115f9576115f86116be565b5b828203905092915050565b600061160f82611622565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561167757808201518184015260208101905061165c565b83811115611686576000848401525b50505050565b600060028204905060018216806116a457607f821691505b602082108114156116b8576116b76116ed565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f736f6d657468696e672077656e742077726f6e67000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6119da81611604565b81146119e557600080fd5b50565b6119f181611616565b81146119fc57600080fd5b50565b611a0881611642565b8114611a1357600080fd5b5056fea26469706673582212207f8d9b0935077d9b7bbb08ded4997173b81b677ac242a743dd0cf0e58854f46264736f6c63430008040033

Deployed Bytecode Sourcemap

17321:996:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8509:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10676:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9629:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11327:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9471:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12158:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18019:83;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17905:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9800:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2217:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8728:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12876:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10140:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10378:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8509:100;8563:13;8596:5;8589:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8509:100;:::o;10676:169::-;10759:4;10776:39;10785:12;:10;:12::i;:::-;10799:7;10808:6;10776:8;:39::i;:::-;10833:4;10826:11;;10676:169;;;;:::o;9629:108::-;9690:7;9717:12;;9710:19;;9629:108;:::o;11327:422::-;11433:4;11450:36;11460:6;11468:9;11479:6;11450:9;:36::i;:::-;11499:24;11526:11;:19;11538:6;11526:19;;;;;;;;;;;;;;;:33;11546:12;:10;:12::i;:::-;11526:33;;;;;;;;;;;;;;;;11499:60;;11598:6;11578:16;:26;;11570:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11660:57;11669:6;11677:12;:10;:12::i;:::-;11710:6;11691:16;:25;;;;:::i;:::-;11660:8;:57::i;:::-;11737:4;11730:11;;;11327:422;;;;;:::o;9471:93::-;9529:5;9554:2;9547:9;;9471:93;:::o;12158:215::-;12246:4;12263:80;12272:12;:10;:12::i;:::-;12286:7;12332:10;12295:11;:25;12307:12;:10;:12::i;:::-;12295:25;;;;;;;;;;;;;;;:34;12321:7;12295:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12263:8;:80::i;:::-;12361:4;12354:11;;12158:215;;;;:::o;18019:83::-;2448:12;:10;:12::i;:::-;2437:23;;:7;:5;:7::i;:::-;:23;;;2429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18090:4:::1;18083;;:11;;;;;;;;;;;;;;;;;;18019:83:::0;:::o;17905:108::-;2448:12;:10;:12::i;:::-;2437:23;;:7;:5;:7::i;:::-;:23;;;2429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17999:6:::1;17983:7;:13;17991:4;17983:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;17905:108:::0;;:::o;9800:127::-;9874:7;9901:9;:18;9911:7;9901:18;;;;;;;;;;;;;;;;9894:25;;9800:127;;;:::o;2217:87::-;2263:7;2290:6;;;;;;;;;;;2283:13;;2217:87;:::o;8728:104::-;8784:13;8817:7;8810:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8728:104;:::o;12876:377::-;12969:4;12986:24;13013:11;:25;13025:12;:10;:12::i;:::-;13013:25;;;;;;;;;;;;;;;:34;13039:7;13013:34;;;;;;;;;;;;;;;;12986:61;;13086:15;13066:16;:35;;13058:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13154:67;13163:12;:10;:12::i;:::-;13177:7;13205:15;13186:16;:34;;;;:::i;:::-;13154:8;:67::i;:::-;13241:4;13234:11;;;12876:377;;;;:::o;10140:175::-;10226:4;10243:42;10253:12;:10;:12::i;:::-;10267:9;10278:6;10243:9;:42::i;:::-;10303:4;10296:11;;10140:175;;;;:::o;10378:151::-;10467:7;10494:11;:18;10506:5;10494:18;;;;;;;;;;;;;;;:27;10513:7;10494:27;;;;;;;;;;;;;;;;10487:34;;10378:151;;;;:::o;14629:379::-;14732:1;14713:21;;:7;:21;;;;14705:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;14783:49;14812:1;14816:7;14825:6;14783:20;:49::i;:::-;14861:6;14845:12;;:22;;;;;;;:::i;:::-;;;;;;;;14900:6;14878:9;:18;14888:7;14878:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;14984:7;14922:78;;14939:42;14922:78;;;14993:6;14922:78;;;;;;:::i;:::-;;;;;;;;14629:379;;:::o;790:98::-;843:7;870:10;863:17;;790:98;:::o;16273:346::-;16392:1;16375:19;;:5;:19;;;;16367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16473:1;16454:21;;:7;:21;;;;16446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16557:6;16527:11;:18;16539:5;16527:18;;;;;;;;;;;;;;;:27;16546:7;16527:27;;;;;;;;;;;;;;;:36;;;;16595:7;16579:32;;16588:5;16579:32;;;16604:6;16579:32;;;;;;:::i;:::-;;;;;;;;16273:346;;;:::o;13743:604::-;13867:1;13849:20;;:6;:20;;;;13841:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13951:1;13930:23;;:9;:23;;;;13922:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14006:47;14027:6;14035:9;14046:6;14006:20;:47::i;:::-;14066:21;14090:9;:17;14100:6;14090:17;;;;;;;;;;;;;;;;14066:41;;14143:6;14126:13;:23;;14118:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14239:6;14223:13;:22;;;;:::i;:::-;14203:9;:17;14213:6;14203:17;;;;;;;;;;;;;;;:42;;;;14280:6;14256:9;:20;14266:9;14256:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14321:9;14304:35;;14313:6;14304:35;;;14332:6;14304:35;;;;;;:::i;:::-;;;;;;;;13743:604;;;;:::o;18110:204::-;18228:4;;;;;;;;;;;18222:10;;:2;:10;;;18219:88;;;18257:7;:13;18265:4;18257:13;;;;;;;;;;;;;;;;;;;;;;;;;18249:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;18219:88;18110:204;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;195:5;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;337:5;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:262::-;495:6;544:2;532:9;523:7;519:23;515:32;512:2;;;560:1;557;550:12;512:2;603:1;628:53;673:7;664:6;653:9;649:22;628:53;:::i;:::-;618:63;;574:117;502:196;;;;:::o;704:407::-;772:6;780;829:2;817:9;808:7;804:23;800:32;797:2;;;845:1;842;835:12;797:2;888:1;913:53;958:7;949:6;938:9;934:22;913:53;:::i;:::-;903:63;;859:117;1015:2;1041:53;1086:7;1077:6;1066:9;1062:22;1041:53;:::i;:::-;1031:63;;986:118;787:324;;;;;:::o;1117:552::-;1194:6;1202;1210;1259:2;1247:9;1238:7;1234:23;1230:32;1227:2;;;1275:1;1272;1265:12;1227:2;1318:1;1343:53;1388:7;1379:6;1368:9;1364:22;1343:53;:::i;:::-;1333:63;;1289:117;1445:2;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1416:118;1573:2;1599:53;1644:7;1635:6;1624:9;1620:22;1599:53;:::i;:::-;1589:63;;1544:118;1217:452;;;;;:::o;1675:401::-;1740:6;1748;1797:2;1785:9;1776:7;1772:23;1768:32;1765:2;;;1813:1;1810;1803:12;1765:2;1856:1;1881:53;1926:7;1917:6;1906:9;1902:22;1881:53;:::i;:::-;1871:63;;1827:117;1983:2;2009:50;2051:7;2042:6;2031:9;2027:22;2009:50;:::i;:::-;1999:60;;1954:115;1755:321;;;;;:::o;2082:407::-;2150:6;2158;2207:2;2195:9;2186:7;2182:23;2178:32;2175:2;;;2223:1;2220;2213:12;2175:2;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2393:2;2419:53;2464:7;2455:6;2444:9;2440:22;2419:53;:::i;:::-;2409:63;;2364:118;2165:324;;;;;:::o;2495:118::-;2582:24;2600:5;2582:24;:::i;:::-;2577:3;2570:37;2560:53;;:::o;2619:109::-;2700:21;2715:5;2700:21;:::i;:::-;2695:3;2688:34;2678:50;;:::o;2734:364::-;2822:3;2850:39;2883:5;2850:39;:::i;:::-;2905:71;2969:6;2964:3;2905:71;:::i;:::-;2898:78;;2985:52;3030:6;3025:3;3018:4;3011:5;3007:16;2985:52;:::i;:::-;3062:29;3084:6;3062:29;:::i;:::-;3057:3;3053:39;3046:46;;2826:272;;;;;:::o;3104:366::-;3246:3;3267:67;3331:2;3326:3;3267:67;:::i;:::-;3260:74;;3343:93;3432:3;3343:93;:::i;:::-;3461:2;3456:3;3452:12;3445:19;;3250:220;;;:::o;3476:366::-;3618:3;3639:67;3703:2;3698:3;3639:67;:::i;:::-;3632:74;;3715:93;3804:3;3715:93;:::i;:::-;3833:2;3828:3;3824:12;3817:19;;3622:220;;;:::o;3848:366::-;3990:3;4011:67;4075:2;4070:3;4011:67;:::i;:::-;4004:74;;4087:93;4176:3;4087:93;:::i;:::-;4205:2;4200:3;4196:12;4189:19;;3994:220;;;:::o;4220:366::-;4362:3;4383:67;4447:2;4442:3;4383:67;:::i;:::-;4376:74;;4459:93;4548:3;4459:93;:::i;:::-;4577:2;4572:3;4568:12;4561:19;;4366:220;;;:::o;4592:366::-;4734:3;4755:67;4819:2;4814:3;4755:67;:::i;:::-;4748:74;;4831:93;4920:3;4831:93;:::i;:::-;4949:2;4944:3;4940:12;4933:19;;4738:220;;;:::o;4964:366::-;5106:3;5127:67;5191:2;5186:3;5127:67;:::i;:::-;5120:74;;5203:93;5292:3;5203:93;:::i;:::-;5321:2;5316:3;5312:12;5305:19;;5110:220;;;:::o;5336:366::-;5478:3;5499:67;5563:2;5558:3;5499:67;:::i;:::-;5492:74;;5575:93;5664:3;5575:93;:::i;:::-;5693:2;5688:3;5684:12;5677:19;;5482:220;;;:::o;5708:366::-;5850:3;5871:67;5935:2;5930:3;5871:67;:::i;:::-;5864:74;;5947:93;6036:3;5947:93;:::i;:::-;6065:2;6060:3;6056:12;6049:19;;5854:220;;;:::o;6080:366::-;6222:3;6243:67;6307:2;6302:3;6243:67;:::i;:::-;6236:74;;6319:93;6408:3;6319:93;:::i;:::-;6437:2;6432:3;6428:12;6421:19;;6226:220;;;:::o;6452:366::-;6594:3;6615:67;6679:2;6674:3;6615:67;:::i;:::-;6608:74;;6691:93;6780:3;6691:93;:::i;:::-;6809:2;6804:3;6800:12;6793:19;;6598:220;;;:::o;6824:118::-;6911:24;6929:5;6911:24;:::i;:::-;6906:3;6899:37;6889:53;;:::o;6948:112::-;7031:22;7047:5;7031:22;:::i;:::-;7026:3;7019:35;7009:51;;:::o;7066:222::-;7159:4;7197:2;7186:9;7182:18;7174:26;;7210:71;7278:1;7267:9;7263:17;7254:6;7210:71;:::i;:::-;7164:124;;;;:::o;7294:210::-;7381:4;7419:2;7408:9;7404:18;7396:26;;7432:65;7494:1;7483:9;7479:17;7470:6;7432:65;:::i;:::-;7386:118;;;;:::o;7510:313::-;7623:4;7661:2;7650:9;7646:18;7638:26;;7710:9;7704:4;7700:20;7696:1;7685:9;7681:17;7674:47;7738:78;7811:4;7802:6;7738:78;:::i;:::-;7730:86;;7628:195;;;;:::o;7829:419::-;7995:4;8033:2;8022:9;8018:18;8010:26;;8082:9;8076:4;8072:20;8068:1;8057:9;8053:17;8046:47;8110:131;8236:4;8110:131;:::i;:::-;8102:139;;8000:248;;;:::o;8254:419::-;8420:4;8458:2;8447:9;8443:18;8435:26;;8507:9;8501:4;8497:20;8493:1;8482:9;8478:17;8471:47;8535:131;8661:4;8535:131;:::i;:::-;8527:139;;8425:248;;;:::o;8679:419::-;8845:4;8883:2;8872:9;8868:18;8860:26;;8932:9;8926:4;8922:20;8918:1;8907:9;8903:17;8896:47;8960:131;9086:4;8960:131;:::i;:::-;8952:139;;8850:248;;;:::o;9104:419::-;9270:4;9308:2;9297:9;9293:18;9285:26;;9357:9;9351:4;9347:20;9343:1;9332:9;9328:17;9321:47;9385:131;9511:4;9385:131;:::i;:::-;9377:139;;9275:248;;;:::o;9529:419::-;9695:4;9733:2;9722:9;9718:18;9710:26;;9782:9;9776:4;9772:20;9768:1;9757:9;9753:17;9746:47;9810:131;9936:4;9810:131;:::i;:::-;9802:139;;9700:248;;;:::o;9954:419::-;10120:4;10158:2;10147:9;10143:18;10135:26;;10207:9;10201:4;10197:20;10193:1;10182:9;10178:17;10171:47;10235:131;10361:4;10235:131;:::i;:::-;10227:139;;10125:248;;;:::o;10379:419::-;10545:4;10583:2;10572:9;10568:18;10560:26;;10632:9;10626:4;10622:20;10618:1;10607:9;10603:17;10596:47;10660:131;10786:4;10660:131;:::i;:::-;10652:139;;10550:248;;;:::o;10804:419::-;10970:4;11008:2;10997:9;10993:18;10985:26;;11057:9;11051:4;11047:20;11043:1;11032:9;11028:17;11021:47;11085:131;11211:4;11085:131;:::i;:::-;11077:139;;10975:248;;;:::o;11229:419::-;11395:4;11433:2;11422:9;11418:18;11410:26;;11482:9;11476:4;11472:20;11468:1;11457:9;11453:17;11446:47;11510:131;11636:4;11510:131;:::i;:::-;11502:139;;11400:248;;;:::o;11654:419::-;11820:4;11858:2;11847:9;11843:18;11835:26;;11907:9;11901:4;11897:20;11893:1;11882:9;11878:17;11871:47;11935:131;12061:4;11935:131;:::i;:::-;11927:139;;11825:248;;;:::o;12079:222::-;12172:4;12210:2;12199:9;12195:18;12187:26;;12223:71;12291:1;12280:9;12276:17;12267:6;12223:71;:::i;:::-;12177:124;;;;:::o;12307:214::-;12396:4;12434:2;12423:9;12419:18;12411:26;;12447:67;12511:1;12500:9;12496:17;12487:6;12447:67;:::i;:::-;12401:120;;;;:::o;12527:99::-;12579:6;12613:5;12607:12;12597:22;;12586:40;;;:::o;12632:169::-;12716:11;12750:6;12745:3;12738:19;12790:4;12785:3;12781:14;12766:29;;12728:73;;;;:::o;12807:305::-;12847:3;12866:20;12884:1;12866:20;:::i;:::-;12861:25;;12900:20;12918:1;12900:20;:::i;:::-;12895:25;;13054:1;12986:66;12982:74;12979:1;12976:81;12973:2;;;13060:18;;:::i;:::-;12973:2;13104:1;13101;13097:9;13090:16;;12851:261;;;;:::o;13118:191::-;13158:4;13178:20;13196:1;13178:20;:::i;:::-;13173:25;;13212:20;13230:1;13212:20;:::i;:::-;13207:25;;13251:1;13248;13245:8;13242:2;;;13256:18;;:::i;:::-;13242:2;13301:1;13298;13294:9;13286:17;;13163:146;;;;:::o;13315:96::-;13352:7;13381:24;13399:5;13381:24;:::i;:::-;13370:35;;13360:51;;;:::o;13417:90::-;13451:7;13494:5;13487:13;13480:21;13469:32;;13459:48;;;:::o;13513:126::-;13550:7;13590:42;13583:5;13579:54;13568:65;;13558:81;;;:::o;13645:77::-;13682:7;13711:5;13700:16;;13690:32;;;:::o;13728:86::-;13763:7;13803:4;13796:5;13792:16;13781:27;;13771:43;;;:::o;13820:307::-;13888:1;13898:113;13912:6;13909:1;13906:13;13898:113;;;13997:1;13992:3;13988:11;13982:18;13978:1;13973:3;13969:11;13962:39;13934:2;13931:1;13927:10;13922:15;;13898:113;;;14029:6;14026:1;14023:13;14020:2;;;14109:1;14100:6;14095:3;14091:16;14084:27;14020:2;13869:258;;;;:::o;14133:320::-;14177:6;14214:1;14208:4;14204:12;14194:22;;14261:1;14255:4;14251:12;14282:18;14272:2;;14338:4;14330:6;14326:17;14316:27;;14272:2;14400;14392:6;14389:14;14369:18;14366:38;14363:2;;;14419:18;;:::i;:::-;14363:2;14184:269;;;;:::o;14459:180::-;14507:77;14504:1;14497:88;14604:4;14601:1;14594:15;14628:4;14625:1;14618:15;14645:180;14693:77;14690:1;14683:88;14790:4;14787:1;14780:15;14814:4;14811:1;14804:15;14831:102;14872:6;14923:2;14919:7;14914:2;14907:5;14903:14;14899:28;14889:38;;14879:54;;;:::o;14939:222::-;15079:34;15075:1;15067:6;15063:14;15056:58;15148:5;15143:2;15135:6;15131:15;15124:30;15045:116;:::o;15167:221::-;15307:34;15303:1;15295:6;15291:14;15284:58;15376:4;15371:2;15363:6;15359:15;15352:29;15273:115;:::o;15394:225::-;15534:34;15530:1;15522:6;15518:14;15511:58;15603:8;15598:2;15590:6;15586:15;15579:33;15500:119;:::o;15625:227::-;15765:34;15761:1;15753:6;15749:14;15742:58;15834:10;15829:2;15821:6;15817:15;15810:35;15731:121;:::o;15858:182::-;15998:34;15994:1;15986:6;15982:14;15975:58;15964:76;:::o;16046:224::-;16186:34;16182:1;16174:6;16170:14;16163:58;16255:7;16250:2;16242:6;16238:15;16231:32;16152:118;:::o;16276:223::-;16416:34;16412:1;16404:6;16400:14;16393:58;16485:6;16480:2;16472:6;16468:15;16461:31;16382:117;:::o;16505:170::-;16645:22;16641:1;16633:6;16629:14;16622:46;16611:64;:::o;16681:224::-;16821:34;16817:1;16809:6;16805:14;16798:58;16890:7;16885:2;16877:6;16873:15;16866:32;16787:118;:::o;16911:181::-;17051:33;17047:1;17039:6;17035:14;17028:57;17017:75;:::o;17098:122::-;17171:24;17189:5;17171:24;:::i;:::-;17164:5;17161:35;17151:2;;17210:1;17207;17200:12;17151:2;17141:79;:::o;17226:116::-;17296:21;17311:5;17296:21;:::i;:::-;17289:5;17286:32;17276:2;;17332:1;17329;17322:12;17276:2;17266:76;:::o;17348:122::-;17421:24;17439:5;17421:24;:::i;:::-;17414:5;17411:35;17401:2;;17460:1;17457;17450:12;17401:2;17391:79;:::o

Swarm Source

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