ETH Price: $3,701.58 (+3.06%)

Contract

0xCb5dFd5C162D5377a5538B48d520E50a9953B0aF
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Deployer1

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license
File 1 of 45 : Deployer.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "../external/Decimal.sol";
import "../token/Dollar.sol";
import "../oracle/Oracle.sol";
import "../oracle/Pool.sol";
import "../dao/Upgradeable.sol";
import "../dao/Permission.sol";
import "../dao/Root.sol";


contract DollarFactory {
    function getCreationBytecode() private pure returns (bytes memory) {
        bytes memory bytecode = type(Dollar).creationCode;
        return abi.encodePacked(bytecode);
    }

    function deployDollar(bytes32 salt) internal returns (address) {
        bytes memory bytecode = getCreationBytecode();
        address addr;
        assembly {
            addr := create2(0, add(bytecode, 0x20), mload(bytecode), salt)

            if iszero(extcodesize(addr)) {
                revert(0, 0)
            }
        }

        return addr;
    }
}

contract Deployer1 is State, Permission, Upgradeable, DollarFactory {
    function initialize() initializer public {
        bytes32 salt = 0x0000000000000000000000000000000000000000000000000000000000b9c7be;
        _state.provider.dollar = Dollar(deployDollar(salt));
    }

    function implement(address implementation) external {
        upgradeTo(implementation);
    }
}

contract Deployer2 is State, Permission, Upgradeable {
    function initialize() initializer public {
        _state.provider.oracle = new Oracle(address(dollar()));
        oracle().setup();
    }

    function implement(address implementation) external {
        upgradeTo(implementation);
    }
}

contract Deployer3 is State, Permission, Upgradeable {
    event PoolDeployed(address proxy, address implementation);

    function initialize() initializer public {
        address poolImplementation = address(new Pool());
        address pool = address(new Root(poolImplementation));
        Pool(pool).initialize(address(this), address(dollar()), address(oracle().pair()));

        _state.provider.pool = pool;

        emit PoolDeployed(pool, poolImplementation);
    }

    function implement(address implementation) external {
        upgradeTo(implementation);
    }
}

File 2 of 45 : Decimal.sol
/*
    Copyright 2019 dYdX Trading Inc.
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.7;
pragma experimental ABIEncoderV2;

import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol";

/**
 * @title Decimal
 * @author dYdX
 *
 * Library that defines a fixed-point number with 18 decimal places.
 */
library Decimal {
    using SafeMath for uint256;

    // ============ Constants ============

    uint256 constant BASE = 10**18;

    // ============ Structs ============


    struct D256 {
        uint256 value;
    }

    // ============ Static Functions ============

    function zero()
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: 0 });
    }

    function one()
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: BASE });
    }

    function from(
        uint256 a
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: a.mul(BASE) });
    }

    function ratio(
        uint256 a,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: getPartial(a, BASE, b) });
    }

    // ============ Self Functions ============

    function add(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.add(b.mul(BASE)) });
    }

    function sub(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.sub(b.mul(BASE)) });
    }

    function sub(
        D256 memory self,
        uint256 b,
        string memory reason
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.sub(b.mul(BASE), reason) });
    }

    function mul(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.mul(b) });
    }

    function div(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.div(b) });
    }

    function pow(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        if (b == 0) {
            return from(1);
        }

        D256 memory temp = D256({ value: self.value });
        for (uint256 i = 1; i < b; i++) {
            temp = mul(temp, self);
        }

        return temp;
    }

    function add(
        D256 memory self,
        D256 memory b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.add(b.value) });
    }

    function sub(
        D256 memory self,
        D256 memory b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.sub(b.value) });
    }

    function sub(
        D256 memory self,
        D256 memory b,
        string memory reason
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.sub(b.value, reason) });
    }

    function mul(
        D256 memory self,
        D256 memory b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: getPartial(self.value, b.value, BASE) });
    }

    function div(
        D256 memory self,
        D256 memory b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: getPartial(self.value, BASE, b.value) });
    }

    function equals(D256 memory self, D256 memory b) internal pure returns (bool) {
        return self.value == b.value;
    }

    function greaterThan(D256 memory self, D256 memory b) internal pure returns (bool) {
        return compareTo(self, b) == 2;
    }

    function lessThan(D256 memory self, D256 memory b) internal pure returns (bool) {
        return compareTo(self, b) == 0;
    }

    function greaterThanOrEqualTo(D256 memory self, D256 memory b) internal pure returns (bool) {
        return compareTo(self, b) > 0;
    }

    function lessThanOrEqualTo(D256 memory self, D256 memory b) internal pure returns (bool) {
        return compareTo(self, b) < 2;
    }

    function isZero(D256 memory self) internal pure returns (bool) {
        return self.value == 0;
    }

    function asUint256(D256 memory self) internal pure returns (uint256) {
        return self.value.div(BASE);
    }

    // ============ Core Methods ============

    function getPartial(
        uint256 target,
        uint256 numerator,
        uint256 denominator
    )
    private
    pure
    returns (uint256)
    {
        return target.mul(numerator).div(denominator);
    }

    function compareTo(
        D256 memory a,
        D256 memory b
    )
    private
    pure
    returns (uint256)
    {
        if (a.value == b.value) {
            return 1;
        }
        return a.value > b.value ? 2 : 0;
    }
}

File 3 of 45 : Dollar.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/token/ERC20/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20Detailed.sol";
import "@openzeppelin/contracts/access/roles/MinterRole.sol";
import "./Permittable.sol";
import "./IDollar.sol";


contract Dollar is IDollar, MinterRole, ERC20Detailed, Permittable, ERC20Burnable  {

    constructor()
    ERC20Detailed("Universal Dollar", "U8D", 18)
    Permittable()
    public
    { }

    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        if (allowance(sender, _msgSender()) != uint256(-1)) {
            _approve(
                sender,
                _msgSender(),
                allowance(sender, _msgSender()).sub(amount, "Dollar: transfer amount exceeds allowance"));
        }
        return true;
    }
}

File 4 of 45 : Permittable.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20Detailed.sol";
import "../external/Require.sol";
import "../external/LibEIP712.sol";
import "../Constants.sol";

contract Permittable is ERC20Detailed, ERC20 {
    bytes32 constant FILE = "Permittable";

    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant EIP712_PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    string private constant EIP712_VERSION = "1";

    bytes32 public EIP712_DOMAIN_SEPARATOR;

    mapping(address => uint256) nonces;

    constructor() public {
        EIP712_DOMAIN_SEPARATOR = LibEIP712.hashEIP712Domain(name(), EIP712_VERSION, Constants.getChainId(), address(this));
    }

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external {
        bytes32 digest = LibEIP712.hashEIP712Message(
            EIP712_DOMAIN_SEPARATOR,
            keccak256(abi.encode(
                EIP712_PERMIT_TYPEHASH,
                owner,
                spender,
                value,
                nonces[owner]++,
                deadline
            ))
        );

        address recovered = ecrecover(digest, v, r, s);
        Require.that(
            recovered == owner,
            FILE,
            "Invalid signature"
        );

        Require.that(
            recovered != address(0),
            FILE,
            "Zero address"
        );

        Require.that(
            now <= deadline,
            FILE,
            "Expired"
        );

        _approve(owner, spender, value);
    }
}

File 5 of 45 : Require.sol
/*
    Copyright 2019 dYdX Trading Inc.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.7;

/**
 * @title Require
 * @author dYdX
 *
 * Stringifies parameters to pretty-print revert messages. Costs more gas than regular require()
 */
library Require {

    // ============ Constants ============

    uint256 constant ASCII_ZERO = 48; // '0'
    uint256 constant ASCII_RELATIVE_ZERO = 87; // 'a' - 10
    uint256 constant ASCII_LOWER_EX = 120; // 'x'
    bytes2 constant COLON = 0x3a20; // ': '
    bytes2 constant COMMA = 0x2c20; // ', '
    bytes2 constant LPAREN = 0x203c; // ' <'
    byte constant RPAREN = 0x3e; // '>'
    uint256 constant FOUR_BIT_MASK = 0xf;

    // ============ Library Functions ============

    function that(
        bool must,
        bytes32 file,
        bytes32 reason
    )
    internal
    pure
    {
        if (!must) {
            revert(
                string(
                    abi.encodePacked(
                        stringifyTruncated(file),
                        COLON,
                        stringifyTruncated(reason)
                    )
                )
            );
        }
    }

    function that(
        bool must,
        bytes32 file,
        bytes32 reason,
        uint256 payloadA
    )
    internal
    pure
    {
        if (!must) {
            revert(
                string(
                    abi.encodePacked(
                        stringifyTruncated(file),
                        COLON,
                        stringifyTruncated(reason),
                        LPAREN,
                        stringify(payloadA),
                        RPAREN
                    )
                )
            );
        }
    }

    function that(
        bool must,
        bytes32 file,
        bytes32 reason,
        uint256 payloadA,
        uint256 payloadB
    )
    internal
    pure
    {
        if (!must) {
            revert(
                string(
                    abi.encodePacked(
                        stringifyTruncated(file),
                        COLON,
                        stringifyTruncated(reason),
                        LPAREN,
                        stringify(payloadA),
                        COMMA,
                        stringify(payloadB),
                        RPAREN
                    )
                )
            );
        }
    }

    function that(
        bool must,
        bytes32 file,
        bytes32 reason,
        address payloadA
    )
    internal
    pure
    {
        if (!must) {
            revert(
                string(
                    abi.encodePacked(
                        stringifyTruncated(file),
                        COLON,
                        stringifyTruncated(reason),
                        LPAREN,
                        stringify(payloadA),
                        RPAREN
                    )
                )
            );
        }
    }

    function that(
        bool must,
        bytes32 file,
        bytes32 reason,
        address payloadA,
        uint256 payloadB
    )
    internal
    pure
    {
        if (!must) {
            revert(
                string(
                    abi.encodePacked(
                        stringifyTruncated(file),
                        COLON,
                        stringifyTruncated(reason),
                        LPAREN,
                        stringify(payloadA),
                        COMMA,
                        stringify(payloadB),
                        RPAREN
                    )
                )
            );
        }
    }

    function that(
        bool must,
        bytes32 file,
        bytes32 reason,
        address payloadA,
        uint256 payloadB,
        uint256 payloadC
    )
    internal
    pure
    {
        if (!must) {
            revert(
                string(
                    abi.encodePacked(
                        stringifyTruncated(file),
                        COLON,
                        stringifyTruncated(reason),
                        LPAREN,
                        stringify(payloadA),
                        COMMA,
                        stringify(payloadB),
                        COMMA,
                        stringify(payloadC),
                        RPAREN
                    )
                )
            );
        }
    }

    function that(
        bool must,
        bytes32 file,
        bytes32 reason,
        bytes32 payloadA
    )
    internal
    pure
    {
        if (!must) {
            revert(
                string(
                    abi.encodePacked(
                        stringifyTruncated(file),
                        COLON,
                        stringifyTruncated(reason),
                        LPAREN,
                        stringify(payloadA),
                        RPAREN
                    )
                )
            );
        }
    }

    function that(
        bool must,
        bytes32 file,
        bytes32 reason,
        bytes32 payloadA,
        uint256 payloadB,
        uint256 payloadC
    )
    internal
    pure
    {
        if (!must) {
            revert(
                string(
                    abi.encodePacked(
                        stringifyTruncated(file),
                        COLON,
                        stringifyTruncated(reason),
                        LPAREN,
                        stringify(payloadA),
                        COMMA,
                        stringify(payloadB),
                        COMMA,
                        stringify(payloadC),
                        RPAREN
                    )
                )
            );
        }
    }

    // ============ Private Functions ============

    function stringifyTruncated(
        bytes32 input
    )
    private
    pure
    returns (bytes memory)
    {
        // put the input bytes into the result
        bytes memory result = abi.encodePacked(input);

        // determine the length of the input by finding the location of the last non-zero byte
        for (uint256 i = 32; i > 0; ) {
            // reverse-for-loops with unsigned integer
            /* solium-disable-next-line security/no-modify-for-iter-var */
            i--;

            // find the last non-zero byte in order to determine the length
            if (result[i] != 0) {
                uint256 length = i + 1;

                /* solium-disable-next-line security/no-inline-assembly */
                assembly {
                    mstore(result, length) // r.length = length;
                }

                return result;
            }
        }

        // all bytes are zero
        return new bytes(0);
    }

    function stringify(
        uint256 input
    )
    private
    pure
    returns (bytes memory)
    {
        if (input == 0) {
            return "0";
        }

        // get the final string length
        uint256 j = input;
        uint256 length;
        while (j != 0) {
            length++;
            j /= 10;
        }

        // allocate the string
        bytes memory bstr = new bytes(length);

        // populate the string starting with the least-significant character
        j = input;
        for (uint256 i = length; i > 0; ) {
            // reverse-for-loops with unsigned integer
            /* solium-disable-next-line security/no-modify-for-iter-var */
            i--;

            // take last decimal digit
            bstr[i] = byte(uint8(ASCII_ZERO + (j % 10)));

            // remove the last decimal digit
            j /= 10;
        }

        return bstr;
    }

    function stringify(
        address input
    )
    private
    pure
    returns (bytes memory)
    {
        uint256 z = uint256(input);

        // addresses are "0x" followed by 20 bytes of data which take up 2 characters each
        bytes memory result = new bytes(42);

        // populate the result with "0x"
        result[0] = byte(uint8(ASCII_ZERO));
        result[1] = byte(uint8(ASCII_LOWER_EX));

        // for each byte (starting from the lowest byte), populate the result with two characters
        for (uint256 i = 0; i < 20; i++) {
            // each byte takes two characters
            uint256 shift = i * 2;

            // populate the least-significant character
            result[41 - shift] = char(z & FOUR_BIT_MASK);
            z = z >> 4;

            // populate the most-significant character
            result[40 - shift] = char(z & FOUR_BIT_MASK);
            z = z >> 4;
        }

        return result;
    }

    function stringify(
        bytes32 input
    )
    private
    pure
    returns (bytes memory)
    {
        uint256 z = uint256(input);

        // bytes32 are "0x" followed by 32 bytes of data which take up 2 characters each
        bytes memory result = new bytes(66);

        // populate the result with "0x"
        result[0] = byte(uint8(ASCII_ZERO));
        result[1] = byte(uint8(ASCII_LOWER_EX));

        // for each byte (starting from the lowest byte), populate the result with two characters
        for (uint256 i = 0; i < 32; i++) {
            // each byte takes two characters
            uint256 shift = i * 2;

            // populate the least-significant character
            result[65 - shift] = char(z & FOUR_BIT_MASK);
            z = z >> 4;

            // populate the most-significant character
            result[64 - shift] = char(z & FOUR_BIT_MASK);
            z = z >> 4;
        }

        return result;
    }

    function char(
        uint256 input
    )
    private
    pure
    returns (byte)
    {
        // return ASCII digit (0-9)
        if (input < 10) {
            return byte(uint8(input + ASCII_ZERO));
        }

        // return ASCII letter (a-f)
        return byte(uint8(input + ASCII_RELATIVE_ZERO));
    }
}

