ETH Price: $3,418.99 (-1.87%)
Gas: 5 Gwei

Token

PepesKids (PKIDS)
 

Overview

Max Total Supply

420,696,969,696 PKIDS

Holders

138

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,360,000,000.000000021949613362 PKIDS

Value
$0.00
0x1059de175bd14e4c3672f4e96443a5e71815653e
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:
PepesKids

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-08
*/

/*
    Welcome to PepesKids $PKIDS smart contract!

    Heya, fellow crypto frens! It's ya boy $PEPE, and I gotta say, my meme game is on point! 
    I'm soaring high like a rocket, making waves in the meme project scene. 
    But check this out, my fam $PKIDS ain't no one-trick ponies. 
    My spawn are following in my footsteps, ready to show the world they got what it takes to reach the top! 
    Keep your eyes peeled, 'cause $PKIDS and the whole $PEPE clan are gonna rise up and rock the crypto world like never before. 
    Don't miss out, frens! Remember, we're all in this together, and with our battle cry of WAGMI, there's no stopping us from achieving greatness!

    Socials:
    Twitter: https://twitter.com/PepesKidsERC
    Telegram: https://t.me/PepeKidsErcPortal 

    Join our vibrant community to stay updated on the latest news and announcements.

    Happy trading!
*/

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.8.13;

library SafeCast {

    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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 Context, IERC20 {

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

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

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

    /**
     * @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 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-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

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

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

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

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

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

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

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

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

        //_beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender] - amount;
        _balances[recipient] = _balances[recipient] + amount;
        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

    // remove unused code to save on gas
    // function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

////////////////////////////////
////////// Dividend ////////////
////////////////////////////////

/*
@title Dividend-Paying Token Interface
@author Roger Wu (https://github.com/roger-wu)
@dev An interface for a dividend-paying token contract.
*/
interface IDividendPayingToken {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) external view returns(uint256);

  /// @notice Distributes ether to token holders as dividends.
  /// @dev SHOULD distribute the paid ether to token holders as dividends.
  ///  SHOULD NOT directly transfer ether to token holders in this function.
  ///  MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0.
  function distributeDividends() external payable;

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
  ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
  function withdrawDividend() external;

  /// @dev This event MUST emit when ether is distributed to token holders.
  /// @param from The address which sends ether to this contract.
  /// @param weiAmount The amount of distributed ether in wei.
  event DividendsDistributed(
    address indexed from,
    uint256 weiAmount
  );

  /// @dev This event MUST emit when an address withdraws their dividend.
  /// @param to The address which withdraws ether from this contract.
  /// @param weiAmount The amount of withdrawn ether in wei.
  event DividendWithdrawn(
    address indexed to,
    uint256 weiAmount
  );
}

  /// @title Dividend-Paying Token Interface
  /// @author Roger Wu (https://github.com/roger-wu)
  /// @dev An interface for a dividend-paying token contract.
interface DividendPayingTokenInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) external view returns(uint256);

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
  ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
  function withdrawDividend() external;

  /// @dev This event MUST emit when ether is distributed to token holders.
  /// @param from The address which sends ether to this contract.
  /// @param weiAmount The amount of distributed ether in wei.
  event DividendsDistributed(
    address indexed from,
    uint256 weiAmount
  );

  /// @dev This event MUST emit when an address withdraws their dividend.
  /// @param to The address which withdraws ether from this contract.
  /// @param weiAmount The amount of withdrawn ether in wei.
  event DividendWithdrawn(
    address indexed to,
    uint256 weiAmount
  );
}

interface DividendPayingTokenOptionalInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) external view returns(uint256);
}

contract DividendPayingToken is ERC20, Ownable, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface {

  address constant public pepe = address(0x6982508145454Ce325dDbE47a25d4ec3d2311933); // Pepe
  
  uint256 constant internal magnitude = 2**128;

  uint256 internal magnifiedDividendPerShare;

  mapping(address => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;

  uint256 public totalDividendsDistributed;

  constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {}

  function distributeDividends(uint256 amount) public onlyOwner{
    require(totalSupply() > 0);

    if (amount > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare + (
          (amount * magnitude) / totalSupply()
        );
      emit DividendsDistributed(msg.sender, amount);

      totalDividendsDistributed = totalDividendsDistributed + amount;
    }
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function withdrawDividend() public virtual override {
    _withdrawDividendOfUser(payable(msg.sender));
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
 function _withdrawDividendOfUser(address payable user) internal returns (uint256) {
    uint256 _withdrawableDividend = withdrawableDividendOf(user);
    if (_withdrawableDividend > 0) {
      withdrawnDividends[user] = withdrawnDividends[user] + _withdrawableDividend;
      emit DividendWithdrawn(user, _withdrawableDividend);
      bool success = IERC20(pepe).transfer(user, _withdrawableDividend);

      if(!success) {
        withdrawnDividends[user] = withdrawnDividends[user] - _withdrawableDividend;
        return 0;
      }

      return _withdrawableDividend;
    }

    return 0;
  }

  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) public view override returns(uint256) {
    return withdrawableDividendOf(_owner);
  }

  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) public view override returns(uint256) {
    return accumulativeDividendOf(_owner) - withdrawnDividends[_owner];
  }

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) public view override returns(uint256) {
    return withdrawnDividends[_owner];
  }

  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) public view override returns(uint256) {
    return SafeCast.toUint256(SafeCast.toInt256(magnifiedDividendPerShare * balanceOf(_owner)) + magnifiedDividendCorrections[_owner]) / magnitude;
  }

  /// @dev Internal function that transfer tokens from one address to another.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param from The address to transfer from.
  /// @param to The address to transfer to.
  /// @param value The amount to be transferred.
  function _transfer(address from, address to, uint256 value) internal virtual override {
    require(false);
  }

  /// @dev Internal function that mints tokens to an account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account that will receive the created tokens.
  /// @param value The amount that will be created.
  function _mint(address account, uint256 value) internal override {
    super._mint(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
       -  (SafeCast.toInt256(magnifiedDividendPerShare * value));
  }

  /// @dev Internal function that burns an amount of the token of a given account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account whose tokens will be burnt.
  /// @param value The amount that will be burnt.
  function _burn(address account, uint256 value) internal override {
    super._burn(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
       +  (SafeCast.toInt256(magnifiedDividendPerShare * value));
  }

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = balanceOf(account);

    if(newBalance > currentBalance) {
      uint256 mintAmount = newBalance - currentBalance;
      _mint(account, mintAmount);
    } else if(newBalance < currentBalance) {
      uint256 burnAmount = currentBalance - newBalance;
      _burn(account, burnAmount);
    }
  }
}

////////////////////////////////
///////// Interfaces ///////////
////////////////////////////////

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

////////////////////////////////
////////// Libraries ///////////
////////////////////////////////

library IterableMapping {
    // Iterable mapping from address to uint;
    struct Map {
        address[] keys;
        mapping(address => uint) values;
        mapping(address => uint) indexOf;
        mapping(address => bool) inserted;
    }

    function get(Map storage map, address key) public view returns (uint) {
        return map.values[key];
    }

    function getIndexOfKey(Map storage map, address key) public view returns (int) {
        if(!map.inserted[key]) {
            return -1;
        }
        return int(map.indexOf[key]);
    }

    function getKeyAtIndex(Map storage map, uint index) public view returns (address) {
        return map.keys[index];
    }



    function size(Map storage map) public view returns (uint) {
        return map.keys.length;
    }

    function set(Map storage map, address key, uint val) public {
        if (map.inserted[key]) {
            map.values[key] = val;
        } else {
            map.inserted[key] = true;
            map.values[key] = val;
            map.indexOf[key] = map.keys.length;
            map.keys.push(key);
        }
    }

    function remove(Map storage map, address key) public {
        if (!map.inserted[key]) {
            return;
        }

        delete map.inserted[key];
        delete map.values[key];

        uint index = map.indexOf[key];
        uint lastIndex = map.keys.length - 1;
        address lastKey = map.keys[lastIndex];

        map.indexOf[lastKey] = index;
        delete map.indexOf[key];

        map.keys[index] = lastKey;
        map.keys.pop();
    }
}

contract PepesKids is ERC20, Ownable {

    IUniswapV2Router02 public uniswapV2Router;
    address public  uniswapV2Pair;

    bool private swapping;

    PepeDividendTracker public dividendTracker;

    address public deadWallet = 0x000000000000000000000000000000000000dEaD;

    address constant public rewardToken = address(0x6982508145454Ce325dDbE47a25d4ec3d2311933); // Pepe

    uint256 public maxWalletAmount;
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;

    uint256 public buyRewardFee = 10;  
    uint256 public buyMarketingFee = 10;
    uint256 public buyTotalFee = 20;

    uint256 public sellRewardFee = 30; 
    uint256 public sellMarketingFee = 35; 
    uint256 public sellTotalFee = 65;

    uint256 public constant SECONDS_IN_DAY = 3_600 * 24;
    uint256 public antiSniperTax = 75;
    mapping (address => bool) public snipers;

    bool public isAutoClaimEnabled = false;

    uint256 public tradingStarted = 0;

    address payable public marketingWalletAddress = payable(address(0x04a9cAedD8B57C5CCBd75F572cf718F26502a8a2));
    address public operator;

    uint256 public gasForProcessing = 300_000;
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedFromMaxWalletAmount;
    mapping (address => bool) public automatedMarketMakerPairs;

    event UpdateDividendTracker(address indexed newAddress, address indexed oldAddress);
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeFromMaxWalletAmount(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue);
    event Unclog(uint256 amount);
    event SendDividends(
    	uint256 tokensSwapped,
    	uint256 amount
    );
    event ProcessedDividendTracker(
    	uint256 iterations,
    	uint256 claims,
        uint256 lastProcessedIndex,
    	bool indexed automatic,
    	uint256 gas,
    	address indexed processor
    );

    constructor() ERC20("PepesKids", "PKIDS") {
        uint256 _totalSupply = 420_696_969_696 * 10**18;

        operator = msg.sender;

        maxWalletAmount = _totalSupply * 15 / 1000; // 1.5%
        maxTransactionAmount = _totalSupply / 200; // 0.5%
        swapTokensAtAmount = _totalSupply / 1000; // 0.1%

    	dividendTracker = new PepeDividendTracker();

    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        // this will exclude the dividends from _uniswapV2Pair
        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        dividendTracker.excludeFromDividends(address(this));
        dividendTracker.excludeFromDividends(address(dividendTracker));
        dividendTracker.excludeFromDividends(address(_uniswapV2Router));
        dividendTracker.excludeFromDividends(deadWallet);

        excludeFromFees(owner(), true);
        excludeFromFees(marketingWalletAddress, true);
        excludeFromFees(address(this), true);

        excludeFromMaxWalletAmount(owner(), true);
        excludeFromMaxWalletAmount(address(this), true);

        _mint(owner(), _totalSupply);
    }

    modifier onlyOperator() {
        require(operator == _msgSender(), "Caller is not the operator");
        _;
    }

    function begin() external onlyOwner {
        if (tradingStarted == 0) tradingStarted = block.timestamp;
    }

    receive() external payable {

  	}

    // anti-sniper measure
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        require(tradingStarted > 0 || _msgSender() == owner(), "Trading hasn't started, are you a sniper...");

        // user approved too soon, high probability of being a sniper so they have 75% sell tax for 24 hours
        if ((block.timestamp - tradingStarted) <= 50) snipers[_msgSender()] = true;
        
        _approve(_msgSender(), spender, amount);
        return true;
    }

    // Function to allow us to extract the Pepe from the dividend tracker in case of issues between launch and renounce
    // Pepe are temporarily sent to this PepeKids token contract
    function emergencyDividendWithdraw() external onlyOwner {        
        dividendTracker.emergencyWithdraw();
    }

    // In case of emergency between launch and renounce
    function updateDividendTracker(address newAddress) public onlyOwner {
        require(newAddress != address(dividendTracker), "The dividend tracker already has that address");

        PepeDividendTracker newDividendTracker = PepeDividendTracker(payable(newAddress));

        require(newDividendTracker.owner() == address(this), "The new dividend tracker must be owned by the token contract");

        dividendTracker.excludeFromDividends(address(this));
        dividendTracker.excludeFromDividends(address(dividendTracker));
        dividendTracker.excludeFromDividends(address(uniswapV2Router));
        dividendTracker.excludeFromDividends(address(uniswapV2Pair));
        dividendTracker.excludeFromDividends(deadWallet);

        emit UpdateDividendTracker(newAddress, address(dividendTracker));

        dividendTracker = newDividendTracker;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function excludeFromMaxWalletAmount(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromMaxWalletAmount[account] != excluded, "Account is already the value of 'excluded'");
        _isExcludedFromMaxWalletAmount[account] = excluded;

        emit ExcludeFromMaxWalletAmount(account, excluded);
    }

    function updateMaxWalletAmout(uint256 _newMax) external onlyOperator {
        require(_newMax > maxWalletAmount, "Can only increase the max wallet");
        maxWalletAmount = _newMax;
    }

    function updateMaxTransactionLimit(uint256 _newLimit) external onlyOperator {
        require(_newLimit > maxTransactionAmount, "Can only increase the limit");
        maxTransactionAmount  = _newLimit;
    }

    function updateSwapTokensAtAmount(uint256 _newLimit) external onlyOperator {
        require(_newLimit > 10_000, "Limit too low");
        swapTokensAtAmount = _newLimit;
    }

    function setMarketingWallet(address payable wallet) external onlyOperator {
        marketingWalletAddress = wallet;
    }

    function updateBuyTax(uint256 _rewardFee, uint256 _marketingFee) external onlyOperator {
        buyRewardFee = _rewardFee;
        buyMarketingFee = _marketingFee;
        buyTotalFee = _rewardFee + _marketingFee;
        require(buyTotalFee <= 10, "Total buy tax must be less than or equal to 10%");
    }

    function updateSellTax(uint256 _rewardFee, uint256 _marketingFee) external onlyOperator {
        sellRewardFee = _rewardFee;
        sellMarketingFee = _marketingFee;
        sellTotalFee = _rewardFee + _marketingFee;
        require(sellTotalFee <= 10, "Total sell tax must be less than or equal to 10%");
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOperator {
        require(pair != uniswapV2Pair, "The PancakeSwap pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "Automated market maker pair is already set to that value");
        automatedMarketMakerPairs[pair] = value;

        if(value) {
            dividendTracker.excludeFromDividends(pair);
        }

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateGasForProcessing(uint256 newValue) public onlyOperator {
        require(newValue >= 100_000 && newValue <= 500_000, "gasForProcessing must be between 100,000 and 500,000");
        require(newValue != gasForProcessing, "Cannot update gasForProcessing to same value");
        emit GasForProcessingUpdated(newValue, gasForProcessing);
        gasForProcessing = newValue;
    }

    function setAutoClaimEnabled(bool enabled) external onlyOperator {
        isAutoClaimEnabled = enabled;
    }

    function updateClaimWait(uint256 claimWait) external onlyOperator {
        dividendTracker.updateClaimWait(claimWait);
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }

	function excludeFromDividends(address account) external onlyOwner{
	    dividendTracker.excludeFromDividends(account);
	}

	function processDividendTracker(uint256 gas) external {
		(uint256 iterations, uint256 claims, uint256 lastProcessedIndex) = dividendTracker.process(gas);
		emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, false, gas, tx.origin);
    }

    function claim() external {
		dividendTracker.processAccount(payable(msg.sender), false);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
         if (tradingStarted == 0) {
            require(from == owner() || to == owner(), "Trading not yet started");
            super._transfer(from, to, amount);
            return;
        }

        // gas savings during swap
        if(swapping) { 
            super._transfer(from, to, amount); 
            return;
        }

        bool isBuy = automatedMarketMakerPairs[from];
        bool isSell = automatedMarketMakerPairs[to];

        if (isBuy) require(amount <= maxTransactionAmount, "Transfer amount exceeds the limit"); // only check maxTransaction for buys
        if (!isSell && !_isExcludedFromMaxWalletAmount[to]) require(balanceOf(to) + amount <= maxWalletAmount, "Wallet exceeds the limit"); // only check max wallet for buys and transfers

        bool excludedAccount = (_isExcludedFromFees[from] || _isExcludedFromFees[to]);

		uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if(canSwap &&
            isSell &&
            !excludedAccount
        ) {
            swapping = true;

            contractTokenBalance = swapTokensAtAmount;

            // only use the sell fees to calculate the swapback ratios
            uint256 marketingTokens = (contractTokenBalance * sellMarketingFee) / sellTotalFee;
            uint256 rewardTokens = contractTokenBalance - marketingTokens;
            
            swapForMarketing(marketingTokens);
            swapAndSendDividends(rewardTokens);

            swapping = false;
        }

        bool takeFee = !excludedAccount;
        if(takeFee) {
            uint256 fees;
            uint256 secondsSinceTradingEnabled = block.timestamp - tradingStarted;
            if(isBuy) fees = (amount * buyTotalFee) / 100;
            if(isSell) fees = (amount * sellTotalFee) / 100;

            // snipers get taxed for trying to sell or transfer within 24 hours of being flagged as a sniper
            if (secondsSinceTradingEnabled <= SECONDS_IN_DAY && !isBuy && snipers[from]) fees = (amount * antiSniperTax) / 100;

        	amount = amount - fees;

            if(fees > 0) super._transfer(from, address(this), fees);
        }

        super._transfer(from, to, amount);

        try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {}
        try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {}

        if(isAutoClaimEnabled) {
	    	uint256 gas = gasForProcessing;

	    	try dividendTracker.process(gas) returns (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) {
	    		emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, true, gas, tx.origin);
	    	}
	    	catch {

	    	}
        }
    }

    function swapForMarketing(uint256 marketingTokens) private {
        swapTokensForEth(marketingTokens);
        marketingWalletAddress.transfer(address(this).balance);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );

    }

    function swapAndSendDividends(uint256 tokens) private{
        swapTokensForPepe(tokens);
        uint256 dividends = IERC20(rewardToken).balanceOf(address(this));
        bool success = IERC20(rewardToken).transfer(address(dividendTracker), dividends);

        if (success) {
            dividendTracker.distributeDividends(dividends);
            emit SendDividends(tokens, dividends);
        }
    }


    function swapTokensForPepe(uint256 tokenAmount) private {
        address[] memory path = new address[](3);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        path[2] = rewardToken;

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function clearStuckTokens(address token) external {
        require(token != address(this), "Cannot clear PepesKids");
        require(token != rewardToken, "Cannot clear Pepes");
        uint256 tokenBalance = IERC20(token).balanceOf(address(this));
        IERC20(token).transfer(marketingWalletAddress, tokenBalance);
    }

    function unclog(uint256 tokens) external onlyOperator {
        super._transfer(address(this), deadWallet, tokens);
        emit Unclog(tokens);
    }

    function renounceOperator() external onlyOperator {
        operator = address(0);
    }

    function removeSniper(address user) external onlyOperator {
        snipers[user] = false;
    }

}

