Contract Address Details

0x16623a42B2018dAb973B275F084D7ccE8C9efB22

Token
Doge Solar (DSOLAR)
Creator
0x3736f6–42b1cd at 0x6f82b0–2e4b95
Balance
0 Doge
Tokens
Fetching tokens...
Transactions
2,781 Transactions
Transfers
0 Transfers
Gas Used
81,239,195
Last Balance Update
26307273
Contract name:
DSOLAR




Optimization enabled
false
Compiler version
v0.8.0+commit.c7dfd78e




EVM Version
default




Verified at
2022-09-19T03:42:34.490190Z

Contract source code

// SPDX-License-Identifier: MITpragma
pragma solidity 0.8.0;

/**
 * DogeSolar
 * Website: https://dogesolar.net/
 * TG: https://t.me/DogeSolarDC
 */

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
    * @dev Returns the addition of two unsigned integers, with an overflow flag.
    *
    * _Available since v3.4._
    */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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

/*
 * @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 returns (address payable) {
        return payable(msg.sender);
    }

    function _msgData() internal view 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;
    address private _newOwner;
    address private _previousOwner;
    uint256 private _lockTime;

    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 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 Accept the ownership transfer. This is to make sure that the contract is
    * transferred to a working address
    *
    * Can only be called by the newly transfered owner.
    */
    function acceptOwnership() public {
        require(_msgSender() == _newOwner, "Ownable: only new owner can accept ownership");
        address oldOwner = _owner;
        _owner = _newOwner;
        _newOwner = address(0);
        emit OwnershipTransferred(oldOwner, _owner);
    }

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

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function getUnlockTime() public view returns (uint256) {
        return _lockTime;
    }
    
    function getTime() public view returns (uint256) {
        return block.timestamp;
    }

    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(block.timestamp > _lockTime , "Contract is locked ");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

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

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

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

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

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

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

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

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


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

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

    bool private _frozen;

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

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

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

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

    /**
    * @dev Triggers stopped state.
    *
    * Requirements:
    *
    * - The contract must not be frozen.
    */
    function _freeze() internal whenNotFrozen {
        _frozen = true;
        emit Frozen(_msgSender());
    }

    /**
    * @dev Returns to normal state.
    *
    * Requirements:
    *
    * - Can only be called by the current owner.
    * - The contract must be frozen.
    */
    function _unfreeze() internal whenFrozen {
        _frozen = false;
        emit Unfrozen(_msgSender());
    }
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * 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 DSOLAR is Context, Ownable, Pausable, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _maxSupply;
    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() {
        uint256 fractions = 10 ** uint256(18);
        _name = "Doge Solar";
        _symbol = "DSOLAR";
        _decimals = 18;
        _maxSupply = 6_000_000_000 * fractions;
        _mintOnce(_msgSender(), _maxSupply);

    }

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

    /**
    * @dev Returns the symbol of the token, usually a shorter version of the
    * name.
    */
    function symbol() public view 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 returns (uint8) {
        return _decimals;
    }

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


    /**
    * @dev See {IERC20-balanceOf}.
    */
    function balanceOf(address account) public view 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 override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
    * @dev See {IERC20-allowance}.
    */
    function allowance(address owner, address spender) public view 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 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 override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

    /**
    * @dev Destroys `amount` tokens from the caller.
    *
    * See {ERC20-_burn}.
    */
    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    /**
    * @dev Destroys `amount` tokens from `account`, deducting from the caller's
    * allowance.
    *
    * See {ERC20-_burn} and {ERC20-allowance}.
    *
    * Requirements:
    *
    * - the caller must have allowance for ``accounts``'s tokens of at least
    * `amount`.
    */
    function burnFrom(address account, uint256 amount) public {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }

    /**
    * @dev Disable the {transfer}, {mint} and {burn} functions of contract.
    *
    * Can only be called by the current owner.
    * The contract must not be frozen.
    */
    function freeze() public onlyOwner {
        _freeze();
    }

    /**
    * @dev Enable the {transfer}, {mint} and {burn} functions of contract.
    *
    * Can only be called by the current owner.
    * The contract must be frozen.
    */
    function unfreeze() public onlyOwner {
        _unfreeze();
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
      * the total supply.
      *
      * Mint only one time at when create contract
      * Emits a {Transfer} event with `from` set to the zero address.
      *
      * Requirements
      *
      * - `to` cannot be the zero address.
      */
    function _mintOnce(address account, uint256 amount) internal {
        _mint(account, 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 {
        require(account != address(0), "ERC20: mint to the zero address");
        require(_totalSupply + amount <= _maxSupply, "ERC20: mint amount exceeds max supply");

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

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

    /**
    * @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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /**
    * @dev 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 {
        require(account != address(0), "ERC20: burn from the zero address");

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(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 {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

    function _afterTokenTransfer(
      address from,
      address to,
      uint256 amount
    ) internal {}
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Frozen","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Unfrozen","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"acceptOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"freeze","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"frozen","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getUnlockTime","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"lock","inputs":[{"type":"uint256","name":"time","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unfreeze","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unlock","inputs":[]}]
            

Contract Creation Code

0x60806040523480156200001157600080fd5b50600062000024620001ec60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000600460006101000a81548160ff02191690831515021790555060006012600a620000ef919062000867565b90506040518060400160405280600a81526020017f446f676520536f6c617200000000000000000000000000000000000000000000815250600990805190602001906200013e929190620004e4565b506040518060400160405280600681526020017f44534f4c41520000000000000000000000000000000000000000000000000000815250600a90805190602001906200018c929190620004e4565b506012600b60006101000a81548160ff021916908360ff16021790555080640165a0bc00620001bc9190620009a4565b600781905550620001e5620001d6620001ec60201b60201c565b600754620001f460201b60201c565b5062000ab0565b600033905090565b6200020682826200020a60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200027d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000274906200075f565b60405180910390fd5b60075481600854620002909190620007af565b1115620002d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cb906200071b565b60405180910390fd5b620002e8600083836200041260201b60201c565b62000304816008546200046a60201b620012871790919060201c565b6008819055506200036381600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200046a60201b620012871790919060201c565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000406919062000781565b60405180910390a35050565b62000422620004cd60201b60201c565b1562000465576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045c906200073d565b60405180910390fd5b505050565b60008082846200047b9190620007af565b905083811015620004c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ba90620006f9565b60405180910390fd5b8091505092915050565b6000600460009054906101000a900460ff16905090565b828054620004f29062000a0f565b90600052602060002090601f01602090048101928262000516576000855562000562565b82601f106200053157805160ff191683800117855562000562565b8280016001018555821562000562579182015b828111156200056157825182559160200191906001019062000544565b5b50905062000571919062000575565b5090565b5b808211156200059057600081600090555060010162000576565b5090565b6000620005a3601b836200079e565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000620005e56025836200079e565b91507f45524332303a206d696e7420616d6f756e742065786365656473206d6178207360008301527f7570706c790000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006200064d6022836200079e565b91507f45524332303a20746f6b656e207472616e73666572207768696c652066726f7a60008301527f656e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000620006b5601f836200079e565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620006f38162000a05565b82525050565b60006020820190508181036000830152620007148162000594565b9050919050565b600060208201905081810360008301526200073681620005d6565b9050919050565b6000602082019050818103600083015262000758816200063e565b9050919050565b600060208201905081810360008301526200077a81620006a6565b9050919050565b6000602082019050620007986000830184620006e8565b92915050565b600082825260208201905092915050565b6000620007bc8262000a05565b9150620007c98362000a05565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000801576200080062000a45565b5b828201905092915050565b6000808291508390505b60018511156200085e5780860481111562000836576200083562000a45565b5b6001851615620008465780820291505b8081029050620008568562000aa3565b945062000816565b94509492505050565b6000620008748262000a05565b9150620008818362000a05565b9250620008b07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620008b8565b905092915050565b600082620008ca57600190506200099d565b81620008da57600090506200099d565b8160018114620008f35760028114620008fe5762000934565b60019150506200099d565b60ff84111562000913576200091262000a45565b5b8360020a9150848211156200092d576200092c62000a45565b5b506200099d565b5060208310610133831016604e8410600b84101617156200096e5782820a90508381111562000968576200096762000a45565b5b6200099d565b6200097d84848460016200080c565b9250905081840481111562000997576200099662000a45565b5b81810290505b9392505050565b6000620009b18262000a05565b9150620009be8362000a05565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620009fa57620009f962000a45565b5b828202905092915050565b6000819050919050565b6000600282049050600182168062000a2857607f821691505b6020821081141562000a3f5762000a3e62000a74565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b6127728062000ac06000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d71461036d578063a69df4b51461039d578063a9059cbb146103a7578063dd467064146103d7578063dd62ed3e146103f3578063f2fde38b1461042357610158565b806370a08231146102d1578063715018a61461030157806379ba50971461030b57806379cc6790146103155780638da5cb5b1461033157806395d89b411461034f57610158565b80633950935111610115578063395093511461023557806342966c6814610265578063557ed1ba14610281578063602bc62b1461029f57806362a5af3b146102bd5780636a28f000146102c757610158565b8063054f7d9c1461015d57806306fdde031461017b578063095ea7b31461019957806318160ddd146101c957806323b872dd146101e7578063313ce56714610217575b600080fd5b61016561043f565b604051610172919061221d565b60405180910390f35b610183610456565b6040516101909190612238565b60405180910390f35b6101b360048036038101906101ae9190611c28565b6104e8565b6040516101c0919061221d565b60405180910390f35b6101d1610506565b6040516101de919061241a565b60405180910390f35b61020160048036038101906101fc9190611bd9565b610510565b60405161020e919061221d565b60405180910390f35b61021f6105e9565b60405161022c9190612435565b60405180910390f35b61024f600480360381019061024a9190611c28565b610600565b60405161025c919061221d565b60405180910390f35b61027f600480360381019061027a9190611c64565b6106b3565b005b6102896106c7565b604051610296919061241a565b60405180910390f35b6102a76106cf565b6040516102b4919061241a565b60405180910390f35b6102c56106d9565b005b6102cf61075f565b005b6102eb60048036038101906102e69190611b74565b6107e5565b6040516102f8919061241a565b60405180910390f35b61030961082e565b005b610313610968565b005b61032f600480360381019061032a9190611c28565b610b46565b005b610339610ba8565b60405161034691906121e7565b60405180910390f35b610357610bd1565b6040516103649190612238565b60405180910390f35b61038760048036038101906103829190611c28565b610c63565b604051610394919061221d565b60405180910390f35b6103a5610d30565b005b6103c160048036038101906103bc9190611c28565b610f04565b6040516103ce919061221d565b60405180910390f35b6103f160048036038101906103ec9190611c64565b610f22565b005b61040d60048036038101906104089190611b9d565b6110d0565b60405161041a919061241a565b60405180910390f35b61043d60048036038101906104389190611b74565b611157565b005b6000600460009054906101000a900460ff16905090565b606060098054610465906125b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610491906125b4565b80156104de5780601f106104b3576101008083540402835291602001916104de565b820191906000526020600020905b8154815290600101906020018083116104c157829003601f168201915b5050505050905090565b60006104fc6104f56112e5565b84846112ed565b6001905092915050565b6000600854905090565b600061051d8484846114b8565b6105de846105296112e5565b6105d9856040518060600160405280602881526020016126cc60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061058f6112e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117519092919063ffffffff16565b6112ed565b600190509392505050565b6000600b60009054906101000a900460ff16905090565b60006106a961060d6112e5565b846106a4856006600061061e6112e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461128790919063ffffffff16565b6112ed565b6001905092915050565b6106c46106be6112e5565b826117af565b50565b600042905090565b6000600354905090565b6106e16112e5565b73ffffffffffffffffffffffffffffffffffffffff166106ff610ba8565b73ffffffffffffffffffffffffffffffffffffffff1614610755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074c9061231a565b60405180910390fd5b61075d61195f565b565b6107676112e5565b73ffffffffffffffffffffffffffffffffffffffff16610785610ba8565b73ffffffffffffffffffffffffffffffffffffffff16146107db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d29061231a565b60405180910390fd5b6107e3611a02565b565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108366112e5565b73ffffffffffffffffffffffffffffffffffffffff16610854610ba8565b73ffffffffffffffffffffffffffffffffffffffff16146108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a19061231a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109a96112e5565b73ffffffffffffffffffffffffffffffffffffffff16146109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f6906123fa565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000610b85826040518060600160405280602481526020016126f460249139610b7686610b716112e5565b6110d0565b6117519092919063ffffffff16565b9050610b9983610b936112e5565b836112ed565b610ba383836117af565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600a8054610be0906125b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0c906125b4565b8015610c595780601f10610c2e57610100808354040283529160200191610c59565b820191906000526020600020905b815481529060010190602001808311610c3c57829003601f168201915b5050505050905090565b6000610d26610c706112e5565b84610d21856040518060600160405280602581526020016127186025913960066000610c9a6112e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117519092919063ffffffff16565b6112ed565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db7906123da565b60405180910390fd5b6003544211610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb906123ba565b60405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610f18610f116112e5565b84846114b8565b6001905092915050565b610f2a6112e5565b73ffffffffffffffffffffffffffffffffffffffff16610f48610ba8565b73ffffffffffffffffffffffffffffffffffffffff1614610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f959061231a565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804261104c919061246c565b600381905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61115f6112e5565b73ffffffffffffffffffffffffffffffffffffffff1661117d610ba8565b73ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca9061231a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a9061227a565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284611296919061246c565b9050838110156112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d2906122ba565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561135d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113549061237a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c49061229a565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114ab919061241a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f9061235a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f9061225a565b60405180910390fd5b6115a3838383611aa4565b61160f816040518060600160405280602681526020016126a660269139600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117519092919063ffffffff16565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116a481600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461128790919063ffffffff16565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611744919061241a565b60405180910390a3505050565b6000838311158290611799576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117909190612238565b60405180910390fd5b5082846117a691906124c2565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561181f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118169061233a565b60405180910390fd5b61182b82600083611aa4565b6118978160405180606001604052806022815260200161268460229139600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117519092919063ffffffff16565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506118ef81600854611af190919063ffffffff16565b600881905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611953919061241a565b60405180910390a35050565b61196761043f565b156119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e906122da565b60405180910390fd5b6001600460006101000a81548160ff0219169083151502179055507f8a5c4736a33c7b7f29a2c34ea9ff9608afc5718d56f6fd6dcbd2d3711a1a49136119eb6112e5565b6040516119f89190612202565b60405180910390a1565b611a0a61043f565b611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a40906122da565b60405180910390fd5b6000600460006101000a81548160ff0219169083151502179055507f4feb53e305297ab8fb8f3420c95ea04737addc254a7270d8fc4605d2b9c61dba611a8d6112e5565b604051611a9a9190612202565b60405180910390a1565b611aac61043f565b15611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae39061239a565b60405180910390fd5b505050565b600082821115611b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2d906122fa565b60405180910390fd5b8183611b4291906124c2565b905092915050565b600081359050611b5981612655565b92915050565b600081359050611b6e8161266c565b92915050565b600060208284031215611b8657600080fd5b6000611b9484828501611b4a565b91505092915050565b60008060408385031215611bb057600080fd5b6000611bbe85828601611b4a565b9250506020611bcf85828601611b4a565b9150509250929050565b600080600060608486031215611bee57600080fd5b6000611bfc86828701611b4a565b9350506020611c0d86828701611b4a565b9250506040611c1e86828701611b5f565b9150509250925092565b60008060408385031215611c3b57600080fd5b6000611c4985828601611b4a565b9250506020611c5a85828601611b5f565b9150509250929050565b600060208284031215611c7657600080fd5b6000611c8484828501611b5f565b91505092915050565b611c968161254b565b82525050565b611ca5816124f6565b82525050565b611cb481612508565b82525050565b6000611cc582612450565b611ccf818561245b565b9350611cdf818560208601612581565b611ce881612644565b840191505092915050565b6000611d0060238361245b565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d6660268361245b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611dcc60228361245b565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e32601b8361245b565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000611e7260118361245b565b91507f467265657a61626c653a2066726f7a656e0000000000000000000000000000006000830152602082019050919050565b6000611eb2601e8361245b565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000611ef260208361245b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611f3260218361245b565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f9860258361245b565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ffe60248361245b565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061206460228361245b565b91507f45524332303a20746f6b656e207472616e73666572207768696c652066726f7a60008301527f656e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006120ca60138361245b565b91507f436f6e7472616374206973206c6f636b656420000000000000000000000000006000830152602082019050919050565b600061210a60238361245b565b91507f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60008301527f6f636b00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612170602c8361245b565b91507f4f776e61626c653a206f6e6c79206e6577206f776e65722063616e206163636560008301527f7074206f776e65727368697000000000000000000000000000000000000000006020830152604082019050919050565b6121d281612534565b82525050565b6121e18161253e565b82525050565b60006020820190506121fc6000830184611c9c565b92915050565b60006020820190506122176000830184611c8d565b92915050565b60006020820190506122326000830184611cab565b92915050565b600060208201905081810360008301526122528184611cba565b905092915050565b6000602082019050818103600083015261227381611cf3565b9050919050565b6000602082019050818103600083015261229381611d59565b9050919050565b600060208201905081810360008301526122b381611dbf565b9050919050565b600060208201905081810360008301526122d381611e25565b9050919050565b600060208201905081810360008301526122f381611e65565b9050919050565b6000602082019050818103600083015261231381611ea5565b9050919050565b6000602082019050818103600083015261233381611ee5565b9050919050565b6000602082019050818103600083015261235381611f25565b9050919050565b6000602082019050818103600083015261237381611f8b565b9050919050565b6000602082019050818103600083015261239381611ff1565b9050919050565b600060208201905081810360008301526123b381612057565b9050919050565b600060208201905081810360008301526123d3816120bd565b9050919050565b600060208201905081810360008301526123f3816120fd565b9050919050565b6000602082019050818103600083015261241381612163565b9050919050565b600060208201905061242f60008301846121c9565b92915050565b600060208201905061244a60008301846121d8565b92915050565b600081519050919050565b600082825260208201905092915050565b600061247782612534565b915061248283612534565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124b7576124b66125e6565b5b828201905092915050565b60006124cd82612534565b91506124d883612534565b9250828210156124eb576124ea6125e6565b5b828203905092915050565b600061250182612514565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006125568261255d565b9050919050565b60006125688261256f565b9050919050565b600061257a82612514565b9050919050565b60005b8381101561259f578082015181840152602081019050612584565b838111156125ae576000848401525b50505050565b600060028204905060018216806125cc57607f821691505b602082108114156125e0576125df612615565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61265e816124f6565b811461266957600080fd5b50565b61267581612534565b811461268057600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220db557b885a4da847c4a1a3fa3edbe65af566f2a08b8b6f7988418ad602c80d2764736f6c63430008000033

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d71461036d578063a69df4b51461039d578063a9059cbb146103a7578063dd467064146103d7578063dd62ed3e146103f3578063f2fde38b1461042357610158565b806370a08231146102d1578063715018a61461030157806379ba50971461030b57806379cc6790146103155780638da5cb5b1461033157806395d89b411461034f57610158565b80633950935111610115578063395093511461023557806342966c6814610265578063557ed1ba14610281578063602bc62b1461029f57806362a5af3b146102bd5780636a28f000146102c757610158565b8063054f7d9c1461015d57806306fdde031461017b578063095ea7b31461019957806318160ddd146101c957806323b872dd146101e7578063313ce56714610217575b600080fd5b61016561043f565b604051610172919061221d565b60405180910390f35b610183610456565b6040516101909190612238565b60405180910390f35b6101b360048036038101906101ae9190611c28565b6104e8565b6040516101c0919061221d565b60405180910390f35b6101d1610506565b6040516101de919061241a565b60405180910390f35b61020160048036038101906101fc9190611bd9565b610510565b60405161020e919061221d565b60405180910390f35b61021f6105e9565b60405161022c9190612435565b60405180910390f35b61024f600480360381019061024a9190611c28565b610600565b60405161025c919061221d565b60405180910390f35b61027f600480360381019061027a9190611c64565b6106b3565b005b6102896106c7565b604051610296919061241a565b60405180910390f35b6102a76106cf565b6040516102b4919061241a565b60405180910390f35b6102c56106d9565b005b6102cf61075f565b005b6102eb60048036038101906102e69190611b74565b6107e5565b6040516102f8919061241a565b60405180910390f35b61030961082e565b005b610313610968565b005b61032f600480360381019061032a9190611c28565b610b46565b005b610339610ba8565b60405161034691906121e7565b60405180910390f35b610357610bd1565b6040516103649190612238565b60405180910390f35b61038760048036038101906103829190611c28565b610c63565b604051610394919061221d565b60405180910390f35b6103a5610d30565b005b6103c160048036038101906103bc9190611c28565b610f04565b6040516103ce919061221d565b60405180910390f35b6103f160048036038101906103ec9190611c64565b610f22565b005b61040d60048036038101906104089190611b9d565b6110d0565b60405161041a919061241a565b60405180910390f35b61043d60048036038101906104389190611b74565b611157565b005b6000600460009054906101000a900460ff16905090565b606060098054610465906125b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610491906125b4565b80156104de5780601f106104b3576101008083540402835291602001916104de565b820191906000526020600020905b8154815290600101906020018083116104c157829003601f168201915b5050505050905090565b60006104fc6104f56112e5565b84846112ed565b6001905092915050565b6000600854905090565b600061051d8484846114b8565b6105de846105296112e5565b6105d9856040518060600160405280602881526020016126cc60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061058f6112e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117519092919063ffffffff16565b6112ed565b600190509392505050565b6000600b60009054906101000a900460ff16905090565b60006106a961060d6112e5565b846106a4856006600061061e6112e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461128790919063ffffffff16565b6112ed565b6001905092915050565b6106c46106be6112e5565b826117af565b50565b600042905090565b6000600354905090565b6106e16112e5565b73ffffffffffffffffffffffffffffffffffffffff166106ff610ba8565b73ffffffffffffffffffffffffffffffffffffffff1614610755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074c9061231a565b60405180910390fd5b61075d61195f565b565b6107676112e5565b73ffffffffffffffffffffffffffffffffffffffff16610785610ba8565b73ffffffffffffffffffffffffffffffffffffffff16146107db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d29061231a565b60405180910390fd5b6107e3611a02565b565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108366112e5565b73ffffffffffffffffffffffffffffffffffffffff16610854610ba8565b73ffffffffffffffffffffffffffffffffffffffff16146108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a19061231a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109a96112e5565b73ffffffffffffffffffffffffffffffffffffffff16146109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f6906123fa565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000610b85826040518060600160405280602481526020016126f460249139610b7686610b716112e5565b6110d0565b6117519092919063ffffffff16565b9050610b9983610b936112e5565b836112ed565b610ba383836117af565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600a8054610be0906125b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0c906125b4565b8015610c595780601f10610c2e57610100808354040283529160200191610c59565b820191906000526020600020905b815481529060010190602001808311610c3c57829003601f168201915b5050505050905090565b6000610d26610c706112e5565b84610d21856040518060600160405280602581526020016127186025913960066000610c9a6112e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117519092919063ffffffff16565b6112ed565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db7906123da565b60405180910390fd5b6003544211610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb906123ba565b60405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610f18610f116112e5565b84846114b8565b6001905092915050565b610f2a6112e5565b73ffffffffffffffffffffffffffffffffffffffff16610f48610ba8565b73ffffffffffffffffffffffffffffffffffffffff1614610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f959061231a565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804261104c919061246c565b600381905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61115f6112e5565b73ffffffffffffffffffffffffffffffffffffffff1661117d610ba8565b73ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca9061231a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a9061227a565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284611296919061246c565b9050838110156112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d2906122ba565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561135d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113549061237a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c49061229a565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114ab919061241a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f9061235a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f9061225a565b60405180910390fd5b6115a3838383611aa4565b61160f816040518060600160405280602681526020016126a660269139600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117519092919063ffffffff16565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116a481600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461128790919063ffffffff16565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611744919061241a565b60405180910390a3505050565b6000838311158290611799576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117909190612238565b60405180910390fd5b5082846117a691906124c2565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561181f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118169061233a565b60405180910390fd5b61182b82600083611aa4565b6118978160405180606001604052806022815260200161268460229139600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117519092919063ffffffff16565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506118ef81600854611af190919063ffffffff16565b600881905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611953919061241a565b60405180910390a35050565b61196761043f565b156119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e906122da565b60405180910390fd5b6001600460006101000a81548160ff0219169083151502179055507f8a5c4736a33c7b7f29a2c34ea9ff9608afc5718d56f6fd6dcbd2d3711a1a49136119eb6112e5565b6040516119f89190612202565b60405180910390a1565b611a0a61043f565b611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a40906122da565b60405180910390fd5b6000600460006101000a81548160ff0219169083151502179055507f4feb53e305297ab8fb8f3420c95ea04737addc254a7270d8fc4605d2b9c61dba611a8d6112e5565b604051611a9a9190612202565b60405180910390a1565b611aac61043f565b15611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae39061239a565b60405180910390fd5b505050565b600082821115611b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2d906122fa565b60405180910390fd5b8183611b4291906124c2565b905092915050565b600081359050611b5981612655565b92915050565b600081359050611b6e8161266c565b92915050565b600060208284031215611b8657600080fd5b6000611b9484828501611b4a565b91505092915050565b60008060408385031215611bb057600080fd5b6000611bbe85828601611b4a565b9250506020611bcf85828601611b4a565b9150509250929050565b600080600060608486031215611bee57600080fd5b6000611bfc86828701611b4a565b9350506020611c0d86828701611b4a565b9250506040611c1e86828701611b5f565b9150509250925092565b60008060408385031215611c3b57600080fd5b6000611c4985828601611b4a565b9250506020611c5a85828601611b5f565b9150509250929050565b600060208284031215611c7657600080fd5b6000611c8484828501611b5f565b91505092915050565b611c968161254b565b82525050565b611ca5816124f6565b82525050565b611cb481612508565b82525050565b6000611cc582612450565b611ccf818561245b565b9350611cdf818560208601612581565b611ce881612644565b840191505092915050565b6000611d0060238361245b565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d6660268361245b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611dcc60228361245b565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e32601b8361245b565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000611e7260118361245b565b91507f467265657a61626c653a2066726f7a656e0000000000000000000000000000006000830152602082019050919050565b6000611eb2601e8361245b565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000611ef260208361245b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611f3260218361245b565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f9860258361245b565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ffe60248361245b565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061206460228361245b565b91507f45524332303a20746f6b656e207472616e73666572207768696c652066726f7a60008301527f656e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006120ca60138361245b565b91507f436f6e7472616374206973206c6f636b656420000000000000000000000000006000830152602082019050919050565b600061210a60238361245b565b91507f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60008301527f6f636b00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612170602c8361245b565b91507f4f776e61626c653a206f6e6c79206e6577206f776e65722063616e206163636560008301527f7074206f776e65727368697000000000000000000000000000000000000000006020830152604082019050919050565b6121d281612534565b82525050565b6121e18161253e565b82525050565b60006020820190506121fc6000830184611c9c565b92915050565b60006020820190506122176000830184611c8d565b92915050565b60006020820190506122326000830184611cab565b92915050565b600060208201905081810360008301526122528184611cba565b905092915050565b6000602082019050818103600083015261227381611cf3565b9050919050565b6000602082019050818103600083015261229381611d59565b9050919050565b600060208201905081810360008301526122b381611dbf565b9050919050565b600060208201905081810360008301526122d381611e25565b9050919050565b600060208201905081810360008301526122f381611e65565b9050919050565b6000602082019050818103600083015261231381611ea5565b9050919050565b6000602082019050818103600083015261233381611ee5565b9050919050565b6000602082019050818103600083015261235381611f25565b9050919050565b6000602082019050818103600083015261237381611f8b565b9050919050565b6000602082019050818103600083015261239381611ff1565b9050919050565b600060208201905081810360008301526123b381612057565b9050919050565b600060208201905081810360008301526123d3816120bd565b9050919050565b600060208201905081810360008301526123f3816120fd565b9050919050565b6000602082019050818103600083015261241381612163565b9050919050565b600060208201905061242f60008301846121c9565b92915050565b600060208201905061244a60008301846121d8565b92915050565b600081519050919050565b600082825260208201905092915050565b600061247782612534565b915061248283612534565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124b7576124b66125e6565b5b828201905092915050565b60006124cd82612534565b91506124d883612534565b9250828210156124eb576124ea6125e6565b5b828203905092915050565b600061250182612514565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006125568261255d565b9050919050565b60006125688261256f565b9050919050565b600061257a82612514565b9050919050565b60005b8381101561259f578082015181840152602081019050612584565b838111156125ae576000848401525b50505050565b600060028204905060018216806125cc57607f821691505b602082108114156125e0576125df612615565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61265e816124f6565b811461266957600080fd5b50565b61267581612534565b811461268057600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220db557b885a4da847c4a1a3fa3edbe65af566f2a08b8b6f7988418ad602c80d2764736f6c63430008000033