File 6 of 45 : LibEIP712.sol
/*
    Copyright 2019 ZeroEx Intl.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.9;


library LibEIP712 {

    // Hash of the EIP712 Domain Separator Schema
    // keccak256(abi.encodePacked(
    //     "EIP712Domain(",
    //     "string name,",
    //     "string version,",
    //     "uint256 chainId,",
    //     "address verifyingContract",
    //     ")"
    // ))
    bytes32 constant internal _EIP712_DOMAIN_SEPARATOR_SCHEMA_HASH = 0x8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f;

    /// @dev Calculates a EIP712 domain separator.
    /// @param name The EIP712 domain name.
    /// @param version The EIP712 domain version.
    /// @param verifyingContract The EIP712 verifying contract.
    /// @return EIP712 domain separator.
    function hashEIP712Domain(
        string memory name,
        string memory version,
        uint256 chainId,
        address verifyingContract
    )
    internal
    pure
    returns (bytes32 result)
    {
        bytes32 schemaHash = _EIP712_DOMAIN_SEPARATOR_SCHEMA_HASH;

        // Assembly for more efficient computing:
        // keccak256(abi.encodePacked(
        //     _EIP712_DOMAIN_SEPARATOR_SCHEMA_HASH,
        //     keccak256(bytes(name)),
        //     keccak256(bytes(version)),
        //     chainId,
        //     uint256(verifyingContract)
        // ))

        assembly {
        // Calculate hashes of dynamic data
            let nameHash := keccak256(add(name, 32), mload(name))
            let versionHash := keccak256(add(version, 32), mload(version))

        // Load free memory pointer
            let memPtr := mload(64)

        // Store params in memory
            mstore(memPtr, schemaHash)
            mstore(add(memPtr, 32), nameHash)
            mstore(add(memPtr, 64), versionHash)
            mstore(add(memPtr, 96), chainId)
            mstore(add(memPtr, 128), verifyingContract)

        // Compute hash
            result := keccak256(memPtr, 160)
        }
        return result;
    }

    /// @dev Calculates EIP712 encoding for a hash struct with a given domain hash.
    /// @param eip712DomainHash Hash of the domain domain separator data, computed
    ///                         with getDomainHash().
    /// @param hashStruct The EIP712 hash struct.
    /// @return EIP712 hash applied to the given EIP712 Domain.
    function hashEIP712Message(bytes32 eip712DomainHash, bytes32 hashStruct)
    internal
    pure
    returns (bytes32 result)
    {
        // Assembly for more efficient computing:
        // keccak256(abi.encodePacked(
        //     EIP191_HEADER,
        //     EIP712_DOMAIN_HASH,
        //     hashStruct
        // ));

        assembly {
        // Load free memory pointer
            let memPtr := mload(64)

            mstore(memPtr, 0x1901000000000000000000000000000000000000000000000000000000000000)  // EIP191 header
            mstore(add(memPtr, 2), eip712DomainHash)                                            // EIP712 domain hash
            mstore(add(memPtr, 34), hashStruct)                                                 // Hash of struct

        // Compute hash
            result := keccak256(memPtr, 66)
        }
        return result;
    }
}

File 7 of 45 : Constants.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "./external/Decimal.sol";

library Constants {
    /* Chain */
    uint256 private constant CHAIN_ID = 1; // Mainnet

    /* Bootstrapping */
    uint256 private constant BOOTSTRAPPING_PERIOD = 240; // 10 days with 1h per epoch
    uint256 private constant BOOTSTRAPPING_PRICE = 148e16; // 1.48 USDC

    /* Oracle */
    address private constant USDC = address(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48);
    uint256 private constant ORACLE_RESERVE_MINIMUM = 1e10; // 10,000 USDC

    /* Bonding */
    uint256 private constant INITIAL_STAKE_MULTIPLE = 1e6; // 100 U8D -> 100M U8DS

    /* Epoch */
    struct EpochStrategy {
        uint256 offset;
        uint256 start;
        uint256 period;
    }

    uint256 private constant EPOCH_OFFSET = 0;
    uint256 private constant EPOCH_START = 1611360000; // 01/23/2021 @ 12:00am (UTC)
    uint256 private constant EPOCH_PERIOD = 1 hours;

    /* Governance */
    uint256 private constant GOVERNANCE_PERIOD = 48; // 48 epochs
    uint256 private constant GOVERNANCE_EXPIRATION = 16; // 16 + 1 epochs
    uint256 private constant GOVERNANCE_QUORUM = 20e16; // 20%
    uint256 private constant GOVERNANCE_PROPOSAL_THRESHOLD = 1e16; // 1%
    uint256 private constant GOVERNANCE_SUPER_MAJORITY = 66e16; // 66%
    uint256 private constant GOVERNANCE_EMERGENCY_DELAY = 12; // 12 epochs

    /* DAO */
    uint256 private constant ADVANCE_INCENTIVE = 50e18; // 50 U8D
    uint256 private constant DAO_EXIT_STREAM_PERIOD = 72 hours; // 3 days of DAO streaming

    uint256 private constant DAO_EXIT_MAX_BOOST = uint256(-1);  // infinity - without max boost
    uint256 private constant DAO_EXIT_BOOST_COEFFICIENT = 200e16; // 200% (x2) – DAO boosting coefficient for fast streaming
    uint256 private constant DAO_EXIT_BOOST_PENALTY = 25e16; // 25% – penalty for DAO stream boosting

    /* Pool */
    uint256 private constant POOL_LP_EXIT_STREAM_PERIOD = 36 hours; // 1.5 days of Pool LP streaming
    uint256 private constant POOL_REWARD_EXIT_STREAM_PERIOD = 36 hours; // 1.5 days of Pool Reward streaming

    uint256 private constant POOL_EXIT_MAX_BOOST = uint256(-1);  // infinity - without max boost
    uint256 private constant POOL_EXIT_BOOST_COEFFICIENT = 200e16; // 200% (x2) – Pool boosting coefficient for fast streaming
    uint256 private constant POOL_EXIT_BOOST_PENALTY = 25e16; // 25% – penalty for Pool stream boosting

    /* Market */
    uint256 private constant COUPON_EXPIRATION = 720;
    uint256 private constant DEBT_RATIO_CAP = 20e16; // 20%

    /* Regulator */
    uint256 private constant SUPPLY_CHANGE_LIMIT = 3e16; // 3%
    uint256 private constant SUPPLY_CHANGE_DIVISOR = 24e18; // 24
    uint256 private constant COUPON_SUPPLY_CHANGE_LIMIT = 6e16; // 6%
    uint256 private constant NEGATIVE_SUPPLY_CHANGE_DIVISOR = 12e18; // 12
    uint256 private constant ORACLE_POOL_RATIO = 30; // 30%
    uint256 private constant TREASURY_RATIO = 0; // 0%

    /* Not used */
    address private constant TREASURY_ADDRESS = address(0); // no treasury address

    /**
     * Getters
     */

    function getUsdcAddress() internal pure returns (address) {
        return USDC;
    }

    function getOracleReserveMinimum() internal pure returns (uint256) {
        return ORACLE_RESERVE_MINIMUM;
    }

    function getEpochStrategy() internal pure returns (EpochStrategy memory) {
        return EpochStrategy({
            offset: EPOCH_OFFSET,
            start: EPOCH_START,
            period: EPOCH_PERIOD
        });
    }

    function getInitialStakeMultiple() internal pure returns (uint256) {
        return INITIAL_STAKE_MULTIPLE;
    }

    function getBootstrappingPeriod() internal pure returns (uint256) {
        return BOOTSTRAPPING_PERIOD;
    }

    function getBootstrappingPrice() internal pure returns (Decimal.D256 memory) {
        return Decimal.D256({value: BOOTSTRAPPING_PRICE});
    }

    function getGovernancePeriod() internal pure returns (uint256) {
        return GOVERNANCE_PERIOD;
    }

    function getGovernanceExpiration() internal pure returns (uint256) {
        return GOVERNANCE_EXPIRATION;
    }

    function getGovernanceQuorum() internal pure returns (Decimal.D256 memory) {
        return Decimal.D256({value: GOVERNANCE_QUORUM});
    }

    function getGovernanceProposalThreshold() internal pure returns (Decimal.D256 memory) {
        return Decimal.D256({value: GOVERNANCE_PROPOSAL_THRESHOLD});
    }

    function getGovernanceSuperMajority() internal pure returns (Decimal.D256 memory) {
        return Decimal.D256({value: GOVERNANCE_SUPER_MAJORITY});
    }

    function getGovernanceEmergencyDelay() internal pure returns (uint256) {
        return GOVERNANCE_EMERGENCY_DELAY;
    }

    function getAdvanceIncentive() internal pure returns (uint256) {
        return ADVANCE_INCENTIVE;
    }

    /* DAO */

    function getDAOExitStreamPeriod() internal pure returns (uint256) {
        return DAO_EXIT_STREAM_PERIOD;
    }

    function getDAOExitMaxBoost() internal pure returns (uint256) {
        return DAO_EXIT_MAX_BOOST;
    }

    function getDAOExitBoostCoefficient() internal pure returns (Decimal.D256 memory) {
        return Decimal.D256({value: DAO_EXIT_BOOST_COEFFICIENT});
    }

    function getDAOExitBoostPenalty() internal pure returns (Decimal.D256 memory) {
        return Decimal.D256({value: DAO_EXIT_BOOST_PENALTY});
    }

    /* Pool */

    function getPoolLpExitStreamPeriod() internal pure returns (uint256) {
        return POOL_LP_EXIT_STREAM_PERIOD;
    }

    function getPoolRewardExitStreamPeriod() internal pure returns (uint256) {
        return POOL_REWARD_EXIT_STREAM_PERIOD;
    }

    function getPoolExitMaxBoost() internal pure returns (uint256) {
        return POOL_EXIT_MAX_BOOST;
    }

    function getPoolExitBoostCoefficient() internal pure returns (Decimal.D256 memory) {
        return Decimal.D256({value: POOL_EXIT_BOOST_COEFFICIENT});
    }

    function getPoolExitBoostPenalty() internal pure returns (Decimal.D256 memory) {
        return Decimal.D256({value: POOL_EXIT_BOOST_PENALTY});
    }

    function getCouponExpiration() internal pure returns (uint256) {
        return COUPON_EXPIRATION;
    }

    function getDebtRatioCap() internal pure returns (Decimal.D256 memory) {
        return Decimal.D256({value: DEBT_RATIO_CAP});
    }

    function getSupplyChangeLimit() internal pure returns (Decimal.D256 memory) {
        return Decimal.D256({value: SUPPLY_CHANGE_LIMIT});
    }

    function getSupplyChangeDivisor() internal pure returns (Decimal.D256 memory) {
        return Decimal.D256({value: SUPPLY_CHANGE_DIVISOR});
    }

    function getCouponSupplyChangeLimit() internal pure returns (Decimal.D256 memory) {
        return Decimal.D256({value: COUPON_SUPPLY_CHANGE_LIMIT});
    }

    function getNegativeSupplyChangeDivisor() internal pure returns (Decimal.D256 memory) {
        return Decimal.D256({value: NEGATIVE_SUPPLY_CHANGE_DIVISOR});
    }

    function getOraclePoolRatio() internal pure returns (uint256) {
        return ORACLE_POOL_RATIO;
    }

    function getTreasuryRatio() internal pure returns (uint256) {
        return TREASURY_RATIO;
    }

    function getChainId() internal pure returns (uint256) {
        return CHAIN_ID;
    }

    function getTreasuryAddress() internal pure returns (address) {
        return TREASURY_ADDRESS;
    }
}

File 8 of 45 : IDollar.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

contract IDollar is IERC20 {
    function burn(uint256 amount) public;
    function burnFrom(address account, uint256 amount) public;
    function mint(address account, uint256 amount) public returns (bool);
}

File 9 of 45 : Oracle.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
import '../external/UniswapV2OracleLibrary.sol';
import '../external/UniswapV2Library.sol';
import "../external/Require.sol";
import "../external/Decimal.sol";
import "./IOracle.sol";
import "./IUSDC.sol";
import "../Constants.sol";

contract Oracle is IOracle {
    using Decimal for Decimal.D256;

    bytes32 private constant FILE = "Oracle";
    address private constant UNISWAP_FACTORY = address(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);

    address internal _dao;
    address internal _dollar;

    bool internal _initialized;
    IUniswapV2Pair internal _pair;
    uint256 internal _index;
    uint256 internal _cumulative;
    uint32 internal _timestamp;

    uint256 internal _reserve;

    constructor (address dollar) public {
        _dao = msg.sender;
        _dollar = dollar;
    }

    function setup() public onlyDao {
        _pair = IUniswapV2Pair(IUniswapV2Factory(UNISWAP_FACTORY).createPair(_dollar, usdc()));

        (address token0, address token1) = (_pair.token0(), _pair.token1());
        _index = _dollar == token0 ? 0 : 1;

        Require.that(
            _index == 0 || _dollar == token1,
            FILE,
            "Døllar not found"
        );
    }

    /**
     * Trades/Liquidity: (1) Initializes reserve and blockTimestampLast (can calculate a price)
     *                   (2) Has non-zero cumulative prices
     *
     * Steps: (1) Captures a reference blockTimestampLast
     *        (2) First reported value
     */
    function capture() public onlyDao returns (Decimal.D256 memory, bool) {
        if (_initialized) {
            return updateOracle();
        } else {
            initializeOracle();
            return (Decimal.one(), false);
        }
    }

    function initializeOracle() private {
        IUniswapV2Pair pair = _pair;
        uint256 priceCumulative = _index == 0 ?
            pair.price0CumulativeLast() :
            pair.price1CumulativeLast();
        (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast) = pair.getReserves();
        if(reserve0 != 0 && reserve1 != 0 && blockTimestampLast != 0) {
            _cumulative = priceCumulative;
            _timestamp = blockTimestampLast;
            _initialized = true;
            _reserve = _index == 0 ? reserve1 : reserve0; // get counter's reserve
        }
    }

    function updateOracle() private returns (Decimal.D256 memory, bool) {
        Decimal.D256 memory price = updatePrice();
        uint256 lastReserve = updateReserve();
        bool isBlacklisted = IUSDC(usdc()).isBlacklisted(address(_pair));

        bool valid = true;
        if (lastReserve < Constants.getOracleReserveMinimum()) {
            valid = false;
        }
        if (_reserve < Constants.getOracleReserveMinimum()) {
            valid = false;
        }
        if (isBlacklisted) {
            valid = false;
        }

        return (price, valid);
    }

    function updatePrice() private returns (Decimal.D256 memory) {
        (uint256 price0Cumulative, uint256 price1Cumulative, uint32 blockTimestamp) =
        UniswapV2OracleLibrary.currentCumulativePrices(address(_pair));
        uint32 timeElapsed = blockTimestamp - _timestamp; // overflow is desired
        uint256 priceCumulative = _index == 0 ? price0Cumulative : price1Cumulative;
        Decimal.D256 memory price = Decimal.ratio((priceCumulative - _cumulative) / timeElapsed, 2**112);

        _timestamp = blockTimestamp;
        _cumulative = priceCumulative;

        return price.mul(1e12);
    }

    function updateReserve() private returns (uint256) {
        uint256 lastReserve = _reserve;
        (uint112 reserve0, uint112 reserve1,) = _pair.getReserves();
        _reserve = _index == 0 ? reserve1 : reserve0; // get counter's reserve

        return lastReserve;
    }

    function usdc() internal view returns (address) {
        return Constants.getUsdcAddress();
    }

    function pair() external view returns (address) {
        return address(_pair);
    }

    function reserve() external view returns (uint256) {
        return _reserve;
    }

    modifier onlyDao() {
        Require.that(
            msg.sender == _dao,
            FILE,
            "Not dao"
        );

        _;
    }
}

File 10 of 45 : UniswapV2OracleLibrary.sol
pragma solidity >=0.5.0;

import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
import '@uniswap/lib/contracts/libraries/FixedPoint.sol';

// library with helper methods for oracles that are concerned with computing average prices
library UniswapV2OracleLibrary {
    using FixedPoint for *;

    // helper function that returns the current block timestamp within the range of uint32, i.e. [0, 2**32 - 1]
    function currentBlockTimestamp() internal view returns (uint32) {
        return uint32(block.timestamp % 2 ** 32);
    }

    // produces the cumulative price using counterfactuals to save gas and avoid a call to sync.
    function currentCumulativePrices(address pair)
    internal
    view
    returns (uint price0Cumulative, uint price1Cumulative, uint32 blockTimestamp) {
        blockTimestamp = currentBlockTimestamp();
        price0Cumulative = IUniswapV2Pair(pair).price0CumulativeLast();
        price1Cumulative = IUniswapV2Pair(pair).price1CumulativeLast();

        // if time has elapsed since the last update on the pair, mock the accumulated price values
        (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast) = IUniswapV2Pair(pair).getReserves();
        if (blockTimestampLast != blockTimestamp) {
            // subtraction overflow is desired
            uint32 timeElapsed = blockTimestamp - blockTimestampLast;
            // addition overflow is desired
            // counterfactual
            price0Cumulative += uint(FixedPoint.fraction(reserve1, reserve0)._x) * timeElapsed;
            // counterfactual
            price1Cumulative += uint(FixedPoint.fraction(reserve0, reserve1)._x) * timeElapsed;
        }
    }
}

File 11 of 45 : UniswapV2Library.sol
pragma solidity >=0.5.0;

import "@openzeppelin/contracts/math/SafeMath.sol";
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';

