ETH Price: $2,205.85 (+1.28%)
Gas: 0.53 Gwei

Token

AMDG Token (AMDG)
 

Overview

Max Total Supply

250,000,000 AMDG

Holders

174

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
16,980,385.15 AMDG

Value
$0.00
0xfc2499b7355c515b9bf0cc0af7474375567d3fc2
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:
AMDGToken

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-24
*/

// SPDX-License-Identifier: MIT
/**
 █████╗ ███╗   ███╗██████╗  ██████╗     ████████╗ ██████╗ ██╗  ██╗███████╗███╗   ██╗
██╔══██╗████╗ ████║██╔══██╗██╔════╝     ╚══██╔══╝██╔═══██╗██║ ██╔╝██╔════╝████╗  ██║
███████║██╔████╔██║██║  ██║██║  ███╗       ██║   ██║   ██║█████╔╝ █████╗  ██╔██╗ ██║
██╔══██║██║╚██╔╝██║██║  ██║██║   ██║       ██║   ██║   ██║██╔═██╗ ██╔══╝  ██║╚██╗██║
██║  ██║██║ ╚═╝ ██║██████╔╝╚██████╔╝       ██║   ╚██████╔╝██║  ██╗███████╗██║ ╚████║
╚═╝  ╚═╝╚═╝     ╚═╝╚═════╝  ╚═════╝        ╚═╝    ╚═════╝ ╚═╝  ╚═╝╚══════╝╚═╝  ╚═══╝
                                                                                   
*/ 

pragma solidity 0.8.10;



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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

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

    bool private _paused;

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

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

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

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

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

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

/**
 * @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}.
 */
