ETH Price: $3,419.38 (-1.64%)
Gas: 7 Gwei

Token

Goosereum (GUCKER)
 

Overview

Max Total Supply

100,000,000 GUCKER

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,270.743737085258994499 GUCKER

Value
$0.00
0x4b6cfec5ab1d09f2582ea44dcae89b81fc6af4bb
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:
Goosereum

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 3 of 7: Goosereum.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
/*

THE FIRST OFFICIAL 1:1 DUCKER FORK

Duck Duck, Goose.


                                  ___
                               ,-""   `.
                             ,'  _   e )`-._
                            /  ,' `-._<.===-'
                           /  /
                          /  ;
              _          /   ;
 (`._    _.-"" ""--..__,'    |
 <_  `-""                     \
  <`-                          :
   (__   <__.                  ;
     `-.   '-.__.      _.'    /
        \      `-.__,-'    _,'
         `._    ,    /__,-'
            ""._\__,'< <____
                 | |  `----.`.
                 | |        \ `.
                 ; |___      \-``
                 \   --<
                  `.`.<
                    `-'

GM GOOSERS, 

https://t.me/goosereum

This will be a community ran TG group. Proper measures have been put in place to stop bot attacks and spam. 

0/0 TAX

USE LOW SLIPPAGE!

Will be locked for 1 year and properly renounced. 
Goosereum will purely be a meme currency.
Enjoy yourself everyone :) 

- Goose

*/


import "./Ownable.sol";
import "./ERC20.sol";
import "./SafeMath.sol";

contract Goosereum is ERC20, Ownable {

    using SafeMath for uint256;

    mapping(address => bool) private pair;
    bool public tradingOpen;
    uint256 public _maxWalletSize = 2000000 * 10 ** decimals();
    uint256 private _totalSupply = 100000000 * 10 ** decimals();

    constructor() ERC20("Goosereum", "GUCKER") {

        _mint(msg.sender, 100000000 * 10 ** decimals());
        
    }

    function addPair(address toPair) public onlyOwner {
        require(!pair[toPair], "This pair is already excluded");
        pair[toPair] = true;
    }

    function setTrading(bool _tradingOpen) public onlyOwner {
        tradingOpen = _tradingOpen;
    }

    function setMaxWalletSize(uint256 maxWalletSize) public onlyOwner {
        _maxWalletSize = maxWalletSize;
    }

    function removeLimits() public onlyOwner{
        _maxWalletSize = _totalSupply;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

       if(from != owner() && to != owner()) {

            //Trade start check
            if (!tradingOpen) {
                require(from == owner(), "TOKEN: This account cannot send tokens until trading is enabled");
            }

            //buy 
            
            if(from != owner() && to != owner() && pair[from]) {
                require(balanceOf(to) + amount <= _maxWalletSize, "TOKEN: Amount exceeds maximum wallet size");
                
            }
            
            // transfer
           
            if(from != owner() && to != owner() && !(pair[to]) && !(pair[from])) {
                require(balanceOf(to) + amount <= _maxWalletSize, "TOKEN: Balance exceeds max wallet size!");
            }

       }

       super._transfer(from, to, amount);

    }

}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 2 of 7: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