library UniswapV2Library {
    using SafeMath for uint;

    // returns sorted token addresses, used to handle return values from pairs sorted in this order
    function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) {
        require(tokenA != tokenB, 'UniswapV2Library: IDENTICAL_ADDRESSES');
        (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        require(token0 != address(0), 'UniswapV2Library: ZERO_ADDRESS');
    }

    // calculates the CREATE2 address for a pair without making any external calls
    function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) {
        (address token0, address token1) = sortTokens(tokenA, tokenB);
        pair = address(uint(keccak256(abi.encodePacked(
                hex'ff',
                factory,
                keccak256(abi.encodePacked(token0, token1)),
                hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash
            ))));
    }

    // fetches and sorts the reserves for a pair
    function getReserves(address factory, address tokenA, address tokenB) internal view returns (uint reserveA, uint reserveB) {
        (address token0,) = sortTokens(tokenA, tokenB);
        (uint reserve0, uint reserve1,) = IUniswapV2Pair(pairFor(factory, tokenA, tokenB)).getReserves();
        (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
    }

    // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset
    function quote(uint amountA, uint reserveA, uint reserveB) internal pure returns (uint amountB) {
        require(amountA > 0, 'UniswapV2Library: INSUFFICIENT_AMOUNT');
        require(reserveA > 0 && reserveB > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
        amountB = amountA.mul(reserveB) / reserveA;
    }

    // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) {
        require(amountIn > 0, 'UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
        uint amountInWithFee = amountIn.mul(997);
        uint numerator = amountInWithFee.mul(reserveOut);
        uint denominator = reserveIn.mul(1000).add(amountInWithFee);
        amountOut = numerator / denominator;
    }
}

File 12 of 45 : IOracle.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "../external/Decimal.sol";

contract IOracle {
    function setup() public;
    function capture() public returns (Decimal.D256 memory, bool);
    function pair() external view returns (address);
}

File 13 of 45 : IUSDC.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;

contract IUSDC {
    function isBlacklisted(address _account) external view returns (bool);
}

File 14 of 45 : Pool.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "../external/Require.sol";
import "../Constants.sol";
import "./PoolSetters.sol";
import "./Liquidity.sol";
import "./PoolUpgradable.sol";

contract Pool is PoolSetters, Liquidity, PoolUpgradable {
    using SafeMath for uint256;

    function initialize(address dao, address dollar, address univ2) public {
        require(!_state.isInitialized, "Pool: already initialized");
        _state.isInitialized = true;

        _state.provider.dao = IDAO(dao);
        _state.provider.dollar = IDollar(dollar);
        _state.provider.univ2 = IERC20(univ2);
    }

    bytes32 private constant FILE = "Pool";

    event Deposit(address indexed account, uint256 value);
    event ReleaseLp(address indexed account, uint256 value);
    event ReleaseReward(address indexed account, uint256 value);
    event Bond(address indexed account, uint256 value);
    event Unbond(address indexed account, uint256 value, uint256 newClaimable);
    event Provide(address indexed account, uint256 value, uint256 lessUsdc, uint256 newUniv2);

    // Streaming LP
    event StreamStartLp(address indexed account, uint256 value, uint256 streamedUntil);
    event StreamCancelLp(address indexed account, uint256 valueToStaged);
    event StreamBoostLp(address indexed account, uint256 penalty);
    event UnstreamToStagedLp(address indexed account, uint256 value);

    // Streaming Reward
    event StreamStartReward(address indexed account, uint256 value, uint256 streamedUntil);
    event StreamCancelReward(address indexed account, uint256 valueToStaged);
    event StreamBoostReward(address indexed account, uint256 penalty);

    function deposit(uint256 value) public notPaused {
        univ2().transferFrom(msg.sender, address(this), value);
        incrementBalanceOfStaged(msg.sender, value);

        balanceCheck();

        emit Deposit(msg.sender, value);
    }

    // ** NEW LOGIC **

    function depositAndBond(uint256 value) external {
        deposit(value);
        bond(value);
    }

    function release() external {
        releaseLp();
        releaseReward();
    }

    /**
     * Streaming LP
     */

    function startLpStream(uint256 value) external {
        require(value > 0, "Pool: must stream non-zero amount");

        cancelLpStream();
        decrementBalanceOfStaged(msg.sender, value, "Pool: insufficient staged balance");
        setStream(streamLp(msg.sender), value, Constants.getPoolLpExitStreamPeriod());

        balanceCheck();

        emit StreamStartLp(msg.sender, value, streamedLpUntil(msg.sender));
    }

    function cancelLpStream() public {
        // already canceled or not exist
        if (streamLpReserved(msg.sender) == 0) {
            return;
        }

        releaseLp();
        uint256 amountToStaged = unreleasedLpAmount(msg.sender);
        incrementBalanceOfStaged(msg.sender, amountToStaged);
        resetStream(streamLp(msg.sender));

        balanceCheck();

        emit StreamCancelLp(msg.sender, amountToStaged);
    }

    function boostLpStream() external returns (uint256) {
        require(streamLpBoosted(msg.sender) < Constants.getPoolExitMaxBoost(), "Pool: max boost reached");

        releaseLp();

        uint256 unreleasedLp = unreleasedLpAmount(msg.sender);
        uint256 penaltyLp = Decimal.from(unreleasedLp)
                                    .mul(Constants.getPoolExitBoostPenalty())
                                    .asUint256();
        uint256 timeleft = Decimal.from(streamedLpUntil(msg.sender).sub(blockTimestamp()))
                                    .div(Constants.getPoolExitBoostCoefficient())
                                    .asUint256();

        setStream(
            streamLp(msg.sender),
            unreleasedLp.sub(penaltyLp),
            timeleft
        );
        incrementBoostCounter(streamLp(msg.sender));

        uint256 penalty = convertLpToDollar(penaltyLp); // remove liquidity and swap to dollar
        dollar().burn(penalty);

        // distribute penalty if more than one dollar
        dao().distributePenalty(penalty);

        balanceCheck();

        emit StreamBoostLp(msg.sender, penaltyLp);

        return penaltyLp;
    }

    function releaseLp() public {
        uint256 unreleasedLp = releasableLpAmount(msg.sender);

        if (unreleasedLp == 0) {
            return;
        }

        incrementReleased(streamLp(msg.sender), unreleasedLp);
        univ2().transfer(msg.sender, unreleasedLp);

        balanceCheck();

        emit ReleaseLp(msg.sender, unreleasedLp);
    }

    /**
     * Streaming Reward
     */

    function startRewardStream(uint256 value) external {
        require(value > 0, "Pool: must stream non-zero amount");

        cancelRewardStream();
        decrementBalanceOfClaimable(msg.sender, value, "Pool: insufficient claimable balance");
        setStream(streamReward(msg.sender), value, Constants.getPoolRewardExitStreamPeriod());

        balanceCheck();

        emit StreamStartReward(msg.sender, value, streamedRewardUntil(msg.sender));
    }

    function cancelRewardStream() public {
        // already canceled or not exist
        if (streamRewardReserved(msg.sender) == 0) {
            return;
        }

        releaseReward();
        uint256 amountToStaged = unreleasedRewardAmount(msg.sender);
        incrementBalanceOfClaimable(msg.sender, amountToStaged);
        resetStream(streamReward(msg.sender));

        balanceCheck();

        emit StreamCancelReward(msg.sender, amountToStaged);
    }

    function boostRewardStream() external returns (uint256) {
        require(streamRewardBoosted(msg.sender) < Constants.getPoolExitMaxBoost(), "Pool: max boost reached");

        releaseReward();

        uint256 unreleased = unreleasedRewardAmount(msg.sender);
        uint256 penalty = Decimal.from(unreleased)
                                    .mul(Constants.getPoolExitBoostPenalty())
                                    .asUint256();
        uint256 timeleft = Decimal.from(streamedRewardUntil(msg.sender).sub(blockTimestamp()))
                                    .div(Constants.getPoolExitBoostCoefficient())
                                    .asUint256();

        setStream(
            streamReward(msg.sender),
            unreleased.sub(penalty),
            timeleft
        );
        incrementBoostCounter(streamReward(msg.sender));

        dollar().burn(penalty);

        // distribute penalty if more than one dollar
        dao().distributePenalty(penalty);

        balanceCheck();

        emit StreamBoostReward(msg.sender, penalty);

        return penalty;
    }

    function releaseReward() public {
        uint256 unreleasedReward = releasableRewardAmount(msg.sender);

        if (unreleasedReward == 0) {
            return;
        }

        incrementReleased(streamReward(msg.sender), unreleasedReward);
        dollar().transfer(msg.sender, unreleasedReward);

        balanceCheck();

        emit ReleaseReward(msg.sender, unreleasedReward);
    }

    // ** END NEW LOGIC **

    function bond(uint256 value) public notPaused {
        // partially unstream LP and bond
        uint256 staged = balanceOfStaged(msg.sender);
        if (value > staged) {
            releaseLp();

            uint256 amountToUnstream = value.sub(staged);
            uint256 newLpReserved = unreleasedLpAmount(msg.sender).sub(amountToUnstream, "Pool: insufficient balance");
            if (newLpReserved >= 0) {
                setStream(
                    streamLp(msg.sender),
                    newLpReserved,
                    streamLpTimeleft(msg.sender)
                );
                incrementBalanceOfStaged(msg.sender, amountToUnstream);

                emit UnstreamToStagedLp(msg.sender, amountToUnstream);
            }
        }

        uint256 totalRewardedWithPhantom = totalRewarded().add(totalPhantom());
        uint256 newPhantom = totalBonded() == 0 ?
            totalRewarded() == 0 ? Constants.getInitialStakeMultiple().mul(value) : 0 :
            totalRewardedWithPhantom.mul(value).div(totalBonded());

        incrementBalanceOfBonded(msg.sender, value);
        incrementBalanceOfPhantom(msg.sender, newPhantom);
        decrementBalanceOfStaged(msg.sender, value, "Pool: insufficient staged balance");

        balanceCheck();

        emit Bond(msg.sender, value);
    }

    function unbond(uint256 value) external {
        uint256 balanceOfBonded = balanceOfBonded(msg.sender);
        Require.that(
            balanceOfBonded > 0,
            FILE,
            "insufficient bonded balance"
        );

        uint256 newClaimable = balanceOfRewarded(msg.sender).mul(value).div(balanceOfBonded);
        uint256 lessPhantom = balanceOfPhantom(msg.sender).mul(value).div(balanceOfBonded);

        incrementBalanceOfStaged(msg.sender, value);
        incrementBalanceOfClaimable(msg.sender, newClaimable);
        decrementBalanceOfBonded(msg.sender, value, "Pool: insufficient bonded balance");
        decrementBalanceOfPhantom(msg.sender, lessPhantom, "Pool: insufficient phantom balance");

        balanceCheck();

        emit Unbond(msg.sender, value, newClaimable);
    }

    function provide(uint256 value) external notPaused {
        Require.that(
            totalBonded() > 0,
            FILE,
            "insufficient total bonded"
        );

        Require.that(
            totalRewarded() > 0,
            FILE,
            "insufficient total rewarded"
        );

        Require.that(
            balanceOfRewarded(msg.sender) >= value,
            FILE,
            "insufficient rewarded balance"
        );

        (uint256 lessUsdc, uint256 newUniv2) = addLiquidity(value);

        uint256 totalRewardedWithPhantom = totalRewarded().add(totalPhantom()).add(value);
        uint256 newPhantomFromBonded = totalRewardedWithPhantom.mul(newUniv2).div(totalBonded());

        incrementBalanceOfBonded(msg.sender, newUniv2);
        incrementBalanceOfPhantom(msg.sender, value.add(newPhantomFromBonded));


        balanceCheck();

        emit Provide(msg.sender, value, lessUsdc, newUniv2);
    }

    function emergencyWithdraw(address token, uint256 value) external onlyDao {
        IERC20(token).transfer(address(dao()), value);
    }

    function emergencyPause() external onlyDao {
        pause();
    }

    function upgrade(address newPoolImplementation) external onlyDao {
        upgradeTo(newPoolImplementation);
    }

    function balanceCheck() private {
        Require.that(
            univ2().balanceOf(address(this)) >= totalStaged().add(totalBonded()),
            FILE,
            "Inconsistent UNI-V2 balances"
        );
    }

    modifier onlyDao() {
        Require.that(
            msg.sender == address(dao()),
            FILE,
            "Not dao"
        );

        _;
    }

    modifier notPaused() {
        Require.that(
            !paused(),
            FILE,
            "Paused"
        );

        _;
    }
}

File 15 of 45 : PoolSetters.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/math/SafeMath.sol";
import "./PoolState.sol";
import "./PoolGetters.sol";
import "../streaming/StreamingSetters.sol";

contract PoolSetters is PoolState, PoolGetters, StreamingSetters {
    using SafeMath for uint256;

    /**
     * Global
     */

    function pause() internal {
        _state.paused = true;
    }

    /**
     * Account
     */

    function incrementBalanceOfBonded(address account, uint256 amount) internal {
        _state.accounts[account].bonded = _state.accounts[account].bonded.add(amount);
        _state.balance.bonded = _state.balance.bonded.add(amount);
    }

    function decrementBalanceOfBonded(address account, uint256 amount, string memory reason) internal {
        _state.accounts[account].bonded = _state.accounts[account].bonded.sub(amount, reason);
        _state.balance.bonded = _state.balance.bonded.sub(amount, reason);
    }

    function incrementBalanceOfStaged(address account, uint256 amount) internal {
        _state.accounts[account].staged = _state.accounts[account].staged.add(amount);
        _state.balance.staged = _state.balance.staged.add(amount);
    }

    function decrementBalanceOfStaged(address account, uint256 amount, string memory reason) internal {
        _state.accounts[account].staged = _state.accounts[account].staged.sub(amount, reason);
        _state.balance.staged = _state.balance.staged.sub(amount, reason);
    }

    function incrementBalanceOfClaimable(address account, uint256 amount) internal {
        _state.accounts[account].claimable = _state.accounts[account].claimable.add(amount);
        _state.balance.claimable = _state.balance.claimable.add(amount);
    }

    function decrementBalanceOfClaimable(address account, uint256 amount, string memory reason) internal {
        _state.accounts[account].claimable = _state.accounts[account].claimable.sub(amount, reason);
        _state.balance.claimable = _state.balance.claimable.sub(amount, reason);
    }

    function incrementBalanceOfPhantom(address account, uint256 amount) internal {
        _state.accounts[account].phantom = _state.accounts[account].phantom.add(amount);
        _state.balance.phantom = _state.balance.phantom.add(amount);
    }

    function decrementBalanceOfPhantom(address account, uint256 amount, string memory reason) internal {
        _state.accounts[account].phantom = _state.accounts[account].phantom.sub(amount, reason);
        _state.balance.phantom = _state.balance.phantom.sub(amount, reason);
    }
}

File 16 of 45 : PoolState.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "../token/IDollar.sol";
import "./IDAO.sol";
import "./IUSDC.sol";
import "../streaming/Stream.sol";

contract PoolAccount {
    struct State {
        uint256 staged;
        uint256 claimable;
        uint256 bonded;
        uint256 phantom;
        Stream.Stream lpStream;
        Stream.Stream rewardStream;
    }
}

contract PoolStorage {
    struct Provider {
        IDAO dao;
        IDollar dollar;
        IERC20 univ2;
    }
    
    struct Balance {
        uint256 staged;
        uint256 claimable;
        uint256 bonded;
        uint256 phantom;
    }

    struct State {
        Balance balance;
        Provider provider;

        bool paused;
        bool isInitialized;

        mapping(address => PoolAccount.State) accounts;
    }
}

contract PoolState {
    PoolStorage.State _state;
}

File 17 of 45 : IDAO.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;

contract IDAO {
    function distributePenalty(uint256 penalty) external;
    function epoch() external view returns (uint256);
}

File 18 of 45 : Stream.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

contract Stream {
    struct Stream {
        uint256 reserved;
        uint256 released;
        uint64 timestampFrom;
        uint64 timestampTo;
        uint64 boostCounter;
    }
}

File 19 of 45 : PoolGetters.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/math/SafeMath.sol";
import "./PoolState.sol";
import "../Constants.sol";
import "../streaming/StreamingGetters.sol";

contract PoolGetters is PoolState, StreamingGetters {
    using SafeMath for uint256;
    using Decimal for Decimal.D256;

    /**
     * Global
     */

    function usdc() public view returns (address) {
        return Constants.getUsdcAddress();
    }

    function dao() public view returns (IDAO) {
        return _state.provider.dao;
    }

    function dollar() public view returns (IDollar) {
        return _state.provider.dollar;
    }

    function univ2() public view returns (IERC20) {
        return _state.provider.univ2;
    }

    function totalBonded() public view returns (uint256) {
        return _state.balance.bonded;
    }

    function totalStaged() public view returns (uint256) {
        return _state.balance.staged;
    }

    function totalClaimable() public view returns (uint256) {
        return _state.balance.claimable;
    }

    function totalPhantom() public view returns (uint256) {
        return _state.balance.phantom;
    }

    function totalRewarded() public view returns (uint256) {
        return dollar().balanceOf(address(this)).sub(totalClaimable());
    }

    function paused() public view returns (bool) {
        return _state.paused;
    }

    /**
     * Account
     */

    function balanceOfStaged(address account) public view returns (uint256) {
        return _state.accounts[account].staged;
    }

    function balanceOfClaimable(address account) public view returns (uint256) {
        return _state.accounts[account].claimable;
    }

    function balanceOfBonded(address account) public view returns (uint256) {
        return _state.accounts[account].bonded;
    }

    function balanceOfPhantom(address account) public view returns (uint256) {
        return _state.accounts[account].phantom;
    }

    function balanceOfRewarded(address account) public view returns (uint256) {
        uint256 totalBonded = totalBonded();
        if (totalBonded == 0) {
            return 0;
        }

        uint256 totalRewardedWithPhantom = totalRewarded().add(totalPhantom());
        uint256 balanceOfRewardedWithPhantom = totalRewardedWithPhantom
            .mul(balanceOfBonded(account))
            .div(totalBonded);

        uint256 balanceOfPhantom = balanceOfPhantom(account);
        if (balanceOfRewardedWithPhantom > balanceOfPhantom) {
            return balanceOfRewardedWithPhantom.sub(balanceOfPhantom);
        }
        return 0;
    }

    /**
     * Streaming LP
     */

    // internal getter
    function streamLp(address account) internal view returns (Stream storage) {
        return _state.accounts[account].lpStream;
    }

    function streamedLpFrom(address account) public view returns (uint256) {
        return streamedFrom(streamLp(account));
    }

    function streamedLpUntil(address account) public view returns (uint256) {
        return streamedUntil(streamLp(account));
    }

    function streamLpDuration(address account) public view returns (uint256) {
        return streamDuration(streamLp(account));
    }

    function streamLpTimeleft(address account) public view returns (uint256) {
        return streamTimeleft(streamLp(account));
    }

    function streamLpReserved(address account) public view returns (uint256) {
        return streamReserved(streamLp(account));
    }

    function streamLpReleased(address account) public view returns (uint256) {
        return streamReleased(streamLp(account));
    }

    function streamLpBoosted(address account) public view returns (uint256) {
        return streamBoosted(streamLp(account));
    }

    function releasableLpAmount(address account) public view returns (uint256) {
        return releasableAmount(streamLp(account));
    }

    function unreleasedLpAmount(address account) public view returns (uint256) {
        return unreleasedAmount(streamLp(account));
    }

    /**
     * Streaming Reward
     */

    // internal getter
    function streamReward(address account) internal view returns (Stream storage) {
        return _state.accounts[account].rewardStream;
    }

    function streamedRewardFrom(address account) public view returns (uint256) {
        return streamedFrom(streamReward(account));
    }

    function streamedRewardUntil(address account) public view returns (uint256) {
        return streamedUntil(streamReward(account));
    }

    function streamRewardDuration(address account) public view returns (uint256) {
        return streamDuration(streamReward(account));
    }

    function streamRewardTimeleft(address account) public view returns (uint256) {
        return streamTimeleft(streamReward(account));
    }

    function streamRewardReserved(address account) public view returns (uint256) {
        return streamReserved(streamReward(account));
    }

    function streamRewardReleased(address account) public view returns (uint256) {
        return streamReleased(streamReward(account));
    }

    function streamRewardBoosted(address account) public view returns (uint256) {
        return streamBoosted(streamReward(account));
    }

    function releasableRewardAmount(address account) public view returns (uint256) {
        return releasableAmount(streamReward(account));
    }

    function unreleasedRewardAmount(address account) public view returns (uint256) {
        return unreleasedAmount(streamReward(account));
    }

    /**
     * Epoch
     */

    function epoch() internal view returns (uint256) {
        return dao().epoch();
    }

    function blockTimestamp() internal view returns (uint256) {
        return block.timestamp;
    }
}

File 20 of 45 : StreamingGetters.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/math/SafeMath.sol";
import "./Stream.sol";

contract StreamingGetters is Stream {
    using SafeMath for uint256;

    function streamedFrom(Stream memory currentStream) internal pure returns (uint256) {
        return currentStream.timestampFrom;
    }

    function streamedUntil(Stream memory currentStream) internal pure returns (uint256) {
        return currentStream.timestampTo;
    }

    function streamDuration(Stream memory currentStream) internal pure returns (uint256) {
        return streamedUntil(currentStream).sub(streamedFrom(currentStream));
    }

    function streamTimeleft(Stream memory currentStream) internal view returns (uint256) {
        uint256 curTime = blockTimestamp();
        uint256 untilTime = streamedUntil(currentStream);

        if (curTime >= untilTime) {
            return 0;
        }

        return untilTime.sub(curTime);
    }

    function streamReserved(Stream memory currentStream) internal pure returns (uint256) {
        return currentStream.reserved;
    }

    function streamReleased(Stream memory currentStream) internal pure returns (uint256) {
        return currentStream.released;
    }

    function streamBoosted(Stream memory currentStream) internal pure returns (uint256) {
        return currentStream.boostCounter;
    }

    function releasableAmount(Stream memory currentStream) internal view returns (uint256) {
        uint256 curTime = blockTimestamp();
        uint256 untilTime = streamedUntil(currentStream);

        uint256 releasedAmount;
        if (untilTime == 0) {
            return 0;
        } else if (curTime >= untilTime) {
            releasedAmount = streamReserved(currentStream);
        } else {
            releasedAmount = streamReserved(currentStream)
                                .mul(curTime.sub(streamedFrom(currentStream)))
                                .div(streamDuration(currentStream));
        }

        return releasedAmount.sub(streamReleased(currentStream));
    }

    function unreleasedAmount(Stream memory currentStream) internal pure returns (uint256) {
        return streamReserved(currentStream).sub(streamReleased(currentStream));
    }

    function blockTimestamp() internal view returns (uint256) {
        return block.timestamp;
    }
}

File 21 of 45 : StreamingSetters.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/math/SafeMath.sol";
import "./Stream.sol";
import "./StreamingGetters.sol";

contract StreamingSetters is Stream, StreamingGetters {
    using SafeMath for uint256;

    function setStream(Stream storage currentStream, uint256 amount, uint256 streamPeriod) internal {
        currentStream.reserved = amount;
        currentStream.released = 0;
        currentStream.timestampFrom = uint64(blockTimestamp());
        currentStream.timestampTo = uint64(blockTimestamp().add(streamPeriod)); // safe
    }

    function resetStream(Stream storage currentStream) internal {
        currentStream.reserved = 0;
        currentStream.released = 0;
        currentStream.timestampFrom = 0;
        currentStream.timestampTo = 0;
        currentStream.boostCounter = 0;
    }

    function incrementBoostCounter(Stream storage currentStream) internal {        
        currentStream.boostCounter++; // safe
    }

    function incrementReleased(Stream storage currentStream, uint256 amount) internal {
        currentStream.released = currentStream.released.add(amount);
    }
}

File 22 of 45 : Liquidity.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
import '../external/UniswapV2Library.sol';
import "../Constants.sol";
import "./PoolGetters.sol";

contract Liquidity is PoolGetters {
    address private constant UNISWAP_FACTORY = address(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);

    function addLiquidity(uint256 dollarAmount) internal returns (uint256, uint256) {
        (address dollar, address usdc) = (address(dollar()), usdc());
        (uint reserveA, uint reserveB) = getReserves(dollar, usdc);

        uint256 usdcAmount = (reserveA == 0 && reserveB == 0) ?
             dollarAmount :
             UniswapV2Library.quote(dollarAmount, reserveA, reserveB);

        address pair = address(univ2());
        IERC20(dollar).transfer(pair, dollarAmount);
        IERC20(usdc).transferFrom(msg.sender, pair, usdcAmount);
        return (usdcAmount, IUniswapV2Pair(pair).mint(address(this)));
    }

    function convertLpToDollar(uint256 liquidity) internal returns (uint256) {
        (uint256 dollarAmount, uint256 usdcAmount) = removeLiquidity(liquidity);
        return dollarAmount.add(swap(usdcAmount, usdc(), address(dollar())));
    }

    function removeLiquidity(uint256 liquidity) internal returns (uint256 dollarAmount, uint256 usdcAmount) {
        address pair = address(univ2());

        univ2().transfer(pair, liquidity); // send liquidity to pair
        (uint256 amount0, uint256 amount1) = IUniswapV2Pair(pair).burn(address(this));

        (address dollar, address usdc) = (address(dollar()), usdc());
        (address token0,) = UniswapV2Library.sortTokens(dollar, usdc);
        (dollarAmount, usdcAmount) = dollar == token0 ? (amount0, amount1) : (amount1, amount0);
    }

    function swap(uint256 amountIn, address tokenIn, address tokenOut) internal returns (uint256 amountOut) {
        (uint256 reserveIn, uint256 reserveOut) = getReserves(tokenIn, tokenOut);
        amountOut = UniswapV2Library.getAmountOut(amountIn, reserveIn, reserveOut);

        (address token0,) = UniswapV2Library.sortTokens(tokenIn, tokenOut);
        (uint amount0Out, uint amount1Out) = tokenIn == token0 ? (uint(0), amountOut) : (amountOut, uint(0));

        address pair = UniswapV2Library.pairFor(UNISWAP_FACTORY, tokenIn, tokenOut);
        IERC20(tokenIn).transfer(pair, amountIn);
        IUniswapV2Pair(pair).swap(
            amount0Out, amount1Out, address(this), new bytes(0)
        );
    }

    // overridable for testing
    function getReserves(address tokenA, address tokenB) internal view returns (uint reserveA, uint reserveB) {
        (address token0,) = UniswapV2Library.sortTokens(tokenA, tokenB);
        (uint reserve0, uint reserve1,) = IUniswapV2Pair(UniswapV2Library.pairFor(UNISWAP_FACTORY, tokenA, tokenB)).getReserves();
        (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
    }
}

File 23 of 45 : PoolUpgradable.sol
/*
    Copyright 2018-2019 zOS Global Limited
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/upgrades/contracts/utils/Address.sol";
import "./PoolState.sol";

/**
 * Based off of, and designed to interface with, openzeppelin/upgrades package
 */
contract PoolUpgradable is PoolState {
    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 private constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev Emitted when the implementation is upgraded.
     * @param implementation Address of the new implementation.
     */
    event Upgraded(address indexed implementation);

    function initialize() public {
        require(!_state.isInitialized, "already initialized");
    }

    /**
     * @dev Upgrades the proxy to a new implementation.
     * @param newImplementation Address of the new implementation.
     */
    function upgradeTo(address newImplementation) internal {
        setImplementation(newImplementation);

        emit Upgraded(newImplementation);
    }

    /**
     * @dev Sets the implementation address of the proxy.
     * @param newImplementation Address of the new implementation.
     */
    function setImplementation(address newImplementation) private {
        require(OpenZeppelinUpgradesAddress.isContract(newImplementation), "Cannot set a proxy implementation to a non-contract address");

        bytes32 slot = IMPLEMENTATION_SLOT;

        assembly {
            sstore(slot, newImplementation)
        }
    }
}

File 24 of 45 : Upgradeable.sol
/*
    Copyright 2018-2019 zOS Global Limited
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/upgrades/contracts/utils/Address.sol";
import "./State.sol";

/**
 * Based off of, and designed to interface with, openzeppelin/upgrades package
 */
contract Upgradeable is State {
    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 private constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev Emitted when the implementation is upgraded.
     * @param implementation Address of the new implementation.
     */
    event Upgraded(address indexed implementation);

    function initialize() public;

    /**
     * @dev Upgrades the proxy to a new implementation.
     * @param newImplementation Address of the new implementation.
     */
    function upgradeTo(address newImplementation) internal {
        setImplementation(newImplementation);

        (bool success, bytes memory reason) = newImplementation.delegatecall(abi.encodeWithSignature("initialize()"));
        require(success, string(reason));

        emit Upgraded(newImplementation);
    }

    /**
     * @dev Sets the implementation address of the proxy.
     * @param newImplementation Address of the new implementation.
     */
    function setImplementation(address newImplementation) private {
        require(OpenZeppelinUpgradesAddress.isContract(newImplementation), "Cannot set a proxy implementation to a non-contract address");

        bytes32 slot = IMPLEMENTATION_SLOT;

        assembly {
            sstore(slot, newImplementation)
        }
    }
}

File 25 of 45 : State.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
import "../token/IDollar.sol";
import "../oracle/IOracle.sol";
import "../external/Decimal.sol";
import "../streaming/Stream.sol";

contract Account {
    enum Status {
        Unlocked,
        Locked
    }

    struct State {
        uint256 staged;
        uint256 balance;
        mapping(uint256 => uint256) coupons;
        mapping(address => uint256) couponAllowances;
        uint256 lockedUntil;
        Stream.Stream stream;
    }
}

contract Epoch {
    struct Global {
        uint256 start;
        uint256 period;
        uint256 current;
    }

    struct Coupons {
        uint256 outstanding;
        uint256 expiration;
        uint256[] expiring;
    }

    struct State {
        uint256 bonded;
        Coupons coupons;
    }
}

contract Candidate {
    enum Vote {
        UNDECIDED,
        APPROVE,
        REJECT
    }

    struct State {
        uint256 start;
        uint256 period;
        uint256 approve;
        uint256 reject;
        mapping(address => Vote) votes;
        bool initialized;
    }
}

contract Storage {
    struct Provider {
        IDollar dollar;
        IOracle oracle;
        address pool;
    }

    struct Balance {
        uint256 supply;
        uint256 bonded;
        uint256 staged;
        uint256 redeemable;
        uint256 debt;
        uint256 coupons;
    }

    struct State {
        Epoch.Global epoch;
        Balance balance;
        Provider provider;

        mapping(address => Account.State) accounts;
        mapping(uint256 => Epoch.State) epochs;
        mapping(address => Candidate.State) candidates;
    }
}

contract State {
    Storage.State _state;
}

File 26 of 45 : Permission.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "./Setters.sol";
import "../external/Require.sol";

contract Permission is Setters {

    bytes32 private constant FILE = "Permission";

    modifier onlyPool() {
        Require.that(
            msg.sender == address(pool()),
            FILE,
            "Not pool"
        );

        _;
    }

    // Can modify account state
    modifier onlyUnlocked(address account) {
        Require.that(
            statusOf(account) != Account.Status.Locked,
            FILE,
            "Not unlocked"
        );

        _;
    }

    modifier initializer() {
        Require.that(
            !isInitialized(implementation()),
            FILE,
            "Already initialized"
        );

        initialized(implementation());

        _;
    }
}

File 27 of 45 : Setters.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/math/SafeMath.sol";
import "./State.sol";
import "./Getters.sol";
import "../streaming/StreamingSetters.sol";

contract Setters is State, Getters, StreamingSetters {
    using SafeMath for uint256;

    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * ERC20 Interface
     */

    function transfer(address recipient, uint256 amount) external returns (bool) {
        return false;
    }

    function approve(address spender, uint256 amount) external returns (bool) {
        return false;
    }

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool) {
        return false;
    }

    /**
     * Global
     */

    function incrementTotalBonded(uint256 amount) internal {
        _state.balance.bonded = _state.balance.bonded.add(amount);
    }

    function decrementTotalBonded(uint256 amount, string memory reason) internal {
        _state.balance.bonded = _state.balance.bonded.sub(amount, reason);
    }

    function incrementTotalDebt(uint256 amount) internal {
        _state.balance.debt = _state.balance.debt.add(amount);
    }

    function decrementTotalDebt(uint256 amount, string memory reason) internal {
        _state.balance.debt = _state.balance.debt.sub(amount, reason);
    }

    function incrementTotalRedeemable(uint256 amount) internal {
        _state.balance.redeemable = _state.balance.redeemable.add(amount);
    }

    function decrementTotalRedeemable(uint256 amount, string memory reason) internal {
        _state.balance.redeemable = _state.balance.redeemable.sub(amount, reason);
    }

    /**
     * Account
     */

    function incrementBalanceOf(address account, uint256 amount) internal {
        _state.accounts[account].balance = _state.accounts[account].balance.add(amount);
        _state.balance.supply = _state.balance.supply.add(amount);

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

    function decrementBalanceOf(address account, uint256 amount, string memory reason) internal {
        _state.accounts[account].balance = _state.accounts[account].balance.sub(amount, reason);
        _state.balance.supply = _state.balance.supply.sub(amount, reason);

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

    function incrementBalanceOfStaged(address account, uint256 amount) internal {
        _state.accounts[account].staged = _state.accounts[account].staged.add(amount);
        _state.balance.staged = _state.balance.staged.add(amount);
    }

    function decrementBalanceOfStaged(address account, uint256 amount, string memory reason) internal {
        _state.accounts[account].staged = _state.accounts[account].staged.sub(amount, reason);
        _state.balance.staged = _state.balance.staged.sub(amount, reason);
    }

    function incrementBalanceOfCoupons(address account, uint256 epoch, uint256 amount) internal {
        _state.accounts[account].coupons[epoch] = _state.accounts[account].coupons[epoch].add(amount);
        _state.epochs[epoch].coupons.outstanding = _state.epochs[epoch].coupons.outstanding.add(amount);
        _state.balance.coupons = _state.balance.coupons.add(amount);
    }

    function decrementBalanceOfCoupons(address account, uint256 epoch, uint256 amount, string memory reason) internal {
        _state.accounts[account].coupons[epoch] = _state.accounts[account].coupons[epoch].sub(amount, reason);
        _state.epochs[epoch].coupons.outstanding = _state.epochs[epoch].coupons.outstanding.sub(amount, reason);
        _state.balance.coupons = _state.balance.coupons.sub(amount, reason);
    }

    function updateAllowanceCoupons(address owner, address spender, uint256 amount) internal {
        _state.accounts[owner].couponAllowances[spender] = amount;
    }

    function decrementAllowanceCoupons(address owner, address spender, uint256 amount, string memory reason) internal {
        _state.accounts[owner].couponAllowances[spender] =
            _state.accounts[owner].couponAllowances[spender].sub(amount, reason);
    }

    /**
     * Epoch
     */

    function incrementEpoch() internal {
        _state.epoch.current = _state.epoch.current.add(1);
    }

    function snapshotTotalBonded() internal {
        _state.epochs[epoch()].bonded = totalSupply();
    }

    function initializeCouponsExpiration(uint256 epoch, uint256 expiration) internal {
        _state.epochs[epoch].coupons.expiration = expiration;
        _state.epochs[expiration].coupons.expiring.push(epoch);
    }

    function eliminateOutstandingCoupons(uint256 epoch) internal {
        uint256 outstandingCouponsForEpoch = outstandingCoupons(epoch);
        if(outstandingCouponsForEpoch == 0) {
            return;
        }
        _state.balance.coupons = _state.balance.coupons.sub(outstandingCouponsForEpoch);
        _state.epochs[epoch].coupons.outstanding = 0;
    }

    /**
     * Governance
     */

    function createCandidate(address candidate, uint256 period) internal {
        _state.candidates[candidate].start = epoch();
        _state.candidates[candidate].period = period;
    }

    function recordVote(address account, address candidate, Candidate.Vote vote) internal {
        _state.candidates[candidate].votes[account] = vote;
    }

    function incrementApproveFor(address candidate, uint256 amount) internal {
        _state.candidates[candidate].approve = _state.candidates[candidate].approve.add(amount);
    }

    function decrementApproveFor(address candidate, uint256 amount, string memory reason) internal {
        _state.candidates[candidate].approve = _state.candidates[candidate].approve.sub(amount, reason);
    }

    function incrementRejectFor(address candidate, uint256 amount) internal {
        _state.candidates[candidate].reject = _state.candidates[candidate].reject.add(amount);
    }

    function decrementRejectFor(address candidate, uint256 amount, string memory reason) internal {
        _state.candidates[candidate].reject = _state.candidates[candidate].reject.sub(amount, reason);
    }

    function placeLock(address account, address candidate) internal {
        uint256 currentLock = _state.accounts[account].lockedUntil;
        uint256 newLock = startFor(candidate).add(periodFor(candidate));
        if (newLock > currentLock) {
            _state.accounts[account].lockedUntil = newLock;
        }
    }

    function initialized(address candidate) internal {
        _state.candidates[candidate].initialized = true;
    }
}

File 28 of 45 : Getters.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/math/SafeMath.sol";
import "./State.sol";
import "../Constants.sol";
import "../streaming/StreamingGetters.sol";

contract Getters is State, StreamingGetters {
    using SafeMath for uint256;
    using Decimal for Decimal.D256;

    bytes32 private constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * ERC20 Interface
     */

    function name() public view returns (string memory) {
        return "Universal Dollar Stake";
    }

    function symbol() public view returns (string memory) {
        return "U8DS";
    }

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

    function balanceOf(address account) public view returns (uint256) {
        return _state.accounts[account].balance;
    }

    function totalSupply() public view returns (uint256) {
        return _state.balance.supply;
    }

    function allowance(address owner, address spender) external view returns (uint256) {
        return 0;
    }

    /**
     * Global
     */

    function dollar() public view returns (IDollar) {
        return _state.provider.dollar;
    }

    function oracle() public view returns (IOracle) {
        return _state.provider.oracle;
    }

    function pool() public view returns (address) {
        return _state.provider.pool;
    }

    function totalBonded() public view returns (uint256) {
        return _state.balance.bonded;
    }

    function totalStaged() public view returns (uint256) {
        return _state.balance.staged;
    }

    function totalDebt() public view returns (uint256) {
        return _state.balance.debt;
    }

    function totalRedeemable() public view returns (uint256) {
        return _state.balance.redeemable;
    }

    function totalCoupons() public view returns (uint256) {
        return _state.balance.coupons;
    }

    function totalNet() public view returns (uint256) {
        return dollar().totalSupply().sub(totalDebt());
    }

    /**
     * Account
     */

    function balanceOfStaged(address account) public view returns (uint256) {
        return _state.accounts[account].staged;
    }

    function balanceOfBonded(address account) public view returns (uint256) {
        uint256 totalSupply = totalSupply();
        if (totalSupply == 0) {
            return 0;
        }
        return totalBonded().mul(balanceOf(account)).div(totalSupply);
    }

    function balanceOfCoupons(address account, uint256 epoch) public view returns (uint256) {
        if (outstandingCoupons(epoch) == 0) {
            return 0;
        }
        return _state.accounts[account].coupons[epoch];
    }

    function statusOf(address account) public view returns (Account.Status) {
        return _state.accounts[account].lockedUntil > epoch() ? Account.Status.Locked : Account.Status.Unlocked;
    }

    function allowanceCoupons(address owner, address spender) public view returns (uint256) {
        return _state.accounts[owner].couponAllowances[spender];
    }

    /**
     * Streaming
     */

    // internal getter
    function stream(address account) internal view returns (Stream storage) {
        return _state.accounts[account].stream;
    }

    function streamedFrom(address account) public view returns (uint256) {
        return streamedFrom(stream(account));
    }

    function streamedUntil(address account) public view returns (uint256) {
        return streamedUntil(stream(account));
    }

    function streamDuration(address account) public view returns (uint256) {
        return streamDuration(stream(account));
    }

    function streamTimeleft(address account) public view returns (uint256) {
        return streamTimeleft(stream(account));
    }

    function streamReserved(address account) public view returns (uint256) {
        return streamReserved(stream(account));
    }

    function streamReleased(address account) public view returns (uint256) {
        return streamReleased(stream(account));
    }

    function streamBoosted(address account) public view returns (uint256) {
        return streamBoosted(stream(account));
    }

    function releasableAmount(address account) public view returns (uint256) {
        return releasableAmount(stream(account));
    }

    function unreleasedAmount(address account) public view returns (uint256) {
        return unreleasedAmount(stream(account));
    }

    /**
     * Epoch
     */

    function epoch() public view returns (uint256) {
        return _state.epoch.current;
    }

    function epochTime() public view returns (uint256) {
        Constants.EpochStrategy memory current = Constants.getEpochStrategy();
        return epochTimeWithStrategy(current);
    }

    function epochTimeWithStrategy(Constants.EpochStrategy memory strategy) private view returns (uint256) {
        return blockTimestamp()
            .sub(strategy.start)
            .div(strategy.period)
            .add(strategy.offset);
    }

    // Overridable for testing
    function blockTimestamp() internal view returns (uint256) {
        return block.timestamp;
    }

    function outstandingCoupons(uint256 epoch) public view returns (uint256) {
        return _state.epochs[epoch].coupons.outstanding;
    }

    function couponsExpiration(uint256 epoch) public view returns (uint256) {
        return _state.epochs[epoch].coupons.expiration;
    }

    function expiringCoupons(uint256 epoch) public view returns (uint256) {
        return _state.epochs[epoch].coupons.expiring.length;
    }

    function expiringCouponsAtIndex(uint256 epoch, uint256 i) public view returns (uint256) {
        return _state.epochs[epoch].coupons.expiring[i];
    }

    function totalBondedAt(uint256 epoch) public view returns (uint256) {
        return _state.epochs[epoch].bonded;
    }

    function bootstrappingAt(uint256 epoch) public view returns (bool) {
        return epoch <= Constants.getBootstrappingPeriod();
    }

    /**
     * Governance
     */

    function recordedVote(address account, address candidate) public view returns (Candidate.Vote) {
        return _state.candidates[candidate].votes[account];
    }

    function startFor(address candidate) public view returns (uint256) {
        return _state.candidates[candidate].start;
    }

    function periodFor(address candidate) public view returns (uint256) {
        return _state.candidates[candidate].period;
    }

    function approveFor(address candidate) public view returns (uint256) {
        return _state.candidates[candidate].approve;
    }

    function rejectFor(address candidate) public view returns (uint256) {
        return _state.candidates[candidate].reject;
    }

    function votesFor(address candidate) public view returns (uint256) {
        return approveFor(candidate).add(rejectFor(candidate));
    }

    function isNominated(address candidate) public view returns (bool) {
        return _state.candidates[candidate].start > 0;
    }

    function isInitialized(address candidate) public view returns (bool) {
        return _state.candidates[candidate].initialized;
    }

    function implementation() public view returns (address impl) {
        bytes32 slot = IMPLEMENTATION_SLOT;
        assembly {
            impl := sload(slot)
        }
    }
}

File 29 of 45 : Root.sol
/*
    Copyright 2021 Universal Dollar Devs, based on the works of the Empty Set Squad

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/upgrades/contracts/upgradeability/UpgradeabilityProxy.sol";

contract Root is UpgradeabilityProxy {
    constructor (address implementation) UpgradeabilityProxy(
        implementation,
        abi.encodeWithSignature("initialize()")
    ) public { }
}

File 30 of 45 : SafeMath.sol
pragma solidity ^0.5.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.
     *
     * _Available since v2.4.0._
     */
    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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

File 31 of 45 : ERC20Burnable.sol
pragma solidity ^0.5.0;

import "../../GSN/Context.sol";
import "./ERC20.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev See {ERC20-_burnFrom}.
     */
    function burnFrom(address account, uint256 amount) public {
        _burnFrom(account, amount);
    }
}

File 32 of 45 : Context.sol
pragma solidity ^0.5.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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

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

File 33 of 45 : ERC20.sol
pragma solidity ^0.5.0;

import "../../GSN/Context.sol";
import "./IERC20.sol";
import "../../math/SafeMath.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 {ERC20Mintable}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

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

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

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

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

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

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This 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 {
        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 Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

File 34 of 45 : IERC20.sol
pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

File 35 of 45 : ERC20Detailed.sol
pragma solidity ^0.5.0;

import "./IERC20.sol";

/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

File 36 of 45 : MinterRole.sol
pragma solidity ^0.5.0;

import "../../GSN/Context.sol";
import "../Roles.sol";

contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

File 37 of 45 : Roles.sol
pragma solidity ^0.5.0;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

File 38 of 45 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

File 39 of 45 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

File 40 of 45 : FixedPoint.sol
pragma solidity >=0.4.0;

import './Babylonian.sol';

// a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format))
library FixedPoint {
    // range: [0, 2**112 - 1]
    // resolution: 1 / 2**112
    struct uq112x112 {
        uint224 _x;
    }

    // range: [0, 2**144 - 1]
    // resolution: 1 / 2**112
    struct uq144x112 {
        uint _x;
    }

    uint8 private constant RESOLUTION = 112;
    uint private constant Q112 = uint(1) << RESOLUTION;
    uint private constant Q224 = Q112 << RESOLUTION;

    // encode a uint112 as a UQ112x112
    function encode(uint112 x) internal pure returns (uq112x112 memory) {
        return uq112x112(uint224(x) << RESOLUTION);
    }

    // encodes a uint144 as a UQ144x112
    function encode144(uint144 x) internal pure returns (uq144x112 memory) {
        return uq144x112(uint256(x) << RESOLUTION);
    }

    // divide a UQ112x112 by a uint112, returning a UQ112x112
    function div(uq112x112 memory self, uint112 x) internal pure returns (uq112x112 memory) {
        require(x != 0, 'FixedPoint: DIV_BY_ZERO');
        return uq112x112(self._x / uint224(x));
    }

    // multiply a UQ112x112 by a uint, returning a UQ144x112
    // reverts on overflow
    function mul(uq112x112 memory self, uint y) internal pure returns (uq144x112 memory) {
        uint z;
        require(y == 0 || (z = uint(self._x) * y) / y == uint(self._x), "FixedPoint: MULTIPLICATION_OVERFLOW");
        return uq144x112(z);
    }

    // returns a UQ112x112 which represents the ratio of the numerator to the denominator
    // equivalent to encode(numerator).div(denominator)
    function fraction(uint112 numerator, uint112 denominator) internal pure returns (uq112x112 memory) {
        require(denominator > 0, "FixedPoint: DIV_BY_ZERO");
        return uq112x112((uint224(numerator) << RESOLUTION) / denominator);
    }

    // decode a UQ112x112 into a uint112 by truncating after the radix point
    function decode(uq112x112 memory self) internal pure returns (uint112) {
        return uint112(self._x >> RESOLUTION);
    }

    // decode a UQ144x112 into a uint144 by truncating after the radix point
    function decode144(uq144x112 memory self) internal pure returns (uint144) {
        return uint144(self._x >> RESOLUTION);
    }

    // take the reciprocal of a UQ112x112
    function reciprocal(uq112x112 memory self) internal pure returns (uq112x112 memory) {
        require(self._x != 0, 'FixedPoint: ZERO_RECIPROCAL');
        return uq112x112(uint224(Q224 / self._x));
    }

    // square root of a UQ112x112
    function sqrt(uq112x112 memory self) internal pure returns (uq112x112 memory) {
        return uq112x112(uint224(Babylonian.sqrt(uint256(self._x)) << 56));
    }
}

File 41 of 45 : Babylonian.sol
pragma solidity >=0.4.0;

// computes square roots using the babylonian method
// https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method
library Babylonian {
    function sqrt(uint y) internal pure returns (uint z) {
        if (y > 3) {
            z = y;
            uint x = y / 2 + 1;
            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
        // else z = 0
    }
}

File 42 of 45 : Address.sol
pragma solidity ^0.5.0;

/**
 * Utility library of inline functions on addresses
 *
 * Source https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-solidity/v2.1.3/contracts/utils/Address.sol
 * This contract is copied here and renamed from the original to avoid clashes in the compiled artifacts
 * when the user imports a zos-lib contract (that transitively causes this contract to be compiled and added to the
 * build/artifacts folder) as well as the vanilla Address implementation from an openzeppelin version.
 */
library OpenZeppelinUpgradesAddress {
    /**
     * Returns whether the target address is a contract
     * @dev This function will return false if invoked during the constructor of a contract,
     * as the code is not actually created until after the constructor finishes.
     * @param account address of the account to check
     * @return whether the target address is a contract
     */
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        // XXX Currently there is no better way to check if there is a contract in an address
        // than to check the size of the code at that address.
        // See https://ethereum.stackexchange.com/a/14016/36603
        // for more details about how this works.
        // TODO Check this again before the Serenity release, because all addresses will be
        // contracts then.
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
}

File 43 of 45 : UpgradeabilityProxy.sol
pragma solidity ^0.5.0;

import './BaseUpgradeabilityProxy.sol';

/**
 * @title UpgradeabilityProxy
 * @dev Extends BaseUpgradeabilityProxy with a constructor for initializing
 * implementation and init data.
 */
contract UpgradeabilityProxy is BaseUpgradeabilityProxy {
  /**
   * @dev Contract constructor.
   * @param _logic Address of the initial implementation.
   * @param _data Data to send as msg.data to the implementation to initialize the proxied contract.
   * It should include the signature and the parameters of the function to be called, as described in
   * https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
   * This parameter is optional, if no data is given the initialization call to proxied contract will be skipped.
   */
  constructor(address _logic, bytes memory _data) public payable {
    assert(IMPLEMENTATION_SLOT == bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1));
    _setImplementation(_logic);
    if(_data.length > 0) {
      (bool success,) = _logic.delegatecall(_data);
      require(success);
    }
  }  
}

File 44 of 45 : BaseUpgradeabilityProxy.sol
pragma solidity ^0.5.0;

import './Proxy.sol';
import '../utils/Address.sol';

/**
 * @title BaseUpgradeabilityProxy
 * @dev This contract implements a proxy that allows to change the
 * implementation address to which it will delegate.
 * Such a change is called an implementation upgrade.
 */
contract BaseUpgradeabilityProxy is Proxy {
  /**
   * @dev Emitted when the implementation is upgraded.
   * @param implementation Address of the new implementation.
   */
  event Upgraded(address indexed implementation);

  /**
   * @dev Storage slot with the address of the current implementation.
   * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
   * validated in the constructor.
   */
  bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

  /**
   * @dev Returns the current implementation.
   * @return Address of the current implementation
   */
  function _implementation() internal view returns (address impl) {
    bytes32 slot = IMPLEMENTATION_SLOT;
    assembly {
      impl := sload(slot)
    }
  }

  /**
   * @dev Upgrades the proxy to a new implementation.
   * @param newImplementation Address of the new implementation.
   */
  function _upgradeTo(address newImplementation) internal {
    _setImplementation(newImplementation);
    emit Upgraded(newImplementation);
  }

  /**
   * @dev Sets the implementation address of the proxy.
   * @param newImplementation Address of the new implementation.
   */
  function _setImplementation(address newImplementation) internal {
    require(OpenZeppelinUpgradesAddress.isContract(newImplementation), "Cannot set a proxy implementation to a non-contract address");

    bytes32 slot = IMPLEMENTATION_SLOT;

    assembly {
      sstore(slot, newImplementation)
    }
  }
}

File 45 of 45 : Proxy.sol
pragma solidity ^0.5.0;

/**
 * @title Proxy
 * @dev Implements delegation of calls to other contracts, with proper
 * forwarding of return values and bubbling of failures.
 * It defines a fallback function that delegates all calls to the address
 * returned by the abstract _implementation() internal function.
 */
contract Proxy {
  /**
   * @dev Fallback function.
   * Implemented entirely in `_fallback`.
   */
  function () payable external {
    _fallback();
  }

  /**
   * @return The Address of the implementation.
   */
  function _implementation() internal view returns (address);

  /**
   * @dev Delegates execution to an implementation contract.
   * This is a low level function that doesn't return to its internal call site.
   * It will return to the external caller whatever the implementation returns.
   * @param implementation Address to delegate.
   */
  function _delegate(address implementation) internal {
    assembly {
      // Copy msg.data. We take full control of memory in this inline assembly
      // block because it will not return to Solidity code. We overwrite the
      // Solidity scratch pad at memory position 0.
      calldatacopy(0, 0, calldatasize)

      // Call the implementation.
      // out and outsize are 0 because we don't know the size yet.
      let result := delegatecall(gas, implementation, 0, calldatasize, 0, 0)

      // Copy the returned data.
      returndatacopy(0, 0, returndatasize)

      switch result
      // delegatecall returns 0 on error.
      case 0 { revert(0, returndatasize) }
      default { return(0, returndatasize) }
    }
  }

  /**
   * @dev Function that is run as the first thing in the fallback function.
   * Can be redefined in derived contracts to add functionality.
   * Redefinitions must call super._willFallback().
   */
  function _willFallback() internal {
  }

  /**
   * @dev fallback implementation.
   * Extracted to enable manual triggering.
   */
  function _fallback() internal {
    _willFallback();
    _delegate(_implementation());
  }
}

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"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":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowanceCoupons","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"candidate","type":"address"}],"name":"approveFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOfBonded","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"epoch","type":"uint256"}],"name":"balanceOfCoupons","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOfStaged","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"}],"name":"bootstrappingAt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"}],"name":"couponsExpiration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"dollar","outputs":[{"internalType":"contract IDollar","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"epoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"epochTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"}],"name":"expiringCoupons","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"uint256","name":"i","type":"uint256"}],"name":"expiringCouponsAtIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"implement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"impl","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"candidate","type":"address"}],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"candidate","type":"address"}],"name":"isNominated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"oracle","outputs":[{"internalType":"contract IOracle","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"}],"name":"outstandingCoupons","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"candidate","type":"address"}],"name":"periodFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pool","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"candidate","type":"address"}],"name":"recordedVote","outputs":[{"internalType":"enum Candidate.Vote","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"candidate","type":"address"}],"name":"rejectFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"candidate","type":"address"}],"name":"startFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"statusOf","outputs":[{"internalType":"enum Account.Status","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"streamBoosted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"streamDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"streamReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"streamReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"streamTimeleft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"streamedFrom","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"streamedUntil","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalBonded","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"}],"name":"totalBondedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalCoupons","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalDebt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalNet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalRedeemable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalStaged","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unreleasedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"candidate","type":"address"}],"name":"votesFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]