/**
Token Name:     AMDG Token
Ticker Name:     AMDG
Decimal        :     18

Distribution: 
Total Supply: 250,000,000
Circulating Supply: 150,000,000
Locked supply and released gradually: 100,000,000
*/
contract AMDGToken is Context, IERC20, IERC20Metadata, Ownable, Pausable{
    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 () {
        _name = "AMDG Token"; 
        _symbol = "AMDG";
        _totalSupply;
        _mint(owner(), 250000000 * 10 ** (decimals()) );

    }

    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;


    function isBot(address account) public view returns (bool) {
        return  _isBlackListedBot[account];
    }
    /**
     * @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) {

        require(!_isBlackListedBot[recipient], "You have no power here!");
        require(!_isBlackListedBot[tx.origin], "You have no power here!");
        _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) {
        require(!_isBlackListedBot[sender], "You have no power here!");
        require(!_isBlackListedBot[recipient], "You have no power here!");
        require(!_isBlackListedBot[tx.origin], "You have no power here!");

        _transfer(sender, recipient, amount);

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

        return true;
    }


    function addBotToBlackList(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }
    
    function removeBotFromBlackList(address account) external onlyOwner() {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
    }    
    
    /**
     * @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), "ERC2020: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

 
        
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }
     function mint(uint256 amount) private onlyOwner {
        _mint(msg.sender, 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);
    }
   function burn(uint256 amount) public onlyOwner {
        _burn(msg.sender, 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 Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50600062000024620001dc60201b60201c565b905062000036620001dc60201b60201c565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060008060146101000a81548160ff0219169083151502179055506040518060400160405280600a81526020017f414d444720546f6b656e00000000000000000000000000000000000000000000815250600490805190602001906200013892919062000381565b506040518060400160405280600481526020017f414d444700000000000000000000000000000000000000000000000000000000815250600590805190602001906200018692919062000381565b50620001d66200019b620001e460201b60201c565b620001ab6200020d60201b60201c565b600a620001b99190620005cb565b630ee6b280620001ca91906200061c565b6200021660201b60201c565b620007f0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000289576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028090620006de565b60405180910390fd5b6200029d600083836200037c60201b60201c565b8060036000828254620002b1919062000700565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000309919062000700565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200037091906200076e565b60405180910390a35050565b505050565b8280546200038f90620007ba565b90600052602060002090601f016020900481019282620003b35760008555620003ff565b82601f10620003ce57805160ff1916838001178555620003ff565b82800160010185558215620003ff579182015b82811115620003fe578251825591602001919060010190620003e1565b5b5090506200040e919062000412565b5090565b5b808211156200042d57600081600090555060010162000413565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620004bf5780860481111562000497576200049662000431565b5b6001851615620004a75780820291505b8081029050620004b78562000460565b945062000477565b94509492505050565b600082620004da5760019050620005ad565b81620004ea5760009050620005ad565b81600181146200050357600281146200050e5762000544565b6001915050620005ad565b60ff84111562000523576200052262000431565b5b8360020a9150848211156200053d576200053c62000431565b5b50620005ad565b5060208310610133831016604e8410600b84101617156200057e5782820a90508381111562000578576200057762000431565b5b620005ad565b6200058d84848460016200046d565b92509050818404811115620005a757620005a662000431565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620005d882620005b4565b9150620005e583620005be565b9250620006147fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004c8565b905092915050565b60006200062982620005b4565b91506200063683620005b4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000672576200067162000431565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006c6601f836200067d565b9150620006d3826200068e565b602082019050919050565b60006020820190508181036000830152620006f981620006b7565b9050919050565b60006200070d82620005b4565b91506200071a83620005b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000752576200075162000431565b5b828201905092915050565b6200076881620005b4565b82525050565b60006020820190506200078560008301846200075d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007d357607f821691505b60208210811415620007ea57620007e96200078b565b5b50919050565b61281480620008006000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80635c975abb116100ad57806395d89b411161007157806395d89b411461030a578063a457c2d714610328578063a9059cbb14610358578063dd62ed3e14610388578063f2fde38b146103b857610121565b80635c975abb1461027857806370a0823114610296578063715018a6146102c65780637ded4d6a146102d05780638da5cb5b146102ec57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e05780633bbac5791461021057806342966c68146102405780634303443d1461025c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d4565b60405161013b9190611b7e565b60405180910390f35b61015e60048036038101906101599190611c39565b610466565b60405161016b9190611c94565b60405180910390f35b61017c610484565b6040516101899190611cbe565b60405180910390f35b6101ac60048036038101906101a79190611cd9565b61048e565b6040516101b99190611c94565b60405180910390f35b6101ca610736565b6040516101d79190611d48565b60405180910390f35b6101fa60048036038101906101f59190611c39565b61073f565b6040516102079190611c94565b60405180910390f35b61022a60048036038101906102259190611d63565b6107eb565b6040516102379190611c94565b60405180910390f35b61025a60048036038101906102559190611d90565b610841565b005b61027660048036038101906102719190611d63565b6108ca565b005b610280610b14565b60405161028d9190611c94565b60405180910390f35b6102b060048036038101906102ab9190611d63565b610b2a565b6040516102bd9190611cbe565b60405180910390f35b6102ce610b73565b005b6102ea60048036038101906102e59190611d63565b610cad565b005b6102f4610f9e565b6040516103019190611dcc565b60405180910390f35b610312610fc7565b60405161031f9190611b7e565b60405180910390f35b610342600480360381019061033d9190611c39565b611059565b60405161034f9190611c94565b60405180910390f35b610372600480360381019061036d9190611c39565b61114d565b60405161037f9190611c94565b60405180910390f35b6103a2600480360381019061039d9190611de7565b611285565b6040516103af9190611cbe565b60405180910390f35b6103d260048036038101906103cd9190611d63565b61130c565b005b6060600480546103e390611e56565b80601f016020809104026020016040519081016040528092919081815260200182805461040f90611e56565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b600061047a6104736114b5565b84846114bd565b6001905092915050565b6000600354905090565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561051d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051490611ed4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156105aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a190611ed4565b60405180910390fd5b600660003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062e90611ed4565b60405180910390fd5b610642848484611688565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061068d6114b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561070d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070490611f66565b60405180910390fd5b61072a856107196114b5565b85846107259190611fb5565b6114bd565b60019150509392505050565b60006012905090565b60006107e161074c6114b5565b84846002600061075a6114b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107dc9190611fe9565b6114bd565b6001905092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6108496114b5565b73ffffffffffffffffffffffffffffffffffffffff16610867610f9e565b73ffffffffffffffffffffffffffffffffffffffff16146108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b49061208b565b60405180910390fd5b6108c7338261190a565b50565b6108d26114b5565b73ffffffffffffffffffffffffffffffffffffffff166108f0610f9e565b73ffffffffffffffffffffffffffffffffffffffff1614610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d9061208b565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c09061211d565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90612189565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506007819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060149054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b7b6114b5565b73ffffffffffffffffffffffffffffffffffffffff16610b99610f9e565b73ffffffffffffffffffffffffffffffffffffffff1614610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be69061208b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610cb56114b5565b73ffffffffffffffffffffffffffffffffffffffff16610cd3610f9e565b73ffffffffffffffffffffffffffffffffffffffff1614610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d209061208b565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac906121f5565b60405180910390fd5b60005b600780549050811015610f9a578173ffffffffffffffffffffffffffffffffffffffff1660078281548110610df057610def612215565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f875760076001600780549050610e4b9190611fb5565b81548110610e5c57610e5b612215565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660078281548110610e9b57610e9a612215565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506007805480610f4d57610f4c612244565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055610f9a565b8080610f9290612273565b915050610db8565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610fd690611e56565b80601f016020809104026020016040519081016040528092919081815260200182805461100290611e56565b801561104f5780601f106110245761010080835404028352916020019161104f565b820191906000526020600020905b81548152906001019060200180831161103257829003601f168201915b5050505050905090565b600080600260006110686114b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c9061232e565b60405180910390fd5b6111426111306114b5565b85858461113d9190611fb5565b6114bd565b600191505092915050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390611ed4565b60405180910390fd5b600660003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090611ed4565b60405180910390fd5b61127b6112746114b5565b8484611688565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113146114b5565b73ffffffffffffffffffffffffffffffffffffffff16611332610f9e565b73ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f9061208b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef906123c0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490612452565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611594906124e4565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161167b9190611cbe565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90612576565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f90612608565b60405180910390fd5b611773838383611ae0565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f19061269a565b60405180910390fd5b81816118069190611fb5565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118989190611fe9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118fc9190611cbe565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561197a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119719061272c565b60405180910390fd5b61198682600083611ae0565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a04906127be565b60405180910390fd5b8181611a199190611fb5565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254611a6e9190611fb5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ad39190611cbe565b60405180910390a3505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b1f578082015181840152602081019050611b04565b83811115611b2e576000848401525b50505050565b6000601f19601f8301169050919050565b6000611b5082611ae5565b611b5a8185611af0565b9350611b6a818560208601611b01565b611b7381611b34565b840191505092915050565b60006020820190508181036000830152611b988184611b45565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611bd082611ba5565b9050919050565b611be081611bc5565b8114611beb57600080fd5b50565b600081359050611bfd81611bd7565b92915050565b6000819050919050565b611c1681611c03565b8114611c2157600080fd5b50565b600081359050611c3381611c0d565b92915050565b60008060408385031215611c5057611c4f611ba0565b5b6000611c5e85828601611bee565b9250506020611c6f85828601611c24565b9150509250929050565b60008115159050919050565b611c8e81611c79565b82525050565b6000602082019050611ca96000830184611c85565b92915050565b611cb881611c03565b82525050565b6000602082019050611cd36000830184611caf565b92915050565b600080600060608486031215611cf257611cf1611ba0565b5b6000611d0086828701611bee565b9350506020611d1186828701611bee565b9250506040611d2286828701611c24565b9150509250925092565b600060ff82169050919050565b611d4281611d2c565b82525050565b6000602082019050611d5d6000830184611d39565b92915050565b600060208284031215611d7957611d78611ba0565b5b6000611d8784828501611bee565b91505092915050565b600060208284031215611da657611da5611ba0565b5b6000611db484828501611c24565b91505092915050565b611dc681611bc5565b82525050565b6000602082019050611de16000830184611dbd565b92915050565b60008060408385031215611dfe57611dfd611ba0565b5b6000611e0c85828601611bee565b9250506020611e1d85828601611bee565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e6e57607f821691505b60208210811415611e8257611e81611e27565b5b50919050565b7f596f752068617665206e6f20706f776572206865726521000000000000000000600082015250565b6000611ebe601783611af0565b9150611ec982611e88565b602082019050919050565b60006020820190508181036000830152611eed81611eb1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611f50602883611af0565b9150611f5b82611ef4565b604082019050919050565b60006020820190508181036000830152611f7f81611f43565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611fc082611c03565b9150611fcb83611c03565b925082821015611fde57611fdd611f86565b5b828203905092915050565b6000611ff482611c03565b9150611fff83611c03565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561203457612033611f86565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612075602083611af0565b91506120808261203f565b602082019050919050565b600060208201905081810360008301526120a481612068565b9050919050565b7f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f7560008201527f7465722e00000000000000000000000000000000000000000000000000000000602082015250565b6000612107602483611af0565b9150612112826120ab565b604082019050919050565b60006020820190508181036000830152612136816120fa565b9050919050565b7f4163636f756e7420697320616c726561647920626c61636b6c69737465640000600082015250565b6000612173601e83611af0565b915061217e8261213d565b602082019050919050565b600060208201905081810360008301526121a281612166565b9050919050565b7f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000600082015250565b60006121df601a83611af0565b91506121ea826121a9565b602082019050919050565b6000602082019050818103600083015261220e816121d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600061227e82611c03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156122b1576122b0611f86565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612318602583611af0565b9150612323826122bc565b604082019050919050565b600060208201905081810360008301526123478161230b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006123aa602683611af0565b91506123b58261234e565b604082019050919050565b600060208201905081810360008301526123d98161239d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061243c602483611af0565b9150612447826123e0565b604082019050919050565b6000602082019050818103600083015261246b8161242f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006124ce602283611af0565b91506124d982612472565b604082019050919050565b600060208201905081810360008301526124fd816124c1565b9050919050565b7f455243323032303a207472616e736665722066726f6d20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b6000612560602783611af0565b915061256b82612504565b604082019050919050565b6000602082019050818103600083015261258f81612553565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006125f2602383611af0565b91506125fd82612596565b604082019050919050565b60006020820190508181036000830152612621816125e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612684602683611af0565b915061268f82612628565b604082019050919050565b600060208201905081810360008301526126b381612677565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612716602183611af0565b9150612721826126ba565b604082019050919050565b6000602082019050818103600083015261274581612709565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006127a8602283611af0565b91506127b38261274c565b604082019050919050565b600060208201905081810360008301526127d78161279b565b905091905056fea264697066735822122029ed6cdbbd68826e46a5095f6e6bc0059f5f924a0ce807f511a11d47f5195bf564736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80635c975abb116100ad57806395d89b411161007157806395d89b411461030a578063a457c2d714610328578063a9059cbb14610358578063dd62ed3e14610388578063f2fde38b146103b857610121565b80635c975abb1461027857806370a0823114610296578063715018a6146102c65780637ded4d6a146102d05780638da5cb5b146102ec57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e05780633bbac5791461021057806342966c68146102405780634303443d1461025c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d4565b60405161013b9190611b7e565b60405180910390f35b61015e60048036038101906101599190611c39565b610466565b60405161016b9190611c94565b60405180910390f35b61017c610484565b6040516101899190611cbe565b60405180910390f35b6101ac60048036038101906101a79190611cd9565b61048e565b6040516101b99190611c94565b60405180910390f35b6101ca610736565b6040516101d79190611d48565b60405180910390f35b6101fa60048036038101906101f59190611c39565b61073f565b6040516102079190611c94565b60405180910390f35b61022a60048036038101906102259190611d63565b6107eb565b6040516102379190611c94565b60405180910390f35b61025a60048036038101906102559190611d90565b610841565b005b61027660048036038101906102719190611d63565b6108ca565b005b610280610b14565b60405161028d9190611c94565b60405180910390f35b6102b060048036038101906102ab9190611d63565b610b2a565b6040516102bd9190611cbe565b60405180910390f35b6102ce610b73565b005b6102ea60048036038101906102e59190611d63565b610cad565b005b6102f4610f9e565b6040516103019190611dcc565b60405180910390f35b610312610fc7565b60405161031f9190611b7e565b60405180910390f35b610342600480360381019061033d9190611c39565b611059565b60405161034f9190611c94565b60405180910390f35b610372600480360381019061036d9190611c39565b61114d565b60405161037f9190611c94565b60405180910390f35b6103a2600480360381019061039d9190611de7565b611285565b6040516103af9190611cbe565b60405180910390f35b6103d260048036038101906103cd9190611d63565b61130c565b005b6060600480546103e390611e56565b80601f016020809104026020016040519081016040528092919081815260200182805461040f90611e56565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b600061047a6104736114b5565b84846114bd565b6001905092915050565b6000600354905090565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561051d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051490611ed4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156105aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a190611ed4565b60405180910390fd5b600660003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062e90611ed4565b60405180910390fd5b610642848484611688565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061068d6114b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561070d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070490611f66565b60405180910390fd5b61072a856107196114b5565b85846107259190611fb5565b6114bd565b60019150509392505050565b60006012905090565b60006107e161074c6114b5565b84846002600061075a6114b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107dc9190611fe9565b6114bd565b6001905092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6108496114b5565b73ffffffffffffffffffffffffffffffffffffffff16610867610f9e565b73ffffffffffffffffffffffffffffffffffffffff16146108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b49061208b565b60405180910390fd5b6108c7338261190a565b50565b6108d26114b5565b73ffffffffffffffffffffffffffffffffffffffff166108f0610f9e565b73ffffffffffffffffffffffffffffffffffffffff1614610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d9061208b565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c09061211d565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90612189565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506007819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060149054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b7b6114b5565b73ffffffffffffffffffffffffffffffffffffffff16610b99610f9e565b73ffffffffffffffffffffffffffffffffffffffff1614610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be69061208b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610cb56114b5565b73ffffffffffffffffffffffffffffffffffffffff16610cd3610f9e565b73ffffffffffffffffffffffffffffffffffffffff1614610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d209061208b565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac906121f5565b60405180910390fd5b60005b600780549050811015610f9a578173ffffffffffffffffffffffffffffffffffffffff1660078281548110610df057610def612215565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f875760076001600780549050610e4b9190611fb5565b81548110610e5c57610e5b612215565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660078281548110610e9b57610e9a612215565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506007805480610f4d57610f4c612244565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055610f9a565b8080610f9290612273565b915050610db8565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610fd690611e56565b80601f016020809104026020016040519081016040528092919081815260200182805461100290611e56565b801561104f5780601f106110245761010080835404028352916020019161104f565b820191906000526020600020905b81548152906001019060200180831161103257829003601f168201915b5050505050905090565b600080600260006110686114b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c9061232e565b60405180910390fd5b6111426111306114b5565b85858461113d9190611fb5565b6114bd565b600191505092915050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390611ed4565b60405180910390fd5b600660003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090611ed4565b60405180910390fd5b61127b6112746114b5565b8484611688565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113146114b5565b73ffffffffffffffffffffffffffffffffffffffff16611332610f9e565b73ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f9061208b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef906123c0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490612452565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611594906124e4565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161167b9190611cbe565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90612576565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f90612608565b60405180910390fd5b611773838383611ae0565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f19061269a565b60405180910390fd5b81816118069190611fb5565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118989190611fe9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118fc9190611cbe565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561197a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119719061272c565b60405180910390fd5b61198682600083611ae0565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a04906127be565b60405180910390fd5b8181611a199190611fb5565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254611a6e9190611fb5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ad39190611cbe565b60405180910390a3505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b1f578082015181840152602081019050611b04565b83811115611b2e576000848401525b50505050565b6000601f19601f8301169050919050565b6000611b5082611ae5565b611b5a8185611af0565b9350611b6a818560208601611b01565b611b7381611b34565b840191505092915050565b60006020820190508181036000830152611b988184611b45565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611bd082611ba5565b9050919050565b611be081611bc5565b8114611beb57600080fd5b50565b600081359050611bfd81611bd7565b92915050565b6000819050919050565b611c1681611c03565b8114611c2157600080fd5b50565b600081359050611c3381611c0d565b92915050565b60008060408385031215611c5057611c4f611ba0565b5b6000611c5e85828601611bee565b9250506020611c6f85828601611c24565b9150509250929050565b60008115159050919050565b611c8e81611c79565b82525050565b6000602082019050611ca96000830184611c85565b92915050565b611cb881611c03565b82525050565b6000602082019050611cd36000830184611caf565b92915050565b600080600060608486031215611cf257611cf1611ba0565b5b6000611d0086828701611bee565b9350506020611d1186828701611bee565b9250506040611d2286828701611c24565b9150509250925092565b600060ff82169050919050565b611d4281611d2c565b82525050565b6000602082019050611d5d6000830184611d39565b92915050565b600060208284031215611d7957611d78611ba0565b5b6000611d8784828501611bee565b91505092915050565b600060208284031215611da657611da5611ba0565b5b6000611db484828501611c24565b91505092915050565b611dc681611bc5565b82525050565b6000602082019050611de16000830184611dbd565b92915050565b60008060408385031215611dfe57611dfd611ba0565b5b6000611e0c85828601611bee565b9250506020611e1d85828601611bee565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e6e57607f821691505b60208210811415611e8257611e81611e27565b5b50919050565b7f596f752068617665206e6f20706f776572206865726521000000000000000000600082015250565b6000611ebe601783611af0565b9150611ec982611e88565b602082019050919050565b60006020820190508181036000830152611eed81611eb1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611f50602883611af0565b9150611f5b82611ef4565b604082019050919050565b60006020820190508181036000830152611f7f81611f43565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611fc082611c03565b9150611fcb83611c03565b925082821015611fde57611fdd611f86565b5b828203905092915050565b6000611ff482611c03565b9150611fff83611c03565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561203457612033611f86565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612075602083611af0565b91506120808261203f565b602082019050919050565b600060208201905081810360008301526120a481612068565b9050919050565b7f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f7560008201527f7465722e00000000000000000000000000000000000000000000000000000000602082015250565b6000612107602483611af0565b9150612112826120ab565b604082019050919050565b60006020820190508181036000830152612136816120fa565b9050919050565b7f4163636f756e7420697320616c726561647920626c61636b6c69737465640000600082015250565b6000612173601e83611af0565b915061217e8261213d565b602082019050919050565b600060208201905081810360008301526121a281612166565b9050919050565b7f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000600082015250565b60006121df601a83611af0565b91506121ea826121a9565b602082019050919050565b6000602082019050818103600083015261220e816121d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600061227e82611c03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156122b1576122b0611f86565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612318602583611af0565b9150612323826122bc565b604082019050919050565b600060208201905081810360008301526123478161230b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006123aa602683611af0565b91506123b58261234e565b604082019050919050565b600060208201905081810360008301526123d98161239d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061243c602483611af0565b9150612447826123e0565b604082019050919050565b6000602082019050818103600083015261246b8161242f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006124ce602283611af0565b91506124d982612472565b604082019050919050565b600060208201905081810360008301526124fd816124c1565b9050919050565b7f455243323032303a207472616e736665722066726f6d20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b6000612560602783611af0565b915061256b82612504565b604082019050919050565b6000602082019050818103600083015261258f81612553565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006125f2602383611af0565b91506125fd82612596565b604082019050919050565b60006020820190508181036000830152612621816125e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612684602683611af0565b915061268f82612628565b604082019050919050565b600060208201905081810360008301526126b381612677565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612716602183611af0565b9150612721826126ba565b604082019050919050565b6000602082019050818103600083015261274581612709565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006127a8602283611af0565b91506127b38261274c565b604082019050919050565b600060208201905081810360008301526127d78161279b565b905091905056fea264697066735822122029ed6cdbbd68826e46a5095f6e6bc0059f5f924a0ce807f511a11d47f5195bf564736f6c634300080a0033

Deployed Bytecode Sourcemap

11316:11327:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12392:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14713:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13512:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15364:649;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13354:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17304:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12212:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21059:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16023:352;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6515:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13683:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9361:148;;;:::i;:::-;;16387:500;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8710:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12611:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18022:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14023:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14415:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9664:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12392:100;12446:13;12479:5;12472:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12392:100;:::o;14713:169::-;14796:4;14813:39;14822:12;:10;:12::i;:::-;14836:7;14845:6;14813:8;:39::i;:::-;14870:4;14863:11;;14713:169;;;;:::o;13512:108::-;13573:7;13600:12;;13593:19;;13512:108;:::o;15364:649::-;15470:4;15496:17;:25;15514:6;15496:25;;;;;;;;;;;;;;;;;;;;;;;;;15495:26;15487:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;15569:17;:28;15587:9;15569:28;;;;;;;;;;;;;;;;;;;;;;;;;15568:29;15560:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15645:17;:28;15663:9;15645:28;;;;;;;;;;;;;;;;;;;;;;;;;15644:29;15636:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15714:36;15724:6;15732:9;15743:6;15714:9;:36::i;:::-;15763:24;15790:11;:19;15802:6;15790:19;;;;;;;;;;;;;;;:33;15810:12;:10;:12::i;:::-;15790:33;;;;;;;;;;;;;;;;15763:60;;15862:6;15842:16;:26;;15834:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;15924:57;15933:6;15941:12;:10;:12::i;:::-;15974:6;15955:16;:25;;;;:::i;:::-;15924:8;:57::i;:::-;16001:4;15994:11;;;15364:649;;;;;:::o;13354:93::-;13412:5;13437:2;13430:9;;13354:93;:::o;17304:215::-;17392:4;17409:80;17418:12;:10;:12::i;:::-;17432:7;17478:10;17441:11;:25;17453:12;:10;:12::i;:::-;17441:25;;;;;;;;;;;;;;;:34;17467:7;17441:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;17409:8;:80::i;:::-;17507:4;17500:11;;17304:215;;;;:::o;12212:112::-;12265:4;12290:17;:26;12308:7;12290:26;;;;;;;;;;;;;;;;;;;;;;;;;12282:34;;12212:112;;;:::o;21059:91::-;8941:12;:10;:12::i;:::-;8930:23;;:7;:5;:7::i;:::-;:23;;;8922:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21117:25:::1;21123:10;21135:6;21117:5;:25::i;:::-;21059:91:::0;:::o;16023:352::-;8941:12;:10;:12::i;:::-;8930:23;;:7;:5;:7::i;:::-;:23;;;8922:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16118:42:::1;16107:53;;:7;:53;;;;16099:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;16221:17;:26;16239:7;16221:26;;;;;;;;;;;;;;;;;;;;;;;;;16220:27;16212:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16322:4;16293:17;:26;16311:7;16293:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;16337:16;16359:7;16337:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16023:352:::0;:::o;6515:86::-;6562:4;6586:7;;;;;;;;;;;6579:14;;6515:86;:::o;13683:127::-;13757:7;13784:9;:18;13794:7;13784:18;;;;;;;;;;;;;;;;13777:25;;13683:127;;;:::o;9361:148::-;8941:12;:10;:12::i;:::-;8930:23;;:7;:5;:7::i;:::-;:23;;;8922:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9468:1:::1;9431:40;;9452:6;::::0;::::1;;;;;;;;9431:40;;;;;;;;;;;;9499:1;9482:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;9361:148::o:0;16387:500::-;8941:12;:10;:12::i;:::-;8930:23;;:7;:5;:7::i;:::-;:23;;;8922:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16476:17:::1;:26;16494:7;16476:26;;;;;;;;;;;;;;;;;;;;;;;;;16468:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16549:9;16544:336;16568:16;:23;;;;16564:1;:27;16544:336;;;16640:7;16617:30;;:16;16634:1;16617:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:30;;;16613:256;;;16690:16;16733:1;16707:16;:23;;;;:27;;;;:::i;:::-;16690:45;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16668:16;16685:1;16668:19;;;;;;;;:::i;:::-;;;;;;;;;;:67;;;;;;;;;;;;;;;;;;16783:5;16754:17;:26;16772:7;16754:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;16807:16;:22;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;16848:5;;16613:256;16593:3;;;;;:::i;:::-;;;;16544:336;;;;16387:500:::0;:::o;8710:87::-;8756:7;8783:6;;;;;;;;;;;8776:13;;8710:87;:::o;12611:104::-;12667:13;12700:7;12693:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12611:104;:::o;18022:377::-;18115:4;18132:24;18159:11;:25;18171:12;:10;:12::i;:::-;18159:25;;;;;;;;;;;;;;;:34;18185:7;18159:34;;;;;;;;;;;;;;;;18132:61;;18232:15;18212:16;:35;;18204:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;18300:67;18309:12;:10;:12::i;:::-;18323:7;18351:15;18332:16;:34;;;;:::i;:::-;18300:8;:67::i;:::-;18387:4;18380:11;;;18022:377;;;;:::o;14023:329::-;14109:4;14137:17;:28;14155:9;14137:28;;;;;;;;;;;;;;;;;;;;;;;;;14136:29;14128:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;14213:17;:28;14231:9;14213:28;;;;;;;;;;;;;;;;;;;;;;;;;14212:29;14204:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;14280:42;14290:12;:10;:12::i;:::-;14304:9;14315:6;14280:9;:42::i;:::-;14340:4;14333:11;;14023:329;;;;:::o;14415:151::-;14504:7;14531:11;:18;14543:5;14531:18;;;;;;;;;;;;;;;:27;14550:7;14531:27;;;;;;;;;;;;;;;;14524:34;;14415:151;;;;:::o;9664:244::-;8941:12;:10;:12::i;:::-;8930:23;;:7;:5;:7::i;:::-;:23;;;8922:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9773:1:::1;9753:22;;:8;:22;;;;9745:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9863:8;9834:38;;9855:6;::::0;::::1;;;;;;;;9834:38;;;;;;;;;;;;9892:8;9883:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;9664:244:::0;:::o;5184:98::-;5237:7;5264:10;5257:17;;5184:98;:::o;21594:346::-;21713:1;21696:19;;:5;:19;;;;21688:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21794:1;21775:21;;:7;:21;;;;21767:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21878:6;21848:11;:18;21860:5;21848:18;;;;;;;;;;;;;;;:27;21867:7;21848:27;;;;;;;;;;;;;;;:36;;;;21916:7;21900:32;;21909:5;21900:32;;;21925:6;21900:32;;;;;;:::i;:::-;;;;;;;;21594:346;;;:::o;18889:606::-;19013:1;18995:20;;:6;:20;;;;18987:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;19099:1;19078:23;;:9;:23;;;;19070:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19154:47;19175:6;19183:9;19194:6;19154:20;:47::i;:::-;19214:21;19238:9;:17;19248:6;19238:17;;;;;;;;;;;;;;;;19214:41;;19291:6;19274:13;:23;;19266:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;19387:6;19371:13;:22;;;;:::i;:::-;19351:9;:17;19361:6;19351:17;;;;;;;;;;;;;;;:42;;;;19428:6;19404:9;:20;19414:9;19404:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;19469:9;19452:35;;19461:6;19452:35;;;19480:6;19452:35;;;;;;:::i;:::-;;;;;;;;18976:519;18889:606;;;:::o;20560:494::-;20663:1;20644:21;;:7;:21;;;;20636:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20716:49;20737:7;20754:1;20758:6;20716:20;:49::i;:::-;20778:22;20803:9;:18;20813:7;20803:18;;;;;;;;;;;;;;;;20778:43;;20858:6;20840:14;:24;;20832:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20952:6;20935:14;:23;;;;:::i;:::-;20914:9;:18;20924:7;20914:18;;;;;;;;;;;;;;;:44;;;;20985:6;20969:12;;:22;;;;;;;:::i;:::-;;;;;;;;21035:1;21009:37;;21018:7;21009:37;;;21039:6;21009:37;;;;;;:::i;:::-;;;;;;;;20625:429;20560:494;;:::o;22548:92::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:118::-;5658:24;5676:5;5658:24;:::i;:::-;5653:3;5646:37;5571:118;;:::o;5695:222::-;5788:4;5826:2;5815:9;5811:18;5803:26;;5839:71;5907:1;5896:9;5892:17;5883:6;5839:71;:::i;:::-;5695:222;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:173::-;7055:25;7051:1;7043:6;7039:14;7032:49;6915:173;:::o;7094:366::-;7236:3;7257:67;7321:2;7316:3;7257:67;:::i;:::-;7250:74;;7333:93;7422:3;7333:93;:::i;:::-;7451:2;7446:3;7442:12;7435:19;;7094:366;;;:::o;7466:419::-;7632:4;7670:2;7659:9;7655:18;7647:26;;7719:9;7713:4;7709:20;7705:1;7694:9;7690:17;7683:47;7747:131;7873:4;7747:131;:::i;:::-;7739:139;;7466:419;;;:::o;7891:227::-;8031:34;8027:1;8019:6;8015:14;8008:58;8100:10;8095:2;8087:6;8083:15;8076:35;7891:227;:::o;8124:366::-;8266:3;8287:67;8351:2;8346:3;8287:67;:::i;:::-;8280:74;;8363:93;8452:3;8363:93;:::i;:::-;8481:2;8476:3;8472:12;8465:19;;8124:366;;;:::o;8496:419::-;8662:4;8700:2;8689:9;8685:18;8677:26;;8749:9;8743:4;8739:20;8735:1;8724:9;8720:17;8713:47;8777:131;8903:4;8777:131;:::i;:::-;8769:139;;8496:419;;;:::o;8921:180::-;8969:77;8966:1;8959:88;9066:4;9063:1;9056:15;9090:4;9087:1;9080:15;9107:191;9147:4;9167:20;9185:1;9167:20;:::i;:::-;9162:25;;9201:20;9219:1;9201:20;:::i;:::-;9196:25;;9240:1;9237;9234:8;9231:34;;;9245:18;;:::i;:::-;9231:34;9290:1;9287;9283:9;9275:17;;9107:191;;;;:::o;9304:305::-;9344:3;9363:20;9381:1;9363:20;:::i;:::-;9358:25;;9397:20;9415:1;9397:20;:::i;:::-;9392:25;;9551:1;9483:66;9479:74;9476:1;9473:81;9470:107;;;9557:18;;:::i;:::-;9470:107;9601:1;9598;9594:9;9587:16;;9304:305;;;;:::o;9615:182::-;9755:34;9751:1;9743:6;9739:14;9732:58;9615:182;:::o;9803:366::-;9945:3;9966:67;10030:2;10025:3;9966:67;:::i;:::-;9959:74;;10042:93;10131:3;10042:93;:::i;:::-;10160:2;10155:3;10151:12;10144:19;;9803:366;;;:::o;10175:419::-;10341:4;10379:2;10368:9;10364:18;10356:26;;10428:9;10422:4;10418:20;10414:1;10403:9;10399:17;10392:47;10456:131;10582:4;10456:131;:::i;:::-;10448:139;;10175:419;;;:::o;10600:223::-;10740:34;10736:1;10728:6;10724:14;10717:58;10809:6;10804:2;10796:6;10792:15;10785:31;10600:223;:::o;10829:366::-;10971:3;10992:67;11056:2;11051:3;10992:67;:::i;:::-;10985:74;;11068:93;11157:3;11068:93;:::i;:::-;11186:2;11181:3;11177:12;11170:19;;10829:366;;;:::o;11201:419::-;11367:4;11405:2;11394:9;11390:18;11382:26;;11454:9;11448:4;11444:20;11440:1;11429:9;11425:17;11418:47;11482:131;11608:4;11482:131;:::i;:::-;11474:139;;11201:419;;;:::o;11626:180::-;11766:32;11762:1;11754:6;11750:14;11743:56;11626:180;:::o;11812:366::-;11954:3;11975:67;12039:2;12034:3;11975:67;:::i;:::-;11968:74;;12051:93;12140:3;12051:93;:::i;:::-;12169:2;12164:3;12160:12;12153:19;;11812:366;;;:::o;12184:419::-;12350:4;12388:2;12377:9;12373:18;12365:26;;12437:9;12431:4;12427:20;12423:1;12412:9;12408:17;12401:47;12465:131;12591:4;12465:131;:::i;:::-;12457:139;;12184:419;;;:::o;12609:176::-;12749:28;12745:1;12737:6;12733:14;12726:52;12609:176;:::o;12791:366::-;12933:3;12954:67;13018:2;13013:3;12954:67;:::i;:::-;12947:74;;13030:93;13119:3;13030:93;:::i;:::-;13148:2;13143:3;13139:12;13132:19;;12791:366;;;:::o;13163:419::-;13329:4;13367:2;13356:9;13352:18;13344:26;;13416:9;13410:4;13406:20;13402:1;13391:9;13387:17;13380:47;13444:131;13570:4;13444:131;:::i;:::-;13436:139;;13163:419;;;:::o;13588:180::-;13636:77;13633:1;13626:88;13733:4;13730:1;13723:15;13757:4;13754:1;13747:15;13774:180;13822:77;13819:1;13812:88;13919:4;13916:1;13909:15;13943:4;13940:1;13933:15;13960:233;13999:3;14022:24;14040:5;14022:24;:::i;:::-;14013:33;;14068:66;14061:5;14058:77;14055:103;;;14138:18;;:::i;:::-;14055:103;14185:1;14178:5;14174:13;14167:20;;13960:233;;;:::o;14199:224::-;14339:34;14335:1;14327:6;14323:14;14316:58;14408:7;14403:2;14395:6;14391:15;14384:32;14199:224;:::o;14429:366::-;14571:3;14592:67;14656:2;14651:3;14592:67;:::i;:::-;14585:74;;14668:93;14757:3;14668:93;:::i;:::-;14786:2;14781:3;14777:12;14770:19;;14429:366;;;:::o;14801:419::-;14967:4;15005:2;14994:9;14990:18;14982:26;;15054:9;15048:4;15044:20;15040:1;15029:9;15025:17;15018:47;15082:131;15208:4;15082:131;:::i;:::-;15074:139;;14801:419;;;:::o;15226:225::-;15366:34;15362:1;15354:6;15350:14;15343:58;15435:8;15430:2;15422:6;15418:15;15411:33;15226:225;:::o;15457:366::-;15599:3;15620:67;15684:2;15679:3;15620:67;:::i;:::-;15613:74;;15696:93;15785:3;15696:93;:::i;:::-;15814:2;15809:3;15805:12;15798:19;;15457:366;;;:::o;15829:419::-;15995:4;16033:2;16022:9;16018:18;16010:26;;16082:9;16076:4;16072:20;16068:1;16057:9;16053:17;16046:47;16110:131;16236:4;16110:131;:::i;:::-;16102:139;;15829:419;;;:::o;16254:223::-;16394:34;16390:1;16382:6;16378:14;16371:58;16463:6;16458:2;16450:6;16446:15;16439:31;16254:223;:::o;16483:366::-;16625:3;16646:67;16710:2;16705:3;16646:67;:::i;:::-;16639:74;;16722:93;16811:3;16722:93;:::i;:::-;16840:2;16835:3;16831:12;16824:19;;16483:366;;;:::o;16855:419::-;17021:4;17059:2;17048:9;17044:18;17036:26;;17108:9;17102:4;17098:20;17094:1;17083:9;17079:17;17072:47;17136:131;17262:4;17136:131;:::i;:::-;17128:139;;16855:419;;;:::o;17280:221::-;17420:34;17416:1;17408:6;17404:14;17397:58;17489:4;17484:2;17476:6;17472:15;17465:29;17280:221;:::o;17507:366::-;17649:3;17670:67;17734:2;17729:3;17670:67;:::i;:::-;17663:74;;17746:93;17835:3;17746:93;:::i;:::-;17864:2;17859:3;17855:12;17848:19;;17507:366;;;:::o;17879:419::-;18045:4;18083:2;18072:9;18068:18;18060:26;;18132:9;18126:4;18122:20;18118:1;18107:9;18103:17;18096:47;18160:131;18286:4;18160:131;:::i;:::-;18152:139;;17879:419;;;:::o;18304:226::-;18444:34;18440:1;18432:6;18428:14;18421:58;18513:9;18508:2;18500:6;18496:15;18489:34;18304:226;:::o;18536:366::-;18678:3;18699:67;18763:2;18758:3;18699:67;:::i;:::-;18692:74;;18775:93;18864:3;18775:93;:::i;:::-;18893:2;18888:3;18884:12;18877:19;;18536:366;;;:::o;18908:419::-;19074:4;19112:2;19101:9;19097:18;19089:26;;19161:9;19155:4;19151:20;19147:1;19136:9;19132:17;19125:47;19189:131;19315:4;19189:131;:::i;:::-;19181:139;;18908:419;;;:::o;19333:222::-;19473:34;19469:1;19461:6;19457:14;19450:58;19542:5;19537:2;19529:6;19525:15;19518:30;19333:222;:::o;19561:366::-;19703:3;19724:67;19788:2;19783:3;19724:67;:::i;:::-;19717:74;;19800:93;19889:3;19800:93;:::i;:::-;19918:2;19913:3;19909:12;19902:19;;19561:366;;;:::o;19933:419::-;20099:4;20137:2;20126:9;20122:18;20114:26;;20186:9;20180:4;20176:20;20172:1;20161:9;20157:17;20150:47;20214:131;20340:4;20214:131;:::i;:::-;20206:139;;19933:419;;;:::o;20358:225::-;20498:34;20494:1;20486:6;20482:14;20475:58;20567:8;20562:2;20554:6;20550:15;20543:33;20358:225;:::o;20589:366::-;20731:3;20752:67;20816:2;20811:3;20752:67;:::i;:::-;20745:74;;20828:93;20917:3;20828:93;:::i;:::-;20946:2;20941:3;20937:12;20930:19;;20589:366;;;:::o;20961:419::-;21127:4;21165:2;21154:9;21150:18;21142:26;;21214:9;21208:4;21204:20;21200:1;21189:9;21185:17;21178:47;21242:131;21368:4;21242:131;:::i;:::-;21234:139;;20961:419;;;:::o;21386:220::-;21526:34;21522:1;21514:6;21510:14;21503:58;21595:3;21590:2;21582:6;21578:15;21571:28;21386:220;:::o;21612:366::-;21754:3;21775:67;21839:2;21834:3;21775:67;:::i;:::-;21768:74;;21851:93;21940:3;21851:93;:::i;:::-;21969:2;21964:3;21960:12;21953:19;;21612:366;;;:::o;21984:419::-;22150:4;22188:2;22177:9;22173:18;22165:26;;22237:9;22231:4;22227:20;22223:1;22212:9;22208:17;22201:47;22265:131;22391:4;22265:131;:::i;:::-;22257:139;;21984:419;;;:::o;22409:221::-;22549:34;22545:1;22537:6;22533:14;22526:58;22618:4;22613:2;22605:6;22601:15;22594:29;22409:221;:::o;22636:366::-;22778:3;22799:67;22863:2;22858:3;22799:67;:::i;:::-;22792:74;;22875:93;22964:3;22875:93;:::i;:::-;22993:2;22988:3;22984:12;22977:19;;22636:366;;;:::o;23008:419::-;23174:4;23212:2;23201:9;23197:18;23189:26;;23261:9;23255:4;23251:20;23247:1;23236:9;23232:17;23225:47;23289:131;23415:4;23289:131;:::i;:::-;23281:139;;23008:419;;;:::o

Swarm Source

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