contract PepeDividendTracker is Ownable, DividendPayingToken {
    using IterableMapping for IterableMapping.Map;

    IterableMapping.Map private tokenHoldersMap;
    uint256 public lastProcessedIndex;

    mapping (address => bool) public excludedFromDividends;

    mapping (address => uint256) public lastClaimTimes;

    uint256 public claimWait;
    uint256 public minimumTokenBalanceForDividends;

    event ExcludeFromDividends(address indexed account);
    event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event Claim(address indexed account, uint256 amount, bool indexed automatic);

    constructor() DividendPayingToken("Pepe_Dividend_Tracker", "Pepe_Dividend_Tracker") {
    	claimWait = 3600;
        minimumTokenBalanceForDividends = 42_069 * (10**18); // must hold 42,069+ tokens
    }

    // Function to allow us to replace the dividend tracker in case of any issues between launch and renounce.
    // These funds can only be sent back to the PepesKids token
    function emergencyWithdraw() external onlyOwner {        
        uint256 fullBalanceForMigration = IERC20(pepe).balanceOf(address(this));
        IERC20(pepe).transfer(owner(), fullBalanceForMigration);
    }

    function _transfer(address, address, uint256) pure internal override {
        require(false, "Pepe_Dividend_Tracker: No transfers allowed");
    }

    function withdrawDividend() pure public override {
        require(false, "Pepe_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main Pepe contract.");
    }

    function excludeFromDividends(address account) external onlyOwner {
    	require(!excludedFromDividends[account], "Already excluded");
    	excludedFromDividends[account] = true;

    	_setBalance(account, 0);
    	tokenHoldersMap.remove(account);

    	emit ExcludeFromDividends(account);
    }

    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(newClaimWait >= 3600 && newClaimWait <= 86400, "Pepe_Dividend_Tracker: claimWait must be updated to between 1 and 24 hours");
        require(newClaimWait != claimWait, "Pepe_Dividend_Tracker: Cannot update claimWait to same value");
        emit ClaimWaitUpdated(newClaimWait, claimWait);
        claimWait = newClaimWait;
    }

    function getLastProcessedIndex() external view returns(uint256) {
    	return lastProcessedIndex;
    }

    function getNumberOfTokenHolders() external view returns(uint256) {
        return tokenHoldersMap.keys.length;
    }

    function getAccount(address _account)
        public view returns (
            address account,
            int256 index,
            int256 iterationsUntilProcessed,
            uint256 withdrawableDividends,
            uint256 totalDividends,
            uint256 lastClaimTime,
            uint256 nextClaimTime,
            uint256 secondsUntilAutoClaimAvailable) {
        account = _account;

        index = tokenHoldersMap.getIndexOfKey(account);

        iterationsUntilProcessed = -1;

        if(index >= 0) {
            if(uint256(index) > lastProcessedIndex) {
                iterationsUntilProcessed = index - int256(lastProcessedIndex);
            }
            else {
                uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ?
                                                        tokenHoldersMap.keys.length - lastProcessedIndex : 0;

                iterationsUntilProcessed = index + int256(processesUntilEndOfArray);
            }
        }

        withdrawableDividends = withdrawableDividendOf(account);
        totalDividends = accumulativeDividendOf(account);

        lastClaimTime = lastClaimTimes[account];

        nextClaimTime = lastClaimTime > 0 ? lastClaimTime + claimWait : 0;

        secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ? nextClaimTime - block.timestamp : 0;
    }

    function getAccountAtIndex(uint256 index)
        public view returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256) {
    	if(index >= tokenHoldersMap.size()) {
            return (0x0000000000000000000000000000000000000000, -1, -1, 0, 0, 0, 0, 0);
        }

        address account = tokenHoldersMap.getKeyAtIndex(index);

        return getAccount(account);
    }

    function canAutoClaim(uint256 lastClaimTime) private view returns (bool) {
    	if(lastClaimTime > block.timestamp)  {
    		return false;
    	}

    	return (block.timestamp - lastClaimTime) >= claimWait;
    }

    function setBalance(address payable account, uint256 newBalance) external onlyOwner {
    	if(excludedFromDividends[account]) {
    		return;
    	}

    	if(newBalance >= minimumTokenBalanceForDividends) {
            _setBalance(account, newBalance);
    		tokenHoldersMap.set(account, newBalance);
    	}
    	else {
            _setBalance(account, 0);
    		tokenHoldersMap.remove(account);
    	}

    	processAccount(account, true);
    }

    function process(uint256 gas) public returns (uint256, uint256, uint256) {
    	uint256 numberOfTokenHolders = tokenHoldersMap.keys.length;

    	if(numberOfTokenHolders == 0) {
    		return (0, 0, lastProcessedIndex);
    	}

    	uint256 _lastProcessedIndex = lastProcessedIndex;

    	uint256 gasUsed = 0;

    	uint256 gasLeft = gasleft();

    	uint256 iterations = 0;
    	uint256 claims = 0;

    	while(gasUsed < gas && iterations < numberOfTokenHolders) {
    		_lastProcessedIndex++;

    		if(_lastProcessedIndex >= tokenHoldersMap.keys.length) {
    			_lastProcessedIndex = 0;
    		}

    		address account = tokenHoldersMap.keys[_lastProcessedIndex];

    		if(canAutoClaim(lastClaimTimes[account])) {
    			if(processAccount(payable(account), true)) {
    				claims++;
    			}
    		}

    		iterations++;

    		uint256 newGasLeft = gasleft();

    		if(gasLeft > newGasLeft) {
    			gasUsed = gasUsed + (gasLeft - newGasLeft);
    		}

    		gasLeft = newGasLeft;
    	}

    	lastProcessedIndex = _lastProcessedIndex;

    	return (iterations, claims, lastProcessedIndex);
    }

    function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) {
        uint256 amount = _withdrawDividendOfUser(account);

    	if(amount > 0) {
    		lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount, automatic);
    		return true;
    	}

    	return false;
    }
}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromMaxWalletAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Unclog","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateDividendTracker","type":"event"},{"inputs":[],"name":"SECONDS_IN_DAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"antiSniperTax","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"begin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRewardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"clearStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"dividendTracker","outputs":[{"internalType":"contract PepeDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyDividendWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","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":[],"name":"isAutoClaimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeSniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRewardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setAutoClaimEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"snipers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStarted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"unclog","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"updateMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"updateMaxWalletAmout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600980546001600160a01b031990811661dead17909155600a600d819055600e556014600f55601e60105560236011556041601255604b6013556015805460ff191690556000601655601780549091167304a9caedd8b57c5ccbd75f572cf718f26502a8a2179055620493e06019553480156200008057600080fd5b50604080518082018252600981526850657065734b69647360b81b602080830191825283518085019094526005845264504b49445360d81b908401528151919291620000cf9160039162000a75565b508051620000e590600490602084019062000a75565b50506005805460ff19166012179055506000620000ff3390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601880546001600160a01b031916331790556c054f5860891fa304611b8000006103e86200018582600f62000b3f565b62000191919062000b61565b600a55620001a160c88262000b61565b600b55620001b26103e88262000b61565b600c55604051620001c39062000b04565b604051809103906000f080158015620001e0573d6000803e3d6000fd5b50600860006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000261573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000287919062000b84565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002fb919062000b84565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000349573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036f919062000b84565b600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620003ae816001620005d0565b60085460405163031e79db60e41b81523060048201526001600160a01b03909116906331e79db090602401600060405180830381600087803b158015620003f457600080fd5b505af115801562000409573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b039091166004820181905292506331e79db09150602401600060405180830381600087803b1580156200045457600080fd5b505af115801562000469573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b158015620004b557600080fd5b505af1158015620004ca573d6000803e3d6000fd5b505060085460095460405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db09150602401600060405180830381600087803b1580156200051857600080fd5b505af11580156200052d573d6000803e3d6000fd5b505050506200054d620005456200073860201b60201c565b60016200074c565b60175462000566906001600160a01b031660016200074c565b620005733060016200074c565b620005976200058f60055461010090046001600160a01b031690565b600162000871565b620005a430600162000871565b620005c7620005c060055461010090046001600160a01b031690565b846200098f565b50505062000c0d565b6001600160a01b0382166000908152601c602052604090205481151560ff9091161515036200066c5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084015b60405180910390fd5b6001600160a01b0382166000908152601c60205260409020805460ff19168215801591909117909155620006fc5760085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b158015620006e257600080fd5b505af1158015620006f7573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60055461010090046001600160a01b031690565b6005546001600160a01b036101009091041633146200079d5760405162461bcd60e51b8152602060048201819052602482015260008051602062005f68833981519152604482015260640162000663565b6001600160a01b0382166000908152601a602052604090205481151560ff909116151503620008115760405162461bcd60e51b815260206004820152602a602482015260008051602062005f88833981519152604482015269276578636c756465642760b01b606482015260840162000663565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b03610100909104163314620008c25760405162461bcd60e51b8152602060048201819052602482015260008051602062005f68833981519152604482015260640162000663565b6001600160a01b0382166000908152601b602052604090205481151560ff909116151503620009365760405162461bcd60e51b815260206004820152602a602482015260008051602062005f88833981519152604482015269276578636c756465642760b01b606482015260840162000663565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f79e53d9449eb6f30171e2c67ae9b757990ee251c3d890d8176b29a4052153c17910162000865565b6001600160a01b038216620009e75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000663565b80600254620009f7919062000bb6565b6002556001600160a01b03821660009081526020819052604090205462000a2090829062000bb6565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b82805462000a839062000bd1565b90600052602060002090601f01602090048101928262000aa7576000855562000af2565b82601f1062000ac257805160ff191683800117855562000af2565b8280016001018555821562000af2579182015b8281111562000af257825182559160200191906001019062000ad5565b5062000b0092915062000b12565b5090565b6121108062003e5883390190565b5b8082111562000b00576000815560010162000b13565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000b5c5762000b5c62000b29565b500290565b60008262000b7f57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121562000b9757600080fd5b81516001600160a01b038116811462000baf57600080fd5b9392505050565b6000821982111562000bcc5762000bcc62000b29565b500190565b600181811c9082168062000be657607f821691505b60208210810362000c0757634e487b7160e01b600052602260045260246000fd5b50919050565b61323b8062000c1d6000396000f3fe6080604052600436106103a55760003560e01c80637bce5a04116101e7578063b38d5ef41161010d578063d257b34f116100a0578063e2f456051161006f578063e2f4560514610ad0578063e98030c714610ae6578063f2fde38b14610b06578063f7c618c114610b2657600080fd5b8063d257b34f14610a34578063d64c13bb14610a54578063dd62ed3e14610a74578063de0aad5314610aba57600080fd5b8063c07412b2116100dc578063c07412b2146109be578063c8c8ebe4146109de578063cfeb1673146109f4578063d158272d14610a1457600080fd5b8063b38d5ef41461092e578063b62496f51461094e578063b79c18861461097e578063c02466681461099e57600080fd5b806395d89b4111610185578063a9059cbb11610154578063a9059cbb146108b2578063aa4bde28146108d2578063b21f970f146108e8578063b2e26dbd1461091857600080fd5b806395d89b41146108475780639a7a23d61461085c5780639c1b8af51461087c578063a457c2d71461089257600080fd5b8063871c128d116101c1578063871c128d146107ce57806388bdd9be146107ee5780638da5cb5b1461080e578063921369131461083157600080fd5b80637bce5a041461077857806385141a771461078e5780638653cec1146107ae57600080fd5b806339509351116102cc5780635b4f472a1161026a5780636df8c4cc116102395780636df8c4cc146106f3578063700bb1911461070d57806370a082311461072d578063715018a61461076357600080fd5b80635b4f472a146106765780635d098b381461068c5780635f2ffdeb146106ac57806361a52a36146106dc57600080fd5b80634e71d92d116102a65780634e71d92d146105f35780634fbee19314610608578063570ca7351461064157806357d19e381461066157600080fd5b8063395093511461059357806349bd5a5e146105b35780634b4d78c7146105d357600080fd5b806323b872dd1161034457806331e79db01161031357806331e79db01461051d57806333251a0b1461053d578063346cc7be1461055d5780633705b3921461057d57600080fd5b806323b872dd146104a65780632ab6f8db146104c65780632c1f5216146104db578063313ce567146104fb57600080fd5b80630cfe2f3f116103805780630cfe2f3f1461042c5780631694505e1461044257806318160ddd1461047a5780631bce6ff31461048f57600080fd5b8062afb325146103b157806306fdde03146103da578063095ea7b3146103fc57600080fd5b366103ac57005b600080fd5b3480156103bd57600080fd5b506103c760125481565b6040519081526020015b60405180910390f35b3480156103e657600080fd5b506103ef610b4e565b6040516103d19190612dbf565b34801561040857600080fd5b5061041c610417366004612e29565b610be0565b60405190151581526020016103d1565b34801561043857600080fd5b506103c7600d5481565b34801561044e57600080fd5b50600654610462906001600160a01b031681565b6040516001600160a01b0390911681526020016103d1565b34801561048657600080fd5b506002546103c7565b34801561049b57600080fd5b506104a4610cbc565b005b3480156104b257600080fd5b5061041c6104c1366004612e55565b610cfd565b3480156104d257600080fd5b506104a4610d4f565b3480156104e757600080fd5b50600854610462906001600160a01b031681565b34801561050757600080fd5b5060055460405160ff90911681526020016103d1565b34801561052957600080fd5b506104a4610538366004612e96565b610d8b565b34801561054957600080fd5b506104a4610558366004612e96565b610e1e565b34801561056957600080fd5b506104a4610578366004612e96565b610e69565b34801561058957600080fd5b506103c7600f5481565b34801561059f57600080fd5b5061041c6105ae366004612e29565b611005565b3480156105bf57600080fd5b50600754610462906001600160a01b031681565b3480156105df57600080fd5b506104a46105ee366004612eba565b61103c565b3480156105ff57600080fd5b506104a46110bc565b34801561061457600080fd5b5061041c610623366004612e96565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561064d57600080fd5b50601854610462906001600160a01b031681565b34801561066d57600080fd5b506104a4611134565b34801561068257600080fd5b506103c760165481565b34801561069857600080fd5b506104a46106a7366004612e96565b6111ce565b3480156106b857600080fd5b5061041c6106c7366004612e96565b60146020526000908152604090205460ff1681565b3480156106e857600080fd5b506103c76201518081565b3480156106ff57600080fd5b5060155461041c9060ff1681565b34801561071957600080fd5b506104a4610728366004612eba565b61121a565b34801561073957600080fd5b506103c7610748366004612e96565b6001600160a01b031660009081526020819052604090205490565b34801561076f57600080fd5b506104a46112ec565b34801561078457600080fd5b506103c7600e5481565b34801561079a57600080fd5b50600954610462906001600160a01b031681565b3480156107ba57600080fd5b506104a46107c9366004612ee1565b61136c565b3480156107da57600080fd5b506104a46107e9366004612eba565b61143c565b3480156107fa57600080fd5b506104a4610809366004612e96565b61157e565b34801561081a57600080fd5b5060055461010090046001600160a01b0316610462565b34801561083d57600080fd5b506103c760115481565b34801561085357600080fd5b506103ef61194c565b34801561086857600080fd5b506104a4610877366004612ee1565b61195b565b34801561088857600080fd5b506103c760195481565b34801561089e57600080fd5b5061041c6108ad366004612e29565b611a25565b3480156108be57600080fd5b5061041c6108cd366004612e29565b611a5c565b3480156108de57600080fd5b506103c7600a5481565b3480156108f457600080fd5b5061041c610903366004612e96565b601b6020526000908152604090205460ff1681565b34801561092457600080fd5b506103c760135481565b34801561093a57600080fd5b506104a4610949366004612f1a565b611a69565b34801561095a57600080fd5b5061041c610969366004612e96565b601c6020526000908152604090205460ff1681565b34801561098a57600080fd5b506104a4610999366004612f1a565b611b14565b3480156109aa57600080fd5b506104a46109b9366004612ee1565b611bc0565b3480156109ca57600080fd5b506104a46109d9366004612f3c565b611c88565b3480156109ea57600080fd5b506103c7600b5481565b348015610a0057600080fd5b506104a4610a0f366004612eba565b611cc5565b348015610a2057600080fd5b50601754610462906001600160a01b031681565b348015610a4057600080fd5b506104a4610a4f366004612eba565b611d3d565b348015610a6057600080fd5b506104a4610a6f366004612eba565b611dad565b348015610a8057600080fd5b506103c7610a8f366004612f59565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610ac657600080fd5b506103c760105481565b348015610adc57600080fd5b506103c7600c5481565b348015610af257600080fd5b506104a4610b01366004612eba565b611e2d565b348015610b1257600080fd5b506104a4610b21366004612e96565b611e88565b348015610b3257600080fd5b50610462736982508145454ce325ddbe47a25d4ec3d231193381565b606060038054610b5d90612f87565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8990612f87565b8015610bd65780601f10610bab57610100808354040283529160200191610bd6565b820191906000526020600020905b815481529060010190602001808311610bb957829003601f168201915b5050505050905090565b6000806016541180610c13575060055461010090046001600160a01b03166001600160a01b0316336001600160a01b0316145b610c785760405162461bcd60e51b815260206004820152602b60248201527f54726164696e67206861736e277420737461727465642c2061726520796f752060448201526a309039b734b832b917171760a91b60648201526084015b60405180910390fd5b603260165442610c889190612fd7565b11610ca857336000908152601460205260409020805460ff191660011790555b610cb3338484611f84565b50600192915050565b6005546001600160a01b03610100909104163314610cec5760405162461bcd60e51b8152600401610c6f90612fee565b601654600003610cfb57426016555b565b6000610d0a8484846120a9565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610d45918691610d40908690612fd7565b611f84565b5060019392505050565b6018546001600160a01b03163314610d795760405162461bcd60e51b8152600401610c6f90613023565b601880546001600160a01b0319169055565b6005546001600160a01b03610100909104163314610dbb5760405162461bcd60e51b8152600401610c6f90612fee565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610e0357600080fd5b505af1158015610e17573d6000803e3d6000fd5b5050505050565b6018546001600160a01b03163314610e485760405162461bcd60e51b8152600401610c6f90613023565b6001600160a01b03166000908152601460205260409020805460ff19169055565b306001600160a01b03821603610eba5760405162461bcd60e51b815260206004820152601660248201527543616e6e6f7420636c6561722050657065734b69647360501b6044820152606401610c6f565b736982508145454ce325ddbe47a25d4ec3d2311932196001600160a01b03821601610f1c5760405162461bcd60e51b815260206004820152601260248201527143616e6e6f7420636c65617220506570657360701b6044820152606401610c6f565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610f63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f87919061305a565b60175460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810183905291925083169063a9059cbb906044016020604051808303816000875af1158015610fdc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110009190613073565b505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610cb3918590610d40908690613090565b6018546001600160a01b031633146110665760405162461bcd60e51b8152600401610c6f90613023565b600a5481116110b75760405162461bcd60e51b815260206004820181905260248201527f43616e206f6e6c7920696e63726561736520746865206d61782077616c6c65746044820152606401610c6f565b600a55565b60085460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af115801561110d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111319190613073565b50565b6005546001600160a01b036101009091041633146111645760405162461bcd60e51b8152600401610c6f90612fee565b600860009054906101000a90046001600160a01b03166001600160a01b031663db2e21bc6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156111b457600080fd5b505af11580156111c8573d6000803e3d6000fd5b50505050565b6018546001600160a01b031633146111f85760405162461bcd60e51b8152600401610c6f90613023565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6008546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af115801561126d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129191906130a8565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6005546001600160a01b0361010090910416331461131c5760405162461bcd60e51b8152600401610c6f90612fee565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b0361010090910416331461139c5760405162461bcd60e51b8152600401610c6f90612fee565b6001600160a01b0382166000908152601b602052604090205481151560ff9091161515036113dc5760405162461bcd60e51b8152600401610c6f906130d6565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f79e53d9449eb6f30171e2c67ae9b757990ee251c3d890d8176b29a4052153c1791015b60405180910390a25050565b6018546001600160a01b031633146114665760405162461bcd60e51b8152600401610c6f90613023565b620186a0811015801561147c57506207a1208111155b6114e55760405162461bcd60e51b815260206004820152603460248201527f676173466f7250726f63657373696e67206d757374206265206265747765656e6044820152730203130302c30303020616e64203530302c3030360641b6064820152608401610c6f565b601954810361154b5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610c6f565b60195460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601955565b6005546001600160a01b036101009091041633146115ae5760405162461bcd60e51b8152600401610c6f90612fee565b6008546001600160a01b03908116908216036116225760405162461bcd60e51b815260206004820152602d60248201527f546865206469766964656e6420747261636b657220616c72656164792068617360448201526c2074686174206164647265737360981b6064820152608401610c6f565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561166f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116939190613120565b6001600160a01b03161461170f5760405162461bcd60e51b815260206004820152603c60248201527f546865206e6577206469766964656e6420747261636b6572206d75737420626560448201527f206f776e65642062792074686520746f6b656e20636f6e7472616374000000006064820152608401610c6f565b60085460405163031e79db60e41b81523060048201526001600160a01b03909116906331e79db090602401600060405180830381600087803b15801561175457600080fd5b505af1158015611768573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b039091166004820181905292506331e79db09150602401600060405180830381600087803b1580156117b257600080fd5b505af11580156117c6573d6000803e3d6000fd5b505060085460065460405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db09150602401600060405180830381600087803b15801561181357600080fd5b505af1158015611827573d6000803e3d6000fd5b505060085460075460405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db09150602401600060405180830381600087803b15801561187457600080fd5b505af1158015611888573d6000803e3d6000fd5b505060085460095460405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db09150602401600060405180830381600087803b1580156118d557600080fd5b505af11580156118e9573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880546001600160a01b0319166001600160a01b039290921691909117905550565b606060048054610b5d90612f87565b6018546001600160a01b031633146119855760405162461bcd60e51b8152600401610c6f90613023565b6007546001600160a01b0390811690831603611a175760405162461bcd60e51b815260206004820152604560248201527f5468652050616e63616b655377617020706169722063616e6e6f74206265207260448201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572606482015264506169727360d81b608482015260a401610c6f565b611a218282612638565b5050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610cb3918590610d40908690612fd7565b6000610cb33384846120a9565b6018546001600160a01b03163314611a935760405162461bcd60e51b8152600401610c6f90613023565b600d829055600e819055611aa78183613090565b600f819055600a1015611a215760405162461bcd60e51b815260206004820152602f60248201527f546f74616c2062757920746178206d757374206265206c657373207468616e2060448201526e6f7220657175616c20746f2031302560881b6064820152608401610c6f565b6018546001600160a01b03163314611b3e5760405162461bcd60e51b8152600401610c6f90613023565b60108290556011819055611b528183613090565b6012819055600a1015611a215760405162461bcd60e51b815260206004820152603060248201527f546f74616c2073656c6c20746178206d757374206265206c657373207468616e60448201526f206f7220657175616c20746f2031302560801b6064820152608401610c6f565b6005546001600160a01b03610100909104163314611bf05760405162461bcd60e51b8152600401610c6f90612fee565b6001600160a01b0382166000908152601a602052604090205481151560ff909116151503611c305760405162461bcd60e51b8152600401610c6f906130d6565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101611430565b6018546001600160a01b03163314611cb25760405162461bcd60e51b8152600401610c6f90613023565b6015805460ff1916911515919091179055565b6018546001600160a01b03163314611cef5760405162461bcd60e51b8152600401610c6f90613023565b600954611d079030906001600160a01b031683612797565b6040518181527f26d5028b6f18b585f55a4af7a0e11bede5e3f4fbddae4dd285078f3d4dfd0df49060200160405180910390a150565b6018546001600160a01b03163314611d675760405162461bcd60e51b8152600401610c6f90613023565b6127108111611da85760405162461bcd60e51b815260206004820152600d60248201526c4c696d697420746f6f206c6f7760981b6044820152606401610c6f565b600c55565b6018546001600160a01b03163314611dd75760405162461bcd60e51b8152600401610c6f90613023565b600b548111611e285760405162461bcd60e51b815260206004820152601b60248201527f43616e206f6e6c7920696e63726561736520746865206c696d697400000000006044820152606401610c6f565b600b55565b6018546001600160a01b03163314611e575760405162461bcd60e51b8152600401610c6f90613023565b60085460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610de9565b6005546001600160a01b03610100909104163314611eb85760405162461bcd60e51b8152600401610c6f90612fee565b6001600160a01b038116611f1d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c6f565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b038316611fe65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c6f565b6001600160a01b0382166120475760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c6f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60165460000361213d576005546001600160a01b038481166101009092041614806120e657506005546001600160a01b0383811661010090920416145b6121325760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f742079657420737461727465640000000000000000006044820152606401610c6f565b611000838383612797565b600754600160a01b900460ff161561215a57611000838383612797565b6001600160a01b038084166000908152601c602052604080822054928516825290205460ff918216911681156121e657600b548311156121e65760405162461bcd60e51b815260206004820152602160248201527f5472616e7366657220616d6f756e74206578636565647320746865206c696d696044820152601d60fa1b6064820152608401610c6f565b8015801561220d57506001600160a01b0384166000908152601b602052604090205460ff16155b1561228d57600a5483612235866001600160a01b031660009081526020819052604090205490565b61223f9190613090565b111561228d5760405162461bcd60e51b815260206004820152601860248201527f57616c6c6574206578636565647320746865206c696d697400000000000000006044820152606401610c6f565b6001600160a01b0385166000908152601a602052604081205460ff16806122cc57506001600160a01b0385166000908152601a602052604090205460ff165b30600090815260208190526040902054600c5491925090811080159081906122f15750835b80156122fb575082155b15612368576007805460ff60a01b1916600160a01b179055600c5460125460115491935060009161232c908561313d565b612336919061315c565b905060006123448285612fd7565b905061234f82612902565b61235881612944565b50506007805460ff60a01b191690555b8215801561244057600080601654426123819190612fd7565b905087156123a6576064600f548a612399919061313d565b6123a3919061315c565b91505b86156123c95760646012548a6123bc919061313d565b6123c6919061315c565b91505b6201518081111580156123da575087155b80156123fe57506001600160a01b038b1660009081526014602052604090205460ff165b156124205760646013548a612413919061313d565b61241d919061315c565b91505b61242a828a612fd7565b9850811561243d5761243d8b3084612797565b50505b61244b898989612797565b6008546001600160a01b031663e30443bc8a61247c816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156124c257600080fd5b505af19250505080156124d3575060015b506008546001600160a01b031663e30443bc89612505816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561254b57600080fd5b505af192505050801561255c575060015b5060155460ff161561262d576019546008546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af19250505080156125d5575060408051601f3d908101601f191682019092526125d2918101906130a8565b60015b1561262b5760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b505050505050505050565b6001600160a01b0382166000908152601c602052604090205481151560ff9091161515036126ce5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610c6f565b6001600160a01b0382166000908152601c60205260409020805460ff1916821580159190911790915561275b5760085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561274257600080fd5b505af1158015612756573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166127fb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610c6f565b6001600160a01b03821661285d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610c6f565b6001600160a01b038316600090815260208190526040902054612881908290612fd7565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546128b1908290613090565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161209c565b61290b81612af7565b6017546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611a21573d6000803e3d6000fd5b61294d81612c51565b6040516370a0823160e01b8152306004820152600090736982508145454ce325ddbe47a25d4ec3d2311933906370a0823190602401602060405180830381865afa15801561299f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129c3919061305a565b60085460405163a9059cbb60e01b81526001600160a01b03909116600482015260248101829052909150600090736982508145454ce325ddbe47a25d4ec3d23119339063a9059cbb906044016020604051808303816000875af1158015612a2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a529190613073565b9050801561100057600854604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b158015612aa057600080fd5b505af1158015612ab4573d6000803e3d6000fd5b505060408051868152602081018690527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3935001905060405180910390a1505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612b2c57612b2c61317e565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612b85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ba99190613120565b81600181518110612bbc57612bbc61317e565b6001600160a01b039283166020918202929092010152600654612be29130911684611f84565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612c1b908590600090869030904290600401613194565b600060405180830381600087803b158015612c3557600080fd5b505af1158015612c49573d6000803e3d6000fd5b505050505050565b60408051600380825260808201909252600091602082016060803683370190505090503081600081518110612c8857612c8861317e565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612ce1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d059190613120565b81600181518110612d1857612d1861317e565b60200260200101906001600160a01b031690816001600160a01b031681525050736982508145454ce325ddbe47a25d4ec3d231193381600281518110612d6057612d6061317e565b6001600160a01b039283166020918202929092010152600654612d869130911684611f84565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d79590612c1b908590600090869030904290600401613194565b600060208083528351808285015260005b81811015612dec57858101830151858201604001528201612dd0565b81811115612dfe576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461113157600080fd5b60008060408385031215612e3c57600080fd5b8235612e4781612e14565b946020939093013593505050565b600080600060608486031215612e6a57600080fd5b8335612e7581612e14565b92506020840135612e8581612e14565b929592945050506040919091013590565b600060208284031215612ea857600080fd5b8135612eb381612e14565b9392505050565b600060208284031215612ecc57600080fd5b5035919050565b801515811461113157600080fd5b60008060408385031215612ef457600080fd5b8235612eff81612e14565b91506020830135612f0f81612ed3565b809150509250929050565b60008060408385031215612f2d57600080fd5b50508035926020909101359150565b600060208284031215612f4e57600080fd5b8135612eb381612ed3565b60008060408385031215612f6c57600080fd5b8235612f7781612e14565b91506020830135612f0f81612e14565b600181811c90821680612f9b57607f821691505b602082108103612fbb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612fe957612fe9612fc1565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f43616c6c6572206973206e6f7420746865206f70657261746f72000000000000604082015260600190565b60006020828403121561306c57600080fd5b5051919050565b60006020828403121561308557600080fd5b8151612eb381612ed3565b600082198211156130a3576130a3612fc1565b500190565b6000806000606084860312156130bd57600080fd5b8351925060208401519150604084015190509250925092565b6020808252602a908201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604082015269276578636c756465642760b01b606082015260800190565b60006020828403121561313257600080fd5b8151612eb381612e14565b600081600019048311821515161561315757613157612fc1565b500290565b60008261317957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131e45784516001600160a01b0316835293830193918301916001016131bf565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208f80855d2b2981d943e6a3c41448dc8ac408126276d7a208872d8aca06ff556864736f6c634300080d003360806040523480156200001157600080fd5b5060408051808201825260158082527f506570655f4469766964656e645f547261636b65720000000000000000000000602080840182815285518087019096529285528401528151919291839183916200006e9160039162000110565b5080516200008490600490602084019062000110565b50506005805460ff191660121790555060006200009e3390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050610e10601155506908e890a7c0e2a4340000601255620001f2565b8280546200011e90620001b6565b90600052602060002090601f0160209004810192826200014257600085556200018d565b82601f106200015d57805160ff19168380011785556200018d565b828001600101855582156200018d579182015b828111156200018d57825182559160200191906001019062000170565b506200019b9291506200019f565b5090565b5b808211156200019b5760008155600101620001a0565b600181811c90821680620001cb57607f821691505b602082108103620001ec57634e487b7160e01b600052602260045260246000fd5b50919050565b611f0e80620002026000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063bc4c4b37116100b8578063e7841ec01161007c578063e7841ec014610522578063e98030c71461052a578063f2fde38b1461053d578063fbcbc0f114610550578063ffb2c4791461056357600080fd5b8063bc4c4b37146104b2578063be10b614146104c5578063db2e21bc146104ce578063dd62ed3e146104d6578063e30443bc1461050f57600080fd5b806395d89b41116100ff57806395d89b4114610448578063a457c2d714610450578063a8b9d24014610463578063a9059cbb14610476578063aafd847a1461048957600080fd5b8063715018a61461040e57806385a6b3ae146104165780638da5cb5b1461041f57806391b89fba1461043557600080fd5b806331e79db0116101b35780634e7b827f116101825780634e7b827f146103595780635183d6fd1461037c5780636a474002146103d45780636f2789ec146103dc57806370a08231146103e557600080fd5b806331e79db0146102eb5780633243c79114610300578063395093511461031357806346111e7a1461032657600080fd5b8063226cfa3d116101fa578063226cfa3d1461028757806323b872dd146102a757806327ce0147146102ba5780633009a609146102cd578063313ce567146102d657600080fd5b806306fdde031461022c578063095ea7b31461024a57806309bbedde1461026d57806318160ddd1461027f575b600080fd5b610234610591565b6040516102419190611b58565b60405180910390f35b61025d610258366004611bc2565b610623565b6040519015158152602001610241565b600a545b604051908152602001610241565b600254610271565b610271610295366004611bee565b60106020526000908152604090205481565b61025d6102b5366004611c12565b61063a565b6102716102c8366004611bee565b61068c565b610271600e5481565b60055460405160ff9091168152602001610241565b6102fe6102f9366004611bee565b6106e8565b005b6102fe61030e366004611c53565b610854565b61025d610321366004611bc2565b610914565b610341736982508145454ce325ddbe47a25d4ec3d231193381565b6040516001600160a01b039091168152602001610241565b61025d610367366004611bee565b600f6020526000908152604090205460ff1681565b61038f61038a366004611c53565b61094b565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610241565b6102fe610a9f565b61027160115481565b6102716103f3366004611bee565b6001600160a01b031660009081526020819052604090205490565b6102fe610b41565b61027160095481565b60055461010090046001600160a01b0316610341565b610271610443366004611bee565b610bc1565b610234610bcc565b61025d61045e366004611bc2565b610bdb565b610271610471366004611bee565b610c12565b61025d610484366004611bc2565b610c3e565b610271610497366004611bee565b6001600160a01b031660009081526008602052604090205490565b61025d6104c0366004611c7a565b610c4b565b61027160125481565b6102fe610cff565b6102716104e4366004611cb3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102fe61051d366004611bc2565b610e4e565b600e54610271565b6102fe610538366004611c53565b610fbd565b6102fe61054b366004611bee565b611131565b61038f61055e366004611bee565b61122d565b610576610571366004611c53565b611395565b60408051938452602084019290925290820152606001610241565b6060600380546105a090611ce1565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc90611ce1565b80156106195780601f106105ee57610100808354040283529160200191610619565b820191906000526020600020905b8154815290600101906020018083116105fc57829003601f168201915b5050505050905090565b60006106303384846114b2565b5060015b92915050565b60006106478484846115d6565b6001600160a01b03841660009081526001602090815260408083203380855292529091205461068291869161067d908690611d31565b6114b2565b5060019392505050565b6001600160a01b03811660009081526007602090815260408083205491839052822054600160801b916106de916106cf906006546106ca9190611d48565b611632565b6106d99190611d67565b6116a0565b6106349190611da8565b6005546001600160a01b036101009091041633146107215760405162461bcd60e51b815260040161071890611dca565b60405180910390fd5b6001600160a01b0381166000908152600f602052604090205460ff161561077d5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e48195e18db1d59195960821b6044820152606401610718565b6001600160a01b0381166000908152600f60205260408120805460ff191660011790556107ab9082906116f2565b60405163131836e760e21b8152600a60048201526001600160a01b038216602482015273891664d98497b067d79fd2231c3d244ac66c385d90634c60db9c9060440160006040518083038186803b15801561080557600080fd5b505af4158015610819573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b6005546001600160a01b036101009091041633146108845760405162461bcd60e51b815260040161071890611dca565b600061088f60025490565b1161089957600080fd5b8015610911576002546108b0600160801b83611d48565b6108ba9190611da8565b6006546108c79190611dff565b60065560405181815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a28060095461090d9190611dff565b6009555b50565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161063091859061067d908690611dff565b600080600080600080600080600a73891664d98497b067d79fd2231c3d244ac66c385d63deb3d89690916040518263ffffffff1660e01b815260040161099391815260200190565b602060405180830381865af41580156109b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d49190611e17565b89106109f9575060009650600019955085945086935083925082915081905080610a94565b6040516368d54f3f60e11b8152600a6004820152602481018a905260009073891664d98497b067d79fd2231c3d244ac66c385d9063d1aa9e7e90604401602060405180830381865af4158015610a53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a779190611e30565b9050610a828161122d565b98509850985098509850985098509850505b919395975091939597565b60405162461bcd60e51b815260206004820152606560248201527f506570655f4469766964656e645f547261636b65723a2077697468647261774460448201527f69766964656e642064697361626c65642e20557365207468652027636c61696d60648201527f272066756e6374696f6e206f6e20746865206d61696e205065706520636f6e746084820152643930b1ba1760d91b60a482015260c401610718565b6005546001600160a01b03610100909104163314610b715760405162461bcd60e51b815260040161071890611dca565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600061063482610c12565b6060600480546105a090611ce1565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161063091859061067d908690611d31565b6001600160a01b038116600090815260086020526040812054610c348361068c565b6106349190611d31565b60006106303384846115d6565b6005546000906001600160a01b03610100909104163314610c7e5760405162461bcd60e51b815260040161071890611dca565b6000610c8984611751565b90508015610cf5576001600160a01b038416600081815260106020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09290610ce39085815260200190565b60405180910390a36001915050610634565b5060009392505050565b6005546001600160a01b03610100909104163314610d2f5760405162461bcd60e51b815260040161071890611dca565b6040516370a0823160e01b8152306004820152600090736982508145454ce325ddbe47a25d4ec3d2311933906370a0823190602401602060405180830381865afa158015610d81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da59190611e17565b9050736982508145454ce325ddbe47a25d4ec3d231193363a9059cbb610dd96005546001600160a01b036101009091041690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610e26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4a9190611e4d565b5050565b6005546001600160a01b03610100909104163314610e7e5760405162461bcd60e51b815260040161071890611dca565b6001600160a01b0382166000908152600f602052604090205460ff16610e4a576012548110610f2f57610eb182826116f2565b604051632f0ad01760e21b8152600a60048201526001600160a01b03831660248201526044810182905273891664d98497b067d79fd2231c3d244ac66c385d9063bc2b405c9060640160006040518083038186803b158015610f1257600080fd5b505af4158015610f26573d6000803e3d6000fd5b50505050610fad565b610f3a8260006116f2565b60405163131836e760e21b8152600a60048201526001600160a01b038316602482015273891664d98497b067d79fd2231c3d244ac66c385d90634c60db9c9060440160006040518083038186803b158015610f9457600080fd5b505af4158015610fa8573d6000803e3d6000fd5b505050505b610fb8826001610c4b565b505050565b6005546001600160a01b03610100909104163314610fed5760405162461bcd60e51b815260040161071890611dca565b610e1081101580156110025750620151808111155b6110875760405162461bcd60e51b815260206004820152604a60248201527f506570655f4469766964656e645f547261636b65723a20636c61696d5761697460448201527f206d757374206265207570646174656420746f206265747765656e203120616e6064820152696420323420686f75727360b01b608482015260a401610718565b60115481036110fe5760405162461bcd60e51b815260206004820152603c60248201527f506570655f4469766964656e645f547261636b65723a2043616e6e6f7420757060448201527f6461746520636c61696d5761697420746f2073616d652076616c7565000000006064820152608401610718565b60115460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601155565b6005546001600160a01b036101009091041633146111615760405162461bcd60e51b815260040161071890611dca565b6001600160a01b0381166111c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610718565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6040516317e142d160e01b8152600a60048201526001600160a01b0382166024820152819060009081908190819081908190819073891664d98497b067d79fd2231c3d244ac66c385d906317e142d190604401602060405180830381865af415801561129d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c19190611e17565b965060001995506000871261132357600e548711156112ee57600e546112e79088611e6a565b9550611323565b600e54600a5460009110611303576000611313565b600e54600a546113139190611d31565b905061131f8189611d67565b9650505b61132c88610c12565b94506113378861068c565b6001600160a01b03891660009081526010602052604090205490945092508261136157600061136e565b60115461136e9084611dff565b915042821161137e576000611388565b6113884283611d31565b9050919395975091939597565b600a54600090819081908082036113b7575050600e54600092508291506114ab565b600e546000805a90506000805b89841080156113d257508582105b1561149a57846113e181611ea9565b600a54909650861090506113f457600094505b6000600a600001868154811061140c5761140c611ec2565b60009182526020808320909101546001600160a01b0316808352601090915260409091205490915061143d906118c8565b156114605761144d816001610c4b565b15611460578161145c81611ea9565b9250505b8261146a81611ea9565b93505060005a905080851115611491576114848186611d31565b61148e9087611dff565b95505b93506113c49050565b600e85905590975095509193505050505b9193909250565b6001600160a01b0383166115145760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610718565b6001600160a01b0382166115755760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610718565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152602b60248201527f506570655f4469766964656e645f547261636b65723a204e6f207472616e736660448201526a195c9cc8185b1b1bddd95960aa1b6064820152608401610718565b60006001600160ff1b0382111561169c5760405162461bcd60e51b815260206004820152602860248201527f53616665436173743a2076616c756520646f65736e27742066697420696e2061604482015267371034b73a191a9b60c11b6064820152608401610718565b5090565b60008082121561169c5760405162461bcd60e51b815260206004820181905260248201527f53616665436173743a2076616c7565206d75737420626520706f7369746976656044820152606401610718565b6001600160a01b0382166000908152602081905260409020548082111561173157600061171f8284611d31565b905061172b84826118ef565b50505050565b80821015610fb85760006117458383611d31565b905061172b848261194d565b60008061175d83610c12565b905080156118bf576001600160a01b038316600090815260086020526040902054611789908290611dff565b6001600160a01b038416600081815260086020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d906117d89084815260200190565b60405180910390a260405163a9059cbb60e01b81526001600160a01b038416600482015260248101829052600090736982508145454ce325ddbe47a25d4ec3d23119339063a9059cbb906044016020604051808303816000875af1158015611844573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118689190611e4d565b9050806118b8576001600160a01b038416600090815260086020526040902054611893908390611d31565b6001600160a01b03909416600090815260086020526040812094909455509192915050565b5092915050565b50600092915050565b6000428211156118da57506000919050565b6011546118e78342611d31565b101592915050565b6118f9828261198b565b61190a816006546106ca9190611d48565b6001600160a01b03831660009081526007602052604090205461192d9190611e6a565b6001600160a01b0390921660009081526007602052604090209190915550565b6119578282611a6c565b611968816006546106ca9190611d48565b6001600160a01b03831660009081526007602052604090205461192d9190611d67565b6001600160a01b0382166119e15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610718565b806002546119ef9190611dff565b6002556001600160a01b038216600090815260208190526040902054611a16908290611dff565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b6001600160a01b038216611acc5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610718565b6001600160a01b038216600090815260208190526040902054611af0908290611d31565b6001600160a01b038316600090815260208190526040902055600254611b17908290611d31565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611a60565b600060208083528351808285015260005b81811015611b8557858101830151858201604001528201611b69565b81811115611b97576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461091157600080fd5b60008060408385031215611bd557600080fd5b8235611be081611bad565b946020939093013593505050565b600060208284031215611c0057600080fd5b8135611c0b81611bad565b9392505050565b600080600060608486031215611c2757600080fd5b8335611c3281611bad565b92506020840135611c4281611bad565b929592945050506040919091013590565b600060208284031215611c6557600080fd5b5035919050565b801515811461091157600080fd5b60008060408385031215611c8d57600080fd5b8235611c9881611bad565b91506020830135611ca881611c6c565b809150509250929050565b60008060408385031215611cc657600080fd5b8235611cd181611bad565b91506020830135611ca881611bad565b600181811c90821680611cf557607f821691505b602082108103611d1557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611d4357611d43611d1b565b500390565b6000816000190483118215151615611d6257611d62611d1b565b500290565b600080821280156001600160ff1b0384900385131615611d8957611d89611d1b565b600160ff1b8390038412811615611da257611da2611d1b565b50500190565b600082611dc557634e487b7160e01b600052601260045260246000fd5b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611e1257611e12611d1b565b500190565b600060208284031215611e2957600080fd5b5051919050565b600060208284031215611e4257600080fd5b8151611c0b81611bad565b600060208284031215611e5f57600080fd5b8151611c0b81611c6c565b60008083128015600160ff1b850184121615611e8857611e88611d1b565b6001600160ff1b0384018313811615611ea357611ea3611d1b565b50500390565b600060018201611ebb57611ebb611d1b565b5060010190565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d9cfe2ef43d23488880b1362cf6df972c8b064b94b72de0d9840d36b607f1e1e64736f6c634300080d00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724163636f756e7420697320616c7265616479207468652076616c7565206f6620