608060405234801561001057600080fd5b506137ef806100206000396000f3fe60806040523480156200001157600080fd5b50600436106200033a5760003560e01c806370a0823111620001c5578063a6c409f111620000ff578063da70217011620000b1578063f5ebd22b1162000087578063f5ebd22b146200070e578063fc7577f11462000725578063fc7b9c18146200073c578063ffbe3b731462000746576200033a565b8063da70217014620006cf578063dd62ed3e14620006e6578063f1b7cf4914620006f7576200033a565b8063a6c409f11462000676578063a9059cbb146200039e578063bc7513e21462000680578063c9aff70c1462000697578063cf02377914620006ae578063d60b347f14620006b8576200033a565b806387b55f72116200017757806397a5d5b5116200014d57806397a5d5b514620006185780639a649edc146200063e5780639f6e1b261462000648578063a50cd8e7146200065f576200033a565b806387b55f7214620005ed578063900cf0cf146200060457806395d89b41146200060e576200033a565b806370a08231146200057d57806375d5024b14620005945780637dc0d1d014620005ab5780638129fc1c14620005b5578063825ad60714620005bf57806386cf9f1414620005d6576200033a565b8063353a420c11620002975780634c73609911620002495780635c60da1b116200021f5780635c60da1b146200052e57806364668022146200053857806365bbb26a146200054f5780636a39e3281462000566576200033a565b80634c73609914620004f45780635053e461146200050b57806351adeb571462000515576200033a565b8063353a420c14620004665780633a3e6c81146200047d5780633fbba9a6146200049457806344d96e9514620004ba57806345f79c1d14620004c45780634a96026114620004db576200033a565b806316f0115b11620002f157806316f0115b14620003f25780631726cbc8146200040b57806318160ddd14620004225780631edbcf6c146200042c57806323b872dd1462000436578063313ce567146200044d576200033a565b8063028e55a4146200033f578063031d6840146200036e57806306fdde031462000385578063095ea7b3146200039e57806310e95b6c14620003c457806315e14bf614620003db575b600080fd5b620003566200035036600462001691565b6200075d565b60405162000365919062001a97565b60405180910390f35b620003566200037f36600462001691565b620007c8565b6200038f6200082b565b60405162000365919062001a4e565b620003b5620003af36600462001745565b6200085b565b60405162000365919062001a0e565b62000356620003d53660046200177a565b62000864565b62000356620003ec36600462001691565b62000879565b620003fc62000897565b604051620003659190620019fe565b620003566200041c36600462001691565b620008a6565b6200035662000909565b620003566200090f565b620003b562000447366004620016f1565b62000915565b620004576200091e565b60405162000365919062001aa7565b620003566200047736600462001691565b62000923565b620003b56200048e36600462001691565b62000941565b620004ab620004a5366004620016b2565b6200095e565b60405162000365919062001a3e565b6200035662000991565b62000356620004d536600462001691565b62000997565b620004f2620004ec36600462001691565b620009fa565b005b6200035662000505366004620017bc565b62000a08565b6200035662000a39565b6200051f62000a62565b60405162000365919062001a1e565b620003fc62000a71565b620003566200054936600462001691565b62000a96565b620003566200056036600462001691565b62000ab4565b62000356620005773660046200177a565b62000b17565b620003566200058e36600462001691565b62000b2c565b620003b5620005a53660046200177a565b62000b4a565b6200051f62000b5f565b620004f262000b6e565b62000356620005d036600462001691565b62000bf2565b62000356620005e736600462001691565b62000c51565b62000356620005fe36600462001691565b62000c6c565b6200035662000ccf565b6200038f62000cd5565b6200062f6200062936600462001691565b62000cf3565b60405162000365919062001a2e565b6200035662000d31565b6200035662000659366004620016b2565b62000d37565b620003566200067036600462001691565b62000d66565b6200035662000d8f565b620003566200069136600462001745565b62000e2f565b62000356620006a83660046200177a565b62000e77565b6200035662000e8c565b620003b5620006c936600462001691565b62000e92565b62000356620006e036600462001691565b62000eb3565b62000356620003af366004620016b2565b620003566200070836600462001691565b62000f16565b620003566200071f36600462001691565b62000f31565b620003566200073636600462001691565b62000f94565b6200035662000ff7565b62000356620007573660046200177a565b62000ffd565b6000620007c06200076e836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b90041660808201526200102c565b90505b919050565b6000620007c0620007d9836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b90041660808201526200103d565b604080518082019091526016815275556e6976657273616c20446f6c6c6172205374616b6560501b602082015290565b60005b92915050565b6000908152600d602052604090206002015490565b6001600160a01b03166000908152600e602052604090206001015490565b600b546001600160a01b031690565b6000620007c0620008b7836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b900416608082015262001059565b60035490565b60065490565b60009392505050565b601290565b6001600160a01b03166000908152600e602052604090206003015490565b6001600160a01b03166000908152600e6020526040902054151590565b6001600160a01b038082166000908152600e60209081526040808320938616835260049093019052205460ff1692915050565b60045490565b6000620007c0620009a8836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b90041660808201526200110b565b62000a058162001157565b50565b6000828152600d6020526040812060030180548390811062000a2657fe5b9060005260206000200154905092915050565b600062000a456200163b565b62000a4f62001255565b905062000a5c8162001286565b91505090565b6009546001600160a01b031690565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6001600160a01b03166000908152600e602052604090206002015490565b6000620007c062000ac5836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b9004166080820152620012ad565b6000908152600d602052604090206003015490565b6001600160a01b03166000908152600c602052604090206001015490565b600062000b56620012be565b90911115919050565b600a546001600160a01b031690565b62000bac62000b80620006c962000a71565b15692832b936b4b9b9b4b7b760b11b72105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b620012c3565b62000bc062000bba62000a71565b62001326565b62b9c7be62000bcf816200134d565b600980546001600160a01b0319166001600160a01b039290921691909117905550565b60008062000bff62000909565b90508062000c12576000915050620007c3565b62000c4a8162000c3d62000c268662000b2c565b62000c3062000991565b9063ffffffff6200137716565b9063ffffffff620013b716565b9392505050565b6001600160a01b03166000908152600c602052604090205490565b6000620007c062000c7d836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b9004166080820152620013fb565b60025490565b6040805180820190915260048152635538445360e01b602082015290565b600062000cff62000ccf565b6001600160a01b0383166000908152600c60205260409020600401541162000d29576000620007c0565b506001919050565b60085490565b6001600160a01b039182166000908152600c602090815260408083209390941682526003909201909152205490565b6000620007c062000d778362000923565b62000d828462000a96565b9063ffffffff6200141716565b600062000e2a62000d9f62000ff7565b62000da962000a62565b6001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801562000de257600080fd5b505afa15801562000df7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525062000e1d91908101906200179b565b9063ffffffff6200143f16565b905090565b600062000e3c8262000e77565b62000e4a575060006200085e565b506001600160a01b03919091166000908152600c6020908152604080832093835260029093019052205490565b6000908152600d602052604090206001015490565b60055490565b6001600160a01b03166000908152600e602052604090206005015460ff1690565b6000620007c062000ec4836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b900416608082015262001483565b6001600160a01b03166000908152600e602052604090205490565b6000620007c062000f42836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b90041660808201526200148a565b6000620007c062000fa5836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b90041660808201526200149b565b60075490565b6000908152600d602052604090205490565b6001600160a01b03166000908152600c6020526040902060050190565b6080015167ffffffffffffffff1690565b6000620007c06200104e8362001483565b62000e1d846200149b565b600080620010666200149f565b9050600062001075846200148a565b90506000816200108c5760009350505050620007c3565b818310620010a7576200109f856200149b565b9050620010e5565b620010e2620010b686620013fb565b62000c3d620010d7620010c989620012ad565b879063ffffffff6200143f16565b62000c30896200149b565b90505b62001102620010f48662001483565b829063ffffffff6200143f16565b95945050505050565b600080620011186200149f565b9050600062001127846200148a565b90508082106200113d57600092505050620007c3565b6200114f818363ffffffff6200143f16565b949350505050565b6200116281620014a3565b60408051600481526024810182526020810180516001600160e01b031663204a7f0760e21b17905290516000916060916001600160a01b03851691620011a891620019c2565b600060405180830381855af49150503d8060008114620011e5576040519150601f19603f3d011682016040523d82523d6000602084013e620011ea565b606091505b50915091508181906200121b5760405162461bcd60e51b815260040162001212919062001a4e565b60405180910390fd5b506040516001600160a01b038416907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2505050565b6200125f6200163b565b60405180606001604052806000815260200163600b67008152602001610e10815250905090565b6000620007c0826000015162000d82846040015162000c3d866020015162000e1d6200149f565b6040015167ffffffffffffffff1690565b60f090565b826200132157620012d482620014f1565b6101d160f51b620012e583620014f1565b604051602001620012f993929190620019d0565b60408051601f198184030181529082905262461bcd60e51b8252620012129160040162001a4e565b505050565b6001600160a01b03166000908152600e60205260409020600501805460ff19166001179055565b600060606200135b62001578565b90506000838251602084016000f59050803b62000c4a57600080fd5b60008262001388575060006200085e565b828202828482816200139657fe5b041462000c4a5760405162461bcd60e51b8152600401620012129062001a73565b600062000c4a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620015cb565b6000620007c06200140c83620012ad565b62000e1d846200148a565b60008282018381101562000c4a5760405162461bcd60e51b8152600401620012129062001a61565b600062000c4a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062001606565b6020015190565b6060015167ffffffffffffffff1690565b5190565b4290565b620014ae8162001635565b620014cd5760405162461bcd60e51b8152600401620012129062001a85565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b60608082604051602001620015079190620019ab565b60408051601f19818403018152919052905060205b801562001561578151600019909101908290829081106200153957fe5b01602001516001600160f81b031916156200155b5760010181529050620007c3565b6200151c565b505060408051600081526020810190915292915050565b606080604051806020016200158d906200165c565b6020820181038252601f19601f82011660405250905080604051602001620015b69190620019c2565b60405160208183030381529060405291505090565b60008183620015ef5760405162461bcd60e51b815260040162001212919062001a4e565b506000838581620015fc57fe5b0495945050505050565b600081848411156200162d5760405162461bcd60e51b815260040162001212919062001a4e565b505050900390565b3b151590565b60405180606001604052806000815260200160008152602001600081525090565b611c048062001ba983390190565b80356200085e8162001b86565b80356200085e8162001b9d565b80516200085e8162001b9d565b600060208284031215620016a457600080fd5b60006200114f84846200166a565b60008060408385031215620016c657600080fd5b6000620016d485856200166a565b9250506020620016e7858286016200166a565b9150509250929050565b6000806000606084860312156200170757600080fd5b60006200171586866200166a565b935050602062001728868287016200166a565b92505060406200173b8682870162001677565b9150509250925092565b600080604083850312156200175957600080fd5b60006200176785856200166a565b9250506020620016e78582860162001677565b6000602082840312156200178d57600080fd5b60006200114f848462001677565b600060208284031215620017ae57600080fd5b60006200114f848462001684565b60008060408385031215620017d057600080fd5b600062001767858562001677565b620017e98162001ac0565b82525050565b620017e98162001acd565b620017e9620018098262001ad2565b62001adf565b620017e9620018098262001adf565b60006200182b826200149b565b620018378185620007c3565b93506200184981856020860162001b33565b9290920192915050565b620017e98162001b0c565b620017e98162001b19565b620017e98162001b26565b600062001881826200149b565b6200188d818562001ab7565b93506200189f81856020860162001b33565b620018aa8162001b66565b9093019392505050565b6000620018c3601b8362001ab7565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000620018fe60218362001ab7565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f8152607760f81b602082015260400192915050565b600062001943603b8362001ab7565b7f43616e6e6f742073657420612070726f787920696d706c656d656e746174696f81527f6e20746f2061206e6f6e2d636f6e747261637420616464726573730000000000602082015260400192915050565b620017e98162001adf565b620017e98162001b06565b6000620019b982846200180f565b50602001919050565b600062000c4a82846200181e565b6000620019de82866200181e565b9150620019ec8285620017fa565b6002820191506200110282846200181e565b602081016200085e8284620017de565b602081016200085e8284620017ef565b602081016200085e828462001853565b602081016200085e82846200185e565b602081016200085e828462001869565b6020808252810162000c4a818462001874565b60208082528101620007c081620018b4565b60208082528101620007c081620018ef565b60208082528101620007c08162001934565b602081016200085e828462001995565b602081016200085e8284620019a0565b90815260200190565b6000620007c08262001afa565b151590565b6001600160f01b03191690565b90565b80620007c38162001b70565b80620007c38162001b7b565b6001600160a01b031690565b60ff1690565b6000620007c08262001ac0565b6000620007c08262001ae2565b6000620007c08262001aee565b60005b8381101562001b5057818101518382015260200162001b36565b8381111562001b60576000848401525b50505050565b601f01601f191690565b6002811062000a0557fe5b6003811062000a0557fe5b62001b918162001ac0565b811462000a0557600080fd5b62001b918162001adf56fe60806040523480156200001157600080fd5b506040518060400160405280601081526020016f2ab734bb32b939b0b6102237b63630b960811b81525060405180604001604052806003815260200162154e1160ea1b81525060126200007c6200006d6200011760201b60201c565b6001600160e01b036200011c16565b82516200009190600190602086019062000311565b508151620000a790600290602085019062000311565b506003805460ff191660ff92909216919091179055506200010e9050620000cd6200016e565b604051806040016040528060018152602001603160f81b815250620000fc6200020760201b620016341760201c565b306200020c60201b620016391760201c565b60075562000467565b335b90565b620001378160006200026360201b62000d7e1790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60018054604080516020601f60026000196101008789161502019095169490940493840181900481028201810190925282815260609390929091830182828015620001fd5780601f10620001d157610100808354040283529160200191620001fd565b820191906000526020600020905b815481529060010190602001808311620001df57829003601f168201915b5050505050905090565b600190565b8351602094850120835193850193909320604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f815295860194909452928401929092526060830152608082015260a0902090565b6200027882826001600160e01b03620002c616565b15620002a15760405162461bcd60e51b8152600401620002989062000434565b60405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620002f15760405162461bcd60e51b815260040162000298906200044c565b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200035457805160ff191683800117855562000384565b8280016001018555821562000384579182015b828111156200038457825182559160200191906001019062000367565b506200039292915062000396565b5090565b6200011991905b808211156200039257600081556001016200039d565b6000620003c2601f836200045e565b7f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500815260200192915050565b6000620003fd6022836200045e565b7f526f6c65733a206163636f756e7420697320746865207a65726f206164647265815261737360f01b602082015260400192915050565b602080825281016200044681620003b3565b92915050565b602080825281016200044681620003ee565b90815260200190565b61178d80620004776000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063aa271e1a11610071578063aa271e1a14610256578063d505accf14610269578063dab400f31461027c578063dd62ed3e14610284578063e879c19f146102975761012c565b806395d89b411461020d578063983b2d56146102155780639865027514610228578063a457c2d714610230578063a9059cbb146102435761012c565b806339509351116100f457806339509351146101ac57806340c10f19146101bf57806342966c68146101d257806370a08231146101e757806379cc6790146101fa5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461016f57806323b872dd14610184578063313ce56714610197575b600080fd5b61013961029f565b60405161014691906114c6565b60405180910390f35b61016261015d366004610ffc565b610334565b604051610146919061141b565b610177610352565b6040516101469190611429565b610162610192366004610f13565b610358565b61019f6103ca565b6040516101469190611587565b6101626101ba366004610ffc565b6103d3565b6101626101cd366004610ffc565b610427565b6101e56101e036600461102c565b610463565b005b6101776101f5366004610eb3565b610477565b6101e5610208366004610ffc565b610496565b6101396104a4565b6101e5610223366004610eb3565b610502565b6101e5610532565b61016261023e366004610ffc565b610544565b610162610251366004610ffc565b6105b2565b610162610264366004610eb3565b6105c6565b6101e5610277366004610f60565b6105d8565b61017761075f565b610177610292366004610ed9565b610765565b610177610790565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561032a5780601f106102ff5761010080835404028352916020019161032a565b820191906000526020600020905b81548152906001019060200180831161030d57829003601f168201915b5050505050905090565b60006103486103416107b4565b84846107b8565b5060015b92915050565b60065490565b600061036584848461086c565b600019610374856102926107b4565b146103c0576103c0846103856107b4565b6103bb856040518060600160405280602981526020016116fd602991396103ae8a6102926107b4565b919063ffffffff61098216565b6107b8565b5060019392505050565b60035460ff1690565b60006103486103e06107b4565b846103bb85600560006103f16107b4565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6109ae16565b60006104346102646107b4565b6104595760405162461bcd60e51b815260040161045090611517565b60405180910390fd5b61034883836109da565b61047461046e6107b4565b82610a9a565b50565b6001600160a01b0381166000908152600460205260409020545b919050565b6104a08282610b70565b5050565b60028054604080516020601f600019610100600187161502019094168590049384018190048102820181019092528281526060939092909183018282801561032a5780601f106102ff5761010080835404028352916020019161032a565b61050d6102646107b4565b6105295760405162461bcd60e51b815260040161045090611517565b61047481610beb565b61054261053d6107b4565b610c33565b565b60006103486105516107b4565b846103bb85604051806060016040528060258152602001611726602591396005600061057b6107b4565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61098216565b60006103486105bf6107b4565b848461086c565b600061034c818363ffffffff610c7b16565b6007546001600160a01b03881660009081526008602090815260408083208054600181019091559051929361065a93909261063f927f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9928e928e928e9290918e9101611437565b60405160208183030381529060405280519060200120610cc3565b90506000600182868686604051600081526020016040526040516106819493929190611491565b6020604051602081039080840390855afa1580156106a3573d6000803e3d6000fd5b5050506020604051035190506106f0896001600160a01b0316826001600160a01b0316146a5065726d69747461626c6560a81b70496e76616c6964207369676e617475726560781b610ce2565b6107236001600160a01b03821615156a5065726d69747461626c6560a81b6b5a65726f206164647265737360a01b610ce2565b610749864211156a5065726d69747461626c6560a81b66115e1c1a5c995960ca1b610ce2565b6107548989896107b8565b505050505050505050565b60075481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b3390565b6001600160a01b0383166107de5760405162461bcd60e51b815260040161045090611567565b6001600160a01b0382166108045760405162461bcd60e51b8152600401610450906114f7565b6001600160a01b0380841660008181526005602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061085f908590611429565b60405180910390a3505050565b6001600160a01b0383166108925760405162461bcd60e51b815260040161045090611557565b6001600160a01b0382166108b85760405162461bcd60e51b8152600401610450906114d7565b6108fb816040518060600160405280602681526020016116b3602691396001600160a01b038616600090815260046020526040902054919063ffffffff61098216565b6001600160a01b038085166000908152600460205260408082209390935590841681522054610930908263ffffffff6109ae16565b6001600160a01b0380841660008181526004602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061085f908590611429565b600081848411156109a65760405162461bcd60e51b815260040161045091906114c6565b505050900390565b6000828201838110156109d35760405162461bcd60e51b815260040161045090611507565b9392505050565b6001600160a01b038216610a005760405162461bcd60e51b815260040161045090611577565b600654610a13908263ffffffff6109ae16565b6006556001600160a01b038216600090815260046020526040902054610a3f908263ffffffff6109ae16565b6001600160a01b0383166000818152600460205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a8e908590611429565b60405180910390a35050565b6001600160a01b038216610ac05760405162461bcd60e51b815260040161045090611547565b610b0381604051806060016040528060228152602001611691602291396001600160a01b038516600090815260046020526040902054919063ffffffff61098216565b6001600160a01b038316600090815260046020526040902055600654610b2f908263ffffffff610d3c16565b6006556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a8e908590611429565b610b7a8282610a9a565b6104a082610b866107b4565b6103bb846040518060600160405280602481526020016116d9602491396001600160a01b038816600090815260056020526040812090610bc46107b4565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61098216565b610bfc60008263ffffffff610d7e16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610c4460008263ffffffff610dca16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b038216610ca35760405162461bcd60e51b815260040161045090611537565b506001600160a01b03166000908152602091909152604090205460ff1690565b60405161190160f01b8152600281019290925260228201526042902090565b82610d3757610cf082610e12565b6101d160f51b610cff83610e12565b604051602001610d11939291906113ea565b60408051601f198184030181529082905262461bcd60e51b8252610450916004016114c6565b505050565b60006109d383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610982565b610d888282610c7b565b15610da55760405162461bcd60e51b8152600401610450906114e7565b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b610dd48282610c7b565b610df05760405162461bcd60e51b815260040161045090611527565b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60608082604051602001610e2691906113d5565b60408051601f19818403018152919052905060205b8015610e7b57815160001990910190829082908110610e5657fe5b01602001516001600160f81b03191615610e765760010181529050610491565b610e3b565b505060408051600081526020810190915292915050565b803561034c8161160e565b803561034c81611622565b803561034c8161162b565b600060208284031215610ec557600080fd5b6000610ed18484610e92565b949350505050565b60008060408385031215610eec57600080fd5b6000610ef88585610e92565b9250506020610f0985828601610e92565b9150509250929050565b600080600060608486031215610f2857600080fd5b6000610f348686610e92565b9350506020610f4586828701610e92565b9250506040610f5686828701610e9d565b9150509250925092565b600080600080600080600060e0888a031215610f7b57600080fd5b6000610f878a8a610e92565b9750506020610f988a828b01610e92565b9650506040610fa98a828b01610e9d565b9550506060610fba8a828b01610e9d565b9450506080610fcb8a828b01610ea8565b93505060a0610fdc8a828b01610e9d565b92505060c0610fed8a828b01610e9d565b91505092959891949750929550565b6000806040838503121561100f57600080fd5b600061101b8585610e92565b9250506020610f0985828601610e9d565b60006020828403121561103e57600080fd5b6000610ed18484610e9d565b611053816115a2565b82525050565b611053816115ad565b61105361106e826115b2565b6115bf565b611053816115bf565b61105361106e826115bf565b600061109382611595565b61109d8185610491565b93506110ad8185602086016115d4565b9290920192915050565b60006110c282611595565b6110cc8185611599565b93506110dc8185602086016115d4565b6110e581611604565b9093019392505050565b60006110fc602383611599565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647281526265737360e81b602082015260400192915050565b6000611141601f83611599565b7f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500815260200192915050565b600061117a602283611599565b7f45524332303a20617070726f766520746f20746865207a65726f206164647265815261737360f01b602082015260400192915050565b60006111be601b83611599565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b60006111f7603083611599565b7f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766581526f20746865204d696e74657220726f6c6560801b602082015260400192915050565b6000611249602183611599565b7f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c8152606560f81b602082015260400192915050565b600061128c602283611599565b7f526f6c65733a206163636f756e7420697320746865207a65726f206164647265815261737360f01b602082015260400192915050565b60006112d0602183611599565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265738152607360f81b602082015260400192915050565b6000611313602583611599565b7f45524332303a207472616e736665722066726f6d20746865207a65726f206164815264647265737360d81b602082015260400192915050565b600061135a602483611599565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164648152637265737360e01b602082015260400192915050565b60006113a0601f83611599565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300815260200192915050565b611053816115ce565b60006113e1828461107c565b50602001919050565b60006113f68286611088565b91506114028285611062565b6002820191506114128284611088565b95945050505050565b6020810161034c8284611059565b6020810161034c8284611073565b60c081016114458289611073565b611452602083018861104a565b61145f604083018761104a565b61146c6060830186611073565b6114796080830185611073565b61148660a0830184611073565b979650505050505050565b6080810161149f8287611073565b6114ac60208301866113cc565b6114b96040830185611073565b6114126060830184611073565b602080825281016109d381846110b7565b6020808252810161034c816110ef565b6020808252810161034c81611134565b6020808252810161034c8161116d565b6020808252810161034c816111b1565b6020808252810161034c816111ea565b6020808252810161034c8161123c565b6020808252810161034c8161127f565b6020808252810161034c816112c3565b6020808252810161034c81611306565b6020808252810161034c8161134d565b6020808252810161034c81611393565b6020810161034c82846113cc565b5190565b90815260200190565b600061034c826115c2565b151590565b6001600160f01b03191690565b90565b6001600160a01b031690565b60ff1690565b60005b838110156115ef5781810151838201526020016115d7565b838111156115fe576000848401525b50505050565b601f01601f191690565b611617816115a2565b811461047457600080fd5b611617816115bf565b611617816115ce565b600190565b8351602094850120835193850193909320604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f815295860194909452928401929092526060830152608082015260a090209056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e6365446f6c6c61723a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa365627a7a72315820e55b77ec38a18bdf3eac73cfae4f0635805320d0a3a0ea465010c6550e0dc16b6c6578706572696d656e74616cf564736f6c63430005110040a365627a7a7231582074cff1c9ab08743e8d25c74926e2e281c5eebcaf50faad181388f6b4cb2511b86c6578706572696d656e74616cf564736f6c63430005110040

