ETH Price: $3,296.36 (-1.02%)

Token

BRRR.fi (BRRR)
 

Overview

Max Total Supply

74,973,288,617.04455 BRRR

Holders

62

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.590651654025403376 BRRR

Value
$0.00
0xa680820b3f0bbc830d23859be54a42927c0e699d
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:
Brrr

Compiler Version
v0.6.8+commit.0bbfe453

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 11: Brrr.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

import "./Context.sol";
import "./IERC20.sol";
import "./SafeMath.sol";
import "./Address.sol";
import "./AccessControl.sol";
import "./PriceFeed.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 */
contract Brrr is Context, IERC20, AccessControl, PriceFeed {
    bool public Online = true;
    modifier isOffline {
        _;
        require(!Online, "Contract is running still");
    }
    modifier isOnline {
        _;
        require(Online, "Contract has been turned off");
    }
    using SafeMath for uint256;
    using Address for address;
    IERC20 Tether;
    bytes32 public constant FOUNDING_FATHER = keccak256("FOUNDING_FATHER");

    mapping(address => uint256) private _balances;

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

    //list of accepted coins for transferring
    mapping(address => bool) public _acceptedStableCoins;
    //address of the oracle price feed for accept coins
    mapping(address => address) private _contract_address_to_oracle;
    //deposits for each user in eth
    mapping(address => uint256) public _deposits_eth;
    //total withdrawals per user
    mapping(address => uint256) public _total_withdrawals;
    //deposits for each user in their coins
    mapping(address => mapping(address => uint256)) public _coin_deposits;
    //claimed stimulus per user per stimulus
    mapping(address => mapping(uint128 => bool)) public _claimed_stimulus;
    //all stimulus ids
    mapping(uint128 => bool) public _all_Claim_ids;
    //stimulus id to stimulus info
    mapping(uint128 => Claims) public _all_Claims;
    //tether total supply checks/history
    supplyCheck[] public _all_supply_checks;
    //total coins related to tether in reserves
    uint256 public TreasuryReserve;
    uint256 private _totalSupply;
    //max limit
    uint256 public TOTALCAP = 8000000000000000 * 10**18;
    //total coins in circulation
    uint256 public _circulatingSupply;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    //usdt address
    address public tether = 0xdAC17F958D2ee523a2206206994597C13D831ec7;
    //brrr3x address
    address public brrr3x;
    //brrr10x address
    address public brrr10x;

    struct Claims {
        uint256 _amount;
        uint256 _ending;
        uint256 _amount_to_give;
    }

    struct supplyCheck {
        uint256 _last_check;
        uint256 _totalSupply;
    }

    event Withdraw(address indexed _reciever, uint256 indexed _amount);

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * Sets the total supply from tether
     *
     * Gives founding father liquidity share for uniswap
     *
     * Sets first supply check
     *
     */
    constructor(string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(FOUNDING_FATHER, msg.sender);
        Tether = IERC20(tether);
        uint256 d = Tether.totalSupply();
        TreasuryReserve = d * 10**13;
        _balances[msg.sender] = 210000000 * 10**18;
        _circulatingSupply = 210000000 * 10**18;
        _totalSupply = TreasuryReserve.sub(_circulatingSupply);
        TreasuryReserve = TreasuryReserve.sub(_circulatingSupply);
        supplyCheck memory sa = supplyCheck(block.timestamp, d);
        _all_supply_checks.push(sa);
    }

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

    function decimals() public view returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public override view 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
        virtual
        override
        view
        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};
     *
     *  If address is approved brrr3x or brrr10x address don't check allowance and allow 1 transaction transfer (no approval needed)
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        if (msg.sender != brrr3x && msg.sender != brrr10x) {
            _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.
     *
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     */
    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");
        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens from tether burning tokens
     *
     * Cannot go past cap.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     */
    function _printerGoesBrrr(uint256 amount) internal returns (bool) {
        require(amount > 0, "Can't mint 0 tokens");
        require(TreasuryReserve.add(amount) < cap(), "Cannot exceed cap");
        TreasuryReserve = TreasuryReserve.add(amount);
        _totalSupply = TreasuryReserve;
        emit Transfer(address(0), address(this), 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 isOnline {
        require(account != address(0), "ERC20: mint to the zero address");
        require(amount <= TreasuryReserve, "More than the reserve holds");

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

    /**
     * @dev Destroys `amount` tokens from `TreasuryReserve`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `Treasury Reserve` must have at least `amount` tokens.
     */
    function _burn(uint256 amount) internal virtual {
        if (amount <= TreasuryReserve) {
            TreasuryReserve = TreasuryReserve.sub(
                amount,
                "ERC20: burn amount exceeds Treasury Reserve"
            );
            _totalSupply = TreasuryReserve;
            emit Transfer(address(this), address(0), amount);
        } else {
            TreasuryReserve = 0;
            _totalSupply = TreasuryReserve;
            emit Transfer(address(this), address(0), amount);
        }
    }

    /**
     * @dev Returns the users deposit in ETH and changes the circulating supply and treasury reserves based off the brrr sent back
     *
     *
     * Emits withdraw event.
     *
     *
     */
    function _payBackBrrrETH(
        uint256 _brrrAmount,
        address payable _owner,
        uint256 _returnAmount
    ) internal returns (bool) {
        require(
            _deposits_eth[_owner] >= _returnAmount,
            "More than deposit amount"
        );
        _balances[_owner] = _balances[_owner].sub(_brrrAmount);
        TreasuryReserve = TreasuryReserve.add(_brrrAmount);
        _totalSupply = TreasuryReserve;
        _circulatingSupply = _circulatingSupply.sub(_brrrAmount);
        emit Transfer(address(_owner), address(this), _brrrAmount);
        _deposits_eth[_owner] = _deposits_eth[_owner].sub(_returnAmount);
        _transferEth(_owner, _returnAmount);
        emit Withdraw(address(_owner), _returnAmount);
        return true;
    }

    /**
     * @dev Returns the users deposit in alt coins and changes the circulating supply and treasury reserves based off the brrr sent back
     *
     *
     * Emits withdraw event.
     *
     *
     */
    function _payBackBrrrCoins(
        uint256 _brrrAmount,
        address payable _owner,
        address _contract,
        uint256 _returnAmount
    ) internal returns (bool) {
        require(
            _coin_deposits[_owner][_contract] >= _returnAmount,
            "More than deposit amount"
        );
        _balances[_owner] = _balances[_owner].sub(_brrrAmount);
        TreasuryReserve = TreasuryReserve.add(_brrrAmount);
        _totalSupply = TreasuryReserve;
        _circulatingSupply = _circulatingSupply.sub(_brrrAmount);
        emit Transfer(address(_owner), address(this), _brrrAmount);
        _coin_deposits[_owner][_contract] = _coin_deposits[_owner][_contract]
            .sub(_returnAmount);
        _transferCoin(_owner, _contract, _returnAmount);
        emit Withdraw(address(_owner), _returnAmount);
        return true;
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 Gives user reward for updating the total supply.
     */
    function _giveReward(uint256 reward) internal returns (bool) {
        _circulatingSupply = _circulatingSupply.add(reward);
        _balances[_msgSender()] = _balances[_msgSender()].add(reward);
        emit Transfer(address(this), address(_msgSender()), reward);
        return true;
    }

    /**
     * @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 {
        _decimals = decimals_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view returns (uint256) {
        return TOTALCAP;
    }

    /**
     * @dev Returns the price of the bonding curve divided by number of withdrawals the user has already made.
     *
     * Prevents spamming deposit -> withdrawal -> deposit... to drain all brrr.
     */
    function calculateWithdrawalPrice() internal view returns (uint256) {
        uint256 p = calculateCurve();
        uint256 w = _total_withdrawals[_msgSender()];
        if (w < 1) {
            w = 1;
        }
        p = p.div(w);
        return p;
    }

    /**
     * @dev Internal transfer eth function
     *
     */
    function _transferEth(address payable _recipient, uint256 _amount)
        internal
        returns (bool)
    {
        _recipient.transfer(_amount);
        return true;
    }

    /**
     * @dev Internal transfer altcoin function
     *
     */
    function _transferCoin(
        address _owner,
        address _contract,
        uint256 _returnAmount
    ) internal returns (bool) {
        IERC20 erc;
        erc = IERC20(_contract);
        require(
            erc.balanceOf(address(this)) >= _returnAmount,
            "Not enough funds to transfer"
        );
        require(erc.transfer(_owner, _returnAmount));
        return true;
    }

    /**@dev Adds another token to the accepted coins for printing
     *
     *
     * Calling conditions:
     *
     * - Address of the contract to be added
     * - Only can be added by founding fathers
     * */
    function addAcceptedStableCoin(address _contract, address _oracleAddress)
        public
        isOnline
        returns (bool)
    {
        require(
            hasRole(FOUNDING_FATHER, msg.sender),
            "Caller is not a Founding Father"
        );
        _acceptedStableCoins[_contract] = true;
        _contract_address_to_oracle[_contract] = _oracleAddress;
        return _acceptedStableCoins[_contract];
    }

    /**@dev Adds stimulus package to be claimed by users
     *
     *
     * Calling conditions:
     * - Only can be added by founding fathers
     * */
    function addStimulus(
        uint128 _id,
        uint256 _total_amount,
        uint256 _ending_in_days,
        uint256 _amount_to_get
    ) public isOnline returns (bool) {
        require(
            hasRole(FOUNDING_FATHER, msg.sender),
            "Caller is not a Founding Father"
        );
        require(_all_Claim_ids[_id] == false, "ID already used");
        require(_total_amount <= TreasuryReserve);
        _all_Claim_ids[_id] = true;
        _all_Claims[_id]._amount = _total_amount * 10**18;
        _all_Claims[_id]._amount_to_give = _amount_to_get;
        _all_Claims[_id]._ending = block.timestamp + (_ending_in_days * 1 days);
        return true;
    }

    /**@dev Claim a stimulus package.
     *
     * requires _id of stimulus package.
     * Calling conditions:
     * - can only claim once
     * - must not be ended
     * - must not be out of funds.
     * */
    function claimStimulus(uint128 _id) public isOnline returns (bool) {
        require(_all_Claim_ids[_id], "Claim not valid");
        require(
            _claimed_stimulus[_msgSender()][_id] == false,
            "Already claimed!"
        );
        require(
            block.timestamp <= _all_Claims[_id]._ending,
            "Stimulus package has ended"
        );
        require(
            _all_Claims[_id]._amount >= _all_Claims[_id]._amount_to_give,
            "Out of money :("
        );
        _claimed_stimulus[_msgSender()][_id] = true;
        _all_Claims[_id]._amount = _all_Claims[_id]._amount.sub(
            _all_Claims[_id]._amount_to_give * 10**18
        );
        _mint(_msgSender(), _all_Claims[_id]._amount_to_give * 10**18);
        return true;
    }

    /**  Bonding curve
     * circulating * reserve ratio / total supply
     * circulating * .10 / totalSupply
     *
     * */
    function calculateCurve() public override view returns (uint256) {
        uint256 p = (
            (_circulatingSupply.mul(10).div(100) * 10**18).div(TreasuryReserve)
        );
        if (p <= 0) {
            p = 1;
        }
        return p;
    }

    /**@dev Deposit eth and get the value of brrr based off bonding curve
     *
     *
     * */
    function printWithETH() public payable isOnline returns (bool) {
        require(
            msg.value > 0,
            "Please send money to make the printer go brrrrrrrr"
        );
        uint256 p = calculateCurve();
        uint256 amount = (msg.value.mul(10**18).div(p));
        require(amount > 0, "Not enough sent for 1 brrr");
        _deposits_eth[_msgSender()] = _deposits_eth[_msgSender()].add(
            msg.value
        );
        _mint(_msgSender(), amount);
        return true;
    }

    /**@dev Deposit alt coins and get the value of brrr based off bonding curve
     *
     *
     * */
    function printWithStablecoin(address _contract, uint256 _amount)
        public
        isOnline
        returns (bool)
    {
        require(
            _acceptedStableCoins[_contract],
            "Not accepted as a form of payment"
        );
        IERC20 erc;
        erc = IERC20(_contract);
        uint256 al = erc.allowance(_msgSender(), address(this));
        require(al >= _amount, "Token allowance not enough");
        uint256 p = calculateCurve();
        uint256 tp = getLatestPrice(_contract_address_to_oracle[_contract]);
        uint256 a = _amount.mul(tp).div(p);
        require(a > 0, "Not enough sent for 1 brrr");
        require(
            erc.transferFrom(_msgSender(), address(this), _amount),
            "Transfer failed"
        );
        _coin_deposits[_msgSender()][_contract] = _coin_deposits[_msgSender()][_contract]
            .add(_amount);
        _mint(_msgSender(), a);
        return true;
    }

    /**@dev Internal transfer from brrr3x or brrr10x in order to transfer and update balances
     *
     *
     * */
    function _transferBrr(address _contract) internal returns (bool) {
        IERC20 brr;
        brr = IERC20(_contract);
        uint256 brrbalance = brr.balanceOf(_msgSender());
        if (brrbalance > 0) {
            require(
                brr.transferFrom(_msgSender(), address(this), brrbalance),
                "Transfer failed"
            );
            _mint(_msgSender(), brrbalance);
        }
        return true;
    }

    /**@dev Transfers entire brrrX balance into brrr at 1 to 1
     *  Deposits on brrrX will not be cleared.
     *
     * */
    function convertBrrrXintoBrrr() public isOnline returns (bool) {
        _transferBrr(address(brrr3x));
        _transferBrr(address(brrr10x));
        return true;
    }

    /**@dev Deposit brrr and get the value of eth for that amount of brrr based off bonding curve
     *
     *
     * */
    function returnBrrrForETH() public isOnline returns (bool) {
        require(_deposits_eth[_msgSender()] > 0, "You have no deposits");
        require(_balances[_msgSender()] > 0, "No brrr balance");
        uint256 p = calculateWithdrawalPrice();
        uint256 r = _deposits_eth[_msgSender()].div(p).mul(10**18);
        if (_balances[_msgSender()] >= r) {
            _payBackBrrrETH(r, _msgSender(), _deposits_eth[_msgSender()]);
        } else {
            uint256 t = _balances[_msgSender()].mul(p).div(10**18);
            require(
                t <= _balances[_msgSender()],
                "More than in your balance, error with math"
            );
            _payBackBrrrETH(_balances[_msgSender()], _msgSender(), t);
        }
        _total_withdrawals[_msgSender()] = _total_withdrawals[_msgSender()].add(
            1
        );
    }

    /**@dev Deposit brrr and get the value of alt coins for that amount of brrr based off bonding curve
     *
     *
     * */
    function returnBrrrForCoins(address _contract)
        public
        isOnline
        returns (bool)
    {
        require(
            _acceptedStableCoins[_contract],
            "Not accepted as a form of payment"
        );
        require(
            _coin_deposits[_msgSender()][_contract] != 0,
            "You have no deposits"
        );
        require(_balances[_msgSender()] > 0, "No brrr balance");
        uint256 o = calculateWithdrawalPrice();
        uint256 rg = getLatestPrice(_contract_address_to_oracle[_contract]);
        uint256 y = _coin_deposits[_msgSender()][_contract].mul(rg).div(o);
        if (_balances[_msgSender()] >= y) {
            _payBackBrrrCoins(
                y,
                _msgSender(),
                _contract,
                _coin_deposits[_msgSender()][_contract]
            );
        } else {
            uint256 t = _balances[_msgSender()].mul(o).div(rg).div(10**18);
            require(
                t <= _balances[_msgSender()],
                "More than in your balance, error with math"
            );
            _payBackBrrrCoins(
                _balances[_msgSender()],
                _msgSender(),
                _contract,
                t
            );
        }
        _total_withdrawals[_msgSender()] = _total_withdrawals[_msgSender()].add(
            1
        );
    }

    /**@dev Update the total supply from tether - if tether has changed total supply.
     *
     * Makes the money printer go brrrrrrrr
     * Reward is given to whoever updates
     * */
    function brrrEvent() public isOnline returns (uint256) {
        require(
            block.timestamp >
                _all_supply_checks[_all_supply_checks.length.sub(1)]
                    ._last_check,
            "Already checked!"
        );
        uint256 l = _all_supply_checks[_all_supply_checks.length.sub(1)]
            ._last_check;
        uint256 s = _all_supply_checks[_all_supply_checks.length.sub(1)]
            ._totalSupply;
        uint256 d = Tether.totalSupply();
        require(d != s, "The supply hasn't changed");
        if (d < s) {
            supplyCheck memory sa = supplyCheck(block.timestamp, d);
            _all_supply_checks.push(sa);
            d = (s.sub(d)) * 10**12;
            uint256 reward = d.div(1000);
            d = d.sub(reward);
            _printerGoesBrrr(d);
            _giveReward(reward);
            return reward;
        }
        if (d > s) {
            supplyCheck memory sa = supplyCheck(block.timestamp, d);
            _all_supply_checks.push(sa);
            d = (d.sub(s)) * 10**12;
            uint256 reward = d.div(1000);
            d = d.sub(reward);
            _burn(d);
            _giveReward(reward);
            return reward;
        }
    }

    /**@dev In case of emgergency - withdrawal all eth.
     *
     * Contract must be offline
     *
     * */
    function EmergencyWithdrawalETH() public isOffline returns (bool) {
        require(!Online, "Contract is not turned off");
        require(_deposits_eth[_msgSender()] > 0, "You have no deposits");
        _payBackBrrrETH(
            _balances[_msgSender()],
            _msgSender(),
            _deposits_eth[_msgSender()]
        );
        return true;
    }

    /**@dev In case of emgergency - withdrawal all coins.
     *
     * Contract must be offline
     *
     * */
    function EmergencyWithdrawalCoins(address _contract)
        public
        isOffline
        returns (bool)
    {
        require(!Online, "Contract is not turned off");
        require(
            _acceptedStableCoins[_contract],
            "Not accepted as a form of payment"
        );
        require(
            _coin_deposits[_msgSender()][_contract] != 0,
            "You have no deposits"
        );
        _payBackBrrrCoins(
            _balances[_msgSender()],
            _msgSender(),
            _contract,
            _coin_deposits[_msgSender()][_contract]
        );
        return true;
    }

    /**@dev In case of emgergency - turn offline.
     *
     * Must be admin
     *
     * */
    function toggleOffline() public returns (bool) {
        require(
            hasRole(DEFAULT_ADMIN_ROLE, msg.sender),
            "Caller is not an admin"
        );
        Online = !Online;
        return true;
    }

    /**@dev Set brrrX addresses. One time, cannot be changed.
     *
     * Must be admin
     *
     * */
    function setBrrrXAddress(address _brrr3xcontract, address _brrr10xcontract)
        public
        returns (bool)
    {
        require(
            hasRole(DEFAULT_ADMIN_ROLE, msg.sender),
            "Caller is not an admin"
        );
        require(
            brrr3x == address(0x0) && brrr10x == address(0x0),
            "Already set the addresses"
        );
        if (_brrr3xcontract != address(0x0)) {
            brrr3x = _brrr3xcontract;
        }
        if (_brrr10xcontract != address(0x0)) {
            brrr10x = _brrr10xcontract;
        }
    }

    fallback() external payable {
        printWithETH();
    }
}

File 1 of 11: AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

import "./EnumerableSet.sol";
import "./Address.sol";
import "./Context.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(
        bytes32 indexed role,
        bytes32 indexed previousAdminRole,
        bytes32 indexed newAdminRole
    );

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index)
        public
        view
        returns (address)
    {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(
            hasRole(_roles[role].adminRole, _msgSender()),
            "AccessControl: sender must be an admin to grant"
        );

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(
            hasRole(_roles[role].adminRole, _msgSender()),
            "AccessControl: sender must be an admin to revoke"
        );

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(
            account == _msgSender(),
            "AccessControl: can only renounce roles for self"
        );

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 2 of 11: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;

            bytes32 accountHash
         = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 3 of 11: AggregatorInterface.sol
pragma solidity >=0.6.0;

interface AggregatorInterface {
    function latestAnswer() external view returns (int256);

    function latestTimestamp() external view returns (uint256);

    function latestRound() external view returns (uint256);

    function getAnswer(uint256 roundId) external view returns (int256);

    function getTimestamp(uint256 roundId) external view returns (uint256);

    event AnswerUpdated(
        int256 indexed current,
        uint256 indexed roundId,
        uint256 timestamp
    );
    event NewRound(
        uint256 indexed roundId,
        address indexed startedBy,
        uint256 startedAt
    );
}

File 5 of 11: Brrr10x.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

import "./Context.sol";
import "./IERC20.sol";
import "./SafeMath.sol";
import "./Address.sol";
import "./AccessControl.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 */
contract Brrr10x is Context, IERC20, AccessControl {
    bool public Online = true;
    modifier isOffline {
        _;
        require(!Online, "Contract is running still");
    }
    modifier isOnline {
        _;
        require(Online, "Contract has been turned off");
    }
    using SafeMath for uint256;
    using Address for address;
    IERC20 Tether;
    bytes32 public constant FOUNDING_FATHER = keccak256("FOUNDING_FATHER");

    mapping(address => uint256) private _balances;

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

    mapping(address => uint256) public _deposits_brrr;

    mapping(address => uint256) public _total_withdrawals;

    supplyCheck[] public _all_supply_checks;
    uint256 public TreasuryReserve;
    uint256 private _totalSupply;
    uint256 public TOTALCAP = 8000000000000000 * 10**18;

    uint256 private _circulatingSupply;
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    address public tether = 0xdAC17F958D2ee523a2206206994597C13D831ec7;
    address public brrr;

    struct supplyCheck {
        uint256 _last_check;
        uint256 _totalSupply;
    }

    event Withdraw(address indexed _reciever, uint256 indexed _amount);

    /**
     * @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,
        address _brrr
    ) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
        brrr = _brrr;
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(FOUNDING_FATHER, msg.sender);
        Tether = IERC20(tether);
        _balances[msg.sender] = 100000000 * 10**18;
        _circulatingSupply = 100000000 * 10**18;
        uint256 d = Tether.totalSupply();
        TreasuryReserve = d * 10**12;
        _totalSupply = TreasuryReserve;
        supplyCheck memory sa = supplyCheck(block.timestamp, d);
        _all_supply_checks.push(sa);
    }

    /**
     * @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 override view returns (uint256) {
        return _circulatingSupply.add(TreasuryReserve);
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public override view 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
        virtual
        override
        view
        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);

        if (msg.sender != brrr) {
            _approve(
                sender,
                _msgSender(),
                _allowances[sender][_msgSender()].sub(
                    amount,
                    "ERC20: transfer amount exceeds allowance"
                )
            );
        }
        return true;
    }

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

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

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

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

    /** @dev Creates `amount` tokens from tether burning tokens
     *
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     */
    function _printerGoesBrrr(uint256 amount) internal returns (bool) {
        require(amount > 0, "Can't mint 0 tokens");
        require(TreasuryReserve.add(amount) < cap(), "Cannot exceed cap");
        TreasuryReserve = TreasuryReserve.add(amount);
        _totalSupply = TreasuryReserve;
        emit Transfer(address(0), address(this), 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 isOnline {
        require(account != address(0), "ERC20: mint to the zero address");
        require(amount <= TreasuryReserve, "More than the reserve holds");

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

    /**
     * @dev Destroys `amount` tokens from `TreasuryReserve`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `Treasury Reserve` must have at least `amount` tokens.
     */
    function _burn(uint256 amount) internal virtual {
        if (amount <= TreasuryReserve) {
            TreasuryReserve = TreasuryReserve.sub(
                amount,
                "ERC20: burn amount exceeds Treasury Reserve"
            );
            _totalSupply = TreasuryReserve;
            emit Transfer(address(this), address(0), amount);
        } else {
            TreasuryReserve = 0;
            _totalSupply = TreasuryReserve;
            emit Transfer(address(this), address(0), amount);
        }
    }

    function _payBackBrrr(
        uint256 _brrrAmount,
        address payable _owner,
        uint256 _returnAmount
    ) internal returns (bool) {
        require(
            _deposits_brrr[_owner] >= _returnAmount,
            "More than deposit amount"
        );
        _balances[_owner] = _balances[_owner].sub(_brrrAmount);
        TreasuryReserve = TreasuryReserve.add(_brrrAmount);
        _totalSupply = TreasuryReserve;
        _circulatingSupply = _circulatingSupply.sub(_brrrAmount);
        emit Transfer(address(_owner), address(this), _brrrAmount);
        _deposits_brrr[_owner] = _deposits_brrr[_owner].sub(_returnAmount);
        _transferCoin(_owner, brrr, _returnAmount);
        emit Withdraw(address(_owner), _returnAmount);
        return true;
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 {
        _decimals = decimals_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view returns (uint256) {
        return TOTALCAP;
    }

    function calculateWithdrawalPrice() internal view returns (uint256) {
        uint256 p = calculateCurve();
        uint256 w = _total_withdrawals[_msgSender()];
        if (w < 1) {
            w = 1;
        }
        p = p.div(w);
        return p;
    }

    function _transferEth(address payable _recipient, uint256 _amount)
        internal
        returns (bool)
    {
        _recipient.transfer(_amount);
        return true;
    }

    function _transferCoin(
        address _owner,
        address _contract,
        uint256 _returnAmount
    ) internal returns (bool) {
        IERC20 erc;
        erc = IERC20(_contract);
        require(
            erc.balanceOf(address(this)) >= _returnAmount,
            "Not enough funds to transfer"
        );
        require(erc.transfer(_owner, _returnAmount));
        return true;
    }

    /**  Bonding curve
     * circulating * reserve ratio / total supply
     * circulating * .50 / totalSupply
     *
     * */
    function calculateCurve() public override view returns (uint256) {
        return (
            (_circulatingSupply.mul(50).div(100) * 10**18).div(TreasuryReserve)
        );
    }

    function printWithBrrr(uint256 _amount) public isOnline returns (bool) {
        require(brrr != address(0x0), "Brrr contract not set");
        IERC20 brr;
        brr = IERC20(brrr);
        uint256 al = brr.balanceOf(_msgSender());
        require(al >= _amount, "Token balance not enough");
        uint256 p = calculateCurve();
        uint256 tp = brr.calculateCurve();
        uint256 a = _amount.mul(tp).div(p);
        require(a > 0, "Not enough sent for 1 brrr");
        require(
            brr.transferFrom(_msgSender(), address(this), _amount),
            "Transfer failed"
        );
        _deposits_brrr[_msgSender()] = _deposits_brrr[_msgSender()].add(
            _amount
        );
        _mint(_msgSender(), a);
        return true;
    }

    function returnBrrrForBrrr() public isOnline returns (bool) {
        require(brrr != address(0x0), "Brrr contract not set");
        require(_deposits_brrr[_msgSender()] != 0, "You have no deposits");
        require(_balances[_msgSender()] > 0, "No brrr balance");
        uint256 o = calculateWithdrawalPrice();
        uint256 rg = _deposits_brrr[_msgSender()].div(o).mul(10**18);
        if (_balances[_msgSender()] >= rg) {
            _payBackBrrr(rg, _msgSender(), _deposits_brrr[_msgSender()]);
        } else {
            uint256 t = _balances[_msgSender()].mul(o).div(10**18);
            require(
                t <= _balances[_msgSender()],
                "More than in your balance, error with math"
            );
            _payBackBrrr(_balances[_msgSender()], _msgSender(), t);
        }
        _total_withdrawals[_msgSender()] = _total_withdrawals[_msgSender()].add(
            1
        );
    }

    /**@dev Update the total supply from tether - if tether has changed total supply.
     *
     * Makes the money printer go brrrrrrrr
     * Reward is given to whoever updates
     * */
    function brrrEvent() public isOnline returns (uint256) {
        require(
            block.timestamp >
                _all_supply_checks[_all_supply_checks.length.sub(1)]
                    ._last_check,
            "Already checked!"
        );
        uint256 l = _all_supply_checks[_all_supply_checks.length.sub(1)]
            ._last_check;
        uint256 s = _all_supply_checks[_all_supply_checks.length.sub(1)]
            ._totalSupply;
        uint256 d = Tether.totalSupply();
        require(d != s, "The supply hasn't changed");
        if (d < s) {
            supplyCheck memory sa = supplyCheck(block.timestamp, d);
            _all_supply_checks.push(sa);
            d = (s.sub(d)) * 10**12;
            uint256 reward = d.div(1000);
            d = d.sub(reward);
            _printerGoesBrrr(d.mul(10));
            _circulatingSupply = _circulatingSupply.add(reward);
            _balances[_msgSender()] = _balances[_msgSender()].add(reward);
            emit Transfer(address(this), address(_msgSender()), reward);
            return reward;
        }
        if (d > s) {
            supplyCheck memory sa = supplyCheck(block.timestamp, d);
            _all_supply_checks.push(sa);
            d = (d.sub(s)) * 10**12;
            uint256 reward = d.div(1000);
            d = d.sub(reward);
            _burn(d.mul(10));
            _circulatingSupply = _circulatingSupply.add(reward);
            _balances[_msgSender()] = _balances[_msgSender()].add(reward);
            emit Transfer(address(this), address(_msgSender()), reward);
            return reward;
        }
    }

    function EmergencyWithdrawal() public isOffline returns (bool) {
        require(!Online, "Contract is not turned off");
        require(_deposits_brrr[_msgSender()] > 0, "You have no deposits");
        _payBackBrrr(
            _balances[_msgSender()],
            _msgSender(),
            _deposits_brrr[_msgSender()]
        );
        return true;
    }

    function toggleOffline() public returns (bool) {
        require(
            hasRole(DEFAULT_ADMIN_ROLE, msg.sender),
            "Caller is not an admin"
        );
        Online = !Online;
        return true;
    }

    function setBrrrAddress(address _brrrcontract) public returns (bool) {
        require(
            hasRole(DEFAULT_ADMIN_ROLE, msg.sender),
            "Caller is not an admin"
        );

        require(_brrrcontract != address(0x0), "Invalid address!");
        brrr = _brrrcontract;
    }

    fallback() external payable {
        revert();
    }
}

File 6 of 11: Brrr3x.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

import "./Context.sol";
import "./IERC20.sol";
import "./SafeMath.sol";
import "./Address.sol";
import "./AccessControl.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 */
contract Brrr3x is Context, IERC20, AccessControl {
    bool public Online = true;
    modifier isOffline {
        _;
        require(!Online, "Contract is running still");
    }
    modifier isOnline {
        _;
        require(Online, "Contract has been turned off");
    }
    using SafeMath for uint256;
    using Address for address;
    IERC20 Tether;
    bytes32 public constant FOUNDING_FATHER = keccak256("FOUNDING_FATHER");

    mapping(address => uint256) private _balances;

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

    mapping(address => uint256) public _deposits_brrr;

    mapping(address => uint256) public _total_withdrawals;

    supplyCheck[] public _all_supply_checks;
    uint256 public TreasuryReserve;
    uint256 private _totalSupply;
    uint256 public TOTALCAP = 8000000000000000 * 10**18;

    uint256 private _circulatingSupply;
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    address public tether = 0xdAC17F958D2ee523a2206206994597C13D831ec7;
    address public brrr;

    struct supplyCheck {
        uint256 _last_check;
        uint256 _totalSupply;
    }

    event Withdraw(address indexed _reciever, uint256 indexed _amount);

    /**
     * @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,
        address _brrr
    ) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
        brrr = _brrr;
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(FOUNDING_FATHER, msg.sender);
        Tether = IERC20(tether);
        _balances[msg.sender] = 100000000 * 10**18;
        _circulatingSupply = 100000000 * 10**18;
        uint256 d = Tether.totalSupply();
        TreasuryReserve = d * 10**12;
        _totalSupply = TreasuryReserve;
        supplyCheck memory sa = supplyCheck(block.timestamp, d);
        _all_supply_checks.push(sa);
    }

    /**
     * @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 override view returns (uint256) {
        return _circulatingSupply.add(TreasuryReserve);
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public override view 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
        virtual
        override
        view
        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);
        if (msg.sender != brrr) {
            _approve(
                sender,
                _msgSender(),
                _allowances[sender][_msgSender()].sub(
                    amount,
                    "ERC20: transfer amount exceeds allowance"
                )
            );
        }
        return true;
    }

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

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

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

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

    /** @dev Creates `amount` tokens from tether burning tokens
     *
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     */
    function _printerGoesBrrr(uint256 amount) internal returns (bool) {
        require(amount > 0, "Can't mint 0 tokens");
        require(TreasuryReserve.add(amount) < cap(), "Cannot exceed cap");
        TreasuryReserve = TreasuryReserve.add(amount);
        _totalSupply = TreasuryReserve;
        emit Transfer(address(0), address(this), 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 isOnline {
        require(account != address(0), "ERC20: mint to the zero address");
        require(amount <= TreasuryReserve, "More than the reserve holds");

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

    /**
     * @dev Destroys `amount` tokens from `TreasuryReserve`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `Treasury Reserve` must have at least `amount` tokens.
     */
    function _burn(uint256 amount) internal virtual {
        if (amount <= TreasuryReserve) {
            TreasuryReserve = TreasuryReserve.sub(
                amount,
                "ERC20: burn amount exceeds Treasury Reserve"
            );
            _totalSupply = TreasuryReserve;
            emit Transfer(address(this), address(0), amount);
        } else {
            TreasuryReserve = 0;
            _totalSupply = TreasuryReserve;
            emit Transfer(address(this), address(0), amount);
        }
    }

    function _payBackBrrr(
        uint256 _brrrAmount,
        address payable _owner,
        uint256 _returnAmount
    ) internal returns (bool) {
        require(
            _deposits_brrr[_owner] >= _returnAmount,
            "More than deposit amount"
        );
        _balances[_owner] = _balances[_owner].sub(_brrrAmount);
        TreasuryReserve = TreasuryReserve.add(_brrrAmount);
        _totalSupply = TreasuryReserve;
        _circulatingSupply = _circulatingSupply.sub(_brrrAmount);
        emit Transfer(address(_owner), address(this), _brrrAmount);
        _deposits_brrr[_owner] = _deposits_brrr[_owner].sub(_returnAmount);
        _transferCoin(_owner, brrr, _returnAmount);
        emit Withdraw(address(_owner), _returnAmount);
        return true;
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 {
        _decimals = decimals_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view returns (uint256) {
        return TOTALCAP;
    }

    function calculateWithdrawalPrice() internal view returns (uint256) {
        uint256 p = calculateCurve();
        uint256 w = _total_withdrawals[_msgSender()];
        if (w < 1) {
            w = 1;
        }
        p = p.div(w);
        return p;
    }

    function _transferEth(address payable _recipient, uint256 _amount)
        internal
        returns (bool)
    {
        _recipient.transfer(_amount);
        return true;
    }

    function _transferCoin(
        address _owner,
        address _contract,
        uint256 _returnAmount
    ) internal returns (bool) {
        IERC20 erc;
        erc = IERC20(_contract);
        require(
            erc.balanceOf(address(this)) >= _returnAmount,
            "Not enough funds to transfer"
        );
        require(erc.transfer(_owner, _returnAmount));
        return true;
    }

    /**  Bonding curve
     * circulating * reserve ratio / total supply
     * circulating * .50 / totalSupply
     *
     * */
    function calculateCurve() public override view returns (uint256) {
        return (
            (_circulatingSupply.mul(50).div(100) * 10**18).div(TreasuryReserve)
        );
    }

    function printWithBrrr(uint256 _amount) public isOnline returns (bool) {
        require(brrr != address(0x0), "Brrr contract not set");
        IERC20 brr;
        brr = IERC20(brrr);
        uint256 al = brr.balanceOf(_msgSender());
        require(al >= _amount, "Token balance not enough");
        uint256 p = calculateCurve();
        uint256 tp = brr.calculateCurve();
        uint256 a = _amount.mul(tp).div(p);
        require(a > 0, "Not enough sent for 1 brrr");
        require(
            brr.transferFrom(_msgSender(), address(this), _amount),
            "Transfer failed"
        );
        _deposits_brrr[_msgSender()] = _deposits_brrr[_msgSender()].add(
            _amount
        );
        _mint(_msgSender(), a);
        return true;
    }

    function returnBrrrForBrrr() public isOnline returns (bool) {
        require(brrr != address(0x0), "Brrr contract not set");
        require(_deposits_brrr[_msgSender()] != 0, "You have no deposits");
        require(_balances[_msgSender()] > 0, "No brrr balance");
        uint256 o = calculateWithdrawalPrice();
        uint256 rg = _deposits_brrr[_msgSender()].div(o).mul(10**18);
        if (_balances[_msgSender()] >= rg) {
            _payBackBrrr(rg, _msgSender(), _deposits_brrr[_msgSender()]);
        } else {
            uint256 t = _balances[_msgSender()].mul(o).div(10**18);
            require(
                t <= _balances[_msgSender()],
                "More than in your balance, error with math"
            );
            _payBackBrrr(_balances[_msgSender()], _msgSender(), t);
        }
        _total_withdrawals[_msgSender()] = _total_withdrawals[_msgSender()].add(
            1
        );
    }

    /**@dev Update the total supply from tether - if tether has changed total supply.
     *
     * Makes the money printer go brrrrrrrr
     * Reward is given to whoever updates
     * */
    function brrrEvent() public isOnline returns (uint256) {
        require(
            block.timestamp >
                _all_supply_checks[_all_supply_checks.length.sub(1)]
                    ._last_check,
            "Already checked!"
        );
        uint256 l = _all_supply_checks[_all_supply_checks.length.sub(1)]
            ._last_check;
        uint256 s = _all_supply_checks[_all_supply_checks.length.sub(1)]
            ._totalSupply;
        uint256 d = Tether.totalSupply();
        require(d != s, "The supply hasn't changed");
        if (d < s) {
            supplyCheck memory sa = supplyCheck(block.timestamp, d);
            _all_supply_checks.push(sa);
            d = (s.sub(d)) * 10**12;
            uint256 reward = d.div(1000);
            d = d.sub(reward);
            _printerGoesBrrr(d.mul(3));
            _circulatingSupply = _circulatingSupply.add(reward);
            _balances[_msgSender()] = _balances[_msgSender()].add(reward);
            emit Transfer(address(this), address(_msgSender()), reward);
            return reward;
        }
        if (d > s) {
            supplyCheck memory sa = supplyCheck(block.timestamp, d);
            _all_supply_checks.push(sa);
            d = (d.sub(s)) * 10**12;
            uint256 reward = d.div(1000);
            d = d.sub(reward);
            _burn(d.mul(3));
            _circulatingSupply = _circulatingSupply.add(reward);
            _balances[_msgSender()] = _balances[_msgSender()].add(reward);
            emit Transfer(address(this), address(_msgSender()), reward);
            return reward;
        }
    }

    function EmergencyWithdrawal() public isOffline returns (bool) {
        require(!Online, "Contract is not turned off");
        require(_deposits_brrr[_msgSender()] > 0, "You have no deposits");
        _payBackBrrr(
            _balances[_msgSender()],
            _msgSender(),
            _deposits_brrr[_msgSender()]
        );
        return true;
    }

    function toggleOffline() public returns (bool) {
        require(
            hasRole(DEFAULT_ADMIN_ROLE, msg.sender),
            "Caller is not an admin"
        );
        Online = !Online;
        return true;
    }

    function setBrrrAddress(address _brrrcontract) public returns (bool) {
        require(
            hasRole(DEFAULT_ADMIN_ROLE, msg.sender),
            "Caller is not an admin"
        );

        require(_brrrcontract != address(0x0), "Invalid address!");
        brrr = _brrrcontract;
    }

    fallback() external payable {
        revert();
    }
}

File 7 of 11: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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 virtual view returns (address payable) {
        return msg.sender;
    }

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

File 8 of 11: EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256`
 * (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value)
        private
        view
        returns (bool)
    {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index)
        private
        view
        returns (bytes32)
    {
        require(
            set._values.length > index,
            "EnumerableSet: index out of bounds"
        );
        return set._values[index];
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index)
        internal
        view
        returns (address)
    {
        return address(uint256(_at(set._inner, index)));
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index)
        internal
        view
        returns (uint256)
    {
        return uint256(_at(set._inner, index));
    }
}

File 9 of 11: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

    function calculateCurve() 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
    );
}

File 10 of 11: PriceFeed.sol
pragma solidity ^0.6.7;

import "./AggregatorInterface.sol";

contract PriceFeed {
    /**
     * Network: Rinkeby
     * Aggregator: ETH/USD
     * Address: 0x0bF4e7bf3e1f6D6Dc29AA516A33134985cC3A5aA
     */
    /**
     * Returns the latest price
     */
    function getLatestPrice(address _address) internal view returns (uint256) {
        AggregatorInterface priceFeed = AggregatorInterface(_address);
        int256 p = priceFeed.latestAnswer();
        require(p > 0, "Invalid price feed!");
        return uint256(p);
    }

    /**
     * Returns the timestamp of the latest price update
     */
    function getLatestPriceTimestamp(address _address)
        internal
        view
        returns (uint256)
    {
        AggregatorInterface priceFeed = AggregatorInterface(_address);
        return priceFeed.latestTimestamp();
    }
}

File 11 of 11: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @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, 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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * 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);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        return div(a, b, "SafeMath: division by zero");
    }

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

        return c;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":true,"internalType":"address","name":"_reciever","type":"address"},{"indexed":true,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"EmergencyWithdrawalCoins","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"EmergencyWithdrawalETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"FOUNDING_FATHER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Online","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTALCAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TreasuryReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_acceptedStableCoins","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint128","name":"","type":"uint128"}],"name":"_all_Claim_ids","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint128","name":"","type":"uint128"}],"name":"_all_Claims","outputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_ending","type":"uint256"},{"internalType":"uint256","name":"_amount_to_give","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_all_supply_checks","outputs":[{"internalType":"uint256","name":"_last_check","type":"uint256"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint128","name":"","type":"uint128"}],"name":"_claimed_stimulus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"_coin_deposits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_deposits_eth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_total_withdrawals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"},{"internalType":"address","name":"_oracleAddress","type":"address"}],"name":"addAcceptedStableCoin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_id","type":"uint128"},{"internalType":"uint256","name":"_total_amount","type":"uint256"},{"internalType":"uint256","name":"_ending_in_days","type":"uint256"},{"internalType":"uint256","name":"_amount_to_get","type":"uint256"}],"name":"addStimulus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"brrr10x","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"brrr3x","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"brrrEvent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"calculateCurve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint128","name":"_id","type":"uint128"}],"name":"claimStimulus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"convertBrrrXintoBrrr","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"printWithETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"printWithStablecoin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"returnBrrrForCoins","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"returnBrrrForETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_brrr3xcontract","type":"address"},{"internalType":"address","name":"_brrr10xcontract","type":"address"}],"name":"setBrrrXAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tether","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleOffline","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040526001805460ff1916811790556e018a6e32246c99c60ad85000000000600f5560138054610100600160a81b03191674dac17f958d2ee523a2206206994597c13d831ec7001790553480156200005857600080fd5b50604051620048e2380380620048e2833981810160405260408110156200007e57600080fd5b81019080805160405193929190846401000000008211156200009f57600080fd5b908301906020820185811115620000b557600080fd5b8251640100000000811182820188101715620000d057600080fd5b82525081516020918201929091019080838360005b83811015620000ff578181015183820152602001620000e5565b50505050905090810190601f1680156200012d5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200015157600080fd5b9083019060208201858111156200016757600080fd5b82516401000000008111828201881017156200018257600080fd5b82525081516020918201929091019080838360005b83811015620001b157818101518382015260200162000197565b50505050905090810190601f168015620001df5780820380516001836020036101000a031916815260200191505b5060405250508251620001fb915060119060208501906200062b565b508051620002119060129060208401906200062b565b506013805460ff19166012179055620002356000336001600160e01b036200040d16565b604080516e2327aaa72224a723afa320aa2422a960891b8152905190819003600f0190206200026e90336001600160e01b036200040d16565b60135460018054610100600160a81b031916610100928390046001600160a01b0390811684029190911791829055604080516318160ddd60e01b81529051600094909304909116916318160ddd91600480820192602092909190829003018186803b158015620002dd57600080fd5b505afa158015620002f2573d6000803e3d6000fd5b505050506040513d60208110156200030957600080fd5b50516509184e72a0008102600d9081553360009081526002602090815260409091206aadb53acfa41aee1200000090819055601081905591549293506200035b92919062002c6262000426821b17901c565b600e819055506200037f601054600d546200042660201b62002c621790919060201c565b600d556200038c620006b0565b506040805180820190915242815260208101918252600c805460018101825560009190915290517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c760029092029182015590517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c89091015550620006e79050565b6200042282826001600160e01b036200047916565b5050565b60006200047083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250620004fb60201b60201c565b90505b92915050565b6000828152602081815260409091206200049e91839062002ca462000596821b17901c565b156200042257620004b76001600160e01b03620005b616565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081848411156200058e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200055257818101518382015260200162000538565b50505050905090810190601f168015620005805780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600062000470836001600160a01b0384166001600160e01b03620005bb16565b335b90565b6000620005d283836001600160e01b036200061316565b6200060a5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000473565b50600062000473565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200066e57805160ff19168380011785556200069e565b828001600101855582156200069e579182015b828111156200069e57825182559160200191906001019062000681565b50620006ac929150620006ca565b5090565b604051806040016040528060008152602001600081525090565b620005b891905b80821115620006ac5760008155600101620006d1565b6141eb80620006f76000396000f3fe6080604052600436106102c95760003560e01c80638073cab411610175578063a5e05129116100dc578063c3d46f7011610095578063d547741f1161006f578063d547741f14610b18578063dd62ed3e14610b51578063edf0a64a14610b8c578063fd481aed14610ba1576102c9565b8063c3d46f7014610aa6578063c84d3b1e14610abb578063ca15c87314610aee576102c9565b8063a5e05129146109a4578063a6c5ed08146109d7578063a9059cbb14610a10578063c279102514610a49578063c2e1500b14610a5e578063c36178c114610a73576102c9565b806395d89b411161012e57806395d89b41146108b6578063a217fddf146108cb578063a253c06e146108e0578063a3d71fee146108f5578063a44de50b14610930578063a457c2d71461096b576102c9565b80638073cab4146107e85780638eef8274146107fd5780638f719ded146108125780639010d07c1461084557806391d148541461087557806395516541146108ae576102c9565b80632fe5d312116102345780633a46d4f1116101ed5780635acc2bf7116101c75780635acc2bf71461073c5780635efc071a1461076f57806370a08231146107a05780637927d21c146107d3576102c9565b80633a46d4f1146106b257806357a4ab2f146106f4578063582386e614610709576102c9565b80632fe5d3121461056a578063313ce567146105bb57806334061d86146105e6578063355274ea1461062b57806336568abe146106405780633950935114610679576102c9565b80631db4d75f116102865780631db4d75f146104115780631def1ede1461044457806323b872dd14610487578063248a9ca3146104ca5780632ce705fd146104f45780632f2ff15d1461052f576102c9565b806306fdde03146102d457806309500c171461035e578063095ea7b314610385578063099e7f6c146103d25780630cadb5e3146103e757806318160ddd146103fc575b6102d1610bb6565b50005b3480156102e057600080fd5b506102e9610d3f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561032357818101518382015260200161030b565b50505050905090810190601f1680156103505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036a57600080fd5b50610373610dd5565b60408051918252519081900360200190f35b34801561039157600080fd5b506103be600480360360408110156103a857600080fd5b506001600160a01b03813516906020013561118c565b604080519115158252519081900360200190f35b3480156103de57600080fd5b506103736111aa565b3480156103f357600080fd5b506103736111b0565b34801561040857600080fd5b506103736111d7565b34801561041d57600080fd5b506103be6004803603602081101561043457600080fd5b50356001600160a01b03166111f5565b34801561045057600080fd5b5061046e6004803603602081101561046757600080fd5b50356115bc565b6040805192835260208301919091528051918290030190f35b34801561049357600080fd5b506103be600480360360608110156104aa57600080fd5b506001600160a01b038135811691602081013590911690604001356115e7565b3480156104d657600080fd5b50610373600480360360208110156104ed57600080fd5b503561169f565b34801561050057600080fd5b506103736004803603604081101561051757600080fd5b506001600160a01b03813581169160200135166116b4565b34801561053b57600080fd5b506105686004803603604081101561055257600080fd5b50803590602001356001600160a01b03166116d1565b005b34801561057657600080fd5b5061059d6004803603602081101561058d57600080fd5b50356001600160801b031661173d565b60408051938452602084019290925282820152519081900360600190f35b3480156105c757600080fd5b506105d061175e565b6040805160ff9092168252519081900360200190f35b3480156105f257600080fd5b506103be6004803603608081101561060957600080fd5b506001600160801b038135169060208101359060408101359060600135611767565b34801561063757600080fd5b506103736118f7565b34801561064c57600080fd5b506105686004803603604081101561066357600080fd5b50803590602001356001600160a01b03166118fd565b34801561068557600080fd5b506103be6004803603604081101561069c57600080fd5b506001600160a01b03813516906020013561195e565b3480156106be57600080fd5b506103be600480360360408110156106d557600080fd5b5080356001600160a01b031690602001356001600160801b03166119b2565b34801561070057600080fd5b506103be6119d2565b34801561071557600080fd5b506103be6004803603602081101561072c57600080fd5b50356001600160801b0316611cdd565b34801561074857600080fd5b506103be6004803603602081101561075f57600080fd5b50356001600160a01b0316611f98565b34801561077b57600080fd5b50610784612193565b604080516001600160a01b039092168252519081900360200190f35b3480156107ac57600080fd5b50610373600480360360208110156107c357600080fd5b50356001600160a01b03166121a7565b3480156107df57600080fd5b506103be6121c2565b3480156107f457600080fd5b5061037361222e565b34801561080957600080fd5b5061078461227a565b34801561081e57600080fd5b506103be6004803603602081101561083557600080fd5b50356001600160801b0316612289565b34801561085157600080fd5b506107846004803603604081101561086857600080fd5b508035906020013561229e565b34801561088157600080fd5b506103be6004803603604081101561089857600080fd5b50803590602001356001600160a01b03166122c3565b6103be610bb6565b3480156108c257600080fd5b506102e96122e1565b3480156108d757600080fd5b50610373612342565b3480156108ec57600080fd5b50610373612347565b34801561090157600080fd5b506103be6004803603604081101561091857600080fd5b506001600160a01b038135811691602001351661234d565b34801561093c57600080fd5b506103be6004803603604081101561095357600080fd5b506001600160a01b0381358116916020013516612461565b34801561097757600080fd5b506103be6004803603604081101561098e57600080fd5b506001600160a01b038135169060200135612587565b3480156109b057600080fd5b50610373600480360360208110156109c757600080fd5b50356001600160a01b03166125f5565b3480156109e357600080fd5b506103be600480360360408110156109fa57600080fd5b506001600160a01b038135169060200135612607565b348015610a1c57600080fd5b506103be60048036036040811015610a3357600080fd5b506001600160a01b038135169060200135612996565b348015610a5557600080fd5b506107846129aa565b348015610a6a57600080fd5b506103be6129b9565b348015610a7f57600080fd5b506103be60048036036020811015610a9657600080fd5b50356001600160a01b03166129c2565b348015610ab257600080fd5b506103736129d7565b348015610ac757600080fd5b5061037360048036036020811015610ade57600080fd5b50356001600160a01b03166129dd565b348015610afa57600080fd5b5061037360048036036020811015610b1157600080fd5b50356129ef565b348015610b2457600080fd5b5061056860048036036040811015610b3b57600080fd5b50803590602001356001600160a01b0316612a06565b348015610b5d57600080fd5b5061037360048036036040811015610b7457600080fd5b506001600160a01b0381358116916020013516612a5f565b348015610b9857600080fd5b506103be612a8a565b348015610bad57600080fd5b506103be612b00565b6000803411610bf65760405162461bcd60e51b81526004018080602001828103825260328152602001806140bc6032913960400191505060405180910390fd5b6000610c0061222e565b90506000610c2c82610c2034670de0b6b3a764000063ffffffff612cb916565b9063ffffffff612d1216565b905060008111610c83576040805162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f7567682073656e7420666f7220312062727272000000000000604482015290519081900360640190fd5b610cb93460066000610c93612d54565b6001600160a01b031681526020810191909152604001600020549063ffffffff612d5816565b60066000610cc5612d54565b6001600160a01b03168152602081019190915260400160002055610cf0610cea612d54565b82612db2565b6001925050505b60015460ff16610d3c576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b90565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dcb5780601f10610da057610100808354040283529160200191610dcb565b820191906000526020600020905b815481529060010190602001808311610dae57829003601f168201915b5050505050905090565b600c805460009190610dee90600163ffffffff612c6216565b81548110610df857fe5b9060005260206000209060020201600001544211610e50576040805162461bcd60e51b815260206004820152601060248201526f416c726561647920636865636b65642160801b604482015290519081900360640190fd5b600c805460009190610e6990600163ffffffff612c6216565b81548110610e7357fe5b60009182526020822060029091020154600c805491935090610e9c90600163ffffffff612c6216565b81548110610ea657fe5b906000526020600020906002020160010154905060006001809054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610f0957600080fd5b505afa158015610f1d573d6000803e3d6000fd5b505050506040513d6020811015610f3357600080fd5b5051905081811415610f8c576040805162461bcd60e51b815260206004820152601960248201527f54686520737570706c79206861736e2774206368616e67656400000000000000604482015290519081900360640190fd5b8181101561106f57610f9c613ee1565b506040805180820190915242815260208101828152600c805460018101825560009190915282517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c760029092029182015590517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c89091015561101e8383612c62565b64e8d4a51000029150600061103b836103e863ffffffff612d1216565b905061104d838263ffffffff612c6216565b925061105883612f45565b5061106281613038565b509450610cf79350505050565b818111156111445761107f613ee1565b506040805180820190915242815260208101828152600c805460018101825560009190915282517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c760029092029182015590517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c8909101556111018284612c62565b64e8d4a51000029150600061111e836103e863ffffffff612d1216565b9050611130838263ffffffff612c6216565b925061113b836130cf565b61106281613038565b50505060015460ff16610d3c576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b60006111a0611199612d54565b848461316c565b5060015b92915050565b600f5481565b604080516e2327aaa72224a723afa320aa2422a960891b8152905190819003600f01902081565b60006111f0600d54601054612d5890919063ffffffff16565b905090565b6001600160a01b03811660009081526004602052604081205460ff1661124c5760405162461bcd60e51b8152600401808060200182810382526021815260200180613fe86021913960400191505060405180910390fd5b60086000611258612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918616815292529020546112ca576040805162461bcd60e51b8152602060048201526014602482015273596f752068617665206e6f206465706f7369747360601b604482015290519081900360640190fd5b6000600260006112d8612d54565b6001600160a01b03166001600160a01b03168152602001908152602001600020541161133d576040805162461bcd60e51b815260206004820152600f60248201526e4e6f20627272722062616c616e636560881b604482015290519081900360640190fd5b6000611347613258565b6001600160a01b038085166000908152600560205260408120549293509161136f91166132ba565b905060006113bd83610c208460086000611387612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549063ffffffff612cb916565b905080600260006113cc612d54565b6001600160a01b03166001600160a01b0316815260200190815260200160002054106114405761143a816113fe612d54565b876008600061140b612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054613374565b50611537565b6000611488670de0b6b3a7640000610c2085610c208860026000611462612d54565b6001600160a01b031681526020810191909152604001600020549063ffffffff612cb916565b905060026000611496612d54565b6001600160a01b03166001600160a01b03168152602001908152602001600020548111156114f55760405162461bcd60e51b815260040180806020018281038252602a815260200180614072602a913960400191505060405180910390fd5b61153460026000611504612d54565b6001600160a01b03166001600160a01b031681526020019081526020016000205461152d612d54565b8884613374565b50505b611548600160076000610c93612d54565b60076000611554612d54565b6001600160a01b03168152602081019190915260400160002055505060015460ff1690506115b7576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b919050565b600c81815481106115c957fe5b60009182526020909120600290910201805460019091015490915082565b60006115f4848484613535565b6014546001600160a01b0316331480159061161a57506015546001600160a01b03163314155b15611695576116958461162b612d54565b6116908560405180606001604052806028815260200161402a602891396001600160a01b038a16600090815260036020526040812090611669612d54565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61368116565b61316c565b5060019392505050565b60009081526020819052604090206002015490565b600860209081526000928352604080842090915290825290205481565b6000828152602081905260409020600201546116f4906116ef612d54565b6122c3565b61172f5760405162461bcd60e51b815260040180806020018281038252602f815260200180613f41602f913960400191505060405180910390fd5b6117398282613718565b5050565b600b6020526000908152604090208054600182015460029092015490919083565b60135460ff1690565b604080516e2327aaa72224a723afa320aa2422a960891b8152905190819003600f01902060009061179890336122c3565b6117e9576040805162461bcd60e51b815260206004820152601f60248201527f43616c6c6572206973206e6f74206120466f756e64696e672046617468657200604482015290519081900360640190fd5b6001600160801b0385166000908152600a602052604090205460ff1615611849576040805162461bcd60e51b815260206004820152600f60248201526e125108185b1c9958591e481d5cd959608a1b604482015290519081900360640190fd5b600d5484111561185857600080fd5b506001600160801b0384166000908152600a60209081526040808320805460ff19166001908117909155600b909252909120670de0b6b3a7640000850281556002810183905542620151808502019082015560015460ff166118ef576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b949350505050565b600f5490565b611905612d54565b6001600160a01b0316816001600160a01b0316146119545760405162461bcd60e51b815260040180806020018281038252602f815260200180614187602f913960400191505060405180910390fd5b6117398282613787565b60006111a061196b612d54565b84611690856003600061197c612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff612d5816565b600960209081526000928352604080842090915290825290205460ff1681565b600080600660006119e1612d54565b6001600160a01b03166001600160a01b031681526020019081526020016000205411611a4b576040805162461bcd60e51b8152602060048201526014602482015273596f752068617665206e6f206465706f7369747360601b604482015290519081900360640190fd5b600060026000611a59612d54565b6001600160a01b03166001600160a01b031681526020019081526020016000205411611abe576040805162461bcd60e51b815260206004820152600f60248201526e4e6f20627272722062616c616e636560881b604482015290519081900360640190fd5b6000611ac8613258565b90506000611b1a670de0b6b3a7640000611b0e8460066000611ae8612d54565b6001600160a01b031681526020810191909152604001600020549063ffffffff612d1216565b9063ffffffff612cb916565b90508060026000611b29612d54565b6001600160a01b03166001600160a01b031681526020019081526020016000205410611b9357611b8d81611b5b612d54565b60066000611b67612d54565b6001600160a01b03166001600160a01b03168152602001908152602001600020546137f6565b50611c5f565b6000611bb1670de0b6b3a7640000610c208560026000611462612d54565b905060026000611bbf612d54565b6001600160a01b03166001600160a01b0316815260200190815260200160002054811115611c1e5760405162461bcd60e51b815260040180806020018281038252602a815260200180614072602a913960400191505060405180910390fd5b611c5c60026000611c2d612d54565b6001600160a01b03166001600160a01b0316815260200190815260200160002054611c56612d54565b836137f6565b50505b611c70600160076000610c93612d54565b60076000611c7c612d54565b6001600160a01b03168152602081019190915260400160002055505060015460ff16610d3c576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b6001600160801b0381166000908152600a602052604081205460ff16611d3c576040805162461bcd60e51b815260206004820152600f60248201526e10db185a5b481b9bdd081d985b1a59608a1b604482015290519081900360640190fd5b60096000611d48612d54565b6001600160a01b03168152602080820192909252604090810160009081206001600160801b038616825290925290205460ff1615611dc0576040805162461bcd60e51b815260206004820152601060248201526f416c726561647920636c61696d65642160801b604482015290519081900360640190fd5b6001600160801b0382166000908152600b6020526040902060010154421115611e30576040805162461bcd60e51b815260206004820152601a60248201527f5374696d756c7573207061636b6167652068617320656e646564000000000000604482015290519081900360640190fd5b6001600160801b0382166000908152600b60205260409020600281015490541015611e94576040805162461bcd60e51b815260206004820152600f60248201526e09eeae840decc40dadedccaf240745608b1b604482015290519081900360640190fd5b600160096000611ea2612d54565b6001600160a01b03168152602080820192909252604090810160009081206001600160801b03871682528352818120805460ff191694151594909417909355600b909152902060028101549054611f0291670de0b6b3a764000002612c62565b6001600160801b0383166000908152600b6020526040902055611f51611f26612d54565b6001600160801b0384166000908152600b6020526040902060020154670de0b6b3a764000002612db2565b506001805460ff166115b7576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b60015460009060ff1615611ff3576040805162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f74207475726e6564206f6666000000000000604482015290519081900360640190fd5b6001600160a01b03821660009081526004602052604090205460ff1661204a5760405162461bcd60e51b8152600401808060200182810382526021815260200180613fe86021913960400191505060405180910390fd5b60086000612056612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918616815292529020546120c8576040805162461bcd60e51b8152602060048201526014602482015273596f752068617665206e6f206465706f7369747360601b604482015290519081900360640190fd5b61213c600260006120d7612d54565b6001600160a01b03166001600160a01b0316815260200190815260200160002054612100612d54565b846008600061210d612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918a1681529252902054613374565b50506001805460ff16156115b7576040805162461bcd60e51b815260206004820152601960248201527810dbdb9d1c9858dd081a5cc81c9d5b9b9a5b99c81cdd1a5b1b603a1b604482015290519081900360640190fd5b60135461010090046001600160a01b031681565b6001600160a01b031660009081526002602052604090205490565b60006121ce81336122c3565b612218576040805162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1030b71030b236b4b760511b604482015290519081900360640190fd5b506001805460ff19811660ff9091161517815590565b600080612268600d546122526064610c20600a601054612cb990919063ffffffff16565b670de0b6b3a7640000029063ffffffff612d1216565b9050600081116111f057506001905090565b6014546001600160a01b031681565b600a6020526000908152604090205460ff1681565b60008281526020819052604081206122bc908363ffffffff61398c16565b9392505050565b60008281526020819052604081206122bc908363ffffffff61399816565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dcb5780601f10610da057610100808354040283529160200191610dcb565b600081565b60105481565b604080516e2327aaa72224a723afa320aa2422a960891b8152905190819003600f01902060009061237e90336122c3565b6123cf576040805162461bcd60e51b815260206004820152601f60248201527f43616c6c6572206973206e6f74206120466f756e64696e672046617468657200604482015290519081900360640190fd5b506001600160a01b038083166000908152600460208181526040808420805460ff1916600117815560058352932080549486166001600160a01b0319909516949094179093559091525460ff1660015460ff166111a4576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b600061246d81336122c3565b6124b7576040805162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1030b71030b236b4b760511b604482015290519081900360640190fd5b6014546001600160a01b03161580156124d957506015546001600160a01b0316155b61252a576040805162461bcd60e51b815260206004820152601960248201527f416c726561647920736574207468652061646472657373657300000000000000604482015290519081900360640190fd5b6001600160a01b0383161561255557601480546001600160a01b0319166001600160a01b0385161790555b6001600160a01b038216156111a457601580546001600160a01b0384166001600160a01b031990911617905592915050565b60006111a0612594612d54565b846116908560405180606001604052806025815260200161416260259139600360006125be612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61368116565b60076020526000908152604090205481565b6001600160a01b03821660009081526004602052604081205460ff1661265e5760405162461bcd60e51b8152600401808060200182810382526021815260200180613fe86021913960400191505060405180910390fd5b8260006001600160a01b03821663dd62ed3e612678612d54565b604080516001600160e01b031960e085901b1681526001600160a01b039092166004830152306024830152516044808301926020929190829003018186803b1580156126c357600080fd5b505afa1580156126d7573d6000803e3d6000fd5b505050506040513d60208110156126ed57600080fd5b5051905083811015612746576040805162461bcd60e51b815260206004820152601a60248201527f546f6b656e20616c6c6f77616e6365206e6f7420656e6f756768000000000000604482015290519081900360640190fd5b600061275061222e565b6001600160a01b038088166000908152600560205260408120549293509161277891166132ba565b9050600061279083610c20898563ffffffff612cb916565b9050600081116127e7576040805162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f7567682073656e7420666f7220312062727272000000000000604482015290519081900360640190fd5b846001600160a01b03166323b872dd6127fe612d54565b604080516001600160e01b031960e085901b1681526001600160a01b039092166004830152306024830152604482018b90525160648083019260209291908290030181600087803b15801561285257600080fd5b505af1158015612866573d6000803e3d6000fd5b505050506040513d602081101561287c57600080fd5b50516128c1576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b61290787600860006128d1612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918e16815292529020549063ffffffff612d5816565b60086000612913612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902055612948610cea612d54565b60019550505050505060015460ff166111a4576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b60006111a06129a3612d54565b8484613535565b6015546001600160a01b031681565b60015460ff1681565b60046020526000908152604090205460ff1681565b600d5481565b60066020526000908152604090205481565b60008181526020819052604081206111a4906139ad565b600082815260208190526040902060020154612a24906116ef612d54565b6119545760405162461bcd60e51b8152600401808060200182810382526030815260200180613fb86030913960400191505060405180910390fd5b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b601454600090612aa2906001600160a01b03166139b8565b50601554612ab8906001600160a01b03166139b8565b50506001805460ff16610d3c576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b60015460009060ff1615612b5b576040805162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f74207475726e6564206f6666000000000000604482015290519081900360640190fd5b600060066000612b69612d54565b6001600160a01b03166001600160a01b031681526020019081526020016000205411612bd3576040805162461bcd60e51b8152602060048201526014602482015273596f752068617665206e6f206465706f7369747360601b604482015290519081900360640190fd5b612c0b60026000612be2612d54565b6001600160a01b03166001600160a01b0316815260200190815260200160002054611b5b612d54565b50506001805460ff1615610d3c576040805162461bcd60e51b815260206004820152601960248201527810dbdb9d1c9858dd081a5cc81c9d5b9b9a5b99c81cdd1a5b1b603a1b604482015290519081900360640190fd5b60006122bc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613681565b60006122bc836001600160a01b038416613b32565b600082612cc8575060006111a4565b82820282848281612cd557fe5b04146122bc5760405162461bcd60e51b81526004018080602001828103825260218152602001806140096021913960400191505060405180910390fd5b60006122bc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613b7c565b3390565b6000828201838110156122bc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216612e0d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600d54811115612e64576040805162461bcd60e51b815260206004820152601b60248201527f4d6f7265207468616e20746865207265736572766520686f6c64730000000000604482015290519081900360640190fd5b601054612e77908263ffffffff612d5816565b601055600d54612e8d908263ffffffff612c6216565b600d819055600e556001600160a01b038216600090815260026020526040902054612ebe908263ffffffff612d5816565b6001600160a01b038316600081815260026020908152604080832094909455835185815293519293919260008051602061409c8339815191529281900390910190a360015460ff16611739576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b6000808211612f91576040805162461bcd60e51b815260206004820152601360248201527243616e2774206d696e74203020746f6b656e7360681b604482015290519081900360640190fd5b612f996118f7565b600d54612fac908463ffffffff612d5816565b10612ff2576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74206578636565642063617607c1b604482015290519081900360640190fd5b600d54613005908363ffffffff612d5816565b600d819055600e55604080518381529051309160009160008051602061409c8339815191529181900360200190a3919050565b60105460009061304e908363ffffffff612d5816565b6010556130618260026000610c93612d54565b6002600061306d612d54565b6001600160a01b0316815260208101919091526040016000205561308f612d54565b6001600160a01b0316306001600160a01b031660008051602061409c833981519152846040518082815260200191505060405180910390a3506001919050565b600d54811161313857613105816040518060600160405280602b8152602001614137602b9139600d54919063ffffffff61368116565b600d819055600e55604080518281529051600091309160008051602061409c8339815191529181900360200190a3613169565b6000600d819055600e819055604080518381529051309160008051602061409c833981519152919081900360200190a35b50565b6001600160a01b0383166131b15760405162461bcd60e51b81526004018080602001828103825260248152602001806141136024913960400191505060405180910390fd5b6001600160a01b0382166131f65760405162461bcd60e51b8152600401808060200182810382526022815260200180613f706022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008061326361222e565b9050600060076000613273612d54565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905060018110156132a3575060015b6132b3828263ffffffff612d1216565b9250505090565b6000808290506000816001600160a01b03166350d25bcd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156132fb57600080fd5b505afa15801561330f573d6000803e3d6000fd5b505050506040513d602081101561332557600080fd5b50519050600081136122bc576040805162461bcd60e51b8152602060048201526013602482015272496e76616c696420707269636520666565642160681b604482015290519081900360640190fd5b6001600160a01b0380841660009081526008602090815260408083209386168352929052908120548211156133eb576040805162461bcd60e51b8152602060048201526018602482015277135bdc99481d1a185b8819195c1bdcda5d08185b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b038416600090815260026020526040902054613414908663ffffffff612c6216565b6001600160a01b038516600090815260026020526040902055600d54613440908663ffffffff612d5816565b600d819055600e5560105461345b908663ffffffff612c6216565b60105560408051868152905130916001600160a01b0387169160008051602061409c8339815191529181900360200190a36001600160a01b038085166000908152600860209081526040808320938716835292905220546134c2908363ffffffff612c6216565b6001600160a01b038086166000908152600860209081526040808320938816835292905220556134f3848484613be1565b5060405182906001600160a01b038616907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436490600090a3506001949350505050565b6001600160a01b03831661357a5760405162461bcd60e51b81526004018080602001828103825260258152602001806140ee6025913960400191505060405180910390fd5b6001600160a01b0382166135bf5760405162461bcd60e51b8152600401808060200182810382526023815260200180613f1e6023913960400191505060405180910390fd5b61360281604051806060016040528060268152602001613f92602691396001600160a01b038616600090815260026020526040902054919063ffffffff61368116565b6001600160a01b038085166000908152600260205260408082209390935590841681522054613637908263ffffffff612d5816565b6001600160a01b03808416600081815260026020908152604091829020949094558051858152905191939287169260008051602061409c83398151915292918290030190a3505050565b600081848411156137105760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156136d55781810151838201526020016136bd565b50505050905090810190601f1680156137025780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828152602081905260409020613736908263ffffffff612ca416565b1561173957613743612d54565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020819052604090206137a5908263ffffffff613d4e16565b15611739576137b2612d54565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6001600160a01b03821660009081526006602052604081205482111561385e576040805162461bcd60e51b8152602060048201526018602482015277135bdc99481d1a185b8819195c1bdcda5d08185b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b038316600090815260026020526040902054613887908563ffffffff612c6216565b6001600160a01b038416600090815260026020526040902055600d546138b3908563ffffffff612d5816565b600d819055600e556010546138ce908563ffffffff612c6216565b60105560408051858152905130916001600160a01b0386169160008051602061409c8339815191529181900360200190a36001600160a01b038316600090815260066020526040902054613928908363ffffffff612c6216565b6001600160a01b03841660009081526006602052604090205561394b8383613d63565b5060405182906001600160a01b038516907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436490600090a35060019392505050565b60006122bc8383613d9b565b60006122bc836001600160a01b038416613dff565b60006111a482613e17565b600081816001600160a01b0382166370a082316139d3612d54565b6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015613a1957600080fd5b505afa158015613a2d573d6000803e3d6000fd5b505050506040513d6020811015613a4357600080fd5b50519050801561169557816001600160a01b03166323b872dd613a64612d54565b604080516001600160e01b031960e085901b1681526001600160a01b039092166004830152306024830152604482018590525160648083019260209291908290030181600087803b158015613ab857600080fd5b505af1158015613acc573d6000803e3d6000fd5b505050506040513d6020811015613ae257600080fd5b5051613b27576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b611695610cea612d54565b6000613b3e8383613dff565b613b74575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556111a4565b5060006111a4565b60008183613bcb5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156136d55781810151838201526020016136bd565b506000838581613bd757fe5b0495945050505050565b604080516370a0823160e01b81523060048201529051600091849184916001600160a01b038416916370a0823191602480820192602092909190829003018186803b158015613c2f57600080fd5b505afa158015613c43573d6000803e3d6000fd5b505050506040513d6020811015613c5957600080fd5b50511015613cae576040805162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682066756e647320746f207472616e7366657200000000604482015290519081900360640190fd5b806001600160a01b031663a9059cbb86856040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015613d0e57600080fd5b505af1158015613d22573d6000803e3d6000fd5b505050506040513d6020811015613d3857600080fd5b5051613d4357600080fd5b506001949350505050565b60006122bc836001600160a01b038416613e1b565b6040516000906001600160a01b0384169083156108fc0290849084818181858888f19350505050158015611695573d6000803e3d6000fd5b81546000908210613ddd5760405162461bcd60e51b8152600401808060200182810382526022815260200180613efc6022913960400191505060405180910390fd5b826000018281548110613dec57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60008181526001830160205260408120548015613ed75783546000198083019190810190600090879083908110613e4e57fe5b9060005260206000200154905080876000018481548110613e6b57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080613e9b57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506111a4565b60009150506111a4565b60405180604001604052806000815260200160008152509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654e6f74206163636570746564206173206120666f726d206f66207061796d656e74536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420686173206265656e207475726e6564206f6666000000004d6f7265207468616e20696e20796f75722062616c616e63652c206572726f722077697468206d617468ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef506c656173652073656e64206d6f6e657920746f206d616b6520746865207072696e74657220676f2062727272727272727245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a206275726e20616d6f756e742065786365656473205472656173757279205265736572766545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220d4aa3307d78b7d56f7f87ccecca403645a09e583d93ea0bbc851eb1f775bd4bc64736f6c63430006080033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007425252522e66690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044252525200000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80638073cab411610175578063a5e05129116100dc578063c3d46f7011610095578063d547741f1161006f578063d547741f14610b18578063dd62ed3e14610b51578063edf0a64a14610b8c578063fd481aed14610ba1576102c9565b8063c3d46f7014610aa6578063c84d3b1e14610abb578063ca15c87314610aee576102c9565b8063a5e05129146109a4578063a6c5ed08146109d7578063a9059cbb14610a10578063c279102514610a49578063c2e1500b14610a5e578063c36178c114610a73576102c9565b806395d89b411161012e57806395d89b41146108b6578063a217fddf146108cb578063a253c06e146108e0578063a3d71fee146108f5578063a44de50b14610930578063a457c2d71461096b576102c9565b80638073cab4146107e85780638eef8274146107fd5780638f719ded146108125780639010d07c1461084557806391d148541461087557806395516541146108ae576102c9565b80632fe5d312116102345780633a46d4f1116101ed5780635acc2bf7116101c75780635acc2bf71461073c5780635efc071a1461076f57806370a08231146107a05780637927d21c146107d3576102c9565b80633a46d4f1146106b257806357a4ab2f146106f4578063582386e614610709576102c9565b80632fe5d3121461056a578063313ce567146105bb57806334061d86146105e6578063355274ea1461062b57806336568abe146106405780633950935114610679576102c9565b80631db4d75f116102865780631db4d75f146104115780631def1ede1461044457806323b872dd14610487578063248a9ca3146104ca5780632ce705fd146104f45780632f2ff15d1461052f576102c9565b806306fdde03146102d457806309500c171461035e578063095ea7b314610385578063099e7f6c146103d25780630cadb5e3146103e757806318160ddd146103fc575b6102d1610bb6565b50005b3480156102e057600080fd5b506102e9610d3f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561032357818101518382015260200161030b565b50505050905090810190601f1680156103505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036a57600080fd5b50610373610dd5565b60408051918252519081900360200190f35b34801561039157600080fd5b506103be600480360360408110156103a857600080fd5b506001600160a01b03813516906020013561118c565b604080519115158252519081900360200190f35b3480156103de57600080fd5b506103736111aa565b3480156103f357600080fd5b506103736111b0565b34801561040857600080fd5b506103736111d7565b34801561041d57600080fd5b506103be6004803603602081101561043457600080fd5b50356001600160a01b03166111f5565b34801561045057600080fd5b5061046e6004803603602081101561046757600080fd5b50356115bc565b6040805192835260208301919091528051918290030190f35b34801561049357600080fd5b506103be600480360360608110156104aa57600080fd5b506001600160a01b038135811691602081013590911690604001356115e7565b3480156104d657600080fd5b50610373600480360360208110156104ed57600080fd5b503561169f565b34801561050057600080fd5b506103736004803603604081101561051757600080fd5b506001600160a01b03813581169160200135166116b4565b34801561053b57600080fd5b506105686004803603604081101561055257600080fd5b50803590602001356001600160a01b03166116d1565b005b34801561057657600080fd5b5061059d6004803603602081101561058d57600080fd5b50356001600160801b031661173d565b60408051938452602084019290925282820152519081900360600190f35b3480156105c757600080fd5b506105d061175e565b6040805160ff9092168252519081900360200190f35b3480156105f257600080fd5b506103be6004803603608081101561060957600080fd5b506001600160801b038135169060208101359060408101359060600135611767565b34801561063757600080fd5b506103736118f7565b34801561064c57600080fd5b506105686004803603604081101561066357600080fd5b50803590602001356001600160a01b03166118fd565b34801561068557600080fd5b506103be6004803603604081101561069c57600080fd5b506001600160a01b03813516906020013561195e565b3480156106be57600080fd5b506103be600480360360408110156106d557600080fd5b5080356001600160a01b031690602001356001600160801b03166119b2565b34801561070057600080fd5b506103be6119d2565b34801561071557600080fd5b506103be6004803603602081101561072c57600080fd5b50356001600160801b0316611cdd565b34801561074857600080fd5b506103be6004803603602081101561075f57600080fd5b50356001600160a01b0316611f98565b34801561077b57600080fd5b50610784612193565b604080516001600160a01b039092168252519081900360200190f35b3480156107ac57600080fd5b50610373600480360360208110156107c357600080fd5b50356001600160a01b03166121a7565b3480156107df57600080fd5b506103be6121c2565b3480156107f457600080fd5b5061037361222e565b34801561080957600080fd5b5061078461227a565b34801561081e57600080fd5b506103be6004803603602081101561083557600080fd5b50356001600160801b0316612289565b34801561085157600080fd5b506107846004803603604081101561086857600080fd5b508035906020013561229e565b34801561088157600080fd5b506103be6004803603604081101561089857600080fd5b50803590602001356001600160a01b03166122c3565b6103be610bb6565b3480156108c257600080fd5b506102e96122e1565b3480156108d757600080fd5b50610373612342565b3480156108ec57600080fd5b50610373612347565b34801561090157600080fd5b506103be6004803603604081101561091857600080fd5b506001600160a01b038135811691602001351661234d565b34801561093c57600080fd5b506103be6004803603604081101561095357600080fd5b506001600160a01b0381358116916020013516612461565b34801561097757600080fd5b506103be6004803603604081101561098e57600080fd5b506001600160a01b038135169060200135612587565b3480156109b057600080fd5b50610373600480360360208110156109c757600080fd5b50356001600160a01b03166125f5565b3480156109e357600080fd5b506103be600480360360408110156109fa57600080fd5b506001600160a01b038135169060200135612607565b348015610a1c57600080fd5b506103be60048036036040811015610a3357600080fd5b506001600160a01b038135169060200135612996565b348015610a5557600080fd5b506107846129aa565b348015610a6a57600080fd5b506103be6129b9565b348015610a7f57600080fd5b506103be60048036036020811015610a9657600080fd5b50356001600160a01b03166129c2565b348015610ab257600080fd5b506103736129d7565b348015610ac757600080fd5b5061037360048036036020811015610ade57600080fd5b50356001600160a01b03166129dd565b348015610afa57600080fd5b5061037360048036036020811015610b1157600080fd5b50356129ef565b348015610b2457600080fd5b5061056860048036036040811015610b3b57600080fd5b50803590602001356001600160a01b0316612a06565b348015610b5d57600080fd5b5061037360048036036040811015610b7457600080fd5b506001600160a01b0381358116916020013516612a5f565b348015610b9857600080fd5b506103be612a8a565b348015610bad57600080fd5b506103be612b00565b6000803411610bf65760405162461bcd60e51b81526004018080602001828103825260328152602001806140bc6032913960400191505060405180910390fd5b6000610c0061222e565b90506000610c2c82610c2034670de0b6b3a764000063ffffffff612cb916565b9063ffffffff612d1216565b905060008111610c83576040805162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f7567682073656e7420666f7220312062727272000000000000604482015290519081900360640190fd5b610cb93460066000610c93612d54565b6001600160a01b031681526020810191909152604001600020549063ffffffff612d5816565b60066000610cc5612d54565b6001600160a01b03168152602081019190915260400160002055610cf0610cea612d54565b82612db2565b6001925050505b60015460ff16610d3c576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b90565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dcb5780601f10610da057610100808354040283529160200191610dcb565b820191906000526020600020905b815481529060010190602001808311610dae57829003601f168201915b5050505050905090565b600c805460009190610dee90600163ffffffff612c6216565b81548110610df857fe5b9060005260206000209060020201600001544211610e50576040805162461bcd60e51b815260206004820152601060248201526f416c726561647920636865636b65642160801b604482015290519081900360640190fd5b600c805460009190610e6990600163ffffffff612c6216565b81548110610e7357fe5b60009182526020822060029091020154600c805491935090610e9c90600163ffffffff612c6216565b81548110610ea657fe5b906000526020600020906002020160010154905060006001809054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610f0957600080fd5b505afa158015610f1d573d6000803e3d6000fd5b505050506040513d6020811015610f3357600080fd5b5051905081811415610f8c576040805162461bcd60e51b815260206004820152601960248201527f54686520737570706c79206861736e2774206368616e67656400000000000000604482015290519081900360640190fd5b8181101561106f57610f9c613ee1565b506040805180820190915242815260208101828152600c805460018101825560009190915282517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c760029092029182015590517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c89091015561101e8383612c62565b64e8d4a51000029150600061103b836103e863ffffffff612d1216565b905061104d838263ffffffff612c6216565b925061105883612f45565b5061106281613038565b509450610cf79350505050565b818111156111445761107f613ee1565b506040805180820190915242815260208101828152600c805460018101825560009190915282517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c760029092029182015590517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c8909101556111018284612c62565b64e8d4a51000029150600061111e836103e863ffffffff612d1216565b9050611130838263ffffffff612c6216565b925061113b836130cf565b61106281613038565b50505060015460ff16610d3c576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b60006111a0611199612d54565b848461316c565b5060015b92915050565b600f5481565b604080516e2327aaa72224a723afa320aa2422a960891b8152905190819003600f01902081565b60006111f0600d54601054612d5890919063ffffffff16565b905090565b6001600160a01b03811660009081526004602052604081205460ff1661124c5760405162461bcd60e51b8152600401808060200182810382526021815260200180613fe86021913960400191505060405180910390fd5b60086000611258612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918616815292529020546112ca576040805162461bcd60e51b8152602060048201526014602482015273596f752068617665206e6f206465706f7369747360601b604482015290519081900360640190fd5b6000600260006112d8612d54565b6001600160a01b03166001600160a01b03168152602001908152602001600020541161133d576040805162461bcd60e51b815260206004820152600f60248201526e4e6f20627272722062616c616e636560881b604482015290519081900360640190fd5b6000611347613258565b6001600160a01b038085166000908152600560205260408120549293509161136f91166132ba565b905060006113bd83610c208460086000611387612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549063ffffffff612cb916565b905080600260006113cc612d54565b6001600160a01b03166001600160a01b0316815260200190815260200160002054106114405761143a816113fe612d54565b876008600061140b612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054613374565b50611537565b6000611488670de0b6b3a7640000610c2085610c208860026000611462612d54565b6001600160a01b031681526020810191909152604001600020549063ffffffff612cb916565b905060026000611496612d54565b6001600160a01b03166001600160a01b03168152602001908152602001600020548111156114f55760405162461bcd60e51b815260040180806020018281038252602a815260200180614072602a913960400191505060405180910390fd5b61153460026000611504612d54565b6001600160a01b03166001600160a01b031681526020019081526020016000205461152d612d54565b8884613374565b50505b611548600160076000610c93612d54565b60076000611554612d54565b6001600160a01b03168152602081019190915260400160002055505060015460ff1690506115b7576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b919050565b600c81815481106115c957fe5b60009182526020909120600290910201805460019091015490915082565b60006115f4848484613535565b6014546001600160a01b0316331480159061161a57506015546001600160a01b03163314155b15611695576116958461162b612d54565b6116908560405180606001604052806028815260200161402a602891396001600160a01b038a16600090815260036020526040812090611669612d54565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61368116565b61316c565b5060019392505050565b60009081526020819052604090206002015490565b600860209081526000928352604080842090915290825290205481565b6000828152602081905260409020600201546116f4906116ef612d54565b6122c3565b61172f5760405162461bcd60e51b815260040180806020018281038252602f815260200180613f41602f913960400191505060405180910390fd5b6117398282613718565b5050565b600b6020526000908152604090208054600182015460029092015490919083565b60135460ff1690565b604080516e2327aaa72224a723afa320aa2422a960891b8152905190819003600f01902060009061179890336122c3565b6117e9576040805162461bcd60e51b815260206004820152601f60248201527f43616c6c6572206973206e6f74206120466f756e64696e672046617468657200604482015290519081900360640190fd5b6001600160801b0385166000908152600a602052604090205460ff1615611849576040805162461bcd60e51b815260206004820152600f60248201526e125108185b1c9958591e481d5cd959608a1b604482015290519081900360640190fd5b600d5484111561185857600080fd5b506001600160801b0384166000908152600a60209081526040808320805460ff19166001908117909155600b909252909120670de0b6b3a7640000850281556002810183905542620151808502019082015560015460ff166118ef576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b949350505050565b600f5490565b611905612d54565b6001600160a01b0316816001600160a01b0316146119545760405162461bcd60e51b815260040180806020018281038252602f815260200180614187602f913960400191505060405180910390fd5b6117398282613787565b60006111a061196b612d54565b84611690856003600061197c612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff612d5816565b600960209081526000928352604080842090915290825290205460ff1681565b600080600660006119e1612d54565b6001600160a01b03166001600160a01b031681526020019081526020016000205411611a4b576040805162461bcd60e51b8152602060048201526014602482015273596f752068617665206e6f206465706f7369747360601b604482015290519081900360640190fd5b600060026000611a59612d54565b6001600160a01b03166001600160a01b031681526020019081526020016000205411611abe576040805162461bcd60e51b815260206004820152600f60248201526e4e6f20627272722062616c616e636560881b604482015290519081900360640190fd5b6000611ac8613258565b90506000611b1a670de0b6b3a7640000611b0e8460066000611ae8612d54565b6001600160a01b031681526020810191909152604001600020549063ffffffff612d1216565b9063ffffffff612cb916565b90508060026000611b29612d54565b6001600160a01b03166001600160a01b031681526020019081526020016000205410611b9357611b8d81611b5b612d54565b60066000611b67612d54565b6001600160a01b03166001600160a01b03168152602001908152602001600020546137f6565b50611c5f565b6000611bb1670de0b6b3a7640000610c208560026000611462612d54565b905060026000611bbf612d54565b6001600160a01b03166001600160a01b0316815260200190815260200160002054811115611c1e5760405162461bcd60e51b815260040180806020018281038252602a815260200180614072602a913960400191505060405180910390fd5b611c5c60026000611c2d612d54565b6001600160a01b03166001600160a01b0316815260200190815260200160002054611c56612d54565b836137f6565b50505b611c70600160076000610c93612d54565b60076000611c7c612d54565b6001600160a01b03168152602081019190915260400160002055505060015460ff16610d3c576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b6001600160801b0381166000908152600a602052604081205460ff16611d3c576040805162461bcd60e51b815260206004820152600f60248201526e10db185a5b481b9bdd081d985b1a59608a1b604482015290519081900360640190fd5b60096000611d48612d54565b6001600160a01b03168152602080820192909252604090810160009081206001600160801b038616825290925290205460ff1615611dc0576040805162461bcd60e51b815260206004820152601060248201526f416c726561647920636c61696d65642160801b604482015290519081900360640190fd5b6001600160801b0382166000908152600b6020526040902060010154421115611e30576040805162461bcd60e51b815260206004820152601a60248201527f5374696d756c7573207061636b6167652068617320656e646564000000000000604482015290519081900360640190fd5b6001600160801b0382166000908152600b60205260409020600281015490541015611e94576040805162461bcd60e51b815260206004820152600f60248201526e09eeae840decc40dadedccaf240745608b1b604482015290519081900360640190fd5b600160096000611ea2612d54565b6001600160a01b03168152602080820192909252604090810160009081206001600160801b03871682528352818120805460ff191694151594909417909355600b909152902060028101549054611f0291670de0b6b3a764000002612c62565b6001600160801b0383166000908152600b6020526040902055611f51611f26612d54565b6001600160801b0384166000908152600b6020526040902060020154670de0b6b3a764000002612db2565b506001805460ff166115b7576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b60015460009060ff1615611ff3576040805162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f74207475726e6564206f6666000000000000604482015290519081900360640190fd5b6001600160a01b03821660009081526004602052604090205460ff1661204a5760405162461bcd60e51b8152600401808060200182810382526021815260200180613fe86021913960400191505060405180910390fd5b60086000612056612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918616815292529020546120c8576040805162461bcd60e51b8152602060048201526014602482015273596f752068617665206e6f206465706f7369747360601b604482015290519081900360640190fd5b61213c600260006120d7612d54565b6001600160a01b03166001600160a01b0316815260200190815260200160002054612100612d54565b846008600061210d612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918a1681529252902054613374565b50506001805460ff16156115b7576040805162461bcd60e51b815260206004820152601960248201527810dbdb9d1c9858dd081a5cc81c9d5b9b9a5b99c81cdd1a5b1b603a1b604482015290519081900360640190fd5b60135461010090046001600160a01b031681565b6001600160a01b031660009081526002602052604090205490565b60006121ce81336122c3565b612218576040805162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1030b71030b236b4b760511b604482015290519081900360640190fd5b506001805460ff19811660ff9091161517815590565b600080612268600d546122526064610c20600a601054612cb990919063ffffffff16565b670de0b6b3a7640000029063ffffffff612d1216565b9050600081116111f057506001905090565b6014546001600160a01b031681565b600a6020526000908152604090205460ff1681565b60008281526020819052604081206122bc908363ffffffff61398c16565b9392505050565b60008281526020819052604081206122bc908363ffffffff61399816565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dcb5780601f10610da057610100808354040283529160200191610dcb565b600081565b60105481565b604080516e2327aaa72224a723afa320aa2422a960891b8152905190819003600f01902060009061237e90336122c3565b6123cf576040805162461bcd60e51b815260206004820152601f60248201527f43616c6c6572206973206e6f74206120466f756e64696e672046617468657200604482015290519081900360640190fd5b506001600160a01b038083166000908152600460208181526040808420805460ff1916600117815560058352932080549486166001600160a01b0319909516949094179093559091525460ff1660015460ff166111a4576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b600061246d81336122c3565b6124b7576040805162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1030b71030b236b4b760511b604482015290519081900360640190fd5b6014546001600160a01b03161580156124d957506015546001600160a01b0316155b61252a576040805162461bcd60e51b815260206004820152601960248201527f416c726561647920736574207468652061646472657373657300000000000000604482015290519081900360640190fd5b6001600160a01b0383161561255557601480546001600160a01b0319166001600160a01b0385161790555b6001600160a01b038216156111a457601580546001600160a01b0384166001600160a01b031990911617905592915050565b60006111a0612594612d54565b846116908560405180606001604052806025815260200161416260259139600360006125be612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61368116565b60076020526000908152604090205481565b6001600160a01b03821660009081526004602052604081205460ff1661265e5760405162461bcd60e51b8152600401808060200182810382526021815260200180613fe86021913960400191505060405180910390fd5b8260006001600160a01b03821663dd62ed3e612678612d54565b604080516001600160e01b031960e085901b1681526001600160a01b039092166004830152306024830152516044808301926020929190829003018186803b1580156126c357600080fd5b505afa1580156126d7573d6000803e3d6000fd5b505050506040513d60208110156126ed57600080fd5b5051905083811015612746576040805162461bcd60e51b815260206004820152601a60248201527f546f6b656e20616c6c6f77616e6365206e6f7420656e6f756768000000000000604482015290519081900360640190fd5b600061275061222e565b6001600160a01b038088166000908152600560205260408120549293509161277891166132ba565b9050600061279083610c20898563ffffffff612cb916565b9050600081116127e7576040805162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f7567682073656e7420666f7220312062727272000000000000604482015290519081900360640190fd5b846001600160a01b03166323b872dd6127fe612d54565b604080516001600160e01b031960e085901b1681526001600160a01b039092166004830152306024830152604482018b90525160648083019260209291908290030181600087803b15801561285257600080fd5b505af1158015612866573d6000803e3d6000fd5b505050506040513d602081101561287c57600080fd5b50516128c1576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b61290787600860006128d1612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918e16815292529020549063ffffffff612d5816565b60086000612913612d54565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902055612948610cea612d54565b60019550505050505060015460ff166111a4576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b60006111a06129a3612d54565b8484613535565b6015546001600160a01b031681565b60015460ff1681565b60046020526000908152604090205460ff1681565b600d5481565b60066020526000908152604090205481565b60008181526020819052604081206111a4906139ad565b600082815260208190526040902060020154612a24906116ef612d54565b6119545760405162461bcd60e51b8152600401808060200182810382526030815260200180613fb86030913960400191505060405180910390fd5b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b601454600090612aa2906001600160a01b03166139b8565b50601554612ab8906001600160a01b03166139b8565b50506001805460ff16610d3c576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b60015460009060ff1615612b5b576040805162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f74207475726e6564206f6666000000000000604482015290519081900360640190fd5b600060066000612b69612d54565b6001600160a01b03166001600160a01b031681526020019081526020016000205411612bd3576040805162461bcd60e51b8152602060048201526014602482015273596f752068617665206e6f206465706f7369747360601b604482015290519081900360640190fd5b612c0b60026000612be2612d54565b6001600160a01b03166001600160a01b0316815260200190815260200160002054611b5b612d54565b50506001805460ff1615610d3c576040805162461bcd60e51b815260206004820152601960248201527810dbdb9d1c9858dd081a5cc81c9d5b9b9a5b99c81cdd1a5b1b603a1b604482015290519081900360640190fd5b60006122bc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613681565b60006122bc836001600160a01b038416613b32565b600082612cc8575060006111a4565b82820282848281612cd557fe5b04146122bc5760405162461bcd60e51b81526004018080602001828103825260218152602001806140096021913960400191505060405180910390fd5b60006122bc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613b7c565b3390565b6000828201838110156122bc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216612e0d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600d54811115612e64576040805162461bcd60e51b815260206004820152601b60248201527f4d6f7265207468616e20746865207265736572766520686f6c64730000000000604482015290519081900360640190fd5b601054612e77908263ffffffff612d5816565b601055600d54612e8d908263ffffffff612c6216565b600d819055600e556001600160a01b038216600090815260026020526040902054612ebe908263ffffffff612d5816565b6001600160a01b038316600081815260026020908152604080832094909455835185815293519293919260008051602061409c8339815191529281900390910190a360015460ff16611739576040805162461bcd60e51b815260206004820152601c6024820152600080516020614052833981519152604482015290519081900360640190fd5b6000808211612f91576040805162461bcd60e51b815260206004820152601360248201527243616e2774206d696e74203020746f6b656e7360681b604482015290519081900360640190fd5b612f996118f7565b600d54612fac908463ffffffff612d5816565b10612ff2576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74206578636565642063617607c1b604482015290519081900360640190fd5b600d54613005908363ffffffff612d5816565b600d819055600e55604080518381529051309160009160008051602061409c8339815191529181900360200190a3919050565b60105460009061304e908363ffffffff612d5816565b6010556130618260026000610c93612d54565b6002600061306d612d54565b6001600160a01b0316815260208101919091526040016000205561308f612d54565b6001600160a01b0316306001600160a01b031660008051602061409c833981519152846040518082815260200191505060405180910390a3506001919050565b600d54811161313857613105816040518060600160405280602b8152602001614137602b9139600d54919063ffffffff61368116565b600d819055600e55604080518281529051600091309160008051602061409c8339815191529181900360200190a3613169565b6000600d819055600e819055604080518381529051309160008051602061409c833981519152919081900360200190a35b50565b6001600160a01b0383166131b15760405162461bcd60e51b81526004018080602001828103825260248152602001806141136024913960400191505060405180910390fd5b6001600160a01b0382166131f65760405162461bcd60e51b8152600401808060200182810382526022815260200180613f706022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008061326361222e565b9050600060076000613273612d54565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905060018110156132a3575060015b6132b3828263ffffffff612d1216565b9250505090565b6000808290506000816001600160a01b03166350d25bcd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156132fb57600080fd5b505afa15801561330f573d6000803e3d6000fd5b505050506040513d602081101561332557600080fd5b50519050600081136122bc576040805162461bcd60e51b8152602060048201526013602482015272496e76616c696420707269636520666565642160681b604482015290519081900360640190fd5b6001600160a01b0380841660009081526008602090815260408083209386168352929052908120548211156133eb576040805162461bcd60e51b8152602060048201526018602482015277135bdc99481d1a185b8819195c1bdcda5d08185b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b038416600090815260026020526040902054613414908663ffffffff612c6216565b6001600160a01b038516600090815260026020526040902055600d54613440908663ffffffff612d5816565b600d819055600e5560105461345b908663ffffffff612c6216565b60105560408051868152905130916001600160a01b0387169160008051602061409c8339815191529181900360200190a36001600160a01b038085166000908152600860209081526040808320938716835292905220546134c2908363ffffffff612c6216565b6001600160a01b038086166000908152600860209081526040808320938816835292905220556134f3848484613be1565b5060405182906001600160a01b038616907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436490600090a3506001949350505050565b6001600160a01b03831661357a5760405162461bcd60e51b81526004018080602001828103825260258152602001806140ee6025913960400191505060405180910390fd5b6001600160a01b0382166135bf5760405162461bcd60e51b8152600401808060200182810382526023815260200180613f1e6023913960400191505060405180910390fd5b61360281604051806060016040528060268152602001613f92602691396001600160a01b038616600090815260026020526040902054919063ffffffff61368116565b6001600160a01b038085166000908152600260205260408082209390935590841681522054613637908263ffffffff612d5816565b6001600160a01b03808416600081815260026020908152604091829020949094558051858152905191939287169260008051602061409c83398151915292918290030190a3505050565b600081848411156137105760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156136d55781810151838201526020016136bd565b50505050905090810190601f1680156137025780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828152602081905260409020613736908263ffffffff612ca416565b1561173957613743612d54565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020819052604090206137a5908263ffffffff613d4e16565b15611739576137b2612d54565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6001600160a01b03821660009081526006602052604081205482111561385e576040805162461bcd60e51b8152602060048201526018602482015277135bdc99481d1a185b8819195c1bdcda5d08185b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b038316600090815260026020526040902054613887908563ffffffff612c6216565b6001600160a01b038416600090815260026020526040902055600d546138b3908563ffffffff612d5816565b600d819055600e556010546138ce908563ffffffff612c6216565b60105560408051858152905130916001600160a01b0386169160008051602061409c8339815191529181900360200190a36001600160a01b038316600090815260066020526040902054613928908363ffffffff612c6216565b6001600160a01b03841660009081526006602052604090205561394b8383613d63565b5060405182906001600160a01b038516907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436490600090a35060019392505050565b60006122bc8383613d9b565b60006122bc836001600160a01b038416613dff565b60006111a482613e17565b600081816001600160a01b0382166370a082316139d3612d54565b6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015613a1957600080fd5b505afa158015613a2d573d6000803e3d6000fd5b505050506040513d6020811015613a4357600080fd5b50519050801561169557816001600160a01b03166323b872dd613a64612d54565b604080516001600160e01b031960e085901b1681526001600160a01b039092166004830152306024830152604482018590525160648083019260209291908290030181600087803b158015613ab857600080fd5b505af1158015613acc573d6000803e3d6000fd5b505050506040513d6020811015613ae257600080fd5b5051613b27576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b611695610cea612d54565b6000613b3e8383613dff565b613b74575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556111a4565b5060006111a4565b60008183613bcb5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156136d55781810151838201526020016136bd565b506000838581613bd757fe5b0495945050505050565b604080516370a0823160e01b81523060048201529051600091849184916001600160a01b038416916370a0823191602480820192602092909190829003018186803b158015613c2f57600080fd5b505afa158015613c43573d6000803e3d6000fd5b505050506040513d6020811015613c5957600080fd5b50511015613cae576040805162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682066756e647320746f207472616e7366657200000000604482015290519081900360640190fd5b806001600160a01b031663a9059cbb86856040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015613d0e57600080fd5b505af1158015613d22573d6000803e3d6000fd5b505050506040513d6020811015613d3857600080fd5b5051613d4357600080fd5b506001949350505050565b60006122bc836001600160a01b038416613e1b565b6040516000906001600160a01b0384169083156108fc0290849084818181858888f19350505050158015611695573d6000803e3d6000fd5b81546000908210613ddd5760405162461bcd60e51b8152600401808060200182810382526022815260200180613efc6022913960400191505060405180910390fd5b826000018281548110613dec57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60008181526001830160205260408120548015613ed75783546000198083019190810190600090879083908110613e4e57fe5b9060005260206000200154905080876000018481548110613e6b57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080613e9b57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506111a4565b60009150506111a4565b60405180604001604052806000815260200160008152509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654e6f74206163636570746564206173206120666f726d206f66207061796d656e74536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420686173206265656e207475726e6564206f6666000000004d6f7265207468616e20696e20796f75722062616c616e63652c206572726f722077697468206d617468ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef506c656173652073656e64206d6f6e657920746f206d616b6520746865207072696e74657220676f2062727272727272727245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a206275726e20616d6f756e742065786365656473205472656173757279205265736572766545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220d4aa3307d78b7d56f7f87ccecca403645a09e583d93ea0bbc851eb1f775bd4bc64736f6c63430006080033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007425252522e66690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044252525200000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): BRRR.fi
Arg [1] : symbol (string): BRRR

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 425252522e666900000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4252525200000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

509:27084:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27568:14;:12;:14::i;:::-;;509:27084;3927:83;;5:9:-1;2:2;;;27:1;24;17:12;2:2;3927:83:3;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3927:83:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23963:1259;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23963:1259:3;;;:::i;:::-;;;;;;;;;;;;;;;;5521:210;;5:9:-1;2:2;;;27:1;24;17:12;2:2;5521:210:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;5521:210:3;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;2157:51;;5:9:-1;2:2;;;27:1;24;17:12;2:2;2157:51:3;;;:::i;895:70::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;895:70:3;;;:::i;4372:127::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;4372:127:3;;;:::i;22364:1397::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22364:1397:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22364:1397:3;-1:-1:-1;;;;;22364:1397:3;;:::i;1973:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;1973:39:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;1973:39:3;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6098:561;;5:9:-1;2:2;;;27:1;24;17:12;2:2;6098:561:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;6098:561:3;;;;;;;;;;;;;;;;;:::i;4506:114:0:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;4506:114:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;4506:114:0;;:::i;1568:69:3:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;1568:69:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;1568:69:3;;;;;;;;;;:::i;4882:264:0:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;4882:264:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;4882:264:0;;;;;;-1:-1:-1;;;;;4882:264:0;;:::i;:::-;;1879:45:3;;5:9:-1;2:2;;;27:1;24;17:12;2:2;1879:45:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;1879:45:3;-1:-1:-1;;;;;1879:45:3;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;4224:83;;5:9:-1;2:2;;;27:1;24;17:12;2:2;4224:83:3;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16484:696;;5:9:-1;2:2;;;27:1;24;17:12;2:2;16484:696:3;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;16484:696:3;;;;;;;;;;;;;;;;;;:::i;14319:79::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;14319:79:3;;;:::i;6165:246:0:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;6165:246:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;6165:246:0;;;;;;-1:-1:-1;;;;;6165:246:0;;:::i;6777:300:3:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;6777:300:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;6777:300:3;;;;;;;;:::i;1690:69::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;1690:69:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;1690:69:3;;-1:-1:-1;;;;;1690:69:3;;;;;-1:-1:-1;;;;;1690:69:3;;:::i;21351:873::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21351:873:3;;;:::i;17410:803::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17410:803:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;17410:803:3;-1:-1:-1;;;;;17410:803:3;;:::i;25846:636::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;25846:636:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;25846:636:3;-1:-1:-1;;;;;25846:636:3;;:::i;2395:66::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;2395:66:3;;;:::i;:::-;;;;-1:-1:-1;;;;;2395:66:3;;;;;;;;;;;;;;4562:119;;5:9:-1;2:2;;;27:1;24;17:12;2:2;4562:119:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;4562:119:3;-1:-1:-1;;;;;4562:119:3;;:::i;26590:226::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26590:226:3;;;:::i;18355:262::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18355:262:3;;;:::i;2490:21::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;2490:21:3;;;:::i;1790:46::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;1790:46:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;1790:46:3;-1:-1:-1;;;;;1790:46:3;;:::i;4147:170:0:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;4147:170:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;4147:170:0;;;;;;;:::i;3108:139::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;3108:139:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;3108:139:0;;;;;;-1:-1:-1;;;;;3108:139:0;;:::i;18727:519:3:-;;;:::i;4129:87::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;4129:87:3;;;:::i;1751:49:0:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;1751:49:0;;;:::i;2249:33:3:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;2249:33:3;;;:::i;15878:437::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15878:437:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15878:437:3;;;;;;;;;;:::i;26936:585::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26936:585:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;26936:585:3;;;;;;;;;;:::i;7195:400::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;7195:400:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;7195:400:3;;;;;;;;:::i;1463:53::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;1463:53:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;1463:53:3;-1:-1:-1;;;;;1463:53:3;;:::i;19362:966::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19362:966:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19362:966:3;;;;;;;;:::i;4894:216::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;4894:216:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;4894:216:3;;;;;;;;:::i;2541:22::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;2541:22:3;;;:::i;575:25::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;575:25:3;;;:::i;1151:52::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;1151:52:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;1151:52:3;-1:-1:-1;;;;;1151:52:3;;:::i;2068:30::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;2068:30:3;;;:::i;1374:48::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;1374:48:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;1374:48:3;-1:-1:-1;;;;;1374:48:3;;:::i;3421:127:0:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;3421:127:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;3421:127:0;;:::i;5391:267::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;5391:267:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;5391:267:0;;;;;;-1:-1:-1;;;;;5391:267:0;;:::i;5173:201:3:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;5173:201:3;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;5173:201:3;;;;;;;;;;:::i;21043:174::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21043:174:3;;;:::i;25347:372::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;25347:372:3;;;:::i;18727:519::-;18784:4;18835:1;18823:9:::1;:13;18801:113;;;;-1:-1:-1::0;;;18801:113:3::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18925:9;18937:16;:14;:16::i;:::-;18925:28:::0;-1:-1:-1;18964:14:3::1;18982:28;18925::::0;18982:21:::1;:9;18996:6;18982:21;:13;:21;:::i;:::-;:25:::0;:28:::1;:25;:28;:::i;:::-;18964:47;;19039:1;19030:6;:10;19022:49;;;::::0;;-1:-1:-1;;;19022:49:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;19112:66;19158:9;19112:13;:27;19126:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;19112:27:3::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;19112:27:3;;;:66:::1;:31;:66;:::i;:::-;19082:13;:27;19096:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;19082:27:3::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;19082:27:3;:96;19189:27:::1;19195:12;:10;:12::i;:::-;19209:6;19189:5;:27::i;:::-;19234:4;19227:11;;;;737:1;757:6:::0;;;;749:47;;;;;-1:-1:-1;;;749:47:3;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;749:47:3;;;;;;;;;;;;;;;18727:519;:::o;3927:83::-;3997:5;3990:12;;;;;;;;-1:-1:-1;;3990:12:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3964:13;;3990:12;;3997:5;;3990:12;;3997:5;3990:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3927:83;:::o;23963:1259::-;24086:18:::1;24105:25:::0;;24009:7;;24086:18;24105:32:::1;::::0;24135:1:::1;24105:32;:29;:32;:::i;:::-;24086:52;;;;;;;;;;;;;;;;;;:86;;;24051:15;:121;24029:187;;;::::0;;-1:-1:-1;;;24029:187:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;24029:187:3;;;;;;;;;;;;;::::1;;24239:18;24258:25:::0;;24227:9:::1;::::0;24239:18;24258:32:::1;::::0;24288:1:::1;24258:32;:29;:32;:::i;:::-;24239:52;;;;;;;;;::::0;;;::::1;::::0;;::::1;::::0;;::::1;;:78:::0;24340:18:::1;24359:25:::0;;24239:78;;-1:-1:-1;24340:18:3;24359:32:::1;::::0;24389:1:::1;24359:32;:29;:32;:::i;:::-;24340:52;;;;;;;;;;;;;;;;;;:79;;;24328:91;;24430:9;24442:6;::::0;::::1;;;;;;;-1:-1:-1::0;;;;;24442:6:3::1;-1:-1:-1::0;;;;;24442:18:3::1;;:20;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;24442:20:3;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;24442:20:3;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;24442:20:3;;-1:-1:-1;24481:6:3;;::::1;;24473:44;;;::::0;;-1:-1:-1;;;24473:44:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;24536:1;24532;:5;24528:344;;;24554:21;;:::i;:::-;-1:-1:-1::0;24578:31:3::1;::::0;;;;::::1;::::0;;;24590:15:::1;24578:31:::0;;::::1;::::0;::::1;::::0;;;24624:18:::1;27:10:-1::0;;39:1:::1;23:18:::0;::::1;45:23:::0;;-1:-1;24624:27:3;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;24671:8:::1;:1:::0;24578:31;24671:5:::1;:8::i;:::-;24683:6;24670:19;::::0;-1:-1:-1;24704:14:3::1;24721:11;24670:19:::0;24727:4:::1;24721:11;:5;:11;:::i;:::-;24704:28:::0;-1:-1:-1;24751:13:3::1;:1:::0;24704:28;24751:13:::1;:5;:13;:::i;:::-;24747:17;;24779:19;24796:1;24779:16;:19::i;:::-;;24813;24825:6;24813:11;:19::i;:::-;-1:-1:-1::0;24854:6:3;-1:-1:-1;24847:13:3::1;::::0;-1:-1:-1;;;;24847:13:3::1;24528:344;24890:1;24886;:5;24882:333;;;24908:21;;:::i;:::-;-1:-1:-1::0;24932:31:3::1;::::0;;;;::::1;::::0;;;24944:15:::1;24932:31:::0;;::::1;::::0;::::1;::::0;;;24978:18:::1;27:10:-1::0;;39:1:::1;23:18:::0;::::1;45:23:::0;;-1:-1;24978:27:3;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;25025:8:::1;24932:31:::0;25031:1;25025:5:::1;:8::i;:::-;25037:6;25024:19;::::0;-1:-1:-1;25058:14:3::1;25075:11;25024:19:::0;25081:4:::1;25075:11;:5;:11;:::i;:::-;25058:28:::0;-1:-1:-1;25105:13:3::1;:1:::0;25058:28;25105:13:::1;:5;:13;:::i;:::-;25101:17;;25133:8;25139:1;25133:5;:8::i;:::-;25156:19;25168:6;25156:11;:19::i;24882:333::-;737:1;;;757:6:::0;;;;749:47;;;;;-1:-1:-1;;;749:47:3;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;749:47:3;;;;;;;;;;;;;;5521:210;5640:4;5662:39;5671:12;:10;:12::i;:::-;5685:7;5694:6;5662:8;:39::i;:::-;-1:-1:-1;5719:4:3;5521:210;;;;;:::o;2157:51::-;;;;:::o;895:70::-;937:28;;;-1:-1:-1;;;937:28:3;;;;;;;;;;;;895:70;:::o;4372:127::-;4425:7;4452:39;4475:15;;4452:18;;:22;;:39;;;;:::i;:::-;4445:46;;4372:127;:::o;22364:1397::-;-1:-1:-1;;;;;22507:31:3;::::1;22463:4:::0;22507:31;;;:20:::1;:31;::::0;;;;;::::1;;22485:114;;;;-1:-1:-1::0;;;22485:114:3::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22632:14;:28;22647:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;22632:28:3;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;22632:28:3;;;:39;;::::1;::::0;;;;;;;22610:114:::1;;;::::0;;-1:-1:-1;;;22610:114:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;22610:114:3;;;;;;;;;;;;;::::1;;22769:1;22743:9;:23;22753:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;22743:23:3::1;-1:-1:-1::0;;;;;22743:23:3::1;;;;;;;;;;;;;:27;22735:55;;;::::0;;-1:-1:-1;;;22735:55:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;22735:55:3;;;;;;;;;;;;;::::1;;22801:9;22813:26;:24;:26::i;:::-;-1:-1:-1::0;;;;;22878:38:3;;::::1;22850:10;22878:38:::0;;;:27:::1;:38;::::0;;;;;22801;;-1:-1:-1;22850:10:3;22863:54:::1;::::0;22878:38:::1;22863:14;:54::i;:::-;22850:67;;22928:9;22940:54;22992:1;22940:47;22984:2;22940:14;:28;22955:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;22940:28:3;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;22940:28:3;;;:39;;::::1;::::0;;;;;;;;:47:::1;:43;:47;:::i;:54::-;22928:66;;23036:1;23009:9;:23;23019:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;23009:23:3::1;-1:-1:-1::0;;;;;23009:23:3::1;;;;;;;;;;;;;:28;23005:640;;23054:169;23090:1;23110:12;:10;:12::i;:::-;23141:9;23169:14;:28;23184:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;23169:28:3;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;23169:28:3;;;:39;;::::1;::::0;;;;;;;23054:17:::1;:169::i;:::-;;23005:640;;;23256:9;23268:50;23311:6;23268:38;23303:2;23268:30;23296:1;23268:9;:23;23278:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;23268:23:3::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;23268:23:3;;;:30:::1;:27;:30;:::i;:50::-;23256:62;;23364:9;:23;23374:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;23364:23:3::1;-1:-1:-1::0;;;;;23364:23:3::1;;;;;;;;;;;;;23359:1;:28;;23333:132;;;;-1:-1:-1::0;;;23333:132:3::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23480:153;23516:9;:23;23526:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;23516:23:3::1;-1:-1:-1::0;;;;;23516:23:3::1;;;;;;;;;;;;;23558:12;:10;:12::i;:::-;23589:9;23617:1;23480:17;:153::i;:::-;;23005:640;;23690:63;23741:1;23690:18;:32;23709:12;:10;:12::i;23690:63::-;23655:18;:32;23674:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;23655:32:3::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;23655:32:3;:98;-1:-1:-1;;757:6:3;;;;;-1:-1:-1;749:47:3;;;;;-1:-1:-1;;;749:47:3;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;749:47:3;;;;;;;;;;;;;;;22364:1397;;;:::o;1973:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1973:39:3;:::o;6098:561::-;6238:4;6255:36;6265:6;6273:9;6284:6;6255:9;:36::i;:::-;6320:6;;-1:-1:-1;;;;;6320:6:3;6306:10;:20;;;;:45;;-1:-1:-1;6344:7:3;;-1:-1:-1;;;;;6344:7:3;6330:10;:21;;6306:45;6302:326;;;6368:248;6395:6;6420:12;:10;:12::i;:::-;6451:150;6511:6;6451:150;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6451:19:3;;;;;;:11;:19;;;;;;6471:12;:10;:12::i;:::-;-1:-1:-1;;;;;6451:33:3;;;;;;;;;;;;-1:-1:-1;6451:33:3;;;:150;;:37;:150;:::i;:::-;6368:8;:248::i;:::-;-1:-1:-1;6647:4:3;6098:561;;;;;:::o;4506:114:0:-;4563:7;4590:12;;;;;;;;;;:22;;;;4506:114::o;1568:69:3:-;;;;;;;;;;;;;;;;;;;;;;;;:::o;4882:264:0:-;4988:6;:12;;;;;;;;;;:22;;;4980:45;;5012:12;:10;:12::i;:::-;4980:7;:45::i;:::-;4958:142;;;;-1:-1:-1;;;4958:142:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5113:25;5124:4;5130:7;5113:10;:25::i;:::-;4882:264;;:::o;1879:45:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4224:83::-;4290:9;;;;4224:83;:::o;16484:696::-;937:28:::1;::::0;;-1:-1:-1;;;937:28:3;;;;;;;;::::1;::::0;;;16658:4;;16697:36:::1;::::0;16722:10:::1;16697:7;:36::i;:::-;16675:117;;;::::0;;-1:-1:-1;;;16675:117:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;16811:19:3;::::1;;::::0;;;:14:::1;:19;::::0;;;;;::::1;;:28;16803:56;;;::::0;;-1:-1:-1;;;16803:56:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;16803:56:3;;;;;;;;;;;;;::::1;;16895:15;;16878:13;:32;;16870:41;;12:1:-1;9::::0;2:12:::1;16870:41:3;-1:-1:-1::0;;;;;;16922:19:3;::::1;;::::0;;;:14:::1;:19;::::0;;;;;;;:26;;-1:-1:-1;;16922:26:3::1;16944:4;16922:26:::0;;::::1;::::0;;;16959:11:::1;:16:::0;;;;;;17002:6:::1;16986:22:::0;::::1;16959:49:::0;;17019:32:::1;::::0;::::1;:49:::0;;;17106:15:::1;17143:6;17125:24:::0;::::1;17106:44;17079:24:::0;;::::1;:71:::0;757:6;;;;749:47;;;;;-1:-1:-1;;;749:47:3;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;749:47:3;;;;;;;;;;;;;;;16484:696;;;;;;:::o;14319:79::-;14382:8;;14319:79;:::o;6165:246:0:-;6277:12;:10;:12::i;:::-;-1:-1:-1;;;;;6266:23:0;:7;-1:-1:-1;;;;;6266:23:0;;6244:120;;;;-1:-1:-1;;;6244:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6377:26;6389:4;6395:7;6377:11;:26::i;6777:300:3:-;6892:4;6914:133;6937:12;:10;:12::i;:::-;6964:7;6986:50;7025:10;6986:11;:25;6998:12;:10;:12::i;:::-;-1:-1:-1;;;;;6986:25:3;;;;;;;;;;;;;;;;;-1:-1:-1;6986:25:3;;;:34;;;;;;;;;;;:50;:38;:50;:::i;1690:69::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21351:873::-;21404:4;21459:1;21429:13:::1;:27;21443:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;21429:27:3::1;-1:-1:-1::0;;;;;21429:27:3::1;;;;;;;;;;;;;:31;21421:64;;;::::0;;-1:-1:-1;;;21421:64:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;21421:64:3;;;;;;;;;;;;;::::1;;21530:1;21504:9;:23;21514:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;21504:23:3::1;-1:-1:-1::0;;;;;21504:23:3::1;;;;;;;;;;;;;:27;21496:55;;;::::0;;-1:-1:-1;;;21496:55:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;21496:55:3;;;;;;;;;;;;;::::1;;21562:9;21574:26;:24;:26::i;:::-;21562:38;;21611:9;21623:46;21662:6;21623:34;21655:1;21623:13;:27;21637:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;21623:27:3::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;21623:27:3;;;:34:::1;:31;:34;:::i;:::-;:38:::0;:46:::1;:38;:46;:::i;:::-;21611:58;;21711:1;21684:9;:23;21694:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;21684:23:3::1;-1:-1:-1::0;;;;;21684:23:3::1;;;;;;;;;;;;;:28;21680:428;;21729:61;21745:1;21748:12;:10;:12::i;:::-;21762:13;:27;21776:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;21762:27:3::1;-1:-1:-1::0;;;;;21762:27:3::1;;;;;;;;;;;;;21729:15;:61::i;:::-;;21680:428;;;21823:9;21835:42;21870:6;21835:30;21863:1;21835:9;:23;21845:12;:10;:12::i;21835:42::-;21823:54;;21923:9;:23;21933:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;21923:23:3::1;-1:-1:-1::0;;;;;21923:23:3::1;;;;;;;;;;;;;21918:1;:28;;21892:132;;;;-1:-1:-1::0;;;21892:132:3::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22039:57;22055:9;:23;22065:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;22055:23:3::1;-1:-1:-1::0;;;;;22055:23:3::1;;;;;;;;;;;;;22080:12;:10;:12::i;:::-;22094:1;22039:15;:57::i;:::-;;21680:428;;22153:63;22204:1;22153:18;:32;22172:12;:10;:12::i;22153:63::-;22118:18;:32;22137:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;22118:32:3::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;22118:32:3;:98;-1:-1:-1;;757:6:3;;;;749:47;;;;;-1:-1:-1;;;749:47:3;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;749:47:3;;;;;;;;;;;;;;17410:803;-1:-1:-1;;;;;17496:19:3;::::1;17471:4:::0;17496:19;;;:14:::1;:19;::::0;;;;;::::1;;17488:47;;;::::0;;-1:-1:-1;;;17488:47:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;17488:47:3;;;;;;;;;;;;;::::1;;17568:17;:31;17586:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;17568:31:3::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;17568:31:3;;;-1:-1:-1;;;;;17568:36:3;::::1;::::0;;;;;;;;::::1;;:45;17546:111;;;::::0;;-1:-1:-1;;;17546:111:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;17546:111:3;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;17709:16:3;::::1;;::::0;;;:11:::1;:16;::::0;;;;:24:::1;;::::0;17690:15:::1;:43;;17668:119;;;::::0;;-1:-1:-1;;;17668:119:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;17848:16:3;::::1;;::::0;;;:11:::1;:16;::::0;;;;:32:::1;::::0;::::1;::::0;17820:24;;:60:::1;;17798:125;;;::::0;;-1:-1:-1;;;17798:125:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;17798:125:3;;;;;;;;;;;;;::::1;;17973:4;17934:17;:31;17952:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;17934:31:3::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;17934:31:3;;;-1:-1:-1;;;;;17934:36:3;::::1;::::0;;;;;;;:43;;-1:-1:-1;;17934:43:3::1;::::0;::::1;;::::0;;;::::1;::::0;;;18058:11:::1;:16:::0;;;;;:32:::1;::::0;::::1;::::0;18015:24;;:95:::1;::::0;18093:6:::1;18058:41;18015:28;:95::i;:::-;-1:-1:-1::0;;;;;17988:16:3;::::1;;::::0;;;:11:::1;:16;::::0;;;;:122;18121:62:::1;18127:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;18141:16:3;::::1;;::::0;;;:11:::1;:16;::::0;;;;:32:::1;;::::0;18176:6:::1;18141:41;18121:5;:62::i;:::-;-1:-1:-1::0;18201:4:3::1;757:6:::0;;;;749:47;;;;;-1:-1:-1;;;749:47:3;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;749:47:3;;;;;;;;;;;;;;25846:636;25983:6:::1;::::0;25952:4;;25983:6:::1;;25982:7;25974:46;;;::::0;;-1:-1:-1;;;25974:46:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;26053:31:3;::::1;;::::0;;;:20:::1;:31;::::0;;;;;::::1;;26031:114;;;;-1:-1:-1::0;;;26031:114:3::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26178:14;:28;26193:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;26178:28:3;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;26178:28:3;;;:39;;::::1;::::0;;;;;;;26156:114:::1;;;::::0;;-1:-1:-1;;;26156:114:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;26156:114:3;;;;;;;;;;;;;::::1;;26281:171;26313:9;:23;26323:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;26313:23:3::1;-1:-1:-1::0;;;;;26313:23:3::1;;;;;;;;;;;;;26351:12;:10;:12::i;:::-;26378:9;26402:14;:28;26417:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;26402:28:3;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;26402:28:3;;;:39;;::::1;::::0;;;;;;;26281:17:::1;:171::i;:::-;-1:-1:-1::0;;26470:4:3::1;658:6:::0;;;;657:7;649:45;;;;;-1:-1:-1;;;649:45:3;;;;;;;;;;;;-1:-1:-1;;;649:45:3;;;;;;;;;;;;;;2395:66;;;;;;-1:-1:-1;;;;;2395:66:3;;:::o;4562:119::-;-1:-1:-1;;;;;4655:18:3;4628:7;4655:18;;;:9;:18;;;;;;;4562:119::o;26590:226::-;26631:4;26670:39;26631:4;26698:10;26670:7;:39::i;:::-;26648:111;;;;;-1:-1:-1;;;26648:111:3;;;;;;;;;;;;-1:-1:-1;;;26648:111:3;;;;;;;;;;;;;;;-1:-1:-1;26780:6:3;;;-1:-1:-1;;26770:16:3;;26780:6;;;;26779:7;26770:16;;;26590:226;:::o;18355:262::-;18411:7;18431:9;18458:67;18509:15;;18459:35;18490:3;18459:26;18482:2;18459:18;;:22;;:26;;;;:::i;:35::-;18497:6;18459:44;;18458:67;:50;:67;:::i;:::-;18431:105;;18556:1;18551;:6;18547:44;;-1:-1:-1;18578:1:3;18608;-1:-1:-1;18355:262:3;:::o;2490:21::-;;;-1:-1:-1;;;;;2490:21:3;;:::o;1790:46::-;;;;;;;;;;;;;;;:::o;4147:170:0:-;4247:7;4279:12;;;;;;;;;;:30;;4303:5;4279:30;:23;:30;:::i;:::-;4272:37;4147:170;-1:-1:-1;;;4147:170:0:o;3108:139::-;3177:4;3201:12;;;;;;;;;;:38;;3231:7;3201:38;:29;:38;:::i;4129:87:3:-;4201:7;4194:14;;;;;;;;-1:-1:-1;;4194:14:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4168:13;;4194:14;;4201:7;;4194:14;;4201:7;4194:14;;;;;;;;;;;;;;;;;;;;;;;;1751:49:0;1796:4;1751:49;:::o;2249:33:3:-;;;;:::o;15878:437::-;937:28:::1;::::0;;-1:-1:-1;;;937:28:3;;;;;;;;::::1;::::0;;;16004:4;;16048:36:::1;::::0;16073:10:::1;16048:7;:36::i;:::-;16026:117;;;::::0;;-1:-1:-1;;;16026:117:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;;16154:31:3;;::::1;;::::0;;;:20:::1;:31;::::0;;;;;;;:38;;-1:-1:-1;;16154:38:3::1;16188:4;16154:38;::::0;;16203:27:::1;:38:::0;;;;:55;;;;::::1;-1:-1:-1::0;;;;;;16203:55:3;;::::1;::::0;;;::::1;::::0;;;16276:31;;;;16154:38:::1;16276:31;757:6:::0;;;;749:47;;;;;-1:-1:-1;;;749:47:3;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;749:47:3;;;;;;;;;;;;;;26936:585;27046:4;27090:39;27046:4;27118:10;27090:7;:39::i;:::-;27068:111;;;;;-1:-1:-1;;;27068:111:3;;;;;;;;;;;;-1:-1:-1;;;27068:111:3;;;;;;;;;;;;;;;27212:6;;-1:-1:-1;;;;;27212:6:3;:22;:49;;;;-1:-1:-1;27238:7:3;;-1:-1:-1;;;;;27238:7:3;:23;27212:49;27190:124;;;;;-1:-1:-1;;;27190:124:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27329:31:3;;;27325:88;;27377:6;:24;;-1:-1:-1;;;;;;27377:24:3;-1:-1:-1;;;;;27377:24:3;;;;;27325:88;-1:-1:-1;;;;;27427:32:3;;;27423:91;;27476:7;:26;;-1:-1:-1;;;;;27476:26:3;;-1:-1:-1;;;;;;27476:26:3;;;;;;26936:585;;;;:::o;7195:400::-;7315:4;7337:228;7360:12;:10;:12::i;:::-;7387:7;7409:145;7466:15;7409:145;;;;;;;;;;;;;;;;;:11;:25;7421:12;:10;:12::i;:::-;-1:-1:-1;;;;;7409:25:3;;;;;;;;;;;;;;;;;-1:-1:-1;7409:25:3;;;:34;;;;;;;;;;;:145;;:38;:145;:::i;1463:53::-;;;;;;;;;;;;;:::o;19362:966::-;-1:-1:-1;;;;;19523:31:3;::::1;19479:4:::0;19523:31;;;:20:::1;:31;::::0;;;;;::::1;;19501:114;;;;-1:-1:-1::0;;;19501:114:3::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19660:9:::0;19626:10:::1;-1:-1:-1::0;;;;;19694:13:3;::::1;;19708:12;:10;:12::i;:::-;19694:42;::::0;;-1:-1:-1;;;;;;19694:42:3::1;::::0;;;;;;-1:-1:-1;;;;;19694:42:3;;::::1;;::::0;::::1;::::0;19730:4:::1;19694:42:::0;;;;;;;;;;::::1;::::0;;;;;;;;;;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;19694:42:3;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;19694:42:3;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;19694:42:3;;-1:-1:-1;19755:13:3;;::::1;;19747:52;;;::::0;;-1:-1:-1;;;19747:52:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;19810:9;19822:16;:14;:16::i;:::-;-1:-1:-1::0;;;;;19877:38:3;;::::1;19849:10;19877:38:::0;;;:27:::1;:38;::::0;;;;;19810:28;;-1:-1:-1;19849:10:3;19862:54:::1;::::0;19877:38:::1;19862:14;:54::i;:::-;19849:67:::0;-1:-1:-1;19927:9:3::1;19939:22;19959:1:::0;19939:15:::1;:7:::0;19849:67;19939:15:::1;:11;:15;:::i;:22::-;19927:34;;19984:1;19980;:5;19972:44;;;::::0;;-1:-1:-1;;;19972:44:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;20049:3;-1:-1:-1::0;;;;;20049:16:3::1;;20066:12;:10;:12::i;:::-;20049:54;::::0;;-1:-1:-1;;;;;;20049:54:3::1;::::0;;;;;;-1:-1:-1;;;;;20049:54:3;;::::1;;::::0;::::1;::::0;20088:4:::1;20049:54:::0;;;;;;;;;;;;;;;;::::1;::::0;;;;;;;;-1:-1:-1;20049:54:3;;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;20049:54:3;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;20049:54:3;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;20049:54:3;20027:119:::1;;;::::0;;-1:-1:-1;;;20027:119:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;20027:119:3;;;;;;;;;;;;;::::1;;20199:66;20257:7;20199:14;:28;20214:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;20199:28:3;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;20199:28:3;;;:39;;::::1;::::0;;;;;;;;:66:::1;:57;:66;:::i;:::-;20157:14;:28;20172:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;20157:28:3;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;20157:28:3;;;:39;;::::1;::::0;;;;;;:108;20276:22:::1;20282:12;:10;:12::i;20276:22::-;20316:4;20309:11;;;;;;;757:6:::0;;;;749:47;;;;;-1:-1:-1;;;749:47:3;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;749:47:3;;;;;;;;;;;;;;4894:216;5016:4;5038:42;5048:12;:10;:12::i;:::-;5062:9;5073:6;5038:9;:42::i;2541:22::-;;;-1:-1:-1;;;;;2541:22:3;;:::o;575:25::-;;;;;;:::o;1151:52::-;;;;;;;;;;;;;;;:::o;2068:30::-;;;;:::o;1374:48::-;;;;;;;;;;;;;:::o;3421:127:0:-;3484:7;3511:12;;;;;;;;;;:29;;:27;:29::i;5391:267::-;5498:6;:12;;;;;;;;;;:22;;;5490:45;;5522:12;:10;:12::i;5490:45::-;5468:143;;;;-1:-1:-1;;;5468:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5173:201:3;-1:-1:-1;;;;;5339:18:3;;;5307:7;5339:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;5173:201::o;21043:174::-;21138:6:::1;::::0;21100:4;;21117:29:::1;::::0;-1:-1:-1;;;;;21138:6:3::1;21117:12;:29::i;:::-;-1:-1:-1::0;21178:7:3::1;::::0;21157:30:::1;::::0;-1:-1:-1;;;;;21178:7:3::1;21157:12;:30::i;:::-;-1:-1:-1::0;;21205:4:3::1;757:6:::0;;;;749:47;;;;;-1:-1:-1;;;749:47:3;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;749:47:3;;;;;;;;;;;;;;25347:372;25433:6:::1;::::0;25407:4;;25433:6:::1;;25432:7;25424:46;;;::::0;;-1:-1:-1;;;25424:46:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;25519:1;25489:13;:27;25503:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;25489:27:3::1;-1:-1:-1::0;;;;;25489:27:3::1;;;;;;;;;;;;;:31;25481:64;;;::::0;;-1:-1:-1;;;25481:64:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;25481:64:3;;;;;;;;;;;;;::::1;;25556:133;25586:9;:23;25596:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;25586:23:3::1;-1:-1:-1::0;;;;;25586:23:3::1;;;;;;;;;;;;;25624:12;:10;:12::i;25556:133::-;-1:-1:-1::0;;25707:4:3::1;658:6:::0;;;;657:7;649:45;;;;;-1:-1:-1;;;649:45:3;;;;;;;;;;;;-1:-1:-1;;;649:45:3;;;;;;;;;;;;;;1366:136:10;1424:7;1451:43;1455:1;1458;1451:43;;;;;;;;;;;;;;;;;:3;:43::i;5131:166:7:-;5219:4;5248:41;5253:3;-1:-1:-1;;;;;5273:14:7;;5248:4;:41::i;2290:471:10:-;2348:7;2593:6;2589:47;;-1:-1:-1;2623:1:10;2616:8;;2589:47;2660:5;;;2664:1;2660;:5;:1;2684:5;;;;;:10;2676:56;;;;-1:-1:-1;;;2676:56:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3237:132;3295:7;3322:39;3326:1;3329;3322:39;;;;;;;;;;;;;;;;;:3;:39::i;605:106:6:-;693:10;605:106;:::o;902:181:10:-;960:7;992:5;;;1016:6;;;;1008:46;;;;;-1:-1:-1;;;1008:46:10;;;;;;;;;;;;;;;;;;;;;;;;;;;9160:510:3;-1:-1:-1;;;;;9253:21:3;::::1;9245:65;;;::::0;;-1:-1:-1;;;9245:65:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;9339:15;;9329:6;:25;;9321:65;;;::::0;;-1:-1:-1;;;9321:65:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;9420:18;::::0;:30:::1;::::0;9443:6;9420:30:::1;:22;:30;:::i;:::-;9399:18;:51:::0;9479:15:::1;::::0;:27:::1;::::0;9499:6;9479:27:::1;:19;:27;:::i;:::-;9461:15;:45:::0;;;9517:12:::1;:30:::0;-1:-1:-1;;;;;9579:18:3;::::1;-1:-1:-1::0;9579:18:3;;;:9:::1;:18;::::0;;;;;:30:::1;::::0;9602:6;9579:30:::1;:22;:30;:::i;:::-;-1:-1:-1::0;;;;;9558:18:3;::::1;;::::0;;;:9:::1;:18;::::0;;;;;;;:51;;;;9625:37;;;;;;;9558:18;;;;-1:-1:-1;;;;;;;;;;;9625:37:3;;;;;;;;::::1;757:6:::0;;;;749:47;;;;;-1:-1:-1;;;749:47:3;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;749:47:3;;;;;;;;;;;;;;8520:359;8580:4;8614:1;8605:6;:10;8597:42;;;;;-1:-1:-1;;;8597:42:3;;;;;;;;;;;;-1:-1:-1;;;8597:42:3;;;;;;;;;;;;;;;8688:5;:3;:5::i;:::-;8658:15;;:27;;8678:6;8658:27;:19;:27;:::i;:::-;:35;8650:65;;;;;-1:-1:-1;;;8650:65:3;;;;;;;;;;;;-1:-1:-1;;;8650:65:3;;;;;;;;;;;;;;;8744:15;;:27;;8764:6;8744:27;:19;:27;:::i;:::-;8726:15;:45;;;8782:12;:30;8828:43;;;;;;;;8857:4;;-1:-1:-1;;;;;;;;;;;;;8828:43:3;;;;;;;;8520:359;;;:::o;13518:295::-;13611:18;;13573:4;;13611:30;;13634:6;13611:30;:22;:30;:::i;:::-;13590:18;:51;13678:35;13706:6;13678:9;:23;13688:12;:10;:12::i;13678:35::-;13652:9;:23;13662:12;:10;:12::i;:::-;-1:-1:-1;;;;;13652:23:3;;;;;;;;;;;;-1:-1:-1;13652:23:3;:61;13761:12;:10;:12::i;:::-;-1:-1:-1;;;;;13729:54:3;13746:4;-1:-1:-1;;;;;13729:54:3;-1:-1:-1;;;;;;;;;;;13776:6:3;13729:54;;;;;;;;;;;;;;;;;;-1:-1:-1;13801:4:3;13518:295;;;:::o;9971:533::-;10044:15;;10034:6;:25;10030:467;;10094:123;10132:6;10094:123;;;;;;;;;;;;;;;;;:15;;;:123;;:19;:123;:::i;:::-;10076:15;:141;;;10232:12;:30;10282:43;;;;;;;;-1:-1:-1;;10299:4:3;;-1:-1:-1;;;;;;;;;;;10282:43:3;;;;;;;;10030:467;;;10376:1;10358:15;:19;;;10392:12;:30;;;10442:43;;;;;;;;10459:4;;-1:-1:-1;;;;;;;;;;;10442:43:3;;;;;;;;;10030:467;9971:533;:::o;13050:380::-;-1:-1:-1;;;;;13186:19:3;;13178:68;;;;-1:-1:-1;;;13178:68:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13265:21:3;;13257:68;;;;-1:-1:-1;;;13257:68:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13338:18:3;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;13390:32;;;;;;;;;;;;;;;;;13050:380;;;:::o;14625:265::-;14684:7;14704:9;14716:16;:14;:16::i;:::-;14704:28;;14743:9;14755:18;:32;14774:12;:10;:12::i;:::-;-1:-1:-1;;;;;14755:32:3;-1:-1:-1;;;;;14755:32:3;;;;;;;;;;;;;14743:44;;14806:1;14802;:5;14798:43;;;-1:-1:-1;14828:1:3;14798:43;14855:8;:1;14861;14855:8;:5;:8;:::i;:::-;14851:12;-1:-1:-1;;;14625:265:3;:::o;274:276:9:-;339:7;359:29;411:8;359:61;;431:8;442:9;-1:-1:-1;;;;;442:22:9;;:24;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;442:24:9;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;442:24:9;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;442:24:9;;-1:-1:-1;489:1:9;485:5;;477:37;;;;;-1:-1:-1;;;477:37:9;;;;;;;;;;;;-1:-1:-1;;;477:37:9;;;;;;;;;;;;;;11734:876:3;-1:-1:-1;;;;;11948:22:3;;;11909:4;11948:22;;;:14;:22;;;;;;;;:33;;;;;;;;;;;;:50;-1:-1:-1;11948:50:3;11926:124;;;;;-1:-1:-1;;;11926:124:3;;;;;;;;;;;;-1:-1:-1;;;11926:124:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;12081:17:3;;;;;;:9;:17;;;;;;:34;;12103:11;12081:34;:21;:34;:::i;:::-;-1:-1:-1;;;;;12061:17:3;;;;;;:9;:17;;;;;:54;12144:15;;:32;;12164:11;12144:32;:19;:32;:::i;:::-;12126:15;:50;;;12187:12;:30;12249:18;;:35;;12272:11;12249:35;:22;:35;:::i;:::-;12228:18;:56;12300:53;;;;;;;;12334:4;;-1:-1:-1;;;;;12300:53:3;;;-1:-1:-1;;;;;;;;;;;12300:53:3;;;;;;;;-1:-1:-1;;;;;12400:22:3;;;;;;;:14;:22;;;;;;;;:33;;;;;;;;;;:66;;12452:13;12400:66;:51;:66;:::i;:::-;-1:-1:-1;;;;;12364:22:3;;;;;;;:14;:22;;;;;;;;:33;;;;;;;;;:102;12477:47;12379:6;12387:9;12510:13;12477;:47::i;:::-;-1:-1:-1;12540:40:3;;12566:13;;-1:-1:-1;;;;;12540:40:3;;;;;;;;-1:-1:-1;12598:4:3;11734:876;;;;;;:::o;7776:548::-;-1:-1:-1;;;;;7916:20:3;;7908:70;;;;-1:-1:-1;;;7908:70:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7997:23:3;;7989:71;;;;-1:-1:-1;;;7989:71:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8091:108;8127:6;8091:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8091:17:3;;;;;;:9;:17;;;;;;;:108;;:21;:108;:::i;:::-;-1:-1:-1;;;;;8071:17:3;;;;;;;:9;:17;;;;;;:128;;;;8233:20;;;;;;;:32;;8258:6;8233:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;8210:20:3;;;;;;;:9;:20;;;;;;;;;:55;;;;8281:35;;;;;;;8210:20;;8281:35;;;;-1:-1:-1;;;;;;;;;;;8281:35:3;;;;;;;;7776:548;;;:::o;1805:226:10:-;1925:7;1961:12;1953:6;;;;1945:29;;;;-1:-1:-1;;;1945:29:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1945:29:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1997:5:10;;;1805:226::o;7445:188:0:-;7519:6;:12;;;;;;;;;;:33;;7544:7;7519:33;:24;:33;:::i;:::-;7515:111;;;7601:12;:10;:12::i;:::-;-1:-1:-1;;;;;7574:40:0;7592:7;-1:-1:-1;;;;;7574:40:0;7586:4;7574:40;;;;;;;;;;7445:188;;:::o;7641:192::-;7716:6;:12;;;;;;;;;;:36;;7744:7;7716:36;:27;:36;:::i;:::-;7712:114;;;7801:12;:10;:12::i;:::-;-1:-1:-1;;;;;7774:40:0;7792:7;-1:-1:-1;;;;;7774:40:0;7786:4;7774:40;;;;;;;;;;7641:192;;:::o;10724:784:3:-;-1:-1:-1;;;;;10908:21:3;;10869:4;10908:21;;;:13;:21;;;;;;:38;-1:-1:-1;10908:38:3;10886:112;;;;;-1:-1:-1;;;10886:112:3;;;;;;;;;;;;-1:-1:-1;;;10886:112:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;11029:17:3;;;;;;:9;:17;;;;;;:34;;11051:11;11029:34;:21;:34;:::i;:::-;-1:-1:-1;;;;;11009:17:3;;;;;;:9;:17;;;;;:54;11092:15;;:32;;11112:11;11092:32;:19;:32;:::i;:::-;11074:15;:50;;;11135:12;:30;11197:18;;:35;;11220:11;11197:35;:22;:35;:::i;:::-;11176:18;:56;11248:53;;;;;;;;11282:4;;-1:-1:-1;;;;;11248:53:3;;;-1:-1:-1;;;;;;;;;;;11248:53:3;;;;;;;;-1:-1:-1;;;;;11336:21:3;;;;;;:13;:21;;;;;;:40;;11362:13;11336:40;:25;:40;:::i;:::-;-1:-1:-1;;;;;11312:21:3;;;;;;:13;:21;;;;;:64;11387:35;11326:6;11408:13;11387:12;:35::i;:::-;-1:-1:-1;11438:40:3;;11464:13;;-1:-1:-1;;;;;11438:40:3;;;;;;;;-1:-1:-1;11496:4:3;10724:784;;;;;:::o;6478:181:7:-;6579:7;6627:22;6631:3;6643:5;6627:3;:22::i;5731:190::-;5838:4;5867:46;5877:3;-1:-1:-1;;;;;5897:14:7;;5867:9;:46::i;6007:117::-;6070:7;6097:19;6105:3;6097:7;:19::i;20458:446:3:-;20517:4;20568:9;20517:4;-1:-1:-1;;;;;20610:13:3;;;20624:12;:10;:12::i;:::-;20610:27;;;;;;;;;;;;;-1:-1:-1;;;;;20610:27:3;-1:-1:-1;;;;;20610:27:3;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20610:27:3;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20610:27:3;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20610:27:3;;-1:-1:-1;20652:14:3;;20648:227;;20709:3;-1:-1:-1;;;;;20709:16:3;;20726:12;:10;:12::i;:::-;20709:57;;;-1:-1:-1;;;;;;20709:57:3;;;;;;;-1:-1:-1;;;;;20709:57:3;;;;;;;20748:4;20709:57;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20709:57:3;;;;2:2:-1;;;;27:1;24;17:12;2:2;20709:57:3;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20709:57:3;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20709:57:3;20683:134;;;;;-1:-1:-1;;;20683:134:3;;;;;;;;;;;;-1:-1:-1;;;20683:134:3;;;;;;;;;;;;;;;20832:31;20838:12;:10;:12::i;1661:414:7:-;1724:4;1746:21;1756:3;1761:5;1746:9;:21::i;:::-;1741:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;1784:11:7;:23;;;;;;;;;;;;;1967:18;;1945:19;;;:12;;;:19;;;;;;:40;;;;2000:11;;1741:327;-1:-1:-1;2051:5:7;2044:12;;3865:312:10;3985:7;4020:12;4013:5;4005:28;;;;-1:-1:-1;;;4005:28:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;4005:28:10;;4044:9;4060:1;4056;:5;;;;;;;3865:312;-1:-1:-1;;;;;3865:312:10:o;15233:413:3:-;15460:28;;;-1:-1:-1;;;15460:28:3;;15482:4;15460:28;;;;;;15366:4;;15417:9;;15492:13;;-1:-1:-1;;;;;15460:13:3;;;;;:28;;;;;;;;;;;;;;;:13;:28;;;2:2:-1;;;;27:1;24;17:12;2:2;15460:28:3;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15460:28:3;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;15460:28:3;:45;;15438:123;;;;;-1:-1:-1;;;15438:123:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;15580:3;-1:-1:-1;;;;;15580:12:3;;15593:6;15601:13;15580:35;;;;;;;;;;;;;-1:-1:-1;;;;;15580:35:3;-1:-1:-1;;;;;15580:35:3;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15580:35:3;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15580:35:3;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;15580:35:3;15572:44;;12:1:-1;9;2:12;15572:44:3;-1:-1:-1;15634:4:3;;15233:413;-1:-1:-1;;;;15233:413:3:o;5473:172:7:-;5564:4;5593:44;5601:3;-1:-1:-1;;;;;5621:14:7;;5593:7;:44::i;14968:183:3:-;15093:28;;15071:4;;-1:-1:-1;;;;;15093:19:3;;;:28;;;;;15113:7;;15071:4;15093:28;15071:4;15093:28;15113:7;15093:19;:28;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;4604:273:7;4745:18;;4698:7;;4745:26;-1:-1:-1;4723:110:7;;;;-1:-1:-1;;;4723:110:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4851:3;:11;;4863:5;4851:18;;;;;;;;;;;;;;;;4844:25;;4604:273;;;;:::o;3894:161::-;3994:4;4023:19;;;:12;;;;;:19;;;;;;:24;;;3894:161::o;4141:109::-;4224:18;;4141:109::o;2251:1557::-;2317:4;2456:19;;;:12;;;:19;;;;;;2492:15;;2488:1313;;2940:18;;-1:-1:-1;;2891:14:7;;;;2940:22;;;;2867:21;;2940:3;;:22;;3227;;;;;;;;;;;;;;3207:42;;3373:9;3344:3;:11;;3356:13;3344:26;;;;;;;;;;;;;;;;;;;:38;;;;3450:23;;;3492:1;3450:12;;;:23;;;;;;3476:17;;;3450:43;;3602:17;;3450:3;;3602:17;;;;;;;;;;;;;;;;;;;;;;3697:3;:12;;:19;3710:5;3697:19;;;;;;;;;;;3690:26;;;3740:4;3733:11;;;;;;;;2488:1313;3784:5;3777:12;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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