Deployed Bytecode

0x6080604052600436106103a55760003560e01c80637bce5a04116101e7578063b38d5ef41161010d578063d257b34f116100a0578063e2f456051161006f578063e2f4560514610ad0578063e98030c714610ae6578063f2fde38b14610b06578063f7c618c114610b2657600080fd5b8063d257b34f14610a34578063d64c13bb14610a54578063dd62ed3e14610a74578063de0aad5314610aba57600080fd5b8063c07412b2116100dc578063c07412b2146109be578063c8c8ebe4146109de578063cfeb1673146109f4578063d158272d14610a1457600080fd5b8063b38d5ef41461092e578063b62496f51461094e578063b79c18861461097e578063c02466681461099e57600080fd5b806395d89b4111610185578063a9059cbb11610154578063a9059cbb146108b2578063aa4bde28146108d2578063b21f970f146108e8578063b2e26dbd1461091857600080fd5b806395d89b41146108475780639a7a23d61461085c5780639c1b8af51461087c578063a457c2d71461089257600080fd5b8063871c128d116101c1578063871c128d146107ce57806388bdd9be146107ee5780638da5cb5b1461080e578063921369131461083157600080fd5b80637bce5a041461077857806385141a771461078e5780638653cec1146107ae57600080fd5b806339509351116102cc5780635b4f472a1161026a5780636df8c4cc116102395780636df8c4cc146106f3578063700bb1911461070d57806370a082311461072d578063715018a61461076357600080fd5b80635b4f472a146106765780635d098b381461068c5780635f2ffdeb146106ac57806361a52a36146106dc57600080fd5b80634e71d92d116102a65780634e71d92d146105f35780634fbee19314610608578063570ca7351461064157806357d19e381461066157600080fd5b8063395093511461059357806349bd5a5e146105b35780634b4d78c7146105d357600080fd5b806323b872dd1161034457806331e79db01161031357806331e79db01461051d57806333251a0b1461053d578063346cc7be1461055d5780633705b3921461057d57600080fd5b806323b872dd146104a65780632ab6f8db146104c65780632c1f5216146104db578063313ce567146104fb57600080fd5b80630cfe2f3f116103805780630cfe2f3f1461042c5780631694505e1461044257806318160ddd1461047a5780631bce6ff31461048f57600080fd5b8062afb325146103b157806306fdde03146103da578063095ea7b3146103fc57600080fd5b366103ac57005b600080fd5b3480156103bd57600080fd5b506103c760125481565b6040519081526020015b60405180910390f35b3480156103e657600080fd5b506103ef610b4e565b6040516103d19190612dbf565b34801561040857600080fd5b5061041c610417366004612e29565b610be0565b60405190151581526020016103d1565b34801561043857600080fd5b506103c7600d5481565b34801561044e57600080fd5b50600654610462906001600160a01b031681565b6040516001600160a01b0390911681526020016103d1565b34801561048657600080fd5b506002546103c7565b34801561049b57600080fd5b506104a4610cbc565b005b3480156104b257600080fd5b5061041c6104c1366004612e55565b610cfd565b3480156104d257600080fd5b506104a4610d4f565b3480156104e757600080fd5b50600854610462906001600160a01b031681565b34801561050757600080fd5b5060055460405160ff90911681526020016103d1565b34801561052957600080fd5b506104a4610538366004612e96565b610d8b565b34801561054957600080fd5b506104a4610558366004612e96565b610e1e565b34801561056957600080fd5b506104a4610578366004612e96565b610e69565b34801561058957600080fd5b506103c7600f5481565b34801561059f57600080fd5b5061041c6105ae366004612e29565b611005565b3480156105bf57600080fd5b50600754610462906001600160a01b031681565b3480156105df57600080fd5b506104a46105ee366004612eba565b61103c565b3480156105ff57600080fd5b506104a46110bc565b34801561061457600080fd5b5061041c610623366004612e96565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561064d57600080fd5b50601854610462906001600160a01b031681565b34801561066d57600080fd5b506104a4611134565b34801561068257600080fd5b506103c760165481565b34801561069857600080fd5b506104a46106a7366004612e96565b6111ce565b3480156106b857600080fd5b5061041c6106c7366004612e96565b60146020526000908152604090205460ff1681565b3480156106e857600080fd5b506103c76201518081565b3480156106ff57600080fd5b5060155461041c9060ff1681565b34801561071957600080fd5b506104a4610728366004612eba565b61121a565b34801561073957600080fd5b506103c7610748366004612e96565b6001600160a01b031660009081526020819052604090205490565b34801561076f57600080fd5b506104a46112ec565b34801561078457600080fd5b506103c7600e5481565b34801561079a57600080fd5b50600954610462906001600160a01b031681565b3480156107ba57600080fd5b506104a46107c9366004612ee1565b61136c565b3480156107da57600080fd5b506104a46107e9366004612eba565b61143c565b3480156107fa57600080fd5b506104a4610809366004612e96565b61157e565b34801561081a57600080fd5b5060055461010090046001600160a01b0316610462565b34801561083d57600080fd5b506103c760115481565b34801561085357600080fd5b506103ef61194c565b34801561086857600080fd5b506104a4610877366004612ee1565b61195b565b34801561088857600080fd5b506103c760195481565b34801561089e57600080fd5b5061041c6108ad366004612e29565b611a25565b3480156108be57600080fd5b5061041c6108cd366004612e29565b611a5c565b3480156108de57600080fd5b506103c7600a5481565b3480156108f457600080fd5b5061041c610903366004612e96565b601b6020526000908152604090205460ff1681565b34801561092457600080fd5b506103c760135481565b34801561093a57600080fd5b506104a4610949366004612f1a565b611a69565b34801561095a57600080fd5b5061041c610969366004612e96565b601c6020526000908152604090205460ff1681565b34801561098a57600080fd5b506104a4610999366004612f1a565b611b14565b3480156109aa57600080fd5b506104a46109b9366004612ee1565b611bc0565b3480156109ca57600080fd5b506104a46109d9366004612f3c565b611c88565b3480156109ea57600080fd5b506103c7600b5481565b348015610a0057600080fd5b506104a4610a0f366004612eba565b611cc5565b348015610a2057600080fd5b50601754610462906001600160a01b031681565b348015610a4057600080fd5b506104a4610a4f366004612eba565b611d3d565b348015610a6057600080fd5b506104a4610a6f366004612eba565b611dad565b348015610a8057600080fd5b506103c7610a8f366004612f59565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610ac657600080fd5b506103c760105481565b348015610adc57600080fd5b506103c7600c5481565b348015610af257600080fd5b506104a4610b01366004612eba565b611e2d565b348015610b1257600080fd5b506104a4610b21366004612e96565b611e88565b348015610b3257600080fd5b50610462736982508145454ce325ddbe47a25d4ec3d231193381565b606060038054610b5d90612f87565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8990612f87565b8015610bd65780601f10610bab57610100808354040283529160200191610bd6565b820191906000526020600020905b815481529060010190602001808311610bb957829003601f168201915b5050505050905090565b6000806016541180610c13575060055461010090046001600160a01b03166001600160a01b0316336001600160a01b0316145b610c785760405162461bcd60e51b815260206004820152602b60248201527f54726164696e67206861736e277420737461727465642c2061726520796f752060448201526a309039b734b832b917171760a91b60648201526084015b60405180910390fd5b603260165442610c889190612fd7565b11610ca857336000908152601460205260409020805460ff191660011790555b610cb3338484611f84565b50600192915050565b6005546001600160a01b03610100909104163314610cec5760405162461bcd60e51b8152600401610c6f90612fee565b601654600003610cfb57426016555b565b6000610d0a8484846120a9565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610d45918691610d40908690612fd7565b611f84565b5060019392505050565b6018546001600160a01b03163314610d795760405162461bcd60e51b8152600401610c6f90613023565b601880546001600160a01b0319169055565b6005546001600160a01b03610100909104163314610dbb5760405162461bcd60e51b8152600401610c6f90612fee565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610e0357600080fd5b505af1158015610e17573d6000803e3d6000fd5b5050505050565b6018546001600160a01b03163314610e485760405162461bcd60e51b8152600401610c6f90613023565b6001600160a01b03166000908152601460205260409020805460ff19169055565b306001600160a01b03821603610eba5760405162461bcd60e51b815260206004820152601660248201527543616e6e6f7420636c6561722050657065734b69647360501b6044820152606401610c6f565b736982508145454ce325ddbe47a25d4ec3d2311932196001600160a01b03821601610f1c5760405162461bcd60e51b815260206004820152601260248201527143616e6e6f7420636c65617220506570657360701b6044820152606401610c6f565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610f63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f87919061305a565b60175460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810183905291925083169063a9059cbb906044016020604051808303816000875af1158015610fdc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110009190613073565b505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610cb3918590610d40908690613090565b6018546001600160a01b031633146110665760405162461bcd60e51b8152600401610c6f90613023565b600a5481116110b75760405162461bcd60e51b815260206004820181905260248201527f43616e206f6e6c7920696e63726561736520746865206d61782077616c6c65746044820152606401610c6f565b600a55565b60085460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af115801561110d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111319190613073565b50565b6005546001600160a01b036101009091041633146111645760405162461bcd60e51b8152600401610c6f90612fee565b600860009054906101000a90046001600160a01b03166001600160a01b031663db2e21bc6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156111b457600080fd5b505af11580156111c8573d6000803e3d6000fd5b50505050565b6018546001600160a01b031633146111f85760405162461bcd60e51b8152600401610c6f90613023565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6008546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af115801561126d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129191906130a8565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6005546001600160a01b0361010090910416331461131c5760405162461bcd60e51b8152600401610c6f90612fee565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b0361010090910416331461139c5760405162461bcd60e51b8152600401610c6f90612fee565b6001600160a01b0382166000908152601b602052604090205481151560ff9091161515036113dc5760405162461bcd60e51b8152600401610c6f906130d6565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f79e53d9449eb6f30171e2c67ae9b757990ee251c3d890d8176b29a4052153c1791015b60405180910390a25050565b6018546001600160a01b031633146114665760405162461bcd60e51b8152600401610c6f90613023565b620186a0811015801561147c57506207a1208111155b6114e55760405162461bcd60e51b815260206004820152603460248201527f676173466f7250726f63657373696e67206d757374206265206265747765656e6044820152730203130302c30303020616e64203530302c3030360641b6064820152608401610c6f565b601954810361154b5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610c6f565b60195460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601955565b6005546001600160a01b036101009091041633146115ae5760405162461bcd60e51b8152600401610c6f90612fee565b6008546001600160a01b03908116908216036116225760405162461bcd60e51b815260206004820152602d60248201527f546865206469766964656e6420747261636b657220616c72656164792068617360448201526c2074686174206164647265737360981b6064820152608401610c6f565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561166f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116939190613120565b6001600160a01b03161461170f5760405162461bcd60e51b815260206004820152603c60248201527f546865206e6577206469766964656e6420747261636b6572206d75737420626560448201527f206f776e65642062792074686520746f6b656e20636f6e7472616374000000006064820152608401610c6f565b60085460405163031e79db60e41b81523060048201526001600160a01b03909116906331e79db090602401600060405180830381600087803b15801561175457600080fd5b505af1158015611768573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b039091166004820181905292506331e79db09150602401600060405180830381600087803b1580156117b257600080fd5b505af11580156117c6573d6000803e3d6000fd5b505060085460065460405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db09150602401600060405180830381600087803b15801561181357600080fd5b505af1158015611827573d6000803e3d6000fd5b505060085460075460405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db09150602401600060405180830381600087803b15801561187457600080fd5b505af1158015611888573d6000803e3d6000fd5b505060085460095460405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db09150602401600060405180830381600087803b1580156118d557600080fd5b505af11580156118e9573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880546001600160a01b0319166001600160a01b039290921691909117905550565b606060048054610b5d90612f87565b6018546001600160a01b031633146119855760405162461bcd60e51b8152600401610c6f90613023565b6007546001600160a01b0390811690831603611a175760405162461bcd60e51b815260206004820152604560248201527f5468652050616e63616b655377617020706169722063616e6e6f74206265207260448201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572606482015264506169727360d81b608482015260a401610c6f565b611a218282612638565b5050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610cb3918590610d40908690612fd7565b6000610cb33384846120a9565b6018546001600160a01b03163314611a935760405162461bcd60e51b8152600401610c6f90613023565b600d829055600e819055611aa78183613090565b600f819055600a1015611a215760405162461bcd60e51b815260206004820152602f60248201527f546f74616c2062757920746178206d757374206265206c657373207468616e2060448201526e6f7220657175616c20746f2031302560881b6064820152608401610c6f565b6018546001600160a01b03163314611b3e5760405162461bcd60e51b8152600401610c6f90613023565b60108290556011819055611b528183613090565b6012819055600a1015611a215760405162461bcd60e51b815260206004820152603060248201527f546f74616c2073656c6c20746178206d757374206265206c657373207468616e60448201526f206f7220657175616c20746f2031302560801b6064820152608401610c6f565b6005546001600160a01b03610100909104163314611bf05760405162461bcd60e51b8152600401610c6f90612fee565b6001600160a01b0382166000908152601a602052604090205481151560ff909116151503611c305760405162461bcd60e51b8152600401610c6f906130d6565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101611430565b6018546001600160a01b03163314611cb25760405162461bcd60e51b8152600401610c6f90613023565b6015805460ff1916911515919091179055565b6018546001600160a01b03163314611cef5760405162461bcd60e51b8152600401610c6f90613023565b600954611d079030906001600160a01b031683612797565b6040518181527f26d5028b6f18b585f55a4af7a0e11bede5e3f4fbddae4dd285078f3d4dfd0df49060200160405180910390a150565b6018546001600160a01b03163314611d675760405162461bcd60e51b8152600401610c6f90613023565b6127108111611da85760405162461bcd60e51b815260206004820152600d60248201526c4c696d697420746f6f206c6f7760981b6044820152606401610c6f565b600c55565b6018546001600160a01b03163314611dd75760405162461bcd60e51b8152600401610c6f90613023565b600b548111611e285760405162461bcd60e51b815260206004820152601b60248201527f43616e206f6e6c7920696e63726561736520746865206c696d697400000000006044820152606401610c6f565b600b55565b6018546001600160a01b03163314611e575760405162461bcd60e51b8152600401610c6f90613023565b60085460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610de9565b6005546001600160a01b03610100909104163314611eb85760405162461bcd60e51b8152600401610c6f90612fee565b6001600160a01b038116611f1d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c6f565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b038316611fe65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c6f565b6001600160a01b0382166120475760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c6f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60165460000361213d576005546001600160a01b038481166101009092041614806120e657506005546001600160a01b0383811661010090920416145b6121325760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f742079657420737461727465640000000000000000006044820152606401610c6f565b611000838383612797565b600754600160a01b900460ff161561215a57611000838383612797565b6001600160a01b038084166000908152601c602052604080822054928516825290205460ff918216911681156121e657600b548311156121e65760405162461bcd60e51b815260206004820152602160248201527f5472616e7366657220616d6f756e74206578636565647320746865206c696d696044820152601d60fa1b6064820152608401610c6f565b8015801561220d57506001600160a01b0384166000908152601b602052604090205460ff16155b1561228d57600a5483612235866001600160a01b031660009081526020819052604090205490565b61223f9190613090565b111561228d5760405162461bcd60e51b815260206004820152601860248201527f57616c6c6574206578636565647320746865206c696d697400000000000000006044820152606401610c6f565b6001600160a01b0385166000908152601a602052604081205460ff16806122cc57506001600160a01b0385166000908152601a602052604090205460ff165b30600090815260208190526040902054600c5491925090811080159081906122f15750835b80156122fb575082155b15612368576007805460ff60a01b1916600160a01b179055600c5460125460115491935060009161232c908561313d565b612336919061315c565b905060006123448285612fd7565b905061234f82612902565b61235881612944565b50506007805460ff60a01b191690555b8215801561244057600080601654426123819190612fd7565b905087156123a6576064600f548a612399919061313d565b6123a3919061315c565b91505b86156123c95760646012548a6123bc919061313d565b6123c6919061315c565b91505b6201518081111580156123da575087155b80156123fe57506001600160a01b038b1660009081526014602052604090205460ff165b156124205760646013548a612413919061313d565b61241d919061315c565b91505b61242a828a612fd7565b9850811561243d5761243d8b3084612797565b50505b61244b898989612797565b6008546001600160a01b031663e30443bc8a61247c816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156124c257600080fd5b505af19250505080156124d3575060015b506008546001600160a01b031663e30443bc89612505816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561254b57600080fd5b505af192505050801561255c575060015b5060155460ff161561262d576019546008546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af19250505080156125d5575060408051601f3d908101601f191682019092526125d2918101906130a8565b60015b1561262b5760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b505050505050505050565b6001600160a01b0382166000908152601c602052604090205481151560ff9091161515036126ce5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610c6f565b6001600160a01b0382166000908152601c60205260409020805460ff1916821580159190911790915561275b5760085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561274257600080fd5b505af1158015612756573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166127fb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610c6f565b6001600160a01b03821661285d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610c6f565b6001600160a01b038316600090815260208190526040902054612881908290612fd7565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546128b1908290613090565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161209c565b61290b81612af7565b6017546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611a21573d6000803e3d6000fd5b61294d81612c51565b6040516370a0823160e01b8152306004820152600090736982508145454ce325ddbe47a25d4ec3d2311933906370a0823190602401602060405180830381865afa15801561299f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129c3919061305a565b60085460405163a9059cbb60e01b81526001600160a01b03909116600482015260248101829052909150600090736982508145454ce325ddbe47a25d4ec3d23119339063a9059cbb906044016020604051808303816000875af1158015612a2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a529190613073565b9050801561100057600854604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b158015612aa057600080fd5b505af1158015612ab4573d6000803e3d6000fd5b505060408051868152602081018690527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3935001905060405180910390a1505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612b2c57612b2c61317e565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612b85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ba99190613120565b81600181518110612bbc57612bbc61317e565b6001600160a01b039283166020918202929092010152600654612be29130911684611f84565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612c1b908590600090869030904290600401613194565b600060405180830381600087803b158015612c3557600080fd5b505af1158015612c49573d6000803e3d6000fd5b505050505050565b60408051600380825260808201909252600091602082016060803683370190505090503081600081518110612c8857612c8861317e565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612ce1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d059190613120565b81600181518110612d1857612d1861317e565b60200260200101906001600160a01b031690816001600160a01b031681525050736982508145454ce325ddbe47a25d4ec3d231193381600281518110612d6057612d6061317e565b6001600160a01b039283166020918202929092010152600654612d869130911684611f84565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d79590612c1b908590600090869030904290600401613194565b600060208083528351808285015260005b81811015612dec57858101830151858201604001528201612dd0565b81811115612dfe576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461113157600080fd5b60008060408385031215612e3c57600080fd5b8235612e4781612e14565b946020939093013593505050565b600080600060608486031215612e6a57600080fd5b8335612e7581612e14565b92506020840135612e8581612e14565b929592945050506040919091013590565b600060208284031215612ea857600080fd5b8135612eb381612e14565b9392505050565b600060208284031215612ecc57600080fd5b5035919050565b801515811461113157600080fd5b60008060408385031215612ef457600080fd5b8235612eff81612e14565b91506020830135612f0f81612ed3565b809150509250929050565b60008060408385031215612f2d57600080fd5b50508035926020909101359150565b600060208284031215612f4e57600080fd5b8135612eb381612ed3565b60008060408385031215612f6c57600080fd5b8235612f7781612e14565b91506020830135612f0f81612e14565b600181811c90821680612f9b57607f821691505b602082108103612fbb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612fe957612fe9612fc1565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f43616c6c6572206973206e6f7420746865206f70657261746f72000000000000604082015260600190565b60006020828403121561306c57600080fd5b5051919050565b60006020828403121561308557600080fd5b8151612eb381612ed3565b600082198211156130a3576130a3612fc1565b500190565b6000806000606084860312156130bd57600080fd5b8351925060208401519150604084015190509250925092565b6020808252602a908201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604082015269276578636c756465642760b01b606082015260800190565b60006020828403121561313257600080fd5b8151612eb381612e14565b600081600019048311821515161561315757613157612fc1565b500290565b60008261317957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131e45784516001600160a01b0316835293830193918301916001016131bf565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208f80855d2b2981d943e6a3c41448dc8ac408126276d7a208872d8aca06ff556864736f6c634300080d0033