Deployed Bytecode

0x60806040523480156200001157600080fd5b50600436106200033a5760003560e01c806370a0823111620001c5578063a6c409f111620000ff578063da70217011620000b1578063f5ebd22b1162000087578063f5ebd22b146200070e578063fc7577f11462000725578063fc7b9c18146200073c578063ffbe3b731462000746576200033a565b8063da70217014620006cf578063dd62ed3e14620006e6578063f1b7cf4914620006f7576200033a565b8063a6c409f11462000676578063a9059cbb146200039e578063bc7513e21462000680578063c9aff70c1462000697578063cf02377914620006ae578063d60b347f14620006b8576200033a565b806387b55f72116200017757806397a5d5b5116200014d57806397a5d5b514620006185780639a649edc146200063e5780639f6e1b261462000648578063a50cd8e7146200065f576200033a565b806387b55f7214620005ed578063900cf0cf146200060457806395d89b41146200060e576200033a565b806370a08231146200057d57806375d5024b14620005945780637dc0d1d014620005ab5780638129fc1c14620005b5578063825ad60714620005bf57806386cf9f1414620005d6576200033a565b8063353a420c11620002975780634c73609911620002495780635c60da1b116200021f5780635c60da1b146200052e57806364668022146200053857806365bbb26a146200054f5780636a39e3281462000566576200033a565b80634c73609914620004f45780635053e461146200050b57806351adeb571462000515576200033a565b8063353a420c14620004665780633a3e6c81146200047d5780633fbba9a6146200049457806344d96e9514620004ba57806345f79c1d14620004c45780634a96026114620004db576200033a565b806316f0115b11620002f157806316f0115b14620003f25780631726cbc8146200040b57806318160ddd14620004225780631edbcf6c146200042c57806323b872dd1462000436578063313ce567146200044d576200033a565b8063028e55a4146200033f578063031d6840146200036e57806306fdde031462000385578063095ea7b3146200039e57806310e95b6c14620003c457806315e14bf614620003db575b600080fd5b620003566200035036600462001691565b6200075d565b60405162000365919062001a97565b60405180910390f35b620003566200037f36600462001691565b620007c8565b6200038f6200082b565b60405162000365919062001a4e565b620003b5620003af36600462001745565b6200085b565b60405162000365919062001a0e565b62000356620003d53660046200177a565b62000864565b62000356620003ec36600462001691565b62000879565b620003fc62000897565b604051620003659190620019fe565b620003566200041c36600462001691565b620008a6565b6200035662000909565b620003566200090f565b620003b562000447366004620016f1565b62000915565b620004576200091e565b60405162000365919062001aa7565b620003566200047736600462001691565b62000923565b620003b56200048e36600462001691565b62000941565b620004ab620004a5366004620016b2565b6200095e565b60405162000365919062001a3e565b6200035662000991565b62000356620004d536600462001691565b62000997565b620004f2620004ec36600462001691565b620009fa565b005b6200035662000505366004620017bc565b62000a08565b6200035662000a39565b6200051f62000a62565b60405162000365919062001a1e565b620003fc62000a71565b620003566200054936600462001691565b62000a96565b620003566200056036600462001691565b62000ab4565b62000356620005773660046200177a565b62000b17565b620003566200058e36600462001691565b62000b2c565b620003b5620005a53660046200177a565b62000b4a565b6200051f62000b5f565b620004f262000b6e565b62000356620005d036600462001691565b62000bf2565b62000356620005e736600462001691565b62000c51565b62000356620005fe36600462001691565b62000c6c565b6200035662000ccf565b6200038f62000cd5565b6200062f6200062936600462001691565b62000cf3565b60405162000365919062001a2e565b6200035662000d31565b6200035662000659366004620016b2565b62000d37565b620003566200067036600462001691565b62000d66565b6200035662000d8f565b620003566200069136600462001745565b62000e2f565b62000356620006a83660046200177a565b62000e77565b6200035662000e8c565b620003b5620006c936600462001691565b62000e92565b62000356620006e036600462001691565b62000eb3565b62000356620003af366004620016b2565b620003566200070836600462001691565b62000f16565b620003566200071f36600462001691565b62000f31565b620003566200073636600462001691565b62000f94565b6200035662000ff7565b62000356620007573660046200177a565b62000ffd565b6000620007c06200076e836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b90041660808201526200102c565b90505b919050565b6000620007c0620007d9836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b90041660808201526200103d565b604080518082019091526016815275556e6976657273616c20446f6c6c6172205374616b6560501b602082015290565b60005b92915050565b6000908152600d602052604090206002015490565b6001600160a01b03166000908152600e602052604090206001015490565b600b546001600160a01b031690565b6000620007c0620008b7836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b900416608082015262001059565b60035490565b60065490565b60009392505050565b601290565b6001600160a01b03166000908152600e602052604090206003015490565b6001600160a01b03166000908152600e6020526040902054151590565b6001600160a01b038082166000908152600e60209081526040808320938616835260049093019052205460ff1692915050565b60045490565b6000620007c0620009a8836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b90041660808201526200110b565b62000a058162001157565b50565b6000828152600d6020526040812060030180548390811062000a2657fe5b9060005260206000200154905092915050565b600062000a456200163b565b62000a4f62001255565b905062000a5c8162001286565b91505090565b6009546001600160a01b031690565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6001600160a01b03166000908152600e602052604090206002015490565b6000620007c062000ac5836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b9004166080820152620012ad565b6000908152600d602052604090206003015490565b6001600160a01b03166000908152600c602052604090206001015490565b600062000b56620012be565b90911115919050565b600a546001600160a01b031690565b62000bac62000b80620006c962000a71565b15692832b936b4b9b9b4b7b760b11b72105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b620012c3565b62000bc062000bba62000a71565b62001326565b62b9c7be62000bcf816200134d565b600980546001600160a01b0319166001600160a01b039290921691909117905550565b60008062000bff62000909565b90508062000c12576000915050620007c3565b62000c4a8162000c3d62000c268662000b2c565b62000c3062000991565b9063ffffffff6200137716565b9063ffffffff620013b716565b9392505050565b6001600160a01b03166000908152600c602052604090205490565b6000620007c062000c7d836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b9004166080820152620013fb565b60025490565b6040805180820190915260048152635538445360e01b602082015290565b600062000cff62000ccf565b6001600160a01b0383166000908152600c60205260409020600401541162000d29576000620007c0565b506001919050565b60085490565b6001600160a01b039182166000908152600c602090815260408083209390941682526003909201909152205490565b6000620007c062000d778362000923565b62000d828462000a96565b9063ffffffff6200141716565b600062000e2a62000d9f62000ff7565b62000da962000a62565b6001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801562000de257600080fd5b505afa15801562000df7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525062000e1d91908101906200179b565b9063ffffffff6200143f16565b905090565b600062000e3c8262000e77565b62000e4a575060006200085e565b506001600160a01b03919091166000908152600c6020908152604080832093835260029093019052205490565b6000908152600d602052604090206001015490565b60055490565b6001600160a01b03166000908152600e602052604090206005015460ff1690565b6000620007c062000ec4836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b900416608082015262001483565b6001600160a01b03166000908152600e602052604090205490565b6000620007c062000f42836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b90041660808201526200148a565b6000620007c062000fa5836200100f565b6040805160a081018252825481526001830154602082015260029092015467ffffffffffffffff80821692840192909252600160401b810482166060840152600160801b90041660808201526200149b565b60075490565b6000908152600d602052604090205490565b6001600160a01b03166000908152600c6020526040902060050190565b6080015167ffffffffffffffff1690565b6000620007c06200104e8362001483565b62000e1d846200149b565b600080620010666200149f565b9050600062001075846200148a565b90506000816200108c5760009350505050620007c3565b818310620010a7576200109f856200149b565b9050620010e5565b620010e2620010b686620013fb565b62000c3d620010d7620010c989620012ad565b879063ffffffff6200143f16565b62000c30896200149b565b90505b62001102620010f48662001483565b829063ffffffff6200143f16565b95945050505050565b600080620011186200149f565b9050600062001127846200148a565b90508082106200113d57600092505050620007c3565b6200114f818363ffffffff6200143f16565b949350505050565b6200116281620014a3565b60408051600481526024810182526020810180516001600160e01b031663204a7f0760e21b17905290516000916060916001600160a01b03851691620011a891620019c2565b600060405180830381855af49150503d8060008114620011e5576040519150601f19603f3d011682016040523d82523d6000602084013e620011ea565b606091505b50915091508181906200121b5760405162461bcd60e51b815260040162001212919062001a4e565b60405180910390fd5b506040516001600160a01b038416907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2505050565b6200125f6200163b565b60405180606001604052806000815260200163600b67008152602001610e10815250905090565b6000620007c0826000015162000d82846040015162000c3d866020015162000e1d6200149f565b6040015167ffffffffffffffff1690565b60f090565b826200132157620012d482620014f1565b6101d160f51b620012e583620014f1565b604051602001620012f993929190620019d0565b60408051601f198184030181529082905262461bcd60e51b8252620012129160040162001a4e565b505050565b6001600160a01b03166000908152600e60205260409020600501805460ff19166001179055565b600060606200135b62001578565b90506000838251602084016000f59050803b62000c4a57600080fd5b60008262001388575060006200085e565b828202828482816200139657fe5b041462000c4a5760405162461bcd60e51b8152600401620012129062001a73565b600062000c4a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620015cb565b6000620007c06200140c83620012ad565b62000e1d846200148a565b60008282018381101562000c4a5760405162461bcd60e51b8152600401620012129062001a61565b600062000c4a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062001606565b6020015190565b6060015167ffffffffffffffff1690565b5190565b4290565b620014ae8162001635565b620014cd5760405162461bcd60e51b8152600401620012129062001a85565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b60608082604051602001620015079190620019ab565b60408051601f19818403018152919052905060205b801562001561578151600019909101908290829081106200153957fe5b01602001516001600160f81b031916156200155b5760010181529050620007c3565b6200151c565b505060408051600081526020810190915292915050565b606080604051806020016200158d906200165c565b6020820181038252601f19601f82011660405250905080604051602001620015b69190620019c2565b60405160208183030381529060405291505090565b60008183620015ef5760405162461bcd60e51b815260040162001212919062001a4e565b506000838581620015fc57fe5b0495945050505050565b600081848411156200162d5760405162461bcd60e51b815260040162001212919062001a4e565b505050900390565b3b151590565b60405180606001604052806000815260200160008152602001600081525090565b611c048062001ba983390190565b80356200085e8162001b86565b80356200085e8162001b9d565b80516200085e8162001b9d565b600060208284031215620016a457600080fd5b60006200114f84846200166a565b60008060408385031215620016c657600080fd5b6000620016d485856200166a565b9250506020620016e7858286016200166a565b9150509250929050565b6000806000606084860312156200170757600080fd5b60006200171586866200166a565b935050602062001728868287016200166a565b92505060406200173b8682870162001677565b9150509250925092565b600080604083850312156200175957600080fd5b60006200176785856200166a565b9250506020620016e78582860162001677565b6000602082840312156200178d57600080fd5b60006200114f848462001677565b600060208284031215620017ae57600080fd5b60006200114f848462001684565b60008060408385031215620017d057600080fd5b600062001767858562001677565b620017e98162001ac0565b82525050565b620017e98162001acd565b620017e9620018098262001ad2565b62001adf565b620017e9620018098262001adf565b60006200182b826200149b565b620018378185620007c3565b93506200184981856020860162001b33565b9290920192915050565b620017e98162001b0c565b620017e98162001b19565b620017e98162001b26565b600062001881826200149b565b6200188d818562001ab7565b93506200189f81856020860162001b33565b620018aa8162001b66565b9093019392505050565b6000620018c3601b8362001ab7565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000620018fe60218362001ab7565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f8152607760f81b602082015260400192915050565b600062001943603b8362001ab7565b7f43616e6e6f742073657420612070726f787920696d706c656d656e746174696f81527f6e20746f2061206e6f6e2d636f6e747261637420616464726573730000000000602082015260400192915050565b620017e98162001adf565b620017e98162001b06565b6000620019b982846200180f565b50602001919050565b600062000c4a82846200181e565b6000620019de82866200181e565b9150620019ec8285620017fa565b6002820191506200110282846200181e565b602081016200085e8284620017de565b602081016200085e8284620017ef565b602081016200085e828462001853565b602081016200085e82846200185e565b602081016200085e828462001869565b6020808252810162000c4a818462001874565b60208082528101620007c081620018b4565b60208082528101620007c081620018ef565b60208082528101620007c08162001934565b602081016200085e828462001995565b602081016200085e8284620019a0565b90815260200190565b6000620007c08262001afa565b151590565b6001600160f01b03191690565b90565b80620007c38162001b70565b80620007c38162001b7b565b6001600160a01b031690565b60ff1690565b6000620007c08262001ac0565b6000620007c08262001ae2565b6000620007c08262001aee565b60005b8381101562001b5057818101518382015260200162001b36565b8381111562001b60576000848401525b50505050565b601f01601f191690565b6002811062000a0557fe5b6003811062000a0557fe5b62001b918162001ac0565b811462000a0557600080fd5b62001b918162001adf56fe60806040523480156200001157600080fd5b506040518060400160405280601081526020016f2ab734bb32b939b0b6102237b63630b960811b81525060405180604001604052806003815260200162154e1160ea1b81525060126200007c6200006d6200011760201b60201c565b6001600160e01b036200011c16565b82516200009190600190602086019062000311565b508151620000a790600290602085019062000311565b506003805460ff191660ff92909216919091179055506200010e9050620000cd6200016e565b604051806040016040528060018152602001603160f81b815250620000fc6200020760201b620016341760201c565b306200020c60201b620016391760201c565b60075562000467565b335b90565b620001378160006200026360201b62000d7e1790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60018054604080516020601f60026000196101008789161502019095169490940493840181900481028201810190925282815260609390929091830182828015620001fd5780601f10620001d157610100808354040283529160200191620001fd565b820191906000526020600020905b815481529060010190602001808311620001df57829003601f168201915b5050505050905090565b600190565b8351602094850120835193850193909320604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f815295860194909452928401929092526060830152608082015260a0902090565b6200027882826001600160e01b03620002c616565b15620002a15760405162461bcd60e51b8152600401620002989062000434565b60405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620002f15760405162461bcd60e51b815260040162000298906200044c565b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200035457805160ff191683800117855562000384565b8280016001018555821562000384579182015b828111156200038457825182559160200191906001019062000367565b506200039292915062000396565b5090565b6200011991905b808211156200039257600081556001016200039d565b6000620003c2601f836200045e565b7f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500815260200192915050565b6000620003fd6022836200045e565b7f526f6c65733a206163636f756e7420697320746865207a65726f206164647265815261737360f01b602082015260400192915050565b602080825281016200044681620003b3565b92915050565b602080825281016200044681620003ee565b90815260200190565b61178d80620004776000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063aa271e1a11610071578063aa271e1a14610256578063d505accf14610269578063dab400f31461027c578063dd62ed3e14610284578063e879c19f146102975761012c565b806395d89b411461020d578063983b2d56146102155780639865027514610228578063a457c2d714610230578063a9059cbb146102435761012c565b806339509351116100f457806339509351146101ac57806340c10f19146101bf57806342966c68146101d257806370a08231146101e757806379cc6790146101fa5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461016f57806323b872dd14610184578063313ce56714610197575b600080fd5b61013961029f565b60405161014691906114c6565b60405180910390f35b61016261015d366004610ffc565b610334565b604051610146919061141b565b610177610352565b6040516101469190611429565b610162610192366004610f13565b610358565b61019f6103ca565b6040516101469190611587565b6101626101ba366004610ffc565b6103d3565b6101626101cd366004610ffc565b610427565b6101e56101e036600461102c565b610463565b005b6101776101f5366004610eb3565b610477565b6101e5610208366004610ffc565b610496565b6101396104a4565b6101e5610223366004610eb3565b610502565b6101e5610532565b61016261023e366004610ffc565b610544565b610162610251366004610ffc565b6105b2565b610162610264366004610eb3565b6105c6565b6101e5610277366004610f60565b6105d8565b61017761075f565b610177610292366004610ed9565b610765565b610177610790565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561032a5780601f106102ff5761010080835404028352916020019161032a565b820191906000526020600020905b81548152906001019060200180831161030d57829003601f168201915b5050505050905090565b60006103486103416107b4565b84846107b8565b5060015b92915050565b60065490565b600061036584848461086c565b600019610374856102926107b4565b146103c0576103c0846103856107b4565b6103bb856040518060600160405280602981526020016116fd602991396103ae8a6102926107b4565b919063ffffffff61098216565b6107b8565b5060019392505050565b60035460ff1690565b60006103486103e06107b4565b846103bb85600560006103f16107b4565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6109ae16565b60006104346102646107b4565b6104595760405162461bcd60e51b815260040161045090611517565b60405180910390fd5b61034883836109da565b61047461046e6107b4565b82610a9a565b50565b6001600160a01b0381166000908152600460205260409020545b919050565b6104a08282610b70565b5050565b60028054604080516020601f600019610100600187161502019094168590049384018190048102820181019092528281526060939092909183018282801561032a5780601f106102ff5761010080835404028352916020019161032a565b61050d6102646107b4565b6105295760405162461bcd60e51b815260040161045090611517565b61047481610beb565b61054261053d6107b4565b610c33565b565b60006103486105516107b4565b846103bb85604051806060016040528060258152602001611726602591396005600061057b6107b4565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61098216565b60006103486105bf6107b4565b848461086c565b600061034c818363ffffffff610c7b16565b6007546001600160a01b03881660009081526008602090815260408083208054600181019091559051929361065a93909261063f927f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9928e928e928e9290918e9101611437565b60405160208183030381529060405280519060200120610cc3565b90506000600182868686604051600081526020016040526040516106819493929190611491565b6020604051602081039080840390855afa1580156106a3573d6000803e3d6000fd5b5050506020604051035190506106f0896001600160a01b0316826001600160a01b0316146a5065726d69747461626c6560a81b70496e76616c6964207369676e617475726560781b610ce2565b6107236001600160a01b03821615156a5065726d69747461626c6560a81b6b5a65726f206164647265737360a01b610ce2565b610749864211156a5065726d69747461626c6560a81b66115e1c1a5c995960ca1b610ce2565b6107548989896107b8565b505050505050505050565b60075481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b3390565b6001600160a01b0383166107de5760405162461bcd60e51b815260040161045090611567565b6001600160a01b0382166108045760405162461bcd60e51b8152600401610450906114f7565b6001600160a01b0380841660008181526005602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061085f908590611429565b60405180910390a3505050565b6001600160a01b0383166108925760405162461bcd60e51b815260040161045090611557565b6001600160a01b0382166108b85760405162461bcd60e51b8152600401610450906114d7565b6108fb816040518060600160405280602681526020016116b3602691396001600160a01b038616600090815260046020526040902054919063ffffffff61098216565b6001600160a01b038085166000908152600460205260408082209390935590841681522054610930908263ffffffff6109ae16565b6001600160a01b0380841660008181526004602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061085f908590611429565b600081848411156109a65760405162461bcd60e51b815260040161045091906114c6565b505050900390565b6000828201838110156109d35760405162461bcd60e51b815260040161045090611507565b9392505050565b6001600160a01b038216610a005760405162461bcd60e51b815260040161045090611577565b600654610a13908263ffffffff6109ae16565b6006556001600160a01b038216600090815260046020526040902054610a3f908263ffffffff6109ae16565b6001600160a01b0383166000818152600460205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a8e908590611429565b60405180910390a35050565b6001600160a01b038216610ac05760405162461bcd60e51b815260040161045090611547565b610b0381604051806060016040528060228152602001611691602291396001600160a01b038516600090815260046020526040902054919063ffffffff61098216565b6001600160a01b038316600090815260046020526040902055600654610b2f908263ffffffff610d3c16565b6006556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a8e908590611429565b610b7a8282610a9a565b6104a082610b866107b4565b6103bb846040518060600160405280602481526020016116d9602491396001600160a01b038816600090815260056020526040812090610bc46107b4565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61098216565b610bfc60008263ffffffff610d7e16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610c4460008263ffffffff610dca16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b038216610ca35760405162461bcd60e51b815260040161045090611537565b506001600160a01b03166000908152602091909152604090205460ff1690565b60405161190160f01b8152600281019290925260228201526042902090565b82610d3757610cf082610e12565b6101d160f51b610cff83610e12565b604051602001610d11939291906113ea565b60408051601f198184030181529082905262461bcd60e51b8252610450916004016114c6565b505050565b60006109d383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610982565b610d888282610c7b565b15610da55760405162461bcd60e51b8152600401610450906114e7565b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b610dd48282610c7b565b610df05760405162461bcd60e51b815260040161045090611527565b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60608082604051602001610e2691906113d5565b60408051601f19818403018152919052905060205b8015610e7b57815160001990910190829082908110610e5657fe5b01602001516001600160f81b03191615610e765760010181529050610491565b610e3b565b505060408051600081526020810190915292915050565b803561034c8161160e565b803561034c81611622565b803561034c8161162b565b600060208284031215610ec557600080fd5b6000610ed18484610e92565b949350505050565b60008060408385031215610eec57600080fd5b6000610ef88585610e92565b9250506020610f0985828601610e92565b9150509250929050565b600080600060608486031215610f2857600080fd5b6000610f348686610e92565b9350506020610f4586828701610e92565b9250506040610f5686828701610e9d565b9150509250925092565b600080600080600080600060e0888a031215610f7b57600080fd5b6000610f878a8a610e92565b9750506020610f988a828b01610e92565b9650506040610fa98a828b01610e9d565b9550506060610fba8a828b01610e9d565b9450506080610fcb8a828b01610ea8565b93505060a0610fdc8a828b01610e9d565b92505060c0610fed8a828b01610e9d565b91505092959891949750929550565b6000806040838503121561100f57600080fd5b600061101b8585610e92565b9250506020610f0985828601610e9d565b60006020828403121561103e57600080fd5b6000610ed18484610e9d565b611053816115a2565b82525050565b611053816115ad565b61105361106e826115b2565b6115bf565b611053816115bf565b61105361106e826115bf565b600061109382611595565b61109d8185610491565b93506110ad8185602086016115d4565b9290920192915050565b60006110c282611595565b6110cc8185611599565b93506110dc8185602086016115d4565b6110e581611604565b9093019392505050565b60006110fc602383611599565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647281526265737360e81b602082015260400192915050565b6000611141601f83611599565b7f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500815260200192915050565b600061117a602283611599565b7f45524332303a20617070726f766520746f20746865207a65726f206164647265815261737360f01b602082015260400192915050565b60006111be601b83611599565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b60006111f7603083611599565b7f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766581526f20746865204d696e74657220726f6c6560801b602082015260400192915050565b6000611249602183611599565b7f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c8152606560f81b602082015260400192915050565b600061128c602283611599565b7f526f6c65733a206163636f756e7420697320746865207a65726f206164647265815261737360f01b602082015260400192915050565b60006112d0602183611599565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265738152607360f81b602082015260400192915050565b6000611313602583611599565b7f45524332303a207472616e736665722066726f6d20746865207a65726f206164815264647265737360d81b602082015260400192915050565b600061135a602483611599565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164648152637265737360e01b602082015260400192915050565b60006113a0601f83611599565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300815260200192915050565b611053816115ce565b60006113e1828461107c565b50602001919050565b60006113f68286611088565b91506114028285611062565b6002820191506114128284611088565b95945050505050565b6020810161034c8284611059565b6020810161034c8284611073565b60c081016114458289611073565b611452602083018861104a565b61145f604083018761104a565b61146c6060830186611073565b6114796080830185611073565b61148660a0830184611073565b979650505050505050565b6080810161149f8287611073565b6114ac60208301866113cc565b6114b96040830185611073565b6114126060830184611073565b602080825281016109d381846110b7565b6020808252810161034c816110ef565b6020808252810161034c81611134565b6020808252810161034c8161116d565b6020808252810161034c816111b1565b6020808252810161034c816111ea565b6020808252810161034c8161123c565b6020808252810161034c8161127f565b6020808252810161034c816112c3565b6020808252810161034c81611306565b6020808252810161034c8161134d565b6020808252810161034c81611393565b6020810161034c82846113cc565b5190565b90815260200190565b600061034c826115c2565b151590565b6001600160f01b03191690565b90565b6001600160a01b031690565b60ff1690565b60005b838110156115ef5781810151838201526020016115d7565b838111156115fe576000848401525b50505050565b601f01601f191690565b611617816115a2565b811461047457600080fd5b611617816115bf565b611617816115ce565b600190565b8351602094850120835193850193909320604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f815295860194909452928401929092526060830152608082015260a090209056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e6365446f6c6c61723a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa365627a7a72315820e55b77ec38a18bdf3eac73cfae4f0635805320d0a3a0ea465010c6550e0dc16b6c6578706572696d656e74616cf564736f6c63430005110040a365627a7a7231582074cff1c9ab08743e8d25c74926e2e281c5eebcaf50faad181388f6b4cb2511b86c6578706572696d656e74616cf564736f6c63430005110040