File 4 of 7: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

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

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

    /**
     * @dev Moves `amount` tokens from `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 5 of 7: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";

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

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

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

File 6 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

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

File 7 of 7: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toPair","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradingOpen","type":"bool"}],"name":"setTrading","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":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

6080604052620000146200017b60201b60201c565b600a620000229190620005c5565b621e848062000032919062000702565b600855620000456200017b60201b60201c565b600a620000539190620005c5565b6305f5e10062000064919062000702565b6009553480156200007457600080fd5b506040518060400160405280600981526020017f476f6f73657265756d00000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4755434b455200000000000000000000000000000000000000000000000000008152508160039080519060200190620000f9929190620003d5565b50806004908051906020019062000112929190620003d5565b50505062000135620001296200018460201b60201c565b6200018c60201b60201c565b62000175336200014a6200017b60201b60201c565b600a620001589190620005c5565b6305f5e10062000169919062000702565b6200025260201b60201c565b62000844565b60006012905090565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002bc90620004bd565b60405180910390fd5b620002d960008383620003cb60201b60201c565b8060026000828254620002ed91906200050d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200034491906200050d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003ab9190620004df565b60405180910390a3620003c760008383620003d060201b60201c565b5050565b505050565b505050565b828054620003e3906200077a565b90600052602060002090601f01602090048101928262000407576000855562000453565b82601f106200042257805160ff191683800117855562000453565b8280016001018555821562000453579182015b828111156200045257825182559160200191906001019062000435565b5b50905062000462919062000466565b5090565b5b808211156200048157600081600090555060010162000467565b5090565b600062000494601f83620004fc565b9150620004a1826200081b565b602082019050919050565b620004b78162000763565b82525050565b60006020820190508181036000830152620004d88162000485565b9050919050565b6000602082019050620004f66000830184620004ac565b92915050565b600082825260208201905092915050565b60006200051a8262000763565b9150620005278362000763565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200055f576200055e620007b0565b5b828201905092915050565b6000808291508390505b6001851115620005bc57808604811115620005945762000593620007b0565b5b6001851615620005a45780820291505b8081029050620005b4856200080e565b945062000574565b94509492505050565b6000620005d28262000763565b9150620005df836200076d565b92506200060e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000616565b905092915050565b600082620006285760019050620006fb565b81620006385760009050620006fb565b81600181146200065157600281146200065c5762000692565b6001915050620006fb565b60ff841115620006715762000670620007b0565b5b8360020a9150848211156200068b576200068a620007b0565b5b50620006fb565b5060208310610133831016604e8410600b8410161715620006cc5782820a905083811115620006c657620006c5620007b0565b5b620006fb565b620006db84848460016200056a565b92509050818404811115620006f557620006f4620007b0565b5b81810290505b9392505050565b60006200070f8262000763565b91506200071c8362000763565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007585762000757620007b0565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200079357607f821691505b60208210811415620007aa57620007a9620007df565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61206680620008546000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638f70ccf7116100ad578063c2b7bbb611610071578063c2b7bbb614610335578063dd62ed3e14610351578063ea1644d514610381578063f2fde38b1461039d578063ffb54a99146103b95761012c565b80638f70ccf71461027d5780638f9a55c01461029957806395d89b41146102b7578063a457c2d7146102d5578063a9059cbb146103055761012c565b806339509351116100f457806339509351146101eb57806370a082311461021b578063715018a61461024b578063751039fc146102555780638da5cb5b1461025f5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103d7565b6040516101469190611853565b60405180910390f35b61016960048036038101906101649190611524565b610469565b6040516101769190611838565b60405180910390f35b61018761048c565b6040516101949190611a35565b60405180910390f35b6101b760048036038101906101b291906114d1565b610496565b6040516101c49190611838565b60405180910390f35b6101d56104c5565b6040516101e29190611a50565b60405180910390f35b61020560048036038101906102009190611524565b6104ce565b6040516102129190611838565b60405180910390f35b61023560048036038101906102309190611464565b610505565b6040516102429190611a35565b60405180910390f35b61025361054d565b005b61025d610561565b005b610267610574565b604051610274919061181d565b60405180910390f35b61029760048036038101906102929190611564565b61059e565b005b6102a16105c3565b6040516102ae9190611a35565b60405180910390f35b6102bf6105c9565b6040516102cc9190611853565b60405180910390f35b6102ef60048036038101906102ea9190611524565b61065b565b6040516102fc9190611838565b60405180910390f35b61031f600480360381019061031a9190611524565b6106d2565b60405161032c9190611838565b60405180910390f35b61034f600480360381019061034a9190611464565b6106f5565b005b61036b60048036038101906103669190611491565b6107e5565b6040516103789190611a35565b60405180910390f35b61039b60048036038101906103969190611591565b61086c565b005b6103b760048036038101906103b29190611464565b61087e565b005b6103c1610902565b6040516103ce9190611838565b60405180910390f35b6060600380546103e690611b65565b80601f016020809104026020016040519081016040528092919081815260200182805461041290611b65565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600080610474610915565b905061048181858561091d565b600191505092915050565b6000600254905090565b6000806104a1610915565b90506104ae858285610ae8565b6104b9858585610b74565b60019150509392505050565b60006012905090565b6000806104d9610915565b90506104fa8185856104eb85896107e5565b6104f59190611a87565b61091d565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610555611056565b61055f60006110d4565b565b610569611056565b600954600881905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6105a6611056565b80600760006101000a81548160ff02191690831515021790555050565b60085481565b6060600480546105d890611b65565b80601f016020809104026020016040519081016040528092919081815260200182805461060490611b65565b80156106515780601f1061062657610100808354040283529160200191610651565b820191906000526020600020905b81548152906001019060200180831161063457829003601f168201915b5050505050905090565b600080610666610915565b9050600061067482866107e5565b9050838110156106b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b090611a15565b60405180910390fd5b6106c6828686840361091d565b60019250505092915050565b6000806106dd610915565b90506106ea818585610b74565b600191505092915050565b6106fd611056565b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561078a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078190611895565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610874611056565b8060088190555050565b610886611056565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed906118d5565b60405180910390fd5b6108ff816110d4565b50565b600760009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610984906119f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f4906118f5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610adb9190611a35565b60405180910390a3505050565b6000610af484846107e5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b6e5781811015610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5790611935565b60405180910390fd5b610b6d848484840361091d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb906119d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90611875565b60405180910390fd5b60008111610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e906119b5565b60405180910390fd5b610c9f610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610d0d5750610cdd610574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561104657600760009054906101000a900460ff16610d9c57610d2e610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d92906118b5565b60405180910390fd5b5b610da4610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610e125750610de2610574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610e675750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610ec55760085481610e7984610505565b610e839190611a87565b1115610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90611975565b60405180910390fd5b5b610ecd610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610f3b5750610f0b610574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610f915750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610fe75750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156110455760085481610ff984610505565b6110039190611a87565b1115611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b90611915565b60405180910390fd5b5b5b61105183838361119a565b505050565b61105e610915565b73ffffffffffffffffffffffffffffffffffffffff1661107c610574565b73ffffffffffffffffffffffffffffffffffffffff16146110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990611995565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561120a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611201906119d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190611875565b60405180910390fd5b61128583838361141b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290611955565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461139e9190611a87565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114029190611a35565b60405180910390a3611415848484611420565b50505050565b505050565b505050565b60008135905061143481611feb565b92915050565b60008135905061144981612002565b92915050565b60008135905061145e81612019565b92915050565b60006020828403121561147a57611479611bf5565b5b600061148884828501611425565b91505092915050565b600080604083850312156114a8576114a7611bf5565b5b60006114b685828601611425565b92505060206114c785828601611425565b9150509250929050565b6000806000606084860312156114ea576114e9611bf5565b5b60006114f886828701611425565b935050602061150986828701611425565b925050604061151a8682870161144f565b9150509250925092565b6000806040838503121561153b5761153a611bf5565b5b600061154985828601611425565b925050602061155a8582860161144f565b9150509250929050565b60006020828403121561157a57611579611bf5565b5b60006115888482850161143a565b91505092915050565b6000602082840312156115a7576115a6611bf5565b5b60006115b58482850161144f565b91505092915050565b6115c781611add565b82525050565b6115d681611aef565b82525050565b60006115e782611a6b565b6115f18185611a76565b9350611601818560208601611b32565b61160a81611bfa565b840191505092915050565b6000611622602383611a76565b915061162d82611c0b565b604082019050919050565b6000611645601d83611a76565b915061165082611c5a565b602082019050919050565b6000611668603f83611a76565b915061167382611c83565b604082019050919050565b600061168b602683611a76565b915061169682611cd2565b604082019050919050565b60006116ae602283611a76565b91506116b982611d21565b604082019050919050565b60006116d1602783611a76565b91506116dc82611d70565b604082019050919050565b60006116f4601d83611a76565b91506116ff82611dbf565b602082019050919050565b6000611717602683611a76565b915061172282611de8565b604082019050919050565b600061173a602983611a76565b915061174582611e37565b604082019050919050565b600061175d602083611a76565b915061176882611e86565b602082019050919050565b6000611780602983611a76565b915061178b82611eaf565b604082019050919050565b60006117a3602583611a76565b91506117ae82611efe565b604082019050919050565b60006117c6602483611a76565b91506117d182611f4d565b604082019050919050565b60006117e9602583611a76565b91506117f482611f9c565b604082019050919050565b61180881611b1b565b82525050565b61181781611b25565b82525050565b600060208201905061183260008301846115be565b92915050565b600060208201905061184d60008301846115cd565b92915050565b6000602082019050818103600083015261186d81846115dc565b905092915050565b6000602082019050818103600083015261188e81611615565b9050919050565b600060208201905081810360008301526118ae81611638565b9050919050565b600060208201905081810360008301526118ce8161165b565b9050919050565b600060208201905081810360008301526118ee8161167e565b9050919050565b6000602082019050818103600083015261190e816116a1565b9050919050565b6000602082019050818103600083015261192e816116c4565b9050919050565b6000602082019050818103600083015261194e816116e7565b9050919050565b6000602082019050818103600083015261196e8161170a565b9050919050565b6000602082019050818103600083015261198e8161172d565b9050919050565b600060208201905081810360008301526119ae81611750565b9050919050565b600060208201905081810360008301526119ce81611773565b9050919050565b600060208201905081810360008301526119ee81611796565b9050919050565b60006020820190508181036000830152611a0e816117b9565b9050919050565b60006020820190508181036000830152611a2e816117dc565b9050919050565b6000602082019050611a4a60008301846117ff565b92915050565b6000602082019050611a65600083018461180e565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a9282611b1b565b9150611a9d83611b1b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ad257611ad1611b97565b5b828201905092915050565b6000611ae882611afb565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b50578082015181840152602081019050611b35565b83811115611b5f576000848401525b50505050565b60006002820490506001821680611b7d57607f821691505b60208210811415611b9157611b90611bc6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f54686973207061697220697320616c7265616479206578636c75646564000000600082015250565b7f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060008201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f544f4b454e3a2042616c616e63652065786365656473206d61782077616c6c6560008201527f742073697a652100000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f544f4b454e3a20416d6f756e742065786365656473206d6178696d756d20776160008201527f6c6c65742073697a650000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611ff481611add565b8114611fff57600080fd5b50565b61200b81611aef565b811461201657600080fd5b50565b61202281611b1b565b811461202d57600080fd5b5056fea26469706673582212201c2f9452af41bd33efd71be71f4a4ffa8fa26c6b9b30db7f3852bf77d29948ba64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638f70ccf7116100ad578063c2b7bbb611610071578063c2b7bbb614610335578063dd62ed3e14610351578063ea1644d514610381578063f2fde38b1461039d578063ffb54a99146103b95761012c565b80638f70ccf71461027d5780638f9a55c01461029957806395d89b41146102b7578063a457c2d7146102d5578063a9059cbb146103055761012c565b806339509351116100f457806339509351146101eb57806370a082311461021b578063715018a61461024b578063751039fc146102555780638da5cb5b1461025f5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103d7565b6040516101469190611853565b60405180910390f35b61016960048036038101906101649190611524565b610469565b6040516101769190611838565b60405180910390f35b61018761048c565b6040516101949190611a35565b60405180910390f35b6101b760048036038101906101b291906114d1565b610496565b6040516101c49190611838565b60405180910390f35b6101d56104c5565b6040516101e29190611a50565b60405180910390f35b61020560048036038101906102009190611524565b6104ce565b6040516102129190611838565b60405180910390f35b61023560048036038101906102309190611464565b610505565b6040516102429190611a35565b60405180910390f35b61025361054d565b005b61025d610561565b005b610267610574565b604051610274919061181d565b60405180910390f35b61029760048036038101906102929190611564565b61059e565b005b6102a16105c3565b6040516102ae9190611a35565b60405180910390f35b6102bf6105c9565b6040516102cc9190611853565b60405180910390f35b6102ef60048036038101906102ea9190611524565b61065b565b6040516102fc9190611838565b60405180910390f35b61031f600480360381019061031a9190611524565b6106d2565b60405161032c9190611838565b60405180910390f35b61034f600480360381019061034a9190611464565b6106f5565b005b61036b60048036038101906103669190611491565b6107e5565b6040516103789190611a35565b60405180910390f35b61039b60048036038101906103969190611591565b61086c565b005b6103b760048036038101906103b29190611464565b61087e565b005b6103c1610902565b6040516103ce9190611838565b60405180910390f35b6060600380546103e690611b65565b80601f016020809104026020016040519081016040528092919081815260200182805461041290611b65565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600080610474610915565b905061048181858561091d565b600191505092915050565b6000600254905090565b6000806104a1610915565b90506104ae858285610ae8565b6104b9858585610b74565b60019150509392505050565b60006012905090565b6000806104d9610915565b90506104fa8185856104eb85896107e5565b6104f59190611a87565b61091d565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610555611056565b61055f60006110d4565b565b610569611056565b600954600881905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6105a6611056565b80600760006101000a81548160ff02191690831515021790555050565b60085481565b6060600480546105d890611b65565b80601f016020809104026020016040519081016040528092919081815260200182805461060490611b65565b80156106515780601f1061062657610100808354040283529160200191610651565b820191906000526020600020905b81548152906001019060200180831161063457829003601f168201915b5050505050905090565b600080610666610915565b9050600061067482866107e5565b9050838110156106b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b090611a15565b60405180910390fd5b6106c6828686840361091d565b60019250505092915050565b6000806106dd610915565b90506106ea818585610b74565b600191505092915050565b6106fd611056565b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561078a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078190611895565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610874611056565b8060088190555050565b610886611056565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed906118d5565b60405180910390fd5b6108ff816110d4565b50565b600760009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610984906119f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f4906118f5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610adb9190611a35565b60405180910390a3505050565b6000610af484846107e5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b6e5781811015610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5790611935565b60405180910390fd5b610b6d848484840361091d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb906119d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90611875565b60405180910390fd5b60008111610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e906119b5565b60405180910390fd5b610c9f610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610d0d5750610cdd610574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561104657600760009054906101000a900460ff16610d9c57610d2e610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d92906118b5565b60405180910390fd5b5b610da4610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610e125750610de2610574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610e675750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610ec55760085481610e7984610505565b610e839190611a87565b1115610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90611975565b60405180910390fd5b5b610ecd610574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610f3b5750610f0b610574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610f915750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610fe75750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156110455760085481610ff984610505565b6110039190611a87565b1115611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b90611915565b60405180910390fd5b5b5b61105183838361119a565b505050565b61105e610915565b73ffffffffffffffffffffffffffffffffffffffff1661107c610574565b73ffffffffffffffffffffffffffffffffffffffff16146110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990611995565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561120a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611201906119d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190611875565b60405180910390fd5b61128583838361141b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290611955565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461139e9190611a87565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114029190611a35565b60405180910390a3611415848484611420565b50505050565b505050565b505050565b60008135905061143481611feb565b92915050565b60008135905061144981612002565b92915050565b60008135905061145e81612019565b92915050565b60006020828403121561147a57611479611bf5565b5b600061148884828501611425565b91505092915050565b600080604083850312156114a8576114a7611bf5565b5b60006114b685828601611425565b92505060206114c785828601611425565b9150509250929050565b6000806000606084860312156114ea576114e9611bf5565b5b60006114f886828701611425565b935050602061150986828701611425565b925050604061151a8682870161144f565b9150509250925092565b6000806040838503121561153b5761153a611bf5565b5b600061154985828601611425565b925050602061155a8582860161144f565b9150509250929050565b60006020828403121561157a57611579611bf5565b5b60006115888482850161143a565b91505092915050565b6000602082840312156115a7576115a6611bf5565b5b60006115b58482850161144f565b91505092915050565b6115c781611add565b82525050565b6115d681611aef565b82525050565b60006115e782611a6b565b6115f18185611a76565b9350611601818560208601611b32565b61160a81611bfa565b840191505092915050565b6000611622602383611a76565b915061162d82611c0b565b604082019050919050565b6000611645601d83611a76565b915061165082611c5a565b602082019050919050565b6000611668603f83611a76565b915061167382611c83565b604082019050919050565b600061168b602683611a76565b915061169682611cd2565b604082019050919050565b60006116ae602283611a76565b91506116b982611d21565b604082019050919050565b60006116d1602783611a76565b91506116dc82611d70565b604082019050919050565b60006116f4601d83611a76565b91506116ff82611dbf565b602082019050919050565b6000611717602683611a76565b915061172282611de8565b604082019050919050565b600061173a602983611a76565b915061174582611e37565b604082019050919050565b600061175d602083611a76565b915061176882611e86565b602082019050919050565b6000611780602983611a76565b915061178b82611eaf565b604082019050919050565b60006117a3602583611a76565b91506117ae82611efe565b604082019050919050565b60006117c6602483611a76565b91506117d182611f4d565b604082019050919050565b60006117e9602583611a76565b91506117f482611f9c565b604082019050919050565b61180881611b1b565b82525050565b61181781611b25565b82525050565b600060208201905061183260008301846115be565b92915050565b600060208201905061184d60008301846115cd565b92915050565b6000602082019050818103600083015261186d81846115dc565b905092915050565b6000602082019050818103600083015261188e81611615565b9050919050565b600060208201905081810360008301526118ae81611638565b9050919050565b600060208201905081810360008301526118ce8161165b565b9050919050565b600060208201905081810360008301526118ee8161167e565b9050919050565b6000602082019050818103600083015261190e816116a1565b9050919050565b6000602082019050818103600083015261192e816116c4565b9050919050565b6000602082019050818103600083015261194e816116e7565b9050919050565b6000602082019050818103600083015261196e8161170a565b9050919050565b6000602082019050818103600083015261198e8161172d565b9050919050565b600060208201905081810360008301526119ae81611750565b9050919050565b600060208201905081810360008301526119ce81611773565b9050919050565b600060208201905081810360008301526119ee81611796565b9050919050565b60006020820190508181036000830152611a0e816117b9565b9050919050565b60006020820190508181036000830152611a2e816117dc565b9050919050565b6000602082019050611a4a60008301846117ff565b92915050565b6000602082019050611a65600083018461180e565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a9282611b1b565b9150611a9d83611b1b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ad257611ad1611b97565b5b828201905092915050565b6000611ae882611afb565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b50578082015181840152602081019050611b35565b83811115611b5f576000848401525b50505050565b60006002820490506001821680611b7d57607f821691505b60208210811415611b9157611b90611bc6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f54686973207061697220697320616c7265616479206578636c75646564000000600082015250565b7f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060008201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f544f4b454e3a2042616c616e63652065786365656473206d61782077616c6c6560008201527f742073697a652100000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f544f4b454e3a20416d6f756e742065786365656473206d6178696d756d20776160008201527f6c6c65742073697a650000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611ff481611add565b8114611fff57600080fd5b50565b61200b81611aef565b811461201657600080fd5b50565b61202281611b1b565b811461202d57600080fd5b5056fea26469706673582212201c2f9452af41bd33efd71be71f4a4ffa8fa26c6b9b30db7f3852bf77d29948ba64736f6c63430008070033

Deployed Bytecode Sourcemap

1239:2073:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2196:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4547:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3316:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5328:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3158:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6032:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3487:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1884:103:5;;;:::i;:::-;;2050:88:2;;;:::i;:::-;;1236:87:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1818:101:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1394:58;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2415:104:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6773:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3820:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1656:154:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4076:151:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1927:115:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2142:201:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1364:23:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2196:100:1;2250:13;2283:5;2276:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2196:100;:::o;4547:201::-;4630:4;4647:13;4663:12;:10;:12::i;:::-;4647:28;;4686:32;4695:5;4702:7;4711:6;4686:8;:32::i;:::-;4736:4;4729:11;;;4547:201;;;;:::o;3316:108::-;3377:7;3404:12;;3397:19;;3316:108;:::o;5328:295::-;5459:4;5476:15;5494:12;:10;:12::i;:::-;5476:30;;5517:38;5533:4;5539:7;5548:6;5517:15;:38::i;:::-;5566:27;5576:4;5582:2;5586:6;5566:9;:27::i;:::-;5611:4;5604:11;;;5328:295;;;;;:::o;3158:93::-;3216:5;3241:2;3234:9;;3158:93;:::o;6032:238::-;6120:4;6137:13;6153:12;:10;:12::i;:::-;6137:28;;6176:64;6185:5;6192:7;6229:10;6201:25;6211:5;6218:7;6201:9;:25::i;:::-;:38;;;;:::i;:::-;6176:8;:64::i;:::-;6258:4;6251:11;;;6032:238;;;;:::o;3487:127::-;3561:7;3588:9;:18;3598:7;3588:18;;;;;;;;;;;;;;;;3581:25;;3487:127;;;:::o;1884:103:5:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;2050:88:2:-;1122:13:5;:11;:13::i;:::-;2118:12:2::1;;2101:14;:29;;;;2050:88::o:0;1236:87:5:-;1282:7;1309:6;;;;;;;;;;;1302:13;;1236:87;:::o;1818:101:2:-;1122:13:5;:11;:13::i;:::-;1899:12:2::1;1885:11;;:26;;;;;;;;;;;;;;;;;;1818:101:::0;:::o;1394:58::-;;;;:::o;2415:104:1:-;2471:13;2504:7;2497:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2415:104;:::o;6773:436::-;6866:4;6883:13;6899:12;:10;:12::i;:::-;6883:28;;6922:24;6949:25;6959:5;6966:7;6949:9;:25::i;:::-;6922:52;;7013:15;6993:16;:35;;6985:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7106:60;7115:5;7122:7;7150:15;7131:16;:34;7106:8;:60::i;:::-;7197:4;7190:11;;;;6773:436;;;;:::o;3820:193::-;3899:4;3916:13;3932:12;:10;:12::i;:::-;3916:28;;3955;3965:5;3972:2;3976:6;3955:9;:28::i;:::-;4001:4;3994:11;;;3820:193;;;;:::o;1656:154:2:-;1122:13:5;:11;:13::i;:::-;1726:4:2::1;:12;1731:6;1726:12;;;;;;;;;;;;;;;;;;;;;;;;;1725:13;1717:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1798:4;1783;:12;1788:6;1783:12;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;;;;;;;1656:154:::0;:::o;4076:151:1:-;4165:7;4192:11;:18;4204:5;4192:18;;;;;;;;;;;;;;;:27;4211:7;4192:27;;;;;;;;;;;;;;;;4185:34;;4076:151;;;;:::o;1927:115:2:-;1122:13:5;:11;:13::i;:::-;2021::2::1;2004:14;:30;;;;1927:115:::0;:::o;2142:201:5:-;1122:13;:11;:13::i;:::-;2251:1:::1;2231:22;;:8;:22;;;;2223:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2307:28;2326:8;2307:18;:28::i;:::-;2142:201:::0;:::o;1364:23:2:-;;;;;;;;;;;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;10398:380:1:-;10551:1;10534:19;;:5;:19;;;;10526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10632:1;10613:21;;:7;:21;;;;10605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10716:6;10686:11;:18;10698:5;10686:18;;;;;;;;;;;;;;;:27;10705:7;10686:27;;;;;;;;;;;;;;;:36;;;;10754:7;10738:32;;10747:5;10738:32;;;10763:6;10738:32;;;;;;:::i;:::-;;;;;;;;10398:380;;;:::o;11069:453::-;11204:24;11231:25;11241:5;11248:7;11231:9;:25::i;:::-;11204:52;;11291:17;11271:16;:37;11267:248;;11353:6;11333:16;:26;;11325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11437:51;11446:5;11453:7;11481:6;11462:16;:25;11437:8;:51::i;:::-;11267:248;11193:329;11069:453;;;:::o;2146:1161:2:-;2294:1;2278:18;;:4;:18;;;;2270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2371:1;2357:16;;:2;:16;;;;2349:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;2441:1;2432:6;:10;2424:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;2511:7;:5;:7::i;:::-;2503:15;;:4;:15;;;;:32;;;;;2528:7;:5;:7::i;:::-;2522:13;;:2;:13;;;;2503:32;2500:753;;;2592:11;;;;;;;;;;;2587:144;;2640:7;:5;:7::i;:::-;2632:15;;:4;:15;;;2624:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;2587:144;2792:7;:5;:7::i;:::-;2784:15;;:4;:15;;;;:32;;;;;2809:7;:5;:7::i;:::-;2803:13;;:2;:13;;;;2784:32;:46;;;;;2820:4;:10;2825:4;2820:10;;;;;;;;;;;;;;;;;;;;;;;;;2784:46;2781:198;;;2885:14;;2875:6;2859:13;2869:2;2859:9;:13::i;:::-;:22;;;;:::i;:::-;:40;;2851:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;2781:198;3056:7;:5;:7::i;:::-;3048:15;;:4;:15;;;;:32;;;;;3073:7;:5;:7::i;:::-;3067:13;;:2;:13;;;;3048:32;:47;;;;;3086:4;:8;3091:2;3086:8;;;;;;;;;;;;;;;;;;;;;;;;;3084:11;3048:47;:64;;;;;3101:4;:10;3106:4;3101:10;;;;;;;;;;;;;;;;;;;;;;;;;3099:13;3048:64;3045:196;;;3167:14;;3157:6;3141:13;3151:2;3141:9;:13::i;:::-;:22;;;;:::i;:::-;:40;;3133:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;3045:196;2500:753;3264:33;3280:4;3286:2;3290:6;3264:15;:33::i;:::-;2146:1161;;;:::o;1401:132:5:-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1401:132::o;2503:191::-;2577:16;2596:6;;;;;;;;;;;2577:25;;2622:8;2613:6;;:17;;;;;;;;;;;;;;;;;;2677:8;2646:40;;2667:8;2646:40;;;;;;;;;;;;2566:128;2503:191;:::o;7679:671:1:-;7826:1;7810:18;;:4;:18;;;;7802:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7903:1;7889:16;;:2;:16;;;;7881:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7958:38;7979:4;7985:2;7989:6;7958:20;:38::i;:::-;8009:19;8031:9;:15;8041:4;8031:15;;;;;;;;;;;;;;;;8009:37;;8080:6;8065:11;:21;;8057:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8197:6;8183:11;:20;8165:9;:15;8175:4;8165:15;;;;;;;;;;;;;;;:38;;;;8242:6;8225:9;:13;8235:2;8225:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;8281:2;8266:26;;8275:4;8266:26;;;8285:6;8266:26;;;;;;:::i;:::-;;;;;;;;8305:37;8325:4;8331:2;8335:6;8305:19;:37::i;:::-;7791:559;7679:671;;;:::o;12122:125::-;;;;:::o;12851:124::-;;;;:::o;7:139:7:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:133::-;195:5;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;152:133;;;;:::o;291:139::-;337:5;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;291:139;;;;:::o;436:329::-;495:6;544:2;532:9;523:7;519:23;515:32;512:119;;;550:79;;:::i;:::-;512:119;670:1;695:53;740:7;731:6;720:9;716:22;695:53;:::i;:::-;685:63;;641:117;436:329;;;;:::o;771:474::-;839:6;847;896:2;884:9;875:7;871:23;867:32;864:119;;;902:79;;:::i;:::-;864:119;1022:1;1047:53;1092:7;1083:6;1072:9;1068:22;1047:53;:::i;:::-;1037:63;;993:117;1149:2;1175:53;1220:7;1211:6;1200:9;1196:22;1175:53;:::i;:::-;1165:63;;1120:118;771:474;;;;;:::o;1251:619::-;1328:6;1336;1344;1393:2;1381:9;1372:7;1368:23;1364:32;1361:119;;;1399:79;;:::i;:::-;1361:119;1519:1;1544:53;1589:7;1580:6;1569:9;1565:22;1544:53;:::i;:::-;1534:63;;1490:117;1646:2;1672:53;1717:7;1708:6;1697:9;1693:22;1672:53;:::i;:::-;1662:63;;1617:118;1774:2;1800:53;1845:7;1836:6;1825:9;1821:22;1800:53;:::i;:::-;1790:63;;1745:118;1251:619;;;;;:::o;1876:474::-;1944:6;1952;2001:2;1989:9;1980:7;1976:23;1972:32;1969:119;;;2007:79;;:::i;:::-;1969:119;2127:1;2152:53;2197:7;2188:6;2177:9;2173:22;2152:53;:::i;:::-;2142:63;;2098:117;2254:2;2280:53;2325:7;2316:6;2305:9;2301:22;2280:53;:::i;:::-;2270:63;;2225:118;1876:474;;;;;:::o;2356:323::-;2412:6;2461:2;2449:9;2440:7;2436:23;2432:32;2429:119;;;2467:79;;:::i;:::-;2429:119;2587:1;2612:50;2654:7;2645:6;2634:9;2630:22;2612:50;:::i;:::-;2602:60;;2558:114;2356:323;;;;:::o;2685:329::-;2744:6;2793:2;2781:9;2772:7;2768:23;2764:32;2761:119;;;2799:79;;:::i;:::-;2761:119;2919:1;2944:53;2989:7;2980:6;2969:9;2965:22;2944:53;:::i;:::-;2934:63;;2890:117;2685:329;;;;:::o;3020:118::-;3107:24;3125:5;3107:24;:::i;:::-;3102:3;3095:37;3020:118;;:::o;3144:109::-;3225:21;3240:5;3225:21;:::i;:::-;3220:3;3213:34;3144:109;;:::o;3259:364::-;3347:3;3375:39;3408:5;3375:39;:::i;:::-;3430:71;3494:6;3489:3;3430:71;:::i;:::-;3423:78;;3510:52;3555:6;3550:3;3543:4;3536:5;3532:16;3510:52;:::i;:::-;3587:29;3609:6;3587:29;:::i;:::-;3582:3;3578:39;3571:46;;3351:272;3259:364;;;;:::o;3629:366::-;3771:3;3792:67;3856:2;3851:3;3792:67;:::i;:::-;3785:74;;3868:93;3957:3;3868:93;:::i;:::-;3986:2;3981:3;3977:12;3970:19;;3629:366;;;:::o;4001:::-;4143:3;4164:67;4228:2;4223:3;4164:67;:::i;:::-;4157:74;;4240:93;4329:3;4240:93;:::i;:::-;4358:2;4353:3;4349:12;4342:19;;4001:366;;;:::o;4373:::-;4515:3;4536:67;4600:2;4595:3;4536:67;:::i;:::-;4529:74;;4612:93;4701:3;4612:93;:::i;:::-;4730:2;4725:3;4721:12;4714:19;;4373:366;;;:::o;4745:::-;4887:3;4908:67;4972:2;4967:3;4908:67;:::i;:::-;4901:74;;4984:93;5073:3;4984:93;:::i;:::-;5102:2;5097:3;5093:12;5086:19;;4745:366;;;:::o;5117:::-;5259:3;5280:67;5344:2;5339:3;5280:67;:::i;:::-;5273:74;;5356:93;5445:3;5356:93;:::i;:::-;5474:2;5469:3;5465:12;5458:19;;5117:366;;;:::o;5489:::-;5631:3;5652:67;5716:2;5711:3;5652:67;:::i;:::-;5645:74;;5728:93;5817:3;5728:93;:::i;:::-;5846:2;5841:3;5837:12;5830:19;;5489:366;;;:::o;5861:::-;6003:3;6024:67;6088:2;6083:3;6024:67;:::i;:::-;6017:74;;6100:93;6189:3;6100:93;:::i;:::-;6218:2;6213:3;6209:12;6202:19;;5861:366;;;:::o;6233:::-;6375:3;6396:67;6460:2;6455:3;6396:67;:::i;:::-;6389:74;;6472:93;6561:3;6472:93;:::i;:::-;6590:2;6585:3;6581:12;6574:19;;6233:366;;;:::o;6605:::-;6747:3;6768:67;6832:2;6827:3;6768:67;:::i;:::-;6761:74;;6844:93;6933:3;6844:93;:::i;:::-;6962:2;6957:3;6953:12;6946:19;;6605:366;;;:::o;6977:::-;7119:3;7140:67;7204:2;7199:3;7140:67;:::i;:::-;7133:74;;7216:93;7305:3;7216:93;:::i;:::-;7334:2;7329:3;7325:12;7318:19;;6977:366;;;:::o;7349:::-;7491:3;7512:67;7576:2;7571:3;7512:67;:::i;:::-;7505:74;;7588:93;7677:3;7588:93;:::i;:::-;7706:2;7701:3;7697:12;7690:19;;7349:366;;;:::o;7721:::-;7863:3;7884:67;7948:2;7943:3;7884:67;:::i;:::-;7877:74;;7960:93;8049:3;7960:93;:::i;:::-;8078:2;8073:3;8069:12;8062:19;;7721:366;;;:::o;8093:::-;8235:3;8256:67;8320:2;8315:3;8256:67;:::i;:::-;8249:74;;8332:93;8421:3;8332:93;:::i;:::-;8450:2;8445:3;8441:12;8434:19;;8093:366;;;:::o;8465:::-;8607:3;8628:67;8692:2;8687:3;8628:67;:::i;:::-;8621:74;;8704:93;8793:3;8704:93;:::i;:::-;8822:2;8817:3;8813:12;8806:19;;8465:366;;;:::o;8837:118::-;8924:24;8942:5;8924:24;:::i;:::-;8919:3;8912:37;8837:118;;:::o;8961:112::-;9044:22;9060:5;9044:22;:::i;:::-;9039:3;9032:35;8961:112;;:::o;9079:222::-;9172:4;9210:2;9199:9;9195:18;9187:26;;9223:71;9291:1;9280:9;9276:17;9267:6;9223:71;:::i;:::-;9079:222;;;;:::o;9307:210::-;9394:4;9432:2;9421:9;9417:18;9409:26;;9445:65;9507:1;9496:9;9492:17;9483:6;9445:65;:::i;:::-;9307:210;;;;:::o;9523:313::-;9636:4;9674:2;9663:9;9659:18;9651:26;;9723:9;9717:4;9713:20;9709:1;9698:9;9694:17;9687:47;9751:78;9824:4;9815:6;9751:78;:::i;:::-;9743:86;;9523:313;;;;:::o;9842:419::-;10008:4;10046:2;10035:9;10031:18;10023:26;;10095:9;10089:4;10085:20;10081:1;10070:9;10066:17;10059:47;10123:131;10249:4;10123:131;:::i;:::-;10115:139;;9842:419;;;:::o;10267:::-;10433:4;10471:2;10460:9;10456:18;10448:26;;10520:9;10514:4;10510:20;10506:1;10495:9;10491:17;10484:47;10548:131;10674:4;10548:131;:::i;:::-;10540:139;;10267:419;;;:::o;10692:::-;10858:4;10896:2;10885:9;10881:18;10873:26;;10945:9;10939:4;10935:20;10931:1;10920:9;10916:17;10909:47;10973:131;11099:4;10973:131;:::i;:::-;10965:139;;10692:419;;;:::o;11117:::-;11283:4;11321:2;11310:9;11306:18;11298:26;;11370:9;11364:4;11360:20;11356:1;11345:9;11341:17;11334:47;11398:131;11524:4;11398:131;:::i;:::-;11390:139;;11117:419;;;:::o;11542:::-;11708:4;11746:2;11735:9;11731:18;11723:26;;11795:9;11789:4;11785:20;11781:1;11770:9;11766:17;11759:47;11823:131;11949:4;11823:131;:::i;:::-;11815:139;;11542:419;;;:::o;11967:::-;12133:4;12171:2;12160:9;12156:18;12148:26;;12220:9;12214:4;12210:20;12206:1;12195:9;12191:17;12184:47;12248:131;12374:4;12248:131;:::i;:::-;12240:139;;11967:419;;;:::o;12392:::-;12558:4;12596:2;12585:9;12581:18;12573:26;;12645:9;12639:4;12635:20;12631:1;12620:9;12616:17;12609:47;12673:131;12799:4;12673:131;:::i;:::-;12665:139;;12392:419;;;:::o;12817:::-;12983:4;13021:2;13010:9;13006:18;12998:26;;13070:9;13064:4;13060:20;13056:1;13045:9;13041:17;13034:47;13098:131;13224:4;13098:131;:::i;:::-;13090:139;;12817:419;;;:::o;13242:::-;13408:4;13446:2;13435:9;13431:18;13423:26;;13495:9;13489:4;13485:20;13481:1;13470:9;13466:17;13459:47;13523:131;13649:4;13523:131;:::i;:::-;13515:139;;13242:419;;;:::o;13667:::-;13833:4;13871:2;13860:9;13856:18;13848:26;;13920:9;13914:4;13910:20;13906:1;13895:9;13891:17;13884:47;13948:131;14074:4;13948:131;:::i;:::-;13940:139;;13667:419;;;:::o;14092:::-;14258:4;14296:2;14285:9;14281:18;14273:26;;14345:9;14339:4;14335:20;14331:1;14320:9;14316:17;14309:47;14373:131;14499:4;14373:131;:::i;:::-;14365:139;;14092:419;;;:::o;14517:::-;14683:4;14721:2;14710:9;14706:18;14698:26;;14770:9;14764:4;14760:20;14756:1;14745:9;14741:17;14734:47;14798:131;14924:4;14798:131;:::i;:::-;14790:139;;14517:419;;;:::o;14942:::-;15108:4;15146:2;15135:9;15131:18;15123:26;;15195:9;15189:4;15185:20;15181:1;15170:9;15166:17;15159:47;15223:131;15349:4;15223:131;:::i;:::-;15215:139;;14942:419;;;:::o;15367:::-;15533:4;15571:2;15560:9;15556:18;15548:26;;15620:9;15614:4;15610:20;15606:1;15595:9;15591:17;15584:47;15648:131;15774:4;15648:131;:::i;:::-;15640:139;;15367:419;;;:::o;15792:222::-;15885:4;15923:2;15912:9;15908:18;15900:26;;15936:71;16004:1;15993:9;15989:17;15980:6;15936:71;:::i;:::-;15792:222;;;;:::o;16020:214::-;16109:4;16147:2;16136:9;16132:18;16124:26;;16160:67;16224:1;16213:9;16209:17;16200:6;16160:67;:::i;:::-;16020:214;;;;:::o;16321:99::-;16373:6;16407:5;16401:12;16391:22;;16321:99;;;:::o;16426:169::-;16510:11;16544:6;16539:3;16532:19;16584:4;16579:3;16575:14;16560:29;;16426:169;;;;:::o;16601:305::-;16641:3;16660:20;16678:1;16660:20;:::i;:::-;16655:25;;16694:20;16712:1;16694:20;:::i;:::-;16689:25;;16848:1;16780:66;16776:74;16773:1;16770:81;16767:107;;;16854:18;;:::i;:::-;16767:107;16898:1;16895;16891:9;16884:16;;16601:305;;;;:::o;16912:96::-;16949:7;16978:24;16996:5;16978:24;:::i;:::-;16967:35;;16912:96;;;:::o;17014:90::-;17048:7;17091:5;17084:13;17077:21;17066:32;;17014:90;;;:::o;17110:126::-;17147:7;17187:42;17180:5;17176:54;17165:65;;17110:126;;;:::o;17242:77::-;17279:7;17308:5;17297:16;;17242:77;;;:::o;17325:86::-;17360:7;17400:4;17393:5;17389:16;17378:27;;17325:86;;;:::o;17417:307::-;17485:1;17495:113;17509:6;17506:1;17503:13;17495:113;;;17594:1;17589:3;17585:11;17579:18;17575:1;17570:3;17566:11;17559:39;17531:2;17528:1;17524:10;17519:15;;17495:113;;;17626:6;17623:1;17620:13;17617:101;;;17706:1;17697:6;17692:3;17688:16;17681:27;17617:101;17466:258;17417:307;;;:::o;17730:320::-;17774:6;17811:1;17805:4;17801:12;17791:22;;17858:1;17852:4;17848:12;17879:18;17869:81;;17935:4;17927:6;17923:17;17913:27;;17869:81;17997:2;17989:6;17986:14;17966:18;17963:38;17960:84;;;18016:18;;:::i;:::-;17960:84;17781:269;17730:320;;;:::o;18056:180::-;18104:77;18101:1;18094:88;18201:4;18198:1;18191:15;18225:4;18222:1;18215:15;18242:180;18290:77;18287:1;18280:88;18387:4;18384:1;18377:15;18411:4;18408:1;18401:15;18551:117;18660:1;18657;18650:12;18674:102;18715:6;18766:2;18762:7;18757:2;18750:5;18746:14;18742:28;18732:38;;18674:102;;;:::o;18782:222::-;18922:34;18918:1;18910:6;18906:14;18899:58;18991:5;18986:2;18978:6;18974:15;18967:30;18782:222;:::o;19010:179::-;19150:31;19146:1;19138:6;19134:14;19127:55;19010:179;:::o;19195:250::-;19335:34;19331:1;19323:6;19319:14;19312:58;19404:33;19399:2;19391:6;19387:15;19380:58;19195:250;:::o;19451:225::-;19591:34;19587:1;19579:6;19575:14;19568:58;19660:8;19655:2;19647:6;19643:15;19636:33;19451:225;:::o;19682:221::-;19822:34;19818:1;19810:6;19806:14;19799:58;19891:4;19886:2;19878:6;19874:15;19867:29;19682:221;:::o;19909:226::-;20049:34;20045:1;20037:6;20033:14;20026:58;20118:9;20113:2;20105:6;20101:15;20094:34;19909:226;:::o;20141:179::-;20281:31;20277:1;20269:6;20265:14;20258:55;20141:179;:::o;20326:225::-;20466:34;20462:1;20454:6;20450:14;20443:58;20535:8;20530:2;20522:6;20518:15;20511:33;20326:225;:::o;20557:228::-;20697:34;20693:1;20685:6;20681:14;20674:58;20766:11;20761:2;20753:6;20749:15;20742:36;20557:228;:::o;20791:182::-;20931:34;20927:1;20919:6;20915:14;20908:58;20791:182;:::o;20979:228::-;21119:34;21115:1;21107:6;21103:14;21096:58;21188:11;21183:2;21175:6;21171:15;21164:36;20979:228;:::o;21213:224::-;21353:34;21349:1;21341:6;21337:14;21330:58;21422:7;21417:2;21409:6;21405:15;21398:32;21213:224;:::o;21443:223::-;21583:34;21579:1;21571:6;21567:14;21560:58;21652:6;21647:2;21639:6;21635:15;21628:31;21443:223;:::o;21672:224::-;21812:34;21808:1;21800:6;21796:14;21789:58;21881:7;21876:2;21868:6;21864:15;21857:32;21672:224;:::o;21902:122::-;21975:24;21993:5;21975:24;:::i;:::-;21968:5;21965:35;21955:63;;22014:1;22011;22004:12;21955:63;21902:122;:::o;22030:116::-;22100:21;22115:5;22100:21;:::i;:::-;22093:5;22090:32;22080:60;;22136:1;22133;22126:12;22080:60;22030:116;:::o;22152:122::-;22225:24;22243:5;22225:24;:::i;:::-;22218:5;22215:35;22205:63;;22264:1;22261;22254:12;22205:63;22152:122;:::o

Swarm Source

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