Libraries Used

IterableMapping : 0x891664d98497b067d79fd2231c3d244ac66c385dUnverified

Deployed Bytecode Sourcemap

37200:14841:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37927:32;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;37927:32:0;;;;;;;;9278:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41068:488::-;;;;;;;;;;-1:-1:-1;41068:488:0;;;;;:::i;:::-;;:::i;:::-;;;1419:14:1;;1412:22;1394:41;;1382:2;1367:18;41068:488:0;1254:187:1;37719:32:0;;;;;;;;;;;;;;;;37246:41;;;;;;;;;;-1:-1:-1;37246:41:0;;;;-1:-1:-1;;;;;37246:41:0;;;;;;-1:-1:-1;;;;;1637:32:1;;;1619:51;;1607:2;1592:18;37246:41:0;1446:230:1;10377:108:0;;;;;;;;;;-1:-1:-1;10465:12:0;;10377:108;;40876:112;;;;;;;;;;;;;:::i;:::-;;12075:274;;;;;;;;;;-1:-1:-1;12075:274:0;;;;;:::i;:::-;;:::i;51840:90::-;;;;;;;;;;;;;:::i;37362:42::-;;;;;;;;;;-1:-1:-1;37362:42:0;;;;-1:-1:-1;;;;;37362:42:0;;;10221:91;;;;;;;;;;-1:-1:-1;10295:9:0;;10221:91;;10295:9;;;;2520:36:1;;2508:2;2493:18;10221:91:0;2378:184:1;46304:123:0;;;;;;;;;;-1:-1:-1;46304:123:0;;;;;:::i;:::-;;:::i;51938:98::-;;;;;;;;;;-1:-1:-1;51938:98:0;;;;;:::i;:::-;;:::i;51340:331::-;;;;;;;;;;-1:-1:-1;51340:331:0;;;;;:::i;:::-;;:::i;37802:31::-;;;;;;;;;;;;;;;;12758:215;;;;;;;;;;-1:-1:-1;12758:215:0;;;;;:::i;:::-;;:::i;37294:29::-;;;;;;;;;;-1:-1:-1;37294:29:0;;;;-1:-1:-1;;;;;37294:29:0;;;43454:194;;;;;;;;;;-1:-1:-1;43454:194:0;;;;;:::i;:::-;;:::i;46699:97::-;;;;;;;;;;;;;:::i;46174:125::-;;;;;;;;;;-1:-1:-1;46174:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;46263:28:0;46239:4;46263:28;;;:19;:28;;;;;;;;;46174:125;38319:23;;;;;;;;;;-1:-1:-1;38319:23:0;;;;-1:-1:-1;;;;;38319:23:0;;;41751:118;;;;;;;;;;;;;:::i;38162:33::-;;;;;;;;;;;;;;;;44062:124;;;;;;;;;;-1:-1:-1;44062:124:0;;;;;:::i;:::-;;:::i;38066:40::-;;;;;;;;;;-1:-1:-1;38066:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37968:51;;;;;;;;;;;;38009:10;37968:51;;38115:38;;;;;;;;;;-1:-1:-1;38115:38:0;;;;;;;;46432:259;;;;;;;;;;-1:-1:-1;46432:259:0;;;;;:::i;:::-;;:::i;10548:127::-;;;;;;;;;;-1:-1:-1;10548:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10649:18:0;10622:7;10649:18;;;;;;;;;;;;10548:127;4060:148;;;;;;;;;;;;;:::i;37760:35::-;;;;;;;;;;;;;;;;37413:70;;;;;;;;;;-1:-1:-1;37413:70:0;;;;-1:-1:-1;;;;;37413:70:0;;;43112:334;;;;;;;;;;-1:-1:-1;43112:334:0;;;;;:::i;:::-;;:::i;45514:397::-;;;;;;;;;;-1:-1:-1;45514:397:0;;;;;:::i;:::-;;:::i;41934:872::-;;;;;;;;;;-1:-1:-1;41934:872:0;;;;;:::i;:::-;;:::i;3409:87::-;;;;;;;;;;-1:-1:-1;3482:6:0;;;;;-1:-1:-1;;;;;3482:6:0;3409:87;;37883:36;;;;;;;;;;;;;;;;9488:95;;;;;;;;;;;;;:::i;44840:259::-;;;;;;;;;;-1:-1:-1;44840:259:0;;;;;:::i;:::-;;:::i;38351:41::-;;;;;;;;;;;;;;;;13476:225;;;;;;;;;;-1:-1:-1;13476:225:0;;;;;:::i;:::-;;:::i;10888:175::-;;;;;;;;;;-1:-1:-1;10888:175:0;;;;;:::i;:::-;;:::i;37598:30::-;;;;;;;;;;;;;;;;38459:63;;;;;;;;;;-1:-1:-1;38459:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38026:33;;;;;;;;;;;;;;;;44194:312;;;;;;;;;;-1:-1:-1;44194:312:0;;;;;:::i;:::-;;:::i;38529:58::-;;;;;;;;;;-1:-1:-1;38529:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;44514:318;;;;;;;;;;-1:-1:-1;44514:318:0;;;;;:::i;:::-;;:::i;42814:290::-;;;;;;;;;;-1:-1:-1;42814:290:0;;;;;:::i;:::-;;:::i;45919:112::-;;;;;;;;;;-1:-1:-1;45919:112:0;;;;;:::i;:::-;;:::i;37635:35::-;;;;;;;;;;;;;;;;51679:153;;;;;;;;;;-1:-1:-1;51679:153:0;;;;;:::i;:::-;;:::i;38204:108::-;;;;;;;;;;-1:-1:-1;38204:108:0;;;;-1:-1:-1;;;;;38204:108:0;;;43875:179;;;;;;;;;;-1:-1:-1;43875:179:0;;;;;:::i;:::-;;:::i;43656:211::-;;;;;;;;;;-1:-1:-1;43656:211:0;;;;;:::i;:::-;;:::i;11126:151::-;;;;;;;;;;-1:-1:-1;11126:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11242:18:0;;;11215:7;11242:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11126:151;37842:33;;;;;;;;;;;;;;;;37677;;;;;;;;;;;;;;;;46039:127;;;;;;;;;;-1:-1:-1;46039:127:0;;;;;:::i;:::-;;:::i;4363:244::-;;;;;;;;;;-1:-1:-1;4363:244:0;;;;;:::i;:::-;;:::i;37492:89::-;;;;;;;;;;;;37538:42;37492:89;;9278:91;9323:13;9356:5;9349:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9278:91;:::o;41068:488::-;41151:4;41193:1;41176:14;;:18;:45;;;-1:-1:-1;3482:6:0;;;;;-1:-1:-1;;;;;3482:6:0;-1:-1:-1;;;;;41198:23:0;2134:10;-1:-1:-1;;;;;41198:23:0;;41176:45;41168:101;;;;-1:-1:-1;;;41168:101:0;;5685:2:1;41168:101:0;;;5667:21:1;5724:2;5704:18;;;5697:30;5763:34;5743:18;;;5736:62;-1:-1:-1;;;5814:18:1;;;5807:41;5865:19;;41168:101:0;;;;;;;;;41434:2;41415:14;;41397:15;:32;;;;:::i;:::-;41396:40;41392:74;;2134:10;41438:21;;;;:7;:21;;;;;:28;;-1:-1:-1;;41438:28:0;41462:4;41438:28;;;41392:74;41487:39;2134:10;41510:7;41519:6;41487:8;:39::i;:::-;-1:-1:-1;41544:4:0;41068:488;;;;:::o;40876:112::-;3482:6;;-1:-1:-1;;;;;3482:6:0;;;;;2134:10;3629:23;3621:68;;;;-1:-1:-1;;;3621:68:0;;;;;;;:::i;:::-;40927:14:::1;;40945:1;40927:19:::0;40923:57:::1;;40965:15;40948:14;:32:::0;40923:57:::1;40876:112::o:0;12075:274::-;12181:4;12198:36;12208:6;12216:9;12227:6;12198:9;:36::i;:::-;-1:-1:-1;;;;;12276:19:0;;;;;;:11;:19;;;;;;;;2134:10;12276:33;;;;;;;;;12245:74;;12254:6;;12276:42;;12312:6;;12276:42;:::i;:::-;12245:8;:74::i;:::-;-1:-1:-1;12337:4:0;12075:274;;;;;:::o;51840:90::-;40793:8;;-1:-1:-1;;;;;40793:8:0;2134:10;40793:24;40785:63;;;;-1:-1:-1;;;40785:63:0;;;;;;;:::i;:::-;51901:8:::1;:21:::0;;-1:-1:-1;;;;;;51901:21:0::1;::::0;;51840:90::o;46304:123::-;3482:6;;-1:-1:-1;;;;;3482:6:0;;;;;2134:10;3629:23;3621:68;;;;-1:-1:-1;;;3621:68:0;;;;;;;:::i;:::-;46377:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;46377:45:0;;-1:-1:-1;;;;;1637:32:1;;;46377:45:0::1;::::0;::::1;1619:51:1::0;46377:15:0;;::::1;::::0;:36:::1;::::0;1592:18:1;;46377:45:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46304:123:::0;:::o;51938:98::-;40793:8;;-1:-1:-1;;;;;40793:8:0;2134:10;40793:24;40785:63;;;;-1:-1:-1;;;40785:63:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52007:13:0::1;52023:5;52007:13:::0;;;:7:::1;:13;::::0;;;;:21;;-1:-1:-1;;52007:21:0::1;::::0;;51938:98::o;51340:331::-;51426:4;-1:-1:-1;;;;;51409:22:0;;;51401:57;;;;-1:-1:-1;;;51401:57:0;;7075:2:1;51401:57:0;;;7057:21:1;7114:2;7094:18;;;7087:30;-1:-1:-1;;;7133:18:1;;;7126:52;7195:18;;51401:57:0;6873:346:1;51401:57:0;-1:-1:-1;;;;;;;51477:20:0;;;51469:51;;;;-1:-1:-1;;;51469:51:0;;7426:2:1;51469:51:0;;;7408:21:1;7465:2;7445:18;;;7438:30;-1:-1:-1;;;7484:18:1;;;7477:48;7542:18;;51469:51:0;7224:342:1;51469:51:0;51554:38;;-1:-1:-1;;;51554:38:0;;51586:4;51554:38;;;1619:51:1;51531:20:0;;-1:-1:-1;;;;;51554:23:0;;;;;1592:18:1;;51554:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51626:22;;51603:60;;-1:-1:-1;;;51603:60:0;;-1:-1:-1;;;;;51626:22:0;;;51603:60;;;7942:51:1;8009:18;;;8002:34;;;51531:61:0;;-1:-1:-1;51603:22:0;;;;;7915:18:1;;51603:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51390:281;51340:331;:::o;12758:215::-;2134:10;12846:4;12895:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12895:34:0;;;;;;;;;;12846:4;;12863:80;;12886:7;;12895:47;;12932:10;;12895:47;:::i;43454:194::-;40793:8;;-1:-1:-1;;;;;40793:8:0;2134:10;40793:24;40785:63;;;;-1:-1:-1;;;40785:63:0;;;;;;;:::i;:::-;43552:15:::1;;43542:7;:25;43534:70;;;::::0;-1:-1:-1;;;43534:70:0;;8632:2:1;43534:70:0::1;::::0;::::1;8614:21:1::0;;;8651:18;;;8644:30;8710:34;8690:18;;;8683:62;8762:18;;43534:70:0::1;8430:356:1::0;43534:70:0::1;43615:15;:25:::0;43454:194::o;46699:97::-;46730:15;;:58;;-1:-1:-1;;;46730:58:0;;46769:10;46730:58;;;8975:51:1;46730:15:0;9042:18:1;;;9035:50;-1:-1:-1;;;;;46730:15:0;;;;:30;;8948:18:1;;46730:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46699:97::o;41751:118::-;3482:6;;-1:-1:-1;;;;;3482:6:0;;;;;2134:10;3629:23;3621:68;;;;-1:-1:-1;;;3621:68:0;;;;;;;:::i;:::-;41826:15:::1;;;;;;;;;-1:-1:-1::0;;;;;41826:15:0::1;-1:-1:-1::0;;;;;41826:33:0::1;;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;41751:118::o:0;44062:124::-;40793:8;;-1:-1:-1;;;;;40793:8:0;2134:10;40793:24;40785:63;;;;-1:-1:-1;;;40785:63:0;;;;;;;:::i;:::-;44147:22:::1;:31:::0;;-1:-1:-1;;;;;;44147:31:0::1;-1:-1:-1::0;;;;;44147:31:0;;;::::1;::::0;;;::::1;::::0;;44062:124::o;46432:259::-;46558:15;;:28;;-1:-1:-1;;;;;;46558:28:0;;;;;160:25:1;;;46492:18:0;;;;;;-1:-1:-1;;;;;46558:15:0;;:23;;133:18:1;;46558:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46596:87;;;9638:25:1;;;9694:2;9679:18;;9672:34;;;9722:18;;;9715:34;;;9780:2;9765:18;;9758:34;;;46491:95:0;;-1:-1:-1;46491:95:0;;-1:-1:-1;46491:95:0;-1:-1:-1;46673:9:0;;46661:5;;46596:87;;9625:3:1;9610:19;46596:87:0;;;;;;;46486:205;;;46432:259;:::o;4060:148::-;3482:6;;-1:-1:-1;;;;;3482:6:0;;;;;2134:10;3629:23;3621:68;;;;-1:-1:-1;;;3621:68:0;;;;;;;:::i;:::-;4151:6:::1;::::0;4130:40:::1;::::0;4167:1:::1;::::0;4151:6:::1;::::0;::::1;-1:-1:-1::0;;;;;4151:6:0::1;::::0;4130:40:::1;::::0;4167:1;;4130:40:::1;4181:6;:19:::0;;-1:-1:-1;;;;;;4181:19:0::1;::::0;;4060:148::o;43112:334::-;3482:6;;-1:-1:-1;;;;;3482:6:0;;;;;2134:10;3629:23;3621:68;;;;-1:-1:-1;;;3621:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43216:39:0;::::1;;::::0;;;:30:::1;:39;::::0;;;;;:51;::::1;;:39;::::0;;::::1;:51;;::::0;43208:106:::1;;;;-1:-1:-1::0;;;43208:106:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43325:39:0;::::1;;::::0;;;:30:::1;:39;::::0;;;;;;;;:50;;-1:-1:-1;;43325:50:0::1;::::0;::::1;;::::0;;::::1;::::0;;;43393:45;;1394:41:1;;;43393:45:0::1;::::0;1367:18:1;43393:45:0::1;;;;;;;;43112:334:::0;;:::o;45514:397::-;40793:8;;-1:-1:-1;;;;;40793:8:0;2134:10;40793:24;40785:63;;;;-1:-1:-1;;;40785:63:0;;;;;;;:::i;:::-;45615:7:::1;45603:8;:19;;:42;;;;;45638:7;45626:8;:19;;45603:42;45595:107;;;::::0;-1:-1:-1;;;45595:107:0;;10416:2:1;45595:107:0::1;::::0;::::1;10398:21:1::0;10455:2;10435:18;;;10428:30;10494:34;10474:18;;;10467:62;-1:-1:-1;;;10545:18:1;;;10538:50;10605:19;;45595:107:0::1;10214:416:1::0;45595:107:0::1;45733:16;;45721:8;:28:::0;45713:85:::1;;;::::0;-1:-1:-1;;;45713:85:0;;10837:2:1;45713:85:0::1;::::0;::::1;10819:21:1::0;10876:2;10856:18;;;10849:30;10915:34;10895:18;;;10888:62;-1:-1:-1;;;10966:18:1;;;10959:42;11018:19;;45713:85:0::1;10635:408:1::0;45713:85:0::1;45848:16;::::0;45814:51:::1;::::0;45838:8;;45814:51:::1;::::0;;;::::1;45876:16;:27:::0;45514:397::o;41934:872::-;3482:6;;-1:-1:-1;;;;;3482:6:0;;;;;2134:10;3629:23;3621:68;;;;-1:-1:-1;;;3621:68:0;;;;;;;:::i;:::-;42043:15:::1;::::0;-1:-1:-1;;;;;42043:15:0;;::::1;42021:38:::0;;::::1;::::0;42013:96:::1;;;::::0;-1:-1:-1;;;42013:96:0;;11250:2:1;42013:96:0::1;::::0;::::1;11232:21:1::0;11289:2;11269:18;;;11262:30;11328:34;11308:18;;;11301:62;-1:-1:-1;;;11379:18:1;;;11372:43;11432:19;;42013:96:0::1;11048:409:1::0;42013:96:0::1;42122:38;42191:10;42122:81;;42262:4;-1:-1:-1::0;;;;;42224:43:0::1;:18;-1:-1:-1::0;;;;;42224:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42224:43:0::1;;42216:116;;;::::0;-1:-1:-1;;;42216:116:0;;11920:2:1;42216:116:0::1;::::0;::::1;11902:21:1::0;11959:2;11939:18;;;11932:30;11998:34;11978:18;;;11971:62;12069:30;12049:18;;;12042:58;12117:19;;42216:116:0::1;11718:424:1::0;42216:116:0::1;42345:15;::::0;:51:::1;::::0;-1:-1:-1;;;42345:51:0;;42390:4:::1;42345:51;::::0;::::1;1619::1::0;-1:-1:-1;;;;;42345:15:0;;::::1;::::0;:36:::1;::::0;1592:18:1;;42345:51:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;42407:15:0::1;::::0;:62:::1;::::0;-1:-1:-1;;;42407:62:0;;-1:-1:-1;;;;;42407:15:0;;::::1;:62;::::0;::::1;1619:51:1::0;;;42407:15:0;-1:-1:-1;42407:36:0::1;::::0;-1:-1:-1;1592:18:1;;42407:62:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;42480:15:0::1;::::0;42525::::1;::::0;42480:62:::1;::::0;-1:-1:-1;;;42480:62:0;;-1:-1:-1;;;;;42525:15:0;;::::1;42480:62;::::0;::::1;1619:51:1::0;42480:15:0;::::1;::::0;-1:-1:-1;42480:36:0::1;::::0;-1:-1:-1;1592:18:1;;42480:62:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;42553:15:0::1;::::0;42598:13:::1;::::0;42553:60:::1;::::0;-1:-1:-1;;;42553:60:0;;-1:-1:-1;;;;;42598:13:0;;::::1;42553:60;::::0;::::1;1619:51:1::0;42553:15:0;::::1;::::0;-1:-1:-1;42553:36:0::1;::::0;-1:-1:-1;1592:18:1;;42553:60:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;42624:15:0::1;::::0;42661:10:::1;::::0;42624:48:::1;::::0;-1:-1:-1;;;42624:48:0;;-1:-1:-1;;;;;42661:10:0;;::::1;42624:48;::::0;::::1;1619:51:1::0;42624:15:0;::::1;::::0;-1:-1:-1;42624:36:0::1;::::0;-1:-1:-1;1592:18:1;;42624:48:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;42732:15:0::1;::::0;42690:59:::1;::::0;-1:-1:-1;;;;;42732:15:0;;::::1;::::0;-1:-1:-1;42690:59:0;;::::1;::::0;-1:-1:-1;42690:59:0::1;::::0;42732:15:::1;::::0;42690:59:::1;42762:15;:36:::0;;-1:-1:-1;;;;;;42762:36:0::1;-1:-1:-1::0;;;;;42762:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;41934:872:0:o;9488:95::-;9535:13;9568:7;9561:14;;;;;:::i;44840:259::-;40793:8;;-1:-1:-1;;;;;40793:8:0;2134:10;40793:24;40785:63;;;;-1:-1:-1;;;40785:63:0;;;;;;;:::i;:::-;44950:13:::1;::::0;-1:-1:-1;;;;;44950:13:0;;::::1;44942:21:::0;;::::1;::::0;44934:103:::1;;;::::0;-1:-1:-1;;;44934:103:0;;12349:2:1;44934:103:0::1;::::0;::::1;12331:21:1::0;12388:2;12368:18;;;12361:30;12427:34;12407:18;;;12400:62;12498:34;12478:18;;;12471:62;-1:-1:-1;;;12549:19:1;;;12542:36;12595:19;;44934:103:0::1;12147:473:1::0;44934:103:0::1;45050:41;45079:4;45085:5;45050:28;:41::i;:::-;44840:259:::0;;:::o;13476:225::-;2134:10;13569:4;13618:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13618:34:0;;;;;;;;;;13569:4;;13586:85;;13609:7;;13618:52;;13655:15;;13618:52;:::i;10888:175::-;10974:4;10991:42;2134:10;11015:9;11026:6;10991:9;:42::i;44194:312::-;40793:8;;-1:-1:-1;;;;;40793:8:0;2134:10;40793:24;40785:63;;;;-1:-1:-1;;;40785:63:0;;;;;;;:::i;:::-;44292:12:::1;:25:::0;;;44328:15:::1;:31:::0;;;44384:26:::1;44346:13:::0;44307:10;44384:26:::1;:::i;:::-;44370:11;:40:::0;;;44444:2:::1;-1:-1:-1::0;44429:17:0::1;44421:77;;;::::0;-1:-1:-1;;;44421:77:0;;12827:2:1;44421:77:0::1;::::0;::::1;12809:21:1::0;12866:2;12846:18;;;12839:30;12905:34;12885:18;;;12878:62;-1:-1:-1;;;12956:18:1;;;12949:45;13011:19;;44421:77:0::1;12625:411:1::0;44514:318:0;40793:8;;-1:-1:-1;;;;;40793:8:0;2134:10;40793:24;40785:63;;;;-1:-1:-1;;;40785:63:0;;;;;;;:::i;:::-;44613:13:::1;:26:::0;;;44650:16:::1;:32:::0;;;44708:26:::1;44669:13:::0;44629:10;44708:26:::1;:::i;:::-;44693:12;:41:::0;;;44769:2:::1;-1:-1:-1::0;44753:18:0::1;44745:79;;;::::0;-1:-1:-1;;;44745:79:0;;13243:2:1;44745:79:0::1;::::0;::::1;13225:21:1::0;13282:2;13262:18;;;13255:30;13321:34;13301:18;;;13294:62;-1:-1:-1;;;13372:18:1;;;13365:46;13428:19;;44745:79:0::1;13041:412:1::0;42814:290:0;3482:6;;-1:-1:-1;;;;;3482:6:0;;;;;2134:10;3629:23;3621:68;;;;-1:-1:-1;;;3621:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42907:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;42899:95:::1;;;;-1:-1:-1::0;;;42899:95:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43005:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;43005:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;43062:34;;1394:41:1;;;43062:34:0::1;::::0;1367:18:1;43062:34:0::1;1254:187:1::0;45919:112:0;40793:8;;-1:-1:-1;;;;;40793:8:0;2134:10;40793:24;40785:63;;;;-1:-1:-1;;;40785:63:0;;;;;;;:::i;:::-;45995:18:::1;:28:::0;;-1:-1:-1;;45995:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45919:112::o;51679:153::-;40793:8;;-1:-1:-1;;;;;40793:8:0;2134:10;40793:24;40785:63;;;;-1:-1:-1;;;40785:63:0;;;;;;;:::i;:::-;51775:10:::1;::::0;51744:50:::1;::::0;51768:4:::1;::::0;-1:-1:-1;;;;;51775:10:0::1;51787:6:::0;51744:15:::1;:50::i;:::-;51810:14;::::0;160:25:1;;;51810:14:0::1;::::0;148:2:1;133:18;51810:14:0::1;;;;;;;51679:153:::0;:::o;43875:179::-;40793:8;;-1:-1:-1;;;;;40793:8:0;2134:10;40793:24;40785:63;;;;-1:-1:-1;;;40785:63:0;;;;;;;:::i;:::-;43981:6:::1;43969:9;:18;43961:44;;;::::0;-1:-1:-1;;;43961:44:0;;13660:2:1;43961:44:0::1;::::0;::::1;13642:21:1::0;13699:2;13679:18;;;13672:30;-1:-1:-1;;;13718:18:1;;;13711:43;13771:18;;43961:44:0::1;13458:337:1::0;43961:44:0::1;44016:18;:30:::0;43875:179::o;43656:211::-;40793:8;;-1:-1:-1;;;;;40793:8:0;2134:10;40793:24;40785:63;;;;-1:-1:-1;;;40785:63:0;;;;;;;:::i;:::-;43763:20:::1;;43751:9;:32;43743:72;;;::::0;-1:-1:-1;;;43743:72:0;;14002:2:1;43743:72:0::1;::::0;::::1;13984:21:1::0;14041:2;14021:18;;;14014:30;14080:29;14060:18;;;14053:57;14127:18;;43743:72:0::1;13800:351:1::0;43743:72:0::1;43826:20;:33:::0;43656:211::o;46039:127::-;40793:8;;-1:-1:-1;;;;;40793:8:0;2134:10;40793:24;40785:63;;;;-1:-1:-1;;;40785:63:0;;;;;;;:::i;:::-;46116:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;46116:42:0;;::::1;::::0;::::1;160:25:1::0;;;-1:-1:-1;;;;;46116:15:0;;::::1;::::0;:31:::1;::::0;133:18:1;;46116:42:0::1;14:177:1::0;4363:244:0;3482:6;;-1:-1:-1;;;;;3482:6:0;;;;;2134:10;3629:23;3621:68;;;;-1:-1:-1;;;3621:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4452:22:0;::::1;4444:73;;;::::0;-1:-1:-1;;;4444:73:0;;14358:2:1;4444:73:0::1;::::0;::::1;14340:21:1::0;14397:2;14377:18;;;14370:30;14436:34;14416:18;;;14409:62;-1:-1:-1;;;14487:18:1;;;14480:36;14533:19;;4444:73:0::1;14156:402:1::0;4444:73:0::1;4554:6;::::0;4533:38:::1;::::0;-1:-1:-1;;;;;4533:38:0;;::::1;::::0;4554:6:::1;::::0;::::1;;::::0;4533:38:::1;::::0;;;::::1;4582:6;:17:::0;;-1:-1:-1;;;;;4582:17:0;;::::1;;;-1:-1:-1::0;;;;;;4582:17:0;;::::1;::::0;;;::::1;::::0;;4363:244::o;16487:346::-;-1:-1:-1;;;;;16589:19:0;;16581:68;;;;-1:-1:-1;;;16581:68:0;;14765:2:1;16581:68:0;;;14747:21:1;14804:2;14784:18;;;14777:30;14843:34;14823:18;;;14816:62;-1:-1:-1;;;14894:18:1;;;14887:34;14938:19;;16581:68:0;14563:400:1;16581:68:0;-1:-1:-1;;;;;16668:21:0;;16660:68;;;;-1:-1:-1;;;16660:68:0;;15170:2:1;16660:68:0;;;15152:21:1;15209:2;15189:18;;;15182:30;15248:34;15228:18;;;15221:62;-1:-1:-1;;;15299:18:1;;;15292:32;15341:19;;16660:68:0;14968:398:1;16660:68:0;-1:-1:-1;;;;;16741:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16793:32;;160:25:1;;;16793:32:0;;133:18:1;16793:32:0;;;;;;;;16487:346;;;:::o;46804:2917::-;46933:14;;46951:1;46933:19;46929:189;;3482:6;;-1:-1:-1;;;;;46977:15:0;;;3482:6;;;;;46977:15;;:32;;-1:-1:-1;3482:6:0;;-1:-1:-1;;;;;46996:13:0;;;3482:6;;;;;46996:13;46977:32;46969:68;;;;-1:-1:-1;;;46969:68:0;;15573:2:1;46969:68:0;;;15555:21:1;15612:2;15592:18;;;15585:30;15651:25;15631:18;;;15624:53;15694:18;;46969:68:0;15371:347:1;46969:68:0;47052:33;47068:4;47074:2;47078:6;47052:15;:33::i;46929:189::-;47169:8;;-1:-1:-1;;;47169:8:0;;;;47166:96;;;47195:33;47211:4;47217:2;47221:6;47195:15;:33::i;47166:96::-;-1:-1:-1;;;;;47287:31:0;;;47274:10;47287:31;;;:25;:31;;;;;;;47343:29;;;;;;;;47287:31;;;;;47343:29;47385:87;;;;47414:20;;47404:6;:30;;47396:76;;;;-1:-1:-1;;;47396:76:0;;15925:2:1;47396:76:0;;;15907:21:1;15964:2;15944:18;;;15937:30;16003:34;15983:18;;;15976:62;-1:-1:-1;;;16054:18:1;;;16047:31;16095:19;;47396:76:0;15723:397:1;47396:76:0;47526:6;47525:7;:46;;;;-1:-1:-1;;;;;;47537:34:0;;;;;;:30;:34;;;;;;;;47536:35;47525:46;47521:130;;;47607:15;;47597:6;47581:13;47591:2;-1:-1:-1;;;;;10649:18:0;10622:7;10649:18;;;;;;;;;;;;10548:127;47581:13;:22;;;;:::i;:::-;:41;;47573:78;;;;-1:-1:-1;;;47573:78:0;;16327:2:1;47573:78:0;;;16309:21:1;16366:2;16346:18;;;16339:30;16405:26;16385:18;;;16378:54;16449:18;;47573:78:0;16125:348:1;47573:78:0;-1:-1:-1;;;;;47736:25:0;;47712:20;47736:25;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;47765:23:0;;;;;;:19;:23;;;;;;;;47736:52;47845:4;47796:28;10649:18;;;;;;;;;;;47903;;47712:77;;-1:-1:-1;10649:18:0;47879:42;;;;;;;47937:30;;;47961:6;47937:30;:63;;;;;47985:15;47984:16;47937:63;47934:569;;;48027:8;:15;;-1:-1:-1;;;;48027:15:0;-1:-1:-1;;;48027:15:0;;;48082:18;;48259:12;;48239:16;;48082:18;;-1:-1:-1;48027:15:0;;48216:39;;48082:18;48216:39;:::i;:::-;48215:56;;;;:::i;:::-;48189:82;-1:-1:-1;48286:20:0;48309:38;48189:82;48309:20;:38;:::i;:::-;48286:61;;48376:33;48393:15;48376:16;:33::i;:::-;48424:34;48445:12;48424:20;:34::i;:::-;-1:-1:-1;;48475:8:0;:16;;-1:-1:-1;;;;48475:16:0;;;47934:569;48530:16;;48557:606;;;;48584:12;48611:34;48666:14;;48648:15;:32;;;;:::i;:::-;48611:69;;48698:5;48695:45;;;48737:3;48722:11;;48713:6;:20;;;;:::i;:::-;48712:28;;;;:::i;:::-;48705:35;;48695:45;48758:6;48755:47;;;48799:3;48783:12;;48774:6;:21;;;;:::i;:::-;48773:29;;;;:::i;:::-;48766:36;;48755:47;38009:10;48933:26;:44;;:54;;;;;48982:5;48981:6;48933:54;:71;;;;-1:-1:-1;;;;;;48991:13:0;;;;;;:7;:13;;;;;;;;48933:71;48929:114;;;49040:3;49023:13;;49014:6;:22;;;;:::i;:::-;49013:30;;;;:::i;:::-;49006:37;;48929:114;49066:13;49075:4;49066:6;:13;:::i;:::-;49057:22;-1:-1:-1;49099:8:0;;49096:55;;49109:42;49125:4;49139;49146;49109:15;:42::i;:::-;48569:594;;48557:606;49175:33;49191:4;49197:2;49201:6;49175:15;:33::i;:::-;49225:15;;-1:-1:-1;;;;;49225:15:0;:26;49260:4;49267:15;49260:4;-1:-1:-1;;;;;10649:18:0;10622:7;10649:18;;;;;;;;;;;;10548:127;49267:15;49225:58;;-1:-1:-1;;;;;;49225:58:0;;;;;;;-1:-1:-1;;;;;7960:32:1;;;49225:58:0;;;7942:51:1;8009:18;;;8002:34;7915:18;;49225:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49221:74;49309:15;;-1:-1:-1;;;;;49309:15:0;:26;49344:2;49349:13;49344:2;-1:-1:-1;;;;;10649:18:0;10622:7;10649:18;;;;;;;;;;;;10548:127;49349:13;49309:54;;-1:-1:-1;;;;;;49309:54:0;;;;;;;-1:-1:-1;;;;;7960:32:1;;;49309:54:0;;;7942:51:1;8009:18;;;8002:34;7915:18;;49309:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49305:70;49390:18;;;;49387:327;;;49433:16;;49464:15;;:28;;-1:-1:-1;;;;;;49464:28:0;;;;;160:25:1;;;-1:-1:-1;;;;;49464:15:0;;;;:23;;133:18:1;;49464:28:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;49464:28:0;;;;;;;;-1:-1:-1;;49464:28:0;;;;;;;;;;;;:::i;:::-;;;49460:243;;;49581:86;;;9638:25:1;;;9694:2;9679:18;;9672:34;;;9722:18;;;9715:34;;;9780:2;9765:18;;9758:34;;;49657:9:0;;49646:4;;49581:86;;9625:3:1;9610:19;49581:86:0;;;;;;;49493:184;;;49460:243;49410:304;49387:327;46917:2804;;;;;;46804:2917;;;:::o;45107:399::-;-1:-1:-1;;;;;45198:31:0;;;;;;:25;:31;;;;;;:40;;;:31;;;;:40;;;45190:109;;;;-1:-1:-1;;;45190:109:0;;17370:2:1;45190:109:0;;;17352:21:1;17409:2;17389:18;;;17382:30;17448:34;17428:18;;;17421:62;17519:26;17499:18;;;17492:54;17563:19;;45190:109:0;17168:420:1;45190:109:0;-1:-1:-1;;;;;45310:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;45310:39:0;;;;;;;;;;;;45362:79;;45387:15;;:42;;-1:-1:-1;;;45387:42:0;;-1:-1:-1;;;;;1637:32:1;;;45387:42:0;;;1619:51:1;45387:15:0;;;;:36;;1592:18:1;;45387:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45362:79;45458:40;;;;;;-1:-1:-1;;;;;45458:40:0;;;;;;;;45107:399;;:::o;14191:493::-;-1:-1:-1;;;;;14297:20:0;;14289:70;;;;-1:-1:-1;;;14289:70:0;;17795:2:1;14289:70:0;;;17777:21:1;17834:2;17814:18;;;17807:30;17873:34;17853:18;;;17846:62;-1:-1:-1;;;17924:18:1;;;17917:35;17969:19;;14289:70:0;17593:401:1;14289:70:0;-1:-1:-1;;;;;14378:23:0;;14370:71;;;;-1:-1:-1;;;14370:71:0;;18201:2:1;14370:71:0;;;18183:21:1;18240:2;18220:18;;;18213:30;18279:34;18259:18;;;18252:62;-1:-1:-1;;;18330:18:1;;;18323:33;18373:19;;14370:71:0;17999:399:1;14370:71:0;-1:-1:-1;;;;;14536:17:0;;:9;:17;;;;;;;;;;;:26;;14556:6;;14536:26;:::i;:::-;-1:-1:-1;;;;;14516:17:0;;;:9;:17;;;;;;;;;;;:46;;;;14596:20;;;;;;;:29;;14619:6;;14596:29;:::i;:::-;-1:-1:-1;;;;;14573:20:0;;;:9;:20;;;;;;;;;;;;:52;;;;14641:35;160:25:1;;;14573:20:0;;14641:35;;;;;;133:18:1;14641:35:0;14:177:1;49729:176:0;49799:33;49816:15;49799:16;:33::i;:::-;49843:22;;:54;;-1:-1:-1;;;;;49843:22:0;;;;49875:21;49843:54;;;;;:22;:54;:22;:54;49875:21;49843:22;:54;;;;;;;;;;;;;;;;;;;50398:413;50462:25;50480:6;50462:17;:25::i;:::-;50518:44;;-1:-1:-1;;;50518:44:0;;50556:4;50518:44;;;1619:51:1;50498:17:0;;37538:42;;50518:29;;1592:18:1;;50518:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50625:15;;50588:65;;-1:-1:-1;;;50588:65:0;;-1:-1:-1;;;;;50625:15:0;;;50588:65;;;7942:51:1;8009:18;;;8002:34;;;50498:64:0;;-1:-1:-1;50573:12:0;;37538:42;;50588:28;;7915:18:1;;50588:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50573:80;;50670:7;50666:138;;;50694:15;;:46;;-1:-1:-1;;;50694:46:0;;;;;160:25:1;;;-1:-1:-1;;;;;50694:15:0;;;;:35;;133:18:1;;50694:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50760:32:0;;;18856:25:1;;;18912:2;18897:18;;18890:34;;;50760:32:0;;-1:-1:-1;18829:18:1;;-1:-1:-1;50760:32:0;;;;;;;50451:360;;50398:413;:::o;49913:477::-;50003:16;;;50017:1;50003:16;;;;;;;;49979:21;;50003:16;;;;;;;;;;-1:-1:-1;50003:16:0;49979:40;;50048:4;50030;50035:1;50030:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50030:23:0;;;:7;;;;;;;;;;:23;;;;50074:15;;:22;;;-1:-1:-1;;;50074:22:0;;;;:15;;;;;:20;;:22;;;;;50030:7;;50074:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50064:4;50069:1;50064:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50064:32:0;;;:7;;;;;;;;;:32;50141:15;;50109:62;;50126:4;;50141:15;50159:11;50109:8;:62::i;:::-;50184:15;;:196;;-1:-1:-1;;;50184:196:0;;-1:-1:-1;;;;;50184:15:0;;;;:66;;:196;;50265:11;;50184:15;;50307:4;;50334;;50354:15;;50184:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49968:422;49913:477;:::o;50821:511::-;50912:16;;;50926:1;50912:16;;;;;;;;;50888:21;;50912:16;;;;;;;;;;-1:-1:-1;50912:16:0;50888:40;;50957:4;50939;50944:1;50939:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50939:23:0;;;:7;;;;;;;;;;:23;;;;50983:15;;:22;;;-1:-1:-1;;;50983:22:0;;;;:15;;;;;:20;;:22;;;;;50939:7;;50983:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50973:4;50978:1;50973:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;50973:32:0;;;-1:-1:-1;;;;;50973:32:0;;;;;37538:42;51016:4;51021:1;51016:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51016:21:0;;;:7;;;;;;;;;:21;51082:15;;51050:62;;51067:4;;51082:15;51100:11;51050:8;:62::i;:::-;51125:15;;:199;;-1:-1:-1;;;51125:199:0;;-1:-1:-1;;;;;51125:15:0;;;;:69;;:199;;51209:11;;51125:15;;51251:4;;51278;;51298:15;;51125:199;;;:::i;196:597:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;634:6;631:1;628:13;625:91;;;704:1;699:2;690:6;679:9;675:22;671:31;664:42;625:91;-1:-1:-1;777:2:1;756:15;-1:-1:-1;;752:29:1;737:45;;;;784:2;733:54;;196:597;-1:-1:-1;;;196:597:1:o;798:131::-;-1:-1:-1;;;;;873:31:1;;863:42;;853:70;;919:1;916;909:12;934:315;1002:6;1010;1063:2;1051:9;1042:7;1038:23;1034:32;1031:52;;;1079:1;1076;1069:12;1031:52;1118:9;1105:23;1137:31;1162:5;1137:31;:::i;:::-;1187:5;1239:2;1224:18;;;;1211:32;;-1:-1:-1;;;934:315:1:o;1681:456::-;1758:6;1766;1774;1827:2;1815:9;1806:7;1802:23;1798:32;1795:52;;;1843:1;1840;1833:12;1795:52;1882:9;1869:23;1901:31;1926:5;1901:31;:::i;:::-;1951:5;-1:-1:-1;2008:2:1;1993:18;;1980:32;2021:33;1980:32;2021:33;:::i;:::-;1681:456;;2073:7;;-1:-1:-1;;;2127:2:1;2112:18;;;;2099:32;;1681:456::o;2567:247::-;2626:6;2679:2;2667:9;2658:7;2654:23;2650:32;2647:52;;;2695:1;2692;2685:12;2647:52;2734:9;2721:23;2753:31;2778:5;2753:31;:::i;:::-;2803:5;2567:247;-1:-1:-1;;;2567:247:1:o;3027:180::-;3086:6;3139:2;3127:9;3118:7;3114:23;3110:32;3107:52;;;3155:1;3152;3145:12;3107:52;-1:-1:-1;3178:23:1;;3027:180;-1:-1:-1;3027:180:1:o;3472:118::-;3558:5;3551:13;3544:21;3537:5;3534:32;3524:60;;3580:1;3577;3570:12;3595:382;3660:6;3668;3721:2;3709:9;3700:7;3696:23;3692:32;3689:52;;;3737:1;3734;3727:12;3689:52;3776:9;3763:23;3795:31;3820:5;3795:31;:::i;:::-;3845:5;-1:-1:-1;3902:2:1;3887:18;;3874:32;3915:30;3874:32;3915:30;:::i;:::-;3964:7;3954:17;;;3595:382;;;;;:::o;3982:248::-;4050:6;4058;4111:2;4099:9;4090:7;4086:23;4082:32;4079:52;;;4127:1;4124;4117:12;4079:52;-1:-1:-1;;4150:23:1;;;4220:2;4205:18;;;4192:32;;-1:-1:-1;3982:248:1:o;4235:241::-;4291:6;4344:2;4332:9;4323:7;4319:23;4315:32;4312:52;;;4360:1;4357;4350:12;4312:52;4399:9;4386:23;4418:28;4440:5;4418:28;:::i;4705:388::-;4773:6;4781;4834:2;4822:9;4813:7;4809:23;4805:32;4802:52;;;4850:1;4847;4840:12;4802:52;4889:9;4876:23;4908:31;4933:5;4908:31;:::i;:::-;4958:5;-1:-1:-1;5015:2:1;5000:18;;4987:32;5028:33;4987:32;5028:33;:::i;5098:380::-;5177:1;5173:12;;;;5220;;;5241:61;;5295:4;5287:6;5283:17;5273:27;;5241:61;5348:2;5340:6;5337:14;5317:18;5314:38;5311:161;;5394:10;5389:3;5385:20;5382:1;5375:31;5429:4;5426:1;5419:15;5457:4;5454:1;5447:15;5311:161;;5098:380;;;:::o;5895:127::-;5956:10;5951:3;5947:20;5944:1;5937:31;5987:4;5984:1;5977:15;6011:4;6008:1;6001:15;6027:125;6067:4;6095:1;6092;6089:8;6086:34;;;6100:18;;:::i;:::-;-1:-1:-1;6137:9:1;;6027:125::o;6157:356::-;6359:2;6341:21;;;6378:18;;;6371:30;6437:34;6432:2;6417:18;;6410:62;6504:2;6489:18;;6157:356::o;6518:350::-;6720:2;6702:21;;;6759:2;6739:18;;;6732:30;6798:28;6793:2;6778:18;;6771:56;6859:2;6844:18;;6518:350::o;7571:184::-;7641:6;7694:2;7682:9;7673:7;7669:23;7665:32;7662:52;;;7710:1;7707;7700:12;7662:52;-1:-1:-1;7733:16:1;;7571:184;-1:-1:-1;7571:184:1:o;8047:245::-;8114:6;8167:2;8155:9;8146:7;8142:23;8138:32;8135:52;;;8183:1;8180;8173:12;8135:52;8215:9;8209:16;8234:28;8256:5;8234:28;:::i;8297:128::-;8337:3;8368:1;8364:6;8361:1;8358:13;8355:39;;;8374:18;;:::i;:::-;-1:-1:-1;8410:9:1;;8297:128::o;9096:306::-;9184:6;9192;9200;9253:2;9241:9;9232:7;9228:23;9224:32;9221:52;;;9269:1;9266;9259:12;9221:52;9298:9;9292:16;9282:26;;9348:2;9337:9;9333:18;9327:25;9317:35;;9392:2;9381:9;9377:18;9371:25;9361:35;;9096:306;;;;;:::o;9803:406::-;10005:2;9987:21;;;10044:2;10024:18;;;10017:30;10083:34;10078:2;10063:18;;10056:62;-1:-1:-1;;;10149:2:1;10134:18;;10127:40;10199:3;10184:19;;9803:406::o;11462:251::-;11532:6;11585:2;11573:9;11564:7;11560:23;11556:32;11553:52;;;11601:1;11598;11591:12;11553:52;11633:9;11627:16;11652:31;11677:5;11652:31;:::i;16478:168::-;16518:7;16584:1;16580;16576:6;16572:14;16569:1;16566:21;16561:1;16554:9;16547:17;16543:45;16540:71;;;16591:18;;:::i;:::-;-1:-1:-1;16631:9:1;;16478:168::o;16651:217::-;16691:1;16717;16707:132;;16761:10;16756:3;16752:20;16749:1;16742:31;16796:4;16793:1;16786:15;16824:4;16821:1;16814:15;16707:132;-1:-1:-1;16853:9:1;;16651:217::o;19067:127::-;19128:10;19123:3;19119:20;19116:1;19109:31;19159:4;19156:1;19149:15;19183:4;19180:1;19173:15;19199:980;19461:4;19509:3;19498:9;19494:19;19540:6;19529:9;19522:25;19566:2;19604:6;19599:2;19588:9;19584:18;19577:34;19647:3;19642:2;19631:9;19627:18;19620:31;19671:6;19706;19700:13;19737:6;19729;19722:22;19775:3;19764:9;19760:19;19753:26;;19814:2;19806:6;19802:15;19788:29;;19835:1;19845:195;19859:6;19856:1;19853:13;19845:195;;;19924:13;;-1:-1:-1;;;;;19920:39:1;19908:52;;20015:15;;;;19980:12;;;;19956:1;19874:9;19845:195;;;-1:-1:-1;;;;;;;20096:32:1;;;;20091:2;20076:18;;20069:60;-1:-1:-1;;;20160:3:1;20145:19;20138:35;20057:3;19199:980;-1:-1:-1;;;19199:980:1:o

Swarm Source

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