Deployed Bytecode Sourcemap

1500:376:7:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1500:376:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4732:124:1;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;4998:130;;;;;;;;;:::i;1133:100::-;;;:::i;:::-;;;;;;;;1173:103:4;;;;;;;;;:::i;:::-;;;;;;;;5978:135:1;;;;;;;;;:::i;7020:127::-;;;;;;;;;:::i;1986:90::-;;;:::i;:::-;;;;;;;;4862:130;;;;;;;;;:::i;1537:98::-;;;:::i;2390:106::-;;;:::i;1282:126:4:-;;;;;;;;;:::i;1329:74:1:-;;;:::i;:::-;;;;;;;;7288:127;;;;;;;;;:::i;7565:129::-;;;;;;;;;:::i;6721:162::-;;;;;;;;;:::i;:::-;;;;;;;;2082:98;;;:::i;4336:126::-;;;;;;;;;:::i;1780:94:7:-;;;;;;;;;:::i;:::-;;6263:152:1;;;;;;;;;:::i;5261:184::-;;;:::i;1786:94::-;;;:::i;:::-;;;;;;;;7839:173;;;:::i;7153:129::-;;;;;;;;;:::i;3946:122::-;;;;;;;;;:::i;6119:138::-;;;;;;;;;:::i;1409:122::-;;;;;;;;;:::i;6546:134::-;;;;;;;;;:::i;1886:94::-;;;:::i;1574:200:7:-;;;:::i;2892:259:1:-;;;;;;;;;:::i;2759:127::-;;;;;;;;;:::i;4204:126::-;;;;;;;;;:::i;5164:91::-;;;:::i;1239:84::-;;;:::i;3392:192::-;;;;;;;;;:::i;:::-;;;;;;;;2502:100;;;:::i;3590:160::-;;;;;;;;;:::i;7421:138::-;;;;;;;;;:::i;2608:113::-;;;:::i;3157:229::-;;;;;;;;;:::i;5835:137::-;;;;;;;;;:::i;2186:98::-;;;:::i;7700:133::-;;;;;;;;;:::i;4600:126::-;;;;;;;;;:::i;1641:108::-;;;;;;;6889:125;;;;;;;;;:::i;4074:124::-;;;;;;;;;:::i;4468:126::-;;;;;;;;;:::i;2290:94::-;;;:::i;6421:119::-;;;;;;;;;:::i;4732:124::-;4793:7;4819:30;4833:15;4840:7;4833:6;:15::i;:::-;4819:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4819:30:1;;;;;;;;-1:-1:-1;;;4819:30:1;;;;;;;:13;:30::i;:::-;4812:37;;4732:124;;;;:::o;4998:130::-;5062:7;5088:33;5105:15;5112:7;5105:6;:15::i;:::-;5088:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5088:33:1;;;;;;;;-1:-1:-1;;;5088:33:1;;;;;;;:16;:33::i;1133:100::-;1195:31;;;;;;;;;;;;-1:-1:-1;;;1195:31:1;;;;1133:100;:::o;1173:103:4:-;1241:4;1173:103;;;;;:::o;5978:135:1:-;6041:7;6067:20;;;:13;:20;;;;;:39;;;;5978:135::o;7020:127::-;-1:-1:-1;;;;;7105:28:1;7079:7;7105:28;;;:17;:28;;;;;:35;;;;7020:127::o;1986:90::-;2049:20;;-1:-1:-1;;;;;2049:20:1;1986:90;:::o;4862:130::-;4926:7;4952:33;4969:15;4976:7;4969:6;:15::i;:::-;4952:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4952:33:1;;;;;;;;-1:-1:-1;;;4952:33:1;;;;;;;:16;:33::i;1537:98::-;1607:14;:21;1537:98;:::o;2390:106::-;2464:25;;2390:106;:::o;1282:126:4:-;1373:4;1282:126;;;;;:::o;1329:74:1:-;1394:2;1329:74;:::o;7288:127::-;-1:-1:-1;;;;;7373:28:1;7347:7;7373:28;;;:17;:28;;;;;:35;;;;7288:127::o;7565:129::-;-1:-1:-1;;;;;7649:28:1;7626:4;7649:28;;;:17;:28;;;;;:34;:38;;;7565:129::o;6721:162::-;-1:-1:-1;;;;;6833:28:1;;;6800:14;6833:28;;;:17;:28;;;;;;;;:43;;;;;:34;;;;:43;;;;;;6721:162;;;;:::o;2082:98::-;2152:21;;2082:98;:::o;4336:126::-;4398:7;4424:31;4439:15;4446:7;4439:6;:15::i;:::-;4424:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4424:31:1;;;;;;;;-1:-1:-1;;;4424:31:1;;;;;;;:14;:31::i;1780:94:7:-;1842:25;1852:14;1842:9;:25::i;:::-;1780:94;:::o;6263:152:1:-;6342:7;6368:20;;;:13;:20;;;;;:37;;:40;;6406:1;;6368:40;;;;;;;;;;;;;;6361:47;;6263:152;;;;:::o;5261:184::-;5303:7;5322:38;;:::i;:::-;5363:28;:26;:28::i;:::-;5322:69;;5408:30;5430:7;5408:21;:30::i;:::-;5401:37;;;5261:184;:::o;1786:94::-;1851:15;:22;-1:-1:-1;;;;;1851:22:1;1786:94;:::o;7839:173::-;1020:66;7985:11;;7963:43::o;7153:129::-;-1:-1:-1;;;;;7239:28:1;7213:7;7239:28;;;:17;:28;;;;;:36;;;;7153:129::o;3946:122::-;4006:7;4032:29;4045:15;4052:7;4045:6;:15::i;:::-;4032:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4032:29:1;;;;;;;;-1:-1:-1;;;4032:29:1;;;;;;;:12;:29::i;6119:138::-;6180:7;6206:20;;;:13;:20;;;;;:37;;:44;;6119:138::o;1409:122::-;-1:-1:-1;;;;;1492:24:1;1466:7;1492:24;;;:15;:24;;;;;:32;;;;1409:122::o;6546:134::-;6607:4;6639:34;:32;:34::i;:::-;6630:43;;;;;6546:134;-1:-1:-1;6546:134:1:o;1886:94::-;1951:22;;-1:-1:-1;;;;;1951:22:1;1886:94;:::o;1574:200:7:-;1281:121:2;1308:31;1322:16;:14;:16::i;1308:31::-;1307:32;-1:-1:-1;;;;;;1281:12:2;:121::i;:::-;1413:29;1425:16;:14;:16::i;:::-;1413:11;:29::i;:::-;1640:66:7;1748:18;1640:66;1748:12;:18::i;:::-;1716:15;:51;;-1:-1:-1;;;;;;1716:51:7;-1:-1:-1;;;;;1716:51:7;;;;;;;;;;-1:-1:-1;1574:200:7:o;2892:259:1:-;2955:7;2974:19;2996:13;:11;:13::i;:::-;2974:35;-1:-1:-1;3023:16:1;3019:55;;3062:1;3055:8;;;;;3019:55;3090:54;3132:11;3090:37;3108:18;3118:7;3108:9;:18::i;:::-;3090:13;:11;:13::i;:::-;:17;:37;:17;:37;:::i;:::-;:41;:54;:41;:54;:::i;:::-;3083:61;2892:259;-1:-1:-1;;;2892:259:1:o;2759:127::-;-1:-1:-1;;;;;2848:24:1;2822:7;2848:24;;;:15;:24;;;;;:31;;2759:127::o;4204:126::-;4266:7;4292:31;4307:15;4314:7;4307:6;:15::i;:::-;4292:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4292:31:1;;;;;;;;-1:-1:-1;;;4292:31:1;;;;;;;:14;:31::i;5164:91::-;5228:20;;5164:91;:::o;1239:84::-;1303:13;;;;;;;;;;;;-1:-1:-1;;;1303:13:1;;;;1239:84;:::o;3392:192::-;3448:14;3520:7;:5;:7::i;:::-;-1:-1:-1;;;;;3481:24:1;;:6;:24;;;:15;:24;;;;;:36;;;:46;:96;;3554:23;3481:96;;;-1:-1:-1;3530:21:1;;3392:192;-1:-1:-1;3392:192:1:o;2502:100::-;2573:22;;2502:100;:::o;3590:160::-;-1:-1:-1;;;;;3695:22:1;;;3669:7;3695:22;;;:15;:22;;;;;;;;:48;;;;;;:39;;;;:48;;;;;;3590:160::o;7421:138::-;7479:7;7505:47;7531:20;7541:9;7531;:20::i;:::-;7505:21;7516:9;7505:10;:21::i;:::-;:25;:47;:25;:47;:::i;2608:113::-;2649:7;2675:39;2702:11;:9;:11::i;:::-;2675:8;:6;:8::i;:::-;-1:-1:-1;;;;;2675:20:1;;:22;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2675:22:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2675:22:1;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;2675:22:1;;;;;;;;;:26;:39;:26;:39;:::i;:::-;2668:46;;2608:113;:::o;3157:229::-;3236:7;3259:25;3278:5;3259:18;:25::i;:::-;3255:69;;-1:-1:-1;3312:1:1;3305:8;;3255:69;-1:-1:-1;;;;;;3340:24:1;;;;:6;:24;;;:15;:24;;;;;;;;:39;;;:32;;;;:39;;;;;3157:229::o;5835:137::-;5899:7;5925:20;;;:13;:20;;;;;:28;;:40;;5835:137::o;2186:98::-;2256:21;;2186:98;:::o;7700:133::-;-1:-1:-1;;;;;7786:28:1;7763:4;7786:28;;;:17;:28;;;;;:40;;;;;;7700:133::o;4600:126::-;4662:7;4688:31;4703:15;4710:7;4703:6;:15::i;:::-;4688:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4688:31:1;;;;;;;;-1:-1:-1;;;4688:31:1;;;;;;;:14;:31::i;6889:125::-;-1:-1:-1;;;;;6973:28:1;6947:7;6973:28;;;:17;:28;;;;;:34;;6889:125::o;4074:124::-;4135:7;4161:30;4175:15;4182:7;4175:6;:15::i;:::-;4161:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4161:30:1;;;;;;;;-1:-1:-1;;;4161:30:1;;;;;;;:13;:30::i;4468:126::-;4530:7;4556:31;4571:15;4578:7;4571:6;:15::i;:::-;4556:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4556:31:1;;;;;;;;-1:-1:-1;;;4556:31:1;;;;;;;:14;:31::i;2290:94::-;2358:19;;2290:94;:::o;6421:119::-;6480:7;6506:20;;;:13;:20;;;;;:27;;6421:119::o;3813:127::-;-1:-1:-1;;;;;3902:24:1;3869:14;3902:24;;;:15;:24;;;;;:31;;;3813:127::o;1897:134:24:-;1998:26;;;1991:33;;;1897:134::o;2728:175::-;2806:7;2832:64;2866:29;2881:13;2866:14;:29::i;:::-;2832;2847:13;2832:14;:29::i;2037:685::-;2115:7;2134:15;2152:16;:14;:16::i;:::-;2134:34;;2178:17;2198:28;2212:13;2198;:28::i;:::-;2178:48;-1:-1:-1;2237:22:24;2273:14;2269:380;;2310:1;2303:8;;;;;;;2269:380;2343:9;2332:7;:20;2328:321;;2385:29;2400:13;2385:14;:29::i;:::-;2368:46;;2328:321;;;2462:176;2608:29;2623:13;2608:14;:29::i;:::-;2462:108;2529:40;2541:27;2554:13;2541:12;:27::i;:::-;2529:7;;:40;:11;:40;:::i;:::-;2462:29;2477:13;2462:14;:29::i;:176::-;2445:193;;2328:321;2666:49;2685:29;2700:13;2685:14;:29::i;:::-;2666:14;;:49;:18;:49;:::i;:::-;2659:56;2037:685;-1:-1:-1;;;;;2037:685:24:o;1314:303::-;1390:7;1409:15;1427:16;:14;:16::i;:::-;1409:34;;1453:17;1473:28;1487:13;1473;:28::i;:::-;1453:48;;1527:9;1516:7;:20;1512:59;;1559:1;1552:8;;;;;;1512:59;1588:22;:9;1602:7;1588:22;:13;:22;:::i;:::-;1581:29;1314:303;-1:-1:-1;;;;1314:303:24:o;1661:313:6:-;1726:36;1744:17;1726;:36::i;:::-;1842:39;;;22:32:-1;6:49;;1842:39:6;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;1811:71:6;;1774:12;;1788:19;;-1:-1:-1;;;;;1811:30:6;;;:71;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;1773:109:6;;;;1900:7;1916:6;1892:32;;;;;-1:-1:-1;;;1892:32:6;;;;;;;;;;;;;;;;;;-1:-1:-1;1940:27:6;;-1:-1:-1;;;;;1940:27:6;;;;;;;;1661:313;;;:::o;4002:222:0:-;4053:20;;:::i;:::-;4092:125;;;;;;;;1465:1;4092:125;;;;1511:10;4092:125;;;;1597:7;4092:125;;;4085:132;;4002:222;:::o;5451:244:1:-;5545:7;5571:117;5672:8;:15;;;5571:83;5638:8;:15;;;5571:49;5605:8;:14;;;5571:16;:14;:16::i;859:134:24:-;959:27;;;952:34;;;859:134::o;4349:110:0:-;909:3;4349:110;:::o;1257:418:10:-;1383:4;1378:291;;1497:24;1516:4;1497:18;:24::i;:::-;-1:-1:-1;;;1578:26:10;1597:6;1578:18;:26::i;:::-;1455:171;;;;;;;;;;;;;;;-1:-1:-1;;26:21;;;22:32;6:49;;1455:171:10;;;;-1:-1:-1;;;1403:255:10;;;;;;;;1378:291;1257:418;;;:::o;7108:113:4:-;-1:-1:-1;;;;;7167:28:4;:6;:28;;;:17;:28;;;;;:40;;:47;;-1:-1:-1;;7167:47:4;7210:4;7167:47;;;7108:113::o;1136:360:7:-;1190:7;1209:21;1233;:19;:21::i;:::-;1209:45;;1264:12;1366:4;1355:8;1349:15;1342:4;1332:8;1328:19;1325:1;1317:54;1309:62;;1407:4;1395:17;1385:2;;1442:1;1439;1432:12;2159:459:32;2217:7;2458:6;2454:45;;-1:-1:-1;2487:1:32;2480:8;;2454:45;2521:5;;;2525:1;2521;:5;:1;2544:5;;;;;:10;2536:56;;;;-1:-1:-1;;;2536:56:32;;;;;;;;3073:130;3131:7;3157:39;3161:1;3164;3157:39;;;;;;;;;;;;;;;;;:3;:39::i;1138:170:24:-;1214:7;1240:61;1273:27;1286:13;1273:12;:27::i;:::-;1240:28;1254:13;1240;:28::i;834:176:32:-;892:7;923:5;;;946:6;;;;938:46;;;;-1:-1:-1;;;938:46:32;;;;;;;;1274:134;1332:7;1358:43;1362:1;1365;1358:43;;;;;;;;;;;;;;;;;:3;:43::i;1760:131:24:-;1862:22;;;;1760:131::o;999:133::-;1100:25;;;1093:32;;;999:133::o;1623:131::-;1725:22;;1623:131::o;5732:97:1:-;5807:15;5732:97;:::o;2121:327:6:-;2201:57;2240:17;2201:38;:57::i;:::-;2193:129;;;;-1:-1:-1;;;2193:129:6;;;;;;;;;1224:66;2401:31;2387:55::o;6258:954:10:-;6349:12;6424:19;6463:5;6446:23;;;;;;;;;;;;;-1:-1:-1;;26:21;;;22:32;6:49;;6446:23:10;;;;-1:-1:-1;49:4;6575:571:10;6596:5;;6575:571;;6847:9;;-1:-1:-1;;6749:3:10;;;;6847:6;;6749:3;;6847:9;;;;;;;;;;-1:-1:-1;;;;;;6847:9:10;:14;6843:293;;6902:1;6898:5;7028:22;;7035:6;-1:-1:-1;7108:13:10;;6843:293;6575:571;;;-1:-1:-1;;7193:12:10;;;7203:1;7193:12;;;;;;;;;7186:19;-1:-1:-1;;6258:954:10:o;954:176:7:-;1007:12;1031:21;1055:25;;;;;;;;:::i;:::-;41:4:-1;34:5;30:16;25:3;21:26;14:5;7:41;87:2;83:7;78:2;73:3;69:12;65:26;61:2;54:38;1055:25:7;1031:49;;1114:8;1097:26;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;1097:26:7;;;1090:33;;;954:176;:::o;3718:338:32:-;3804:7;3904:12;3897:5;3889:28;;;;-1:-1:-1;;;3889:28:32;;;;;;;;;;;3927:9;3943:1;3939;:5;;;;;;;3718:338;-1:-1:-1;;;;;3718:338:32:o;1732:187::-;1818:7;1853:12;1845:6;;;;1837:29;;;;-1:-1:-1;;;1837:29:32;;;;;;;;;;-1:-1:-1;;;1888:5:32;;;1732:187::o;924:616:40:-;1487:20;1525:8;;;924:616::o;1500:376:7:-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;:::o;5:130:-1:-;72:20;;97:33;72:20;97:33;;142:130;209:20;;234:33;209:20;234:33;;279:134;357:13;;375:33;357:13;375:33;;420:241;;524:2;512:9;503:7;499:23;495:32;492:2;;;540:1;537;530:12;492:2;575:1;592:53;637:7;617:9;592:53;;668:366;;;789:2;777:9;768:7;764:23;760:32;757:2;;;805:1;802;795:12;757:2;840:1;857:53;902:7;882:9;857:53;;;847:63;;819:97;947:2;965:53;1010:7;1001:6;990:9;986:22;965:53;;;955:63;;926:98;751:283;;;;;;1041:491;;;;1179:2;1167:9;1158:7;1154:23;1150:32;1147:2;;;1195:1;1192;1185:12;1147:2;1230:1;1247:53;1292:7;1272:9;1247:53;;;1237:63;;1209:97;1337:2;1355:53;1400:7;1391:6;1380:9;1376:22;1355:53;;;1345:63;;1316:98;1445:2;1463:53;1508:7;1499:6;1488:9;1484:22;1463:53;;;1453:63;;1424:98;1141:391;;;;;;1539:366;;;1660:2;1648:9;1639:7;1635:23;1631:32;1628:2;;;1676:1;1673;1666:12;1628:2;1711:1;1728:53;1773:7;1753:9;1728:53;;;1718:63;;1690:97;1818:2;1836:53;1881:7;1872:6;1861:9;1857:22;1836:53;;1912:241;;2016:2;2004:9;1995:7;1991:23;1987:32;1984:2;;;2032:1;2029;2022:12;1984:2;2067:1;2084:53;2129:7;2109:9;2084:53;;2160:263;;2275:2;2263:9;2254:7;2250:23;2246:32;2243:2;;;2291:1;2288;2281:12;2243:2;2326:1;2343:64;2399:7;2379:9;2343:64;;2430:366;;;2551:2;2539:9;2530:7;2526:23;2522:32;2519:2;;;2567:1;2564;2557:12;2519:2;2602:1;2619:53;2664:7;2644:9;2619:53;;2803:113;2886:24;2904:5;2886:24;;;2881:3;2874:37;2868:48;;;2923:104;3000:21;3015:5;3000:21;;3034:148;3133:43;3152:23;3169:5;3152:23;;;3133:43;;3189:152;3290:45;3310:24;3328:5;3310:24;;3348:356;;3476:38;3508:5;3476:38;;;3526:88;3607:6;3602:3;3526:88;;;3519:95;;3619:52;3664:6;3659:3;3652:4;3645:5;3641:16;3619:52;;;3683:16;;;;;3456:248;-1:-1;;3456:248;3711:158;3810:53;3857:5;3810:53;;4041:144;4133:46;4173:5;4133:46;;4192:140;4282:44;4320:5;4282:44;;4339:347;;4451:39;4484:5;4451:39;;;4502:71;4566:6;4561:3;4502:71;;;4495:78;;4578:52;4623:6;4618:3;4611:4;4604:5;4600:16;4578:52;;;4651:29;4673:6;4651:29;;;4642:39;;;;4431:255;-1:-1;;;4431:255;4694:327;;4854:67;4918:2;4913:3;4854:67;;;4954:29;4934:50;;5012:2;5003:12;;4840:181;-1:-1;;4840:181;5030:370;;5190:67;5254:2;5249:3;5190:67;;;5290:34;5270:55;;-1:-1;;;5354:2;5345:12;;5338:25;5391:2;5382:12;;5176:224;-1:-1;;5176:224;5409:396;;5569:67;5633:2;5628:3;5569:67;;;5669:34;5649:55;;5738:29;5733:2;5724:12;;5717:51;5796:2;5787:12;;5555:250;-1:-1;;5555:250;5813:113;5896:24;5914:5;5896:24;;5933:107;6012:22;6028:5;6012:22;;6047:244;;6166:75;6237:3;6228:6;6166:75;;;-1:-1;6263:2;6254:12;;6154:137;-1:-1;6154:137;6298:262;;6442:93;6531:3;6522:6;6442:93;;6567:553;;6783:93;6872:3;6863:6;6783:93;;;6776:100;;6887:73;6956:3;6947:6;6887:73;;;6982:1;6977:3;6973:11;6966:18;;7002:93;7091:3;7082:6;7002:93;;7127:213;7245:2;7230:18;;7259:71;7234:9;7303:6;7259:71;;7347:201;7459:2;7444:18;;7473:65;7448:9;7511:6;7473:65;;7555:245;7689:2;7674:18;;7703:87;7678:9;7763:6;7703:87;;8059:231;8186:2;8171:18;;8200:80;8175:9;8253:6;8200:80;;8297:227;8422:2;8407:18;;8436:78;8411:9;8487:6;8436:78;;8531:301;8669:2;8683:47;;;8654:18;;8744:78;8654:18;8808:6;8744:78;;8839:407;9030:2;9044:47;;;9015:18;;9105:131;9015:18;9105:131;;9253:407;9444:2;9458:47;;;9429:18;;9519:131;9429:18;9519:131;;9667:407;9858:2;9872:47;;;9843:18;;9933:131;9843:18;9933:131;;10081:213;10199:2;10184:18;;10213:71;10188:9;10257:6;10213:71;;10301:205;10415:2;10400:18;;10429:67;10404:9;10469:6;10429:67;;10924:163;11027:19;;;11076:4;11067:14;;11020:67;11095:91;;11157:24;11175:5;11157:24;;11193:85;11259:13;11252:21;;11235:43;11285:144;-1:-1;;;;;;11346:78;;11329:100;11436:72;11498:5;11481:27;11515:128;11588:5;11594:44;11588:5;11594:44;;11650:124;11721:5;11727:42;11721:5;11727:42;;11781:121;-1:-1;;;;;11843:54;;11826:76;11988:81;12059:4;12048:16;;12031:38;12076:153;;12171:53;12218:5;12171:53;;12658:128;;12746:35;12775:5;12746:35;;12793:124;;12879:33;12906:5;12879:33;;12925:268;12990:1;12997:101;13011:6;13008:1;13005:13;12997:101;;;13078:11;;;13072:18;13059:11;;;13052:39;13033:2;13026:10;12997:101;;;13113:6;13110:1;13107:13;13104:2;;;13178:1;13169:6;13164:3;13160:16;13153:27;13104:2;12974:219;;;;;13362:97;13450:2;13430:14;-1:-1;;13426:28;;13410:49;13467:102;13547:1;13540:5;13537:12;13527:2;;13553:9;13576:100;13654:1;13647:5;13644:12;13634:2;;13660:9;13683:117;13752:24;13770:5;13752:24;;;13745:5;13742:35;13732:2;;13791:1;13788;13781:12;13807:117;13876:24;13894:5;13876:24;

Swarm Source

bzzr://74cff1c9ab08743e8d25c74926e2e281c5eebcaf50faad181388f6b4cb2511b8

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.