ETH Price: $3,327.69 (-1.78%)
Gas: 24 Gwei

Token

Defactor (FACTR)
 

Overview

Max Total Supply

300,000,000 FACTR

Holders

2,595

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
227.926845182622603879 FACTR

Value
$0.00
0x194feaadb5972dd0451baca1300921c730062e77
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PrimeDeployable

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 10 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 2 of 12: PrimeDeployable.sol
// SPDX-License-Identifier: LicenseRef-Blockwell-Smart-License

/*
______      __           _
|  _  \    / _|         | |
| | | |___| |_ __ _  ___| |_ ___  _ __
| | | / _ \  _/ _` |/ __| __/ _ \| '__|
| |/ /  __/ || (_| | (__| || (_) | |
|___/ \___|_| \__,_|\___|\__\___/|_|

Defactor provides a gateway for traditional businesses to access the billions
of dollars currently available in Decentralized Finance (DeFi) liquidity pools,
offering a pipeline of real-world assets that can bring enormous value to the
DeFi ecosystem. Defactor will spawn new business models and new financial
products and services based on DeFi.  Defactor will help cement DeFi as a true
competitor to traditional finance.

For more information about the project visit https://www.defactor.com

*/
pragma solidity ^0.6.10;

import "./_PrimeToken.sol";

/**
 * @dev Extended constructor for added user groups and deployment fees.
 *
 * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
 */
contract PrimeDeployable is PrimeToken {
    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        uint256 _totalSupply,
        address owner,
        address bwAdmin,
        address feeAccount,
        uint256 feePercentageTenths,
        address attorney,
        string memory _attorneyEmail
    ) public PrimeToken(_name, _symbol, _decimals, _totalSupply) {
        _addBwAdmin(bwAdmin);
        _addAdmin(owner);
        if (attorney != address(0x0)) {
            _addAttorney(attorney);
        }
        attorneyEmail = _attorneyEmail;

        // Percentage should be in tenths, so 1% would be 10
        if (feePercentageTenths > 0) {
            uint256 fee = totalTokenSupply.mul(feePercentageTenths).div(1000);
            balances[owner] = totalTokenSupply.sub(fee);
            emit Transfer(address(0), owner, balances[owner]);

            balances[feeAccount] = fee;
            emit Transfer(address(0), feeAccount, fee);
        } else {
            balances[owner] = totalTokenSupply;
            emit Transfer(address(0), owner, totalTokenSupply);
        }
    }

    function init(address) internal override {
        // Skip the original init function
    }
}

File 1 of 12: LicenseRef-Blockwell-Smart-License.sol
// SPDX-License-Identifier: LicenseRef-Blockwell-Smart-License
/*

BLOCKWELL SMART LICENSE

Everyone is permitted to copy and distribute verbatim copies of this license
document, but changing it is not allowed.


PREAMBLE

Blockwell provides a blockchain platform designed to make cryptocurrency fast,
easy and low cost. It enables anyone to tokenize, monetize, analyze and scale
their business with blockchain. Users who deploy smart contracts on
Blockwell’s blockchain agree to do so on the terms and conditions of this
Blockwell Smart License, unless otherwise expressly agreed in writing with
Blockwell.

The Blockwell Smart License is an evolved version of GNU General Public
License version 2. The extent of the modification is to reflect Blockwell’s
intention to require its users to send a minting and system transfer fee to
the Blockwell network each time a smart contract is deployed (or token is
created). These fees will then be distributed among Blockwell token holders
and to contributors that build and support the Blockwell ecosystem.

You can create a token on the Blockwell network at:
https://app.blockwell.ai/prime

The accompanying source code can be used in accordance with the terms of this
License, using the following arguments, with the bracketed arguments being
contractually mandated by this license:

tokenName, tokenSymbol, tokenDecimals, tokenSupply, founderWallet,
[0xda0f00d92086E50099742B6bfB0230c942DdA4cC],
[0xda0f00d92086E50099742B6bfB0230c942DdA4cC], [20], attorneyWallet,
attorneyAndLegalEmailAddress

The precise terms and conditions for copying, distribution, deployment and
modification follow.


TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION, DEPLOYMENT AND MODIFICATION

0. This License applies to any program or other work which contains a notice
   placed by the copyright holder saying it may be distributed under the terms
   of this License. The "Program", below, refers to any such program or work,
   and a "work based on the Program" means either the Program or any
   derivative work under copyright law: that is to say, a work containing the
   Program or a portion of it, either verbatim or with modifications and/or
   translated into another language. (Hereinafter, translation is included
   without limitation in the term "modification".) Each licensee is addressed
   as "you".

   Activities other than copying, distribution, deployment and modification are
   not covered by this License; they are outside its scope. The act of running
   the Program is not restricted, and the output from the Program is covered only
   if its contents constitute a work based on the Program (independent of having
   been made by running the Program). Whether that is true depends on what the
   Program does.

1. You may copy and distribute verbatim copies of the Program's source code as
   you receive it, in any medium, provided that you conspicuously and
   appropriately publish on each copy an appropriate copyright notice and
   disclaimer of warranty; keep intact all the notices that refer to this
   License and to the absence of any warranty; and give any other recipients
   of the Program a copy of this License along with the Program.

   You may charge a fee for the physical act of transferring a copy, and you may
   at your option offer warranty protection in exchange for a fee.

2. You may modify your copy or copies of the Program or any portion of it,
   thus forming a work based on the Program, and copy and distribute such
   modifications or work under the terms of Section 1 above, provided that you
   also meet all of these conditions:

a) You must cause the modified files to carry prominent notices stating that
   you changed the files.

b) You must cause any work that you distribute or publish, that in whole or in
   part contains or is derived from the Program or any part thereof, to be
   licensed as a whole to all third parties under the terms of this License.

c) You must cause Blockwell Fee Wallet
   “0xda0f00d92086E50099742B6bfB0230c942DdA4cC” to receive 2% of the total
   supply of tokens each and every any time tokens are created on the
   Blockchain network. This can be achieved using the current version of the
   source code to which this License attaches by setting the “feeAccount”
   parameter to Blockwell Fee Wallet
   “0xda0f00d92086E50099742B6bfB0230c942DdA4cC”, and the “feePercentageTenths”
   parameter to “20” when deploying.

d) You must add Blockwell’s wallet
   “0xda0f00d92086E50099742B6bfB0230c942DdA4cC” as a BW Admin, and you must
   not restrict the abilities of a BW Admin in any derivative works. This can
   be achieved using the current version of the source code to which this
   License attaches by setting the “bwAdmin” parameter to Blockwell’s wallet
   “0xda0f00d92086E50099742B6bfB0230c942DdA4cC” when deploying.

   These requirements apply to the modified work as a whole. If identifiable
   sections of that work are not derived from the Program, and can be reasonably
   considered independent and separate works in themselves, then this License,
   and its terms, do not apply to those sections when you distribute them as
   separate works. But when you distribute the same sections as part of a whole
   which is a work based on the Program, the distribution of the whole must be on
   the terms of this License, whose permissions for other licensees extend to the
   entire whole, and thus to each and every part regardless of who wrote it.

   Thus, it is not the intent of this section to claim rights or contest your
   rights to work written entirely by you; rather, the intent is to exercise the
   right to control the distribution of derivative or collective works based on
   the Program.

   In addition, mere aggregation of another work not based on the Program with
   the Program (or with a work based on the Program) on a volume of a storage or
   distribution medium does not bring the other work under the scope of this
   License.

3. You may copy and distribute the Program (or a work based on it, under
   Section 2) in object code or executable form under the terms of Sections 1
   and 2 above provided that you also make good faith and reasonable attempts
   to make available the complete corresponding machine-readable source code,
   which must be distributed under the terms of Sections 1 and 2 above.

   The source code for a work means the preferred form of the work for making
   modifications to it. For an executable work, complete source code means all
   the source code for all modules it contains, plus any associated interface
   definition files, plus the scripts used to control compilation and
   installation of the executable. However, as a special exception, the source
   code distributed need not include anything that is normally distributed (in
   either source or binary form) with the major components (compiler, kernel, and
   so on) of the operating system on which the executable runs, unless that
   component itself accompanies the executable.

   If distribution of executable or object code is made by offering access to
   copy from a designated place, then offering equivalent access to copy the
   source code from the same place counts as distribution of the source code,
   even though third parties are not compelled to copy the source along with the
   object code.

   Distribution and execution of executable or object code as part of existing
   smart contracts on the blockchain in the normal operation of the blockchain
   network (miners, node hosts, infrastructure providers and so on) is excepted
   from the requirement to make available the source code as set out in this
   clause.

4. You may not copy, modify, sublicense, or distribute the Program except as
   expressly provided under this License. Any attempt otherwise to copy,
   modify, sublicense or distribute the Program is void, and will
   automatically terminate your rights under this License. However, parties
   who have received copies, or rights, from you under this License will not
   have their licenses terminated so long as such parties remain in full
   compliance.

5. You are not required to accept this License, since you have not signed it.
   However, nothing else grants you permission to modify or distribute the
   Program or its derivative works. These actions are prohibited by law if you
   do not accept this License. Therefore, by modifying or distributing the
   Program (or any work based on the Program), you indicate your acceptance of
   this License to do so, and all its terms and conditions for copying,
   distributing or modifying the Program or works based on it.

6. Each time you redistribute the Program (or any work based on the Program),
   the recipient automatically receives a license from the original licensor
   to copy, distribute or modify the Program subject to these terms and
   conditions. You may not impose any further restrictions on the recipients'
   exercise of the rights granted herein. You are not responsible for
   enforcing compliance by third parties to this License.

7. If, as a consequence of a court judgment or allegation of patent
   infringement or for any other reason (not limited to patent issues),
   conditions are imposed on you (whether by court order, agreement or
   otherwise) that contradict the conditions of this License, they do not
   excuse you from the conditions of this License. If you cannot distribute so
   as to satisfy simultaneously your obligations under this License and any
   other pertinent obligations, then as a consequence you may not distribute
   the Program at all. For example, if a patent license would not permit
   royalty-free redistribution of the Program by all those who receive copies
   directly or indirectly through you, then the only way you could satisfy
   both it and this License would be to refrain entirely from distribution of
   the Program.

   If any portion of this section is held invalid or unenforceable under any
   particular circumstance, the balance of the section is intended to apply and
   the section as a whole is intended to apply in other circumstances.

   It is not the purpose of this section to induce you to infringe any patents or
   other property right claims or to contest validity of any such claims; this
   section has the sole purpose of protecting the integrity of the free software
   distribution system, which is implemented by public license practices. Many
   people have made generous contributions to the wide range of software
   distributed through that system in reliance on consistent application of that
   system; it is up to the author/donor to decide if he or she is willing to
   distribute software through any other system and a licensee cannot impose that
   choice.

   This section is intended to make thoroughly clear what is believed to be a
   consequence of the rest of this License.

8. Blockwell may publish revised and/or new versions of the Blockwell Smart
   License from time to time. Such new versions will be similar in spirit to
   the present version, but may differ in detail to address new problems or
   concerns.


NO WARRANTY

9. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE
   LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
   OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND,
   EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
   ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM AND YOUR USE
   OF THE SOURCE CODE INCLUDING AS TO ITS COMPLIANCE WITH ANY APPLICABLE LAW
   IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
   NECESSARY SERVICING, REPAIR OR CORRECTION.

10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
    ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
    REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
    INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
    ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT
    LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES
    SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE
    WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN
    ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

END OF TERMS AND CONDITIONS

*/

pragma solidity ^0.6.10;

contract NoContract {

}

File 3 of 12: _BlockwellQuill.sol
// SPDX-License-Identifier: LicenseRef-Blockwell-Smart-License
pragma solidity ^0.6.10;

/**
 * @dev Blockwell Quill, storing arbitrary data associated with accounts.
 *
 * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
 */
library BlockwellQuill {
    struct Data {
        mapping(address => bytes) data;
    }

    /**
     * @dev Set data on the account.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function set(
        Data storage data,
        address account,
        bytes memory value
    ) internal {
        require(account != address(0));
        data.data[account] = value;
    }

    /**
     * @dev Get data on the account.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function get(Data storage data, address account) internal view returns (bytes memory) {
        require(account != address(0));
        return data.data[account];
    }

    /**
     * @dev Convert and set string data on the account.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function setString(
        Data storage data,
        address account,
        string memory value
    ) internal {
        data.data[address(account)] = bytes(value);
    }

    /**
     * @dev Get and convert string data on the account.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function getString(Data storage data, address account) internal view returns (string memory) {
        return string(data.data[address(account)]);
    }

    /**
     * @dev Convert and set uint256 data on the account.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function setUint256(
        Data storage data,
        address account,
        uint256 value
    ) internal {
        data.data[address(account)] = abi.encodePacked(value);
    }

    /**
     * @dev Get and convert uint256 data on the account.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function getUint256(Data storage data, address account) internal view returns (uint256) {
        uint256 ret;
        bytes memory source = data.data[address(account)];
        assembly {
            ret := mload(add(source, 32))
        }
        return ret;
    }

    /**
     * @dev Convert and set address data on the account.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function setAddress(
        Data storage data,
        address account,
        address value
    ) internal {
        data.data[address(account)] = abi.encodePacked(value);
    }

    /**
     * @dev Get and convert address data on the account.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function getAddress(Data storage data, address account) internal view returns (address) {
        address ret;
        bytes memory source = data.data[address(account)];
        assembly {
            ret := mload(add(source, 20))
        }
        return ret;
    }
}

File 4 of 12: _ErrorCodes.sol
// SPDX-License-Identifier: LicenseRef-Blockwell-Smart-License
pragma solidity >=0.4.25;

/**
 * Gas-efficient error codes and replacement for require.
 *
 * This uses significantly less gas, and reduces the length of the contract bytecode.
 */
contract ErrorCodes {

    bytes2 constant ERROR_RESERVED = 0xe100;
    bytes2 constant ERROR_RESERVED2 = 0xe200;
    bytes2 constant ERROR_MATH = 0xe101;
    bytes2 constant ERROR_FROZEN = 0xe102;
    bytes2 constant ERROR_INVALID_ADDRESS = 0xe103;
    bytes2 constant ERROR_ZERO_VALUE = 0xe104;
    bytes2 constant ERROR_INSUFFICIENT_BALANCE = 0xe105;
    bytes2 constant ERROR_WRONG_TIME = 0xe106;
    bytes2 constant ERROR_EMPTY_ARRAY = 0xe107;
    bytes2 constant ERROR_LENGTH_MISMATCH = 0xe108;
    bytes2 constant ERROR_UNAUTHORIZED = 0xe109;
    bytes2 constant ERROR_DISALLOWED_STATE = 0xe10a;
    bytes2 constant ERROR_TOO_HIGH = 0xe10b;
    bytes2 constant ERROR_ERC721_CHECK = 0xe10c;
    bytes2 constant ERROR_PAUSED = 0xe10d;
    bytes2 constant ERROR_NOT_PAUSED = 0xe10e;
    bytes2 constant ERROR_ALREADY_EXISTS = 0xe10f;

    bytes2 constant ERROR_OWNER_MISMATCH = 0xe110;
    bytes2 constant ERROR_LOCKED = 0xe111;
    bytes2 constant ERROR_TOKEN_LOCKED = 0xe112;
    bytes2 constant ERROR_ATTORNEY_PAUSE = 0xe113;
    bytes2 constant ERROR_VALUE_MISMATCH = 0xe114;
    bytes2 constant ERROR_TRANSFER_FAIL = 0xe115;
    bytes2 constant ERROR_INDEX_RANGE = 0xe116;
    bytes2 constant ERROR_PAYMENT = 0xe117;

    function expect(bool pass, bytes2 code) internal pure {
        if (!pass) {
            assembly {
                mstore(0x40, code)
                revert(0x40, 0x02)
            }
        }
    }
}

File 5 of 12: _Groups.sol
// SPDX-License-Identifier: LicenseRef-Blockwell-Smart-License
pragma solidity >=0.6.10;

/**
 * @dev Unified system for arbitrary user groups.
 *
 * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
 */
library Groups {
    struct MemberMap {
        mapping(address => bool) members;
    }

    struct GroupMap {
        mapping(uint8 => MemberMap) groups;
    }

    /**
     * @dev Add an account to a group
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function add(
        GroupMap storage map,
        uint8 groupId,
        address account
    ) internal {
        MemberMap storage group = map.groups[groupId];
        require(account != address(0));
        require(!groupContains(group, account));

        group.members[account] = true;
    }

    /**
     * @dev Remove an account from a group
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function remove(
        GroupMap storage map,
        uint8 groupId,
        address account
    ) internal {
        MemberMap storage group = map.groups[groupId];
        require(account != address(0));
        require(groupContains(group, account));

        group.members[account] = false;
    }

    /**
     * @dev Returns true if the account is in the group
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     * @return bool
     */
    function contains(
        GroupMap storage map,
        uint8 groupId,
        address account
    ) internal view returns (bool) {
        MemberMap storage group = map.groups[groupId];
        return groupContains(group, account);
    }

    function groupContains(MemberMap storage group, address account) internal view returns (bool) {
        require(account != address(0));
        return group.members[account];
    }
}

File 6 of 12: _Pausable.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.6.10;

/**
 * @dev Pausing logic that includes whether the pause was initiated by an attorney.
 *
 * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
 */
contract Pausable {
    struct PauseState {
        bool paused;
        bool pausedByAttorney;
    }

    PauseState private pauseState;

    event Paused(address account, bool attorney);
    event Unpaused(address account);

    constructor() internal {
        pauseState = PauseState(false, false);
    }

    modifier whenNotPaused() {
        require(!pauseState.paused);
        _;
    }

    modifier whenPaused() {
        require(pauseState.paused);
        _;
    }

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

    /**
     * @dev Check if the pause was initiated by an attorney.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function pausedByAttorney() public view returns (bool) {
        return pauseState.paused && pauseState.pausedByAttorney;
    }

    /**
     * @dev Internal logic for pausing the contract.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function _pause(bool attorney) internal {
        pauseState.paused = true;
        pauseState.pausedByAttorney = attorney;
        emit Paused(msg.sender, attorney);
    }

    /**
     * @dev Internal logic for unpausing the contract.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function _unpause() internal {
        pauseState.paused = false;
        pauseState.pausedByAttorney = false;
        emit Unpaused(msg.sender);
    }
}

File 7 of 12: _PrimeToken.sol
// SPDX-License-Identifier: LicenseRef-Blockwell-Smart-License
pragma solidity ^0.6.10;

import "./_TokenGroups.sol";
import "./__SafeMath.sol";
import "./_Voting.sol";
import "./__Erc20.sol";
import "./_BlockwellQuill.sol";
import "./_Type.sol";

/**
 * Blockwell Prime Token
 */
contract PrimeToken is Erc20, TokenGroups, Type, Voting {
    using SafeMath for uint256;
    using BlockwellQuill for BlockwellQuill.Data;

    /**
     * @dev Stores data for individual token locks used by transferAndLock.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    struct Lock {
        uint256 value;
        uint64 expiration;
        uint32 periodLength;
        uint16 periods;
        bool staking;
    }

    mapping(address => uint256) internal balances;

    mapping(address => uint256) internal stakes;

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

    mapping(address => Lock[]) locks;

    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 public unlockTime;
    uint256 public transferLockTime;
    string public attorneyEmail;

    uint256 internal totalTokenSupply;

    uint256 public swapNonce;

    bool public suggestionsRestricted = false;
    bool public requireBalanceForVote = false;
    bool public requireBalanceForCreateSuggestion = false;
    uint256 public voteCost;

    uint256 public unstakingDelay = 1 hours;

    BlockwellQuill.Data bwQuill1;

    event SetNewUnlockTime(uint256 unlockTime);
    event MultiTransferPrevented(address indexed from, address indexed to, uint256 value);

    event Locked(
        address indexed owner,
        uint256 value,
        uint64 expiration,
        uint32 periodLength,
        uint16 periodCount
    );
    event Unlocked(address indexed owner, uint256 value, uint16 periodsLeft);

    event SwapToChain(
        string toChain,
        address indexed from,
        address indexed to,
        bytes32 indexed swapId,
        uint256 value
    );
    event SwapFromChain(
        string fromChain,
        address indexed from,
        address indexed to,
        bytes32 indexed swapId,
        uint256 value
    );

    event BwQuillSet(address indexed account, string value);

    event Payment(address indexed from, address indexed to, uint256 value, uint256 order);

    event Stake(address indexed account, uint256 value);
    event Unstake(address indexed account, uint256 value);
    event StakeReward(address indexed account, uint256 value);

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        uint256 _totalSupply
    ) public {
        require(_totalSupply > 0);

        name = _name;
        symbol = _symbol;
        decimals = _decimals;

        totalTokenSupply = _totalSupply;

        init(msg.sender);
        bwtype = PRIME;
        bwver = 62;
    }

    function init(address sender) internal virtual {
        _addBwAdmin(sender);
        _addAdmin(sender);

        balances[sender] = totalTokenSupply;
        emit Transfer(address(0), sender, totalTokenSupply);
    }

    /**
     * @dev Allow only when the contract is unlocked, or if the sender is an admin, an attorney, or whitelisted.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    modifier whenUnlocked() {
        expect(
            now > unlockTime || isAdmin(msg.sender) || isAttorney(msg.sender) || isWhitelisted(msg.sender),
            ERROR_TOKEN_LOCKED
        );
        _;
    }

    /**
     * @dev Set a quill 1 value for an account.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function setBwQuill(address account, string memory value) public onlyAdminOrAttorney {
        bwQuill1.setString(account, value);
        emit BwQuillSet(account, value);
    }

    /**
     * @dev Get a quill 1 value for any account.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function getBwQuill(address account) public view returns (string memory) {
        return bwQuill1.getString(account);
    }

    /**
     * @dev Configure how users can vote.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function configureVoting(
        bool restrictSuggestions,
        bool balanceForVote,
        bool balanceForCreateSuggestion,
        uint256 cost,
        bool oneVote
    ) public onlyAdminOrAttorney {
        suggestionsRestricted = restrictSuggestions;
        requireBalanceForVote = balanceForVote;
        requireBalanceForCreateSuggestion = balanceForCreateSuggestion;
        voteCost = cost;
        oneVotePerAccount = oneVote;
    }

    /**
     * @dev Update the email address for this token's assigned attorney.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function setAttorneyEmail(string memory email) public onlyAdminOrAttorney {
        attorneyEmail = email;
    }

    /**
     * @dev Pause the contract, preventing transfers.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function pause() public whenNotPaused {
        bool attorney = isAttorney(msg.sender);
        expect(attorney || isAdmin(msg.sender), ERROR_UNAUTHORIZED);

        _pause(attorney);
    }

    /**
     * @dev Resume the contract.
     *
     * If the contract was originally paused by an attorney, only an attorney can resume.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function unpause() public whenPaused {
        if (!isAttorney(msg.sender)) {
            expect(isAdmin(msg.sender), ERROR_UNAUTHORIZED);
            expect(!pausedByAttorney(), ERROR_ATTORNEY_PAUSE);
        }
        _unpause();
    }

    /**
     * @dev Lock the contract if not already locked until the given time.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function setUnlockTime(uint256 timestamp) public onlyAdminOrAttorney {
        unlockTime = timestamp;
        emit SetNewUnlockTime(unlockTime);
    }

    /**
     * @dev Total number of tokens.
     */
    function totalSupply() public view override returns (uint256) {
        return totalTokenSupply;
    }

    /**
     * @dev Get account balance.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return balances[account];
    }

    /**
     * @dev Get allowance for an owner-spender pair.
     */
    function allowance(address owner, address spender) public view override returns (uint256) {
        return allowed[owner][spender];
    }

    /**
     * @dev Transfer tokens.
     */
    function transfer(address to, uint256 value) public override whenNotPaused whenUnlocked returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Make multiple token transfers with one transaction.
     * @param to Array of addresses to transfer to.
     * @param value Array of amounts to be transferred.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function multiTransfer(address[] calldata to, uint256[] calldata value)
        public
        whenNotPaused
        onlyBundler
        returns (bool)
    {
        expect(to.length > 0, ERROR_EMPTY_ARRAY);
        expect(value.length == to.length, ERROR_LENGTH_MISMATCH);

        for (uint256 i = 0; i < to.length; i++) {
            if (!isFrozen(to[i])) {
                _transfer(msg.sender, to[i], value[i]);
            } else {
                emit MultiTransferPrevented(msg.sender, to[i], value[i]);
            }
        }

        return true;
    }

    /**
     * @dev Approve a spender to transfer the given amount of the sender's tokens.
     */
    function approve(address spender, uint256 value)
        public
        override
        isNotFrozen
        whenNotPaused
        whenUnlocked
        returns (bool)
    {
        expect(spender != address(0), ERROR_INVALID_ADDRESS);

        allowed[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from an account the sender has been approved to send from.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public override whenNotPaused whenUnlocked returns (bool) {
        allowed[from][msg.sender] = allowed[from][msg.sender].sub(value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to multiple others.
     * @param from Address to send from.
     * @param to Array of addresses to transfer to.
     * @param value Array of amounts to be transferred.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function multiTransferFrom(
        address from,
        address[] calldata to,
        uint256[] calldata value
    ) public whenNotPaused onlyBundler returns (bool) {
        expect(to.length > 0, ERROR_EMPTY_ARRAY);
        expect(value.length == to.length, ERROR_LENGTH_MISMATCH);

        for (uint256 i = 0; i < to.length; i++) {
            if (!isFrozen(to[i])) {
                allowed[from][msg.sender] = allowed[from][msg.sender].sub(value[i]);
                _transfer(from, to[i], value[i]);
            } else {
                emit MultiTransferPrevented(from, to[i], value[i]);
            }
        }

        return true;
    }

    /**
     * @dev Increase the amount of tokens a spender can transfer from the sender's account.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        isNotFrozen
        whenNotPaused
        whenUnlocked
        returns (bool)
    {
        expect(spender != address(0), ERROR_INVALID_ADDRESS);

        allowed[msg.sender][spender] = allowed[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, allowed[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens a spender can transfer from the sender's account.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        isNotFrozen
        whenNotPaused
        whenUnlocked
        returns (bool)
    {
        expect(spender != address(0), ERROR_INVALID_ADDRESS);

        allowed[msg.sender][spender] = allowed[msg.sender][spender].sub(subtractedValue);
        emit Approval(msg.sender, spender, allowed[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Lists all the locks for the given account as an array, with [value1, expiration1, value2, expiration2, ...]
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function locksOf(address account) public view returns (uint256[] memory) {
        Lock[] storage userLocks = locks[account];

        uint256[] memory lockArray = new uint256[](userLocks.length * 4);

        for (uint256 i = 0; i < userLocks.length; i++) {
            uint256 pos = 4 * i;
            lockArray[pos] = userLocks[i].value;
            lockArray[pos + 1] = userLocks[i].expiration;
            lockArray[pos + 2] = userLocks[i].periodLength;
            lockArray[pos + 3] = userLocks[i].periods;
        }

        return lockArray;
    }

    /**
     * @dev Unlocks all expired locks.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function unlock() public returns (bool) {
        return _unlock(msg.sender);
    }

    /**
     * @dev Base method for unlocking tokens.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function _unlock(address account) internal returns (bool) {
        Lock[] storage list = locks[account];
        if (list.length == 0) {
            return true;
        }

        for (uint256 i = 0; i < list.length; ) {
            Lock storage lock = list[i];
            if (lock.expiration < block.timestamp) {
                // Less than 2 means it's the last period (1), or periods are not used (0)
                if (lock.periods < 2) {
                    emit Unlocked(account, lock.value, 0);

                    if (i < list.length - 1) {
                        list[i] = list[list.length - 1];
                    }
                    list.pop();
                } else {
                    uint256 value;
                    uint256 diff = block.timestamp.sub(lock.expiration);
                    uint16 periodsPassed = 1 + uint16(diff.div(lock.periodLength));
                    if (periodsPassed >= lock.periods) {
                        periodsPassed = lock.periods;
                        value = lock.value;
                        emit Unlocked(account, value, 0);
                        if (i < list.length - 1) {
                            list[i] = list[list.length - 1];
                        }
                        list.pop();
                    } else {
                        value = lock.value.div(lock.periods) * periodsPassed;

                        lock.periods -= periodsPassed;
                        lock.value = lock.value.sub(value);
                        lock.expiration =
                            lock.expiration +
                            uint32(uint256(lock.periodLength).mul(periodsPassed));
                        emit Unlocked(account, value, lock.periods);
                        i++;
                    }
                }
            } else {
                i++;
            }
        }

        return true;
    }

    /**
     * @dev Gets the unlocked balance of the specified address.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function unlockedBalanceOf(address account) public view returns (uint256) {
        return balances[account].sub(totalLocked(account));
    }

    /**
     * @dev Gets the total usable tokens for an account, including tokens that could be unlocked.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function availableBalanceOf(address account) external view returns (uint256) {
        return balances[account].sub(totalLocked(account)).add(totalUnlockable(account));
    }

    /**
     * @dev Transfers tokens and locks them for lockTime.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function transferAndLock(
        address to,
        uint256 value,
        uint32 lockTime,
        uint32 periodLength,
        uint16 periods
    ) public returns (bool) {
        uint64 expires = uint64(block.timestamp.add(lockTime));
        Lock memory newLock = Lock(value, expires, periodLength, periods, false);
        locks[to].push(newLock);

        transfer(to, value);
        emit Locked(to, value, expires, periodLength, periods);

        return true;
    }

    /**
     * @dev Transfer and lock to multiple accounts with a single transaction.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function multiTransferAndLock(
        address[] calldata to,
        uint256[] calldata value,
        uint32 lockTime,
        uint32 periodLength,
        uint16 periods
    ) public whenNotPaused onlyBundler returns (bool) {
        expect(to.length > 0, ERROR_EMPTY_ARRAY);
        expect(value.length == to.length, ERROR_LENGTH_MISMATCH);

        for (uint256 i = 0; i < to.length; i++) {
            if (!isFrozen(to[i])) {
                transferAndLock(to[i], value[i], lockTime, periodLength, periods);
            } else {
                emit MultiTransferPrevented(msg.sender, to[i], value[i]);
            }
        }

        return true;
    }

    /**
     * @dev Gets the total amount of locked tokens in the given account.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function totalLocked(address account) public view returns (uint256) {
        uint256 total = 0;
        for (uint256 i = 0; i < locks[account].length; i++) {
            total = total.add(locks[account][i].value);
        }

        return total;
    }

    /**
     * @dev Gets the amount of tokens that can currently be unlocked.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function totalUnlockable(address account) public view returns (uint256) {
        Lock[] storage userLocks = locks[account];
        uint256 total = 0;
        for (uint256 i = 0; i < userLocks.length; i++) {
            Lock storage lock = userLocks[i];
            if (lock.expiration < block.timestamp) {
                if (lock.periods < 2) {
                    total = total.add(lock.value);
                } else {
                    uint256 value;
                    uint256 diff = block.timestamp.sub(lock.expiration);
                    uint16 periodsPassed = 1 + uint16(diff.div(lock.periodLength));
                    if (periodsPassed > lock.periods) {
                        periodsPassed = lock.periods;
                        value = lock.value;
                    } else {
                        value = lock.value.div(lock.periods) * periodsPassed;
                    }

                    total = total.add(value);
                }
            }
        }

        return total;
    }

    /**
     * @dev Withdraw any tokens the contract itself is holding.
     */
    function withdrawTokens() public whenNotPaused {
        expect(isAdmin(msg.sender), ERROR_UNAUTHORIZED);
        _transfer(address(this), msg.sender, balanceOf(address(this)));
    }

    /**
     * @dev Gets an incrementing nonce for generating swap IDs.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function getSwapNonce() internal returns (uint256) {
        return ++swapNonce;
    }

    /**
     * @dev Initiates a swap to another chain. Transfers the tokens to this contract and emits an event
     *      indicating the request to swap.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function swapToChain(
        string memory chain,
        address to,
        uint256 value
    ) public whenNotPaused whenUnlocked {
        bytes32 swapId = keccak256(
            abi.encodePacked(getSwapNonce(), msg.sender, to, address(this), chain, value)
        );

        _transfer(msg.sender, address(this), value);
        emit SwapToChain(chain, msg.sender, to, swapId, value);
    }

    /**
     * @dev Completes a swap from another chain, called by a swapper account.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function swapFromChain(
        string memory fromChain,
        address from,
        address to,
        bytes32 swapId,
        uint256 value
    ) public whenNotPaused onlySwapper {
        _transfer(address(this), to, value);

        emit SwapFromChain(fromChain, from, to, swapId, value);
    }

    /**
     * @dev Create a new suggestion for voting.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function createSuggestion(string memory text) public {
        if (suggestionsRestricted) {
            expect(isAdmin(msg.sender) || isDelegate(msg.sender), ERROR_UNAUTHORIZED);
        } else if (requireBalanceForCreateSuggestion) {
            expect(balanceOf(msg.sender) > 0, ERROR_INSUFFICIENT_BALANCE);
        }
        _createSuggestion(text);
    }

    /**
     * @dev Vote on a suggestion.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function vote(uint256 suggestionId, string memory comment) public {
        if (requireBalanceForVote) {
            expect(balanceOf(msg.sender) > 0, ERROR_INSUFFICIENT_BALANCE);
        }

        if (voteCost > 0) {
            _transfer(msg.sender, address(this), voteCost);
        }

        _vote(msg.sender, suggestionId, 1, comment);
    }

    /**
     * @dev Cast multiple votes on a suggestion.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function multiVote(
        uint256 suggestionId,
        uint256 votes,
        string memory comment
    ) public {
        expect(!oneVotePerAccount, ERROR_DISALLOWED_STATE);

        if (requireBalanceForVote) {
            expect(balanceOf(msg.sender) > 0, ERROR_INSUFFICIENT_BALANCE);
        }

        if (voteCost > 0) {
            _transfer(msg.sender, address(this), voteCost.mul(votes));
        }

        _vote(msg.sender, suggestionId, votes, comment);
    }

    /**
     * @dev Transfer tokens and include an order number for external reference.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function payment(
        address to,
        uint256 value,
        uint256 order
    ) public whenNotPaused whenUnlocked returns (bool) {
        _transfer(msg.sender, to, value);

        emit Payment(msg.sender, to, value, order);
        return true;
    }

    /**
     * @dev Stake tokens, locking them for a minimum of unstakingDelay time.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function stake(uint256 value) public whenNotPaused whenUnlocked returns (bool) {
        expect(!isFrozen(msg.sender), ERROR_FROZEN);

        _unlock(msg.sender);
        expect(value <= unlockedBalanceOf(msg.sender), ERROR_INSUFFICIENT_BALANCE);

        balances[msg.sender] = balances[msg.sender].sub(value);
        stakes[msg.sender] = stakes[msg.sender].add(value);

        emit Transfer(msg.sender, address(0), value);
        emit Stake(msg.sender, value);

        return true;
    }

    /**
     * @dev Get the total staked tokens for an account.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function stakeOf(address account) public view returns (uint256) {
        return stakes[account];
    }

    /**
     * @dev Unstake tokens, which will lock them for unstakingDelay time.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function unstake(uint256 value) public whenNotPaused whenUnlocked returns (bool) {
        expect(!isFrozen(msg.sender), ERROR_FROZEN);

        stakes[msg.sender] = stakes[msg.sender].sub(value);
        balances[msg.sender] = balances[msg.sender].add(value);

        if (unstakingDelay > 0) {
            uint64 expires = uint64(block.timestamp.add(unstakingDelay));
            Lock memory newLock = Lock(value, expires, 0, 0, true);
            locks[msg.sender].push(newLock);
            emit Locked(msg.sender, value, expires, 0, 0);
        }

        emit Unstake(msg.sender, value);
        emit Transfer(address(0), msg.sender, value);

        return true;
    }

    /**
     * @dev Configure staking parameters.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function configureStaking(uint256 unstakeDelay) public onlyAdminOrAttorney {
        unstakingDelay = unstakeDelay;
    }

    /**
     * @dev Reward tokens to account stake balances.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function stakeReward(address[] calldata to, uint256[] calldata value)
        public
        whenNotPaused
        returns (bool)
    {
        expect(isAutomator(msg.sender), ERROR_UNAUTHORIZED);
        expect(value.length == to.length, ERROR_LENGTH_MISMATCH);

        for (uint256 i = 0; i < to.length; i++) {
            address account = to[i];
            uint256 val = value[i];
            if (!isFrozen(account)) {
                stakes[account] = stakes[account].add(val);
                balances[msg.sender] = balances[msg.sender].sub(val);

                emit StakeReward(account, val);
                emit Transfer(msg.sender, address(0), val);
            }
        }

        return true;
    }

    /**
     * @dev Base method for transferring tokens.
     */
    function _transfer(
        address from,
        address to,
        uint256 value
    ) internal {
        expect(to != address(0), ERROR_INVALID_ADDRESS);
        expect(!isFrozen(from), ERROR_FROZEN);
        expect(!isFrozen(to), ERROR_FROZEN);

        _unlock(from);

        expect(value <= unlockedBalanceOf(from), ERROR_INSUFFICIENT_BALANCE);

        balances[from] = balances[from].sub(value);
        balances[to] = balances[to].add(value);
        emit Transfer(from, to, value);
    }
}

File 8 of 12: _TokenGroups.sol
// SPDX-License-Identifier: LicenseRef-Blockwell-Smart-License
pragma solidity ^0.6.10;

import "./_Pausable.sol";
import "./_ErrorCodes.sol";
import "./_Groups.sol";

/**
 * @dev User groups for Prime Token.
 *
 * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
 */
contract TokenGroups is Pausable, ErrorCodes {
    uint8 public constant ADMIN = 1;
    uint8 public constant ATTORNEY = 2;
    uint8 public constant BUNDLER = 3;
    uint8 public constant WHITELIST = 4;
    uint8 public constant FROZEN = 5;
    uint8 public constant BW_ADMIN = 6;
    uint8 public constant SWAPPER = 7;
    uint8 public constant DELEGATE = 8;
    uint8 public constant AUTOMATOR = 11;

    using Groups for Groups.GroupMap;

    Groups.GroupMap groups;

    event AddedToGroup(uint8 indexed groupId, address indexed account);
    event RemovedFromGroup(uint8 indexed groupId, address indexed account);

    event BwAddedAttorney(address indexed account);
    event BwRemovedAttorney(address indexed account);
    event BwRemovedAdmin(address indexed account);

    modifier onlyAdminOrAttorney() {
        expect(isAdmin(msg.sender) || isAttorney(msg.sender), ERROR_UNAUTHORIZED);
        _;
    }

    // ATTORNEY

    function _addAttorney(address account) internal {
        _add(ATTORNEY, account);
    }

    function addAttorney(address account) public whenNotPaused onlyAdminOrAttorney {
        _add(ATTORNEY, account);
    }

    /**
     * @dev Allows BW admins to add an attorney to the contract in emergency cases.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function bwAddAttorney(address account) public onlyBwAdmin {
        _add(ATTORNEY, account);
        emit BwAddedAttorney(account);
    }

    function removeAttorney(address account) public whenNotPaused onlyAdminOrAttorney {
        _remove(ATTORNEY, account);
    }

    /**
     * @dev Allows BW admins to remove an attorney from the contract in emergency cases.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function bwRemoveAttorney(address account) public onlyBwAdmin {
        _remove(ATTORNEY, account);
        emit BwRemovedAttorney(account);
    }

    function isAttorney(address account) public view returns (bool) {
        return _contains(ATTORNEY, account);
    }

    // ADMIN

    function _addAdmin(address account) internal {
        _add(ADMIN, account);
    }

    function addAdmin(address account) public whenNotPaused onlyAdminOrAttorney {
        _addAdmin(account);
    }

    function removeAdmin(address account) public whenNotPaused onlyAdminOrAttorney {
        _remove(ADMIN, account);
    }

    /**
     * @dev Allows BW admins to remove an admin from the contract in emergency cases.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function bwRemoveAdmin(address account) public onlyBwAdmin {
        _remove(ADMIN, account);
        emit BwRemovedAdmin(account);
    }

    function isAdmin(address account) public view returns (bool) {
        return _contains(ADMIN, account);
    }

    // BUNDLER

    function addBundler(address account) public onlyAdminOrAttorney {
        _add(BUNDLER, account);
    }

    function removeBundler(address account) public onlyAdminOrAttorney {
        _remove(BUNDLER, account);
    }

    function isBundler(address account) public view returns (bool) {
        return _contains(BUNDLER, account);
    }

    modifier onlyBundler() {
        expect(isBundler(msg.sender), ERROR_UNAUTHORIZED);
        _;
    }

    // SWAPPER

    function addSwapper(address account) public onlyAdminOrAttorney {
        _addSwapper(account);
    }

    function _addSwapper(address account) internal {
        _add(SWAPPER, account);
    }

    function removeSwapper(address account) public onlyAdminOrAttorney {
        _remove(SWAPPER, account);
    }

    function isSwapper(address account) public view returns (bool) {
        return _contains(SWAPPER, account);
    }

    modifier onlySwapper() {
        expect(isSwapper(msg.sender), ERROR_UNAUTHORIZED);
        _;
    }

    // WHITELIST

    function addToWhitelist(address account) public onlyAdminOrAttorney {
        _add(WHITELIST, account);
    }

    function removeFromWhitelist(address account) public onlyAdminOrAttorney {
        _remove(WHITELIST, account);
    }

    function isWhitelisted(address account) public view returns (bool) {
        return _contains(WHITELIST, account);
    }

    // BW_ADMIN

    function _addBwAdmin(address account) internal {
        _add(BW_ADMIN, account);
    }

    function addBwAdmin(address account) public onlyBwAdmin {
        _addBwAdmin(account);
    }

    function renounceBwAdmin() public {
        _remove(BW_ADMIN, msg.sender);
    }

    function isBwAdmin(address account) public view returns (bool) {
        return _contains(BW_ADMIN, account);
    }

    modifier onlyBwAdmin() {
        expect(isBwAdmin(msg.sender), ERROR_UNAUTHORIZED);
        _;
    }

    // FROZEN

    function _freeze(address account) internal {
        _add(FROZEN, account);
    }

    function freeze(address account) public onlyAdminOrAttorney {
        _freeze(account);
    }

    function _unfreeze(address account) internal {
        _remove(FROZEN, account);
    }

    function unfreeze(address account) public onlyAdminOrAttorney {
        _unfreeze(account);
    }

    /**
     * @dev Freeze multiple accounts with a single transaction.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function multiFreeze(address[] calldata account) public onlyAdminOrAttorney {
        expect(account.length > 0, ERROR_EMPTY_ARRAY);

        for (uint256 i = 0; i < account.length; i++) {
            _freeze(account[i]);
        }
    }

    /**
     * @dev Unfreeze multiple accounts with a single transaction.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function multiUnfreeze(address[] calldata account) public onlyAdminOrAttorney {
        expect(account.length > 0, ERROR_EMPTY_ARRAY);

        for (uint256 i = 0; i < account.length; i++) {
            _unfreeze(account[i]);
        }
    }

    function isFrozen(address account) public view returns (bool) {
        return _contains(FROZEN, account);
    }

    modifier isNotFrozen() {
        expect(!isFrozen(msg.sender), ERROR_FROZEN);
        _;
    }

    // DELEGATE

    function addDelegate(address account) public onlyAdminOrAttorney {
        _add(DELEGATE, account);
    }

    function removeDelegate(address account) public onlyAdminOrAttorney {
        _remove(DELEGATE, account);
    }

    function isDelegate(address account) public view returns (bool) {
        return _contains(DELEGATE, account);
    }

    // AUTOMATOR

    function addAutomator(address account) public onlyAdminOrAttorney {
        _add(AUTOMATOR, account);
    }

    function removeAutomator(address account) public onlyAdminOrAttorney {
        _remove(AUTOMATOR, account);
    }

    function isAutomator(address account) public view returns (bool) {
        return _contains(AUTOMATOR, account);
    }

    // Internal functions

    function _add(uint8 groupId, address account) internal {
        groups.add(groupId, account);
        emit AddedToGroup(groupId, account);
    }

    function _remove(uint8 groupId, address account) internal {
        groups.remove(groupId, account);
        emit RemovedFromGroup(groupId, account);
    }

    function _contains(uint8 groupId, address account) internal view returns (bool) {
        return groups.contains(groupId, account);
    }
}

File 9 of 12: _Type.sol
// SPDX-License-Identifier: LicenseRef-Blockwell-Smart-License
pragma solidity >=0.4.25;

/**
 * @dev Contract type mapping.
 *
 * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
 */
contract Type {
    uint256 constant PRIME = 1;

    uint256 public bwtype;
    uint256 public bwver;
}

File 10 of 12: _Voting.sol
// SPDX-License-Identifier: LicenseRef-Blockwell-Smart-License
pragma solidity ^0.6.10;

import "./__SafeMath.sol";

/**
 * @dev Suggestions and Voting for token-holders.
 *
 * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
 */
contract Voting {
    using SafeMath for uint256;

    struct Suggestion {
        uint256 votes;
        bool created;
        address creator;
        string text;
    }

    // This stores how many votes a user has cast on a suggestion
    mapping(uint256 => mapping(address => uint256)) private voted;

    // This map stores the suggestions, and they're retrieved using their ID number
    mapping(uint256 => Suggestion) internal suggestions;

    // This keeps track of the number of suggestions in the system
    uint256 public suggestionCount;

    // If true, a wallet can only vote on a suggestion once
    bool public oneVotePerAccount = true;

    event SuggestionCreated(uint256 suggestionId, string text);
    event Votes(
        address voter,
        uint256 indexed suggestionId,
        uint256 votes,
        uint256 totalVotes,
        string comment
    );

    /**
     * @dev Gets the number of votes a suggestion has received.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function getVotes(uint256 suggestionId) public view returns (uint256) {
        return suggestions[suggestionId].votes;
    }

    /**
     * @dev Gets the number of votes for every suggestion in the contract.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function getAllVotes() public view returns (uint256[] memory) {
        uint256[] memory votes = new uint256[](suggestionCount);

        for (uint256 i = 0; i < suggestionCount; i++) {
            votes[i] = suggestions[i].votes;
        }

        return votes;
    }

    /**
     * @dev Gets the text of a suggestion.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function getSuggestionText(uint256 suggestionId) public view returns (string memory) {
        return suggestions[suggestionId].text;
    }

    /**
     * @dev Gets whether or not an account has voted for a suggestion.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function hasVoted(address account, uint256 suggestionId) public view returns (bool) {
        return voted[suggestionId][account] > 0;
    }

    /**
     * @dev Gets the number of votes an account has cast towards a suggestion.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function getAccountVotes(address account, uint256 suggestionId) public view returns (uint256) {
        return voted[suggestionId][account];
    }

    /**
     * @dev Gets the creator of a suggestion.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function getSuggestionCreator(uint256 suggestionId) public view returns (address) {
        return suggestions[suggestionId].creator;
    }

    /**
     * @dev Gets the creator for every suggestion in the contract.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function getAllSuggestionCreators() public view returns (address[] memory) {
        address[] memory creators = new address[](suggestionCount);

        for (uint256 i = 0; i < suggestionCount; i++) {
            creators[i] = suggestions[i].creator;
        }

        return creators;
    }

    /**
     * @dev Internal logic for creating a suggestion.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function _createSuggestion(string memory text) internal {
        // The ID is just based on the suggestion count, so the IDs go 0, 1, 2, etc.
        uint256 suggestionId = suggestionCount++;

        // Starts at 0 votes
        suggestions[suggestionId] = Suggestion(0, true, msg.sender, text);

        emit SuggestionCreated(suggestionId, text);
    }

    /**
     * @dev Internal logic for voting.
     *
     * Blockwell Exclusive (Intellectual Property that lives on-chain via Smart License)
     */
    function _vote(
        address account,
        uint256 suggestionId,
        uint256 votes,
        string memory comment
    ) internal returns (uint256) {
        if (oneVotePerAccount) {
            require(!hasVoted(account, suggestionId));
            require(votes == 1);
        }
        Suggestion storage sugg = suggestions[suggestionId];
        require(sugg.created);

        voted[suggestionId][account] = voted[suggestionId][account].add(votes);
        sugg.votes = sugg.votes.add(votes);

        emit Votes(account, suggestionId, votes, sugg.votes, comment);

        return sugg.votes;
    }
}

File 11 of 12: __Erc20.sol
// SPDX-License-Identifier: CC0-1.0
pragma solidity >=0.6.10;

interface Erc20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address who) external view returns (uint256);

    function transfer(address to, uint256 value) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function transferFrom(address from, address to, uint256 value) external returns (bool);

    function approve(address spender, uint256 value) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 12 of 12: __SafeMath.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.10;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that revert on error
 *
 * Originally from https://github.com/OpenZeppelin/openzeppelin-contracts
 * Copyright (c) 2016-2020 zOS Global Limited
 */
library SafeMath {
    /**
     * @dev Multiplies two numbers, reverts on 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-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
     * @dev Integer division of two numbers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two numbers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
     * @dev Divides two numbers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"bwAdmin","type":"address"},{"internalType":"address","name":"feeAccount","type":"address"},{"internalType":"uint256","name":"feePercentageTenths","type":"uint256"},{"internalType":"address","name":"attorney","type":"address"},{"internalType":"string","name":"_attorneyEmail","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint8","name":"groupId","type":"uint8"},{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AddedToGroup","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BwAddedAttorney","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"string","name":"value","type":"string"}],"name":"BwQuillSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BwRemovedAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BwRemovedAttorney","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint64","name":"expiration","type":"uint64"},{"indexed":false,"internalType":"uint32","name":"periodLength","type":"uint32"},{"indexed":false,"internalType":"uint16","name":"periodCount","type":"uint16"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"MultiTransferPrevented","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"attorney","type":"bool"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"order","type":"uint256"}],"name":"Payment","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint8","name":"groupId","type":"uint8"},{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"RemovedFromGroup","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"unlockTime","type":"uint256"}],"name":"SetNewUnlockTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"StakeReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"suggestionId","type":"uint256"},{"indexed":false,"internalType":"string","name":"text","type":"string"}],"name":"SuggestionCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"fromChain","type":"string"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"bytes32","name":"swapId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"SwapFromChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"toChain","type":"string"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"bytes32","name":"swapId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"SwapToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint16","name":"periodsLeft","type":"uint16"}],"name":"Unlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Unstake","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"voter","type":"address"},{"indexed":true,"internalType":"uint256","name":"suggestionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"votes","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalVotes","type":"uint256"},{"indexed":false,"internalType":"string","name":"comment","type":"string"}],"name":"Votes","type":"event"},{"inputs":[],"name":"ADMIN","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ATTORNEY","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AUTOMATOR","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BUNDLER","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BW_ADMIN","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATE","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FROZEN","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SWAPPER","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addAttorney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addAutomator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBundler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBwAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addSwapper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"attorneyEmail","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"availableBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"bwAddAttorney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"bwRemoveAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"bwRemoveAttorney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bwtype","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bwver","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"unstakeDelay","type":"uint256"}],"name":"configureStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"restrictSuggestions","type":"bool"},{"internalType":"bool","name":"balanceForVote","type":"bool"},{"internalType":"bool","name":"balanceForCreateSuggestion","type":"bool"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"bool","name":"oneVote","type":"bool"}],"name":"configureVoting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"text","type":"string"}],"name":"createSuggestion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"suggestionId","type":"uint256"}],"name":"getAccountVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllSuggestionCreators","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllVotes","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getBwQuill","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"suggestionId","type":"uint256"}],"name":"getSuggestionCreator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"suggestionId","type":"uint256"}],"name":"getSuggestionText","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"suggestionId","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"suggestionId","type":"uint256"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAttorney","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAutomator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBundler","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBwAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isDelegate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isSwapper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"locksOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"}],"name":"multiFreeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"value","type":"uint256[]"}],"name":"multiTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"value","type":"uint256[]"},{"internalType":"uint32","name":"lockTime","type":"uint32"},{"internalType":"uint32","name":"periodLength","type":"uint32"},{"internalType":"uint16","name":"periods","type":"uint16"}],"name":"multiTransferAndLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"value","type":"uint256[]"}],"name":"multiTransferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"}],"name":"multiUnfreeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"suggestionId","type":"uint256"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"string","name":"comment","type":"string"}],"name":"multiVote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oneVotePerAccount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausedByAttorney","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"order","type":"uint256"}],"name":"payment","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeAttorney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeAutomator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBundler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeSwapper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBwAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requireBalanceForCreateSuggestion","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"requireBalanceForVote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"email","type":"string"}],"name":"setAttorneyEmail","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"string","name":"value","type":"string"}],"name":"setBwQuill","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setUnlockTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"stake","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"stakeOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"value","type":"uint256[]"}],"name":"stakeReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"suggestionCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"suggestionsRestricted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"fromChain","type":"string"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes32","name":"swapId","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"swapFromChain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"chain","type":"string"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"swapToChain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"totalLocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"totalUnlockable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint32","name":"lockTime","type":"uint32"},{"internalType":"uint32","name":"periodLength","type":"uint32"},{"internalType":"uint16","name":"periods","type":"uint16"}],"name":"transferAndLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferLockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unfreeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unlockedBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"unstake","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unstakingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"suggestionId","type":"uint256"},{"internalType":"string","name":"comment","type":"string"}],"name":"vote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"voteCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526007805460ff191660011790556014805462ffffff19169055610e106016553480156200003057600080fd5b5060405162004cb338038062004cb383398181016040526101408110156200005757600080fd5b81019080805160405193929190846401000000008211156200007857600080fd5b9083019060208201858111156200008e57600080fd5b8251640100000000811182820188101715620000a957600080fd5b82525081516020918201929091019080838360005b83811015620000d8578181015183820152602001620000be565b50505050905090810190601f168015620001065780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200012a57600080fd5b9083019060208201858111156200014057600080fd5b82516401000000008111828201881017156200015b57600080fd5b82525081516020918201929091019080838360005b838110156200018a57818101518382015260200162000170565b50505050905090810190601f168015620001b85780820380516001836020036101000a031916815260200191505b5060408181526020830151908301516060840151608085015160a086015160c087015160e08801516101009098018051969a95999498939792969195939492939291846401000000008211156200020e57600080fd5b9083019060208201858111156200022457600080fd5b82516401000000008111828201881017156200023f57600080fd5b82525081516020918201929091019080838360005b838110156200026e57818101518382015260200162000254565b50505050905090810190601f1680156200029c5780820380516001836020036101000a031916815260200191505b506040818101905260008082526020909101819052805461ffff19169055508b91508a9050898980620002ce57600080fd5b8351620002e390600c90602087019062000636565b508251620002f990600d90602086019062000636565b50600e805460ff191660ff841617905560128190556200031933620004a8565b505060016002555050603e6003556200033285620004ab565b6200033d86620004b8565b6001600160a01b0382161562000358576200035882620004c5565b80516200036d90601190602084019062000636565b50821562000453576000620003ae6103e86200039a86601254620004d260201b620037f01790919060201c565b6200050660201b6200381e1790919060201c565b9050620003cc816012546200052a60201b620038401790919060201c565b6001600160a01b03881660008181526008602090815260408083208590558051948552519293919260008051602062004c938339815191529281900390910190a36001600160a01b03851660008181526008602090815260408083208590558051858152905160008051602062004c93833981519152929181900390910190a35062000498565b6012546001600160a01b03871660008181526008602090815260408083208590558051948552519293919260008051602062004c938339815191529281900390910190a35b50505050505050505050620006d2565b50565b620004a860068262000540565b620004a860018262000540565b620004a860028262000540565b600082620004e35750600062000500565b82820282848281620004f157fe5b0414620004fd57600080fd5b90505b92915050565b60008082116200051557600080fd5b60008284816200052157fe5b04949350505050565b6000828211156200053a57600080fd5b50900390565b6200055d828260016200059a60201b62003855179092919060201c565b6040516001600160a01b0382169060ff8416907f108cdba04fa22e3af2c83669b3a439bae9df498af451d1b1a0a7da5453c97bce90600090a35050565b60ff821660009081526020849052604090206001600160a01b038216620005c057600080fd5b620005cc818362000600565b15620005d757600080fd5b6001600160a01b03909116600090815260209190915260409020805460ff191660011790555050565b60006001600160a01b0382166200061657600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200067957805160ff1916838001178555620006a9565b82800160010185558215620006a9579182015b82811115620006a95782518255916020019190600101906200068c565b50620006b7929150620006bb565b5090565b5b80821115620006b75760008155600101620006bc565b6145b180620006e26000396000f3fe608060405234801561001057600080fd5b506004361061049d5760003560e01c806370a082311161026b57806370a0823114610e435780637216086014610e695780637275f3c814610e715780637ad44d6014610f4a5780637c365c2c14610f875780637c7b0e6114610f8f5780638027d6cc14610f975780638456cb5914610f9f57806384955c8814610fa7578063851b6ef214610fcd57806389cf785a146110255780638ab1d6811461104b5780638d1fdf2f146110715780638d8f2adb146110975780638fad11bf1461109f57806391c3cbbb1461114f57806395d89b411461120357806397599fd91461120b57806399385006146112135780639b91293b146112395780639f9b58d31461126b578063a457c2d71461132c578063a694fc3a14611358578063a69df4b514611375578063a75d52541461137d578063a9059cbb146113a3578063ae1ccf2c146113cf578063b306f735146113d7578063b64230ba146113df578063bc9ac68c14611405578063c3f9ab581461142b578063c692586514611451578063c93dbc491461146e578063cb31b6cd14611476578063ce531ff114611544578063d157f8c81461156a578063d6fe7cb714611587578063d7e4f652146115ad578063d8fb9337146115d3578063dace4557146115f9578063dd62ed3e14611616578063de1be3c214611644578063e19e4349146116b2578063e43252d7146116ba578063e5839836146116e0578063e71bdf4114611706578063e87a7a591461172c578063edca8aa814611734578063efa1937d1461175a578063f1eddfd514611762578063f7af4a30146117d0578063ff981099146117f65761049d565b806306fdde03146104a2578063070892461461051f5780630777962714610539578063095ea7b314610573578063111c5bee1461059f57806313c3e409146105cb5780631785f53c146105f357806318160ddd146106195780631bb7cc99146106215780631e89d5451461063f57806323b872dd146106fd578063241084751461073357806324d7806c146107de578063251c1aa31461080457806325d998bb1461080c57806325db64c01461083257806326d2527c146108585780632a0acc6a146108915780632e17de7814610899578063313ce567146108b65780633192d50a146108be57806332a49578146108e457806333b15378146108ec57806333fd8b4e14610990578063373ccc5214610a34578063380a75bf14610a3c5780633950935114610a625780633af32abf14610a8e5780633b5764eb14610ab45780633f2d413114610abc5780633f4ba83a14610ae257806340abfe2614610aea57806340dce49a14610b105780634254582514610b185780634262336014610b4457806345c8b1a614610b6a5780634a2d5c9d14610b905780634c1b8ffd14610b985780634f2bf9d114610ba05780634f6218b814610ba857806353f74a7e14610bce578063551530d614610bd65780635be0606d14610bfc5780635c975abb14610cba578063633db62c14610cc257806367e7646f14610d0f5780636c76c2a114610d355780636d0b954314610de75780636f9336a914610def578063700d85ae14610e155780637048027514610e1d575b600080fd5b6104aa611813565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104e45781810151838201526020016104cc565b50505050905090810190601f1680156105115780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105276118a1565b60408051918252519081900360200190f35b61055f6004803603602081101561054f57600080fd5b50356001600160a01b03166118a7565b604080519115158252519081900360200190f35b61055f6004803603604081101561058957600080fd5b506001600160a01b0381351690602001356118bc565b610527600480360360408110156105b557600080fd5b506001600160a01b038135169060200135611996565b6105f1600480360360208110156105e157600080fd5b50356001600160a01b03166119bd565b005b6105f16004803603602081101561060957600080fd5b50356001600160a01b0316611a16565b610527611a4f565b610629611a55565b6040805160ff9092168252519081900360200190f35b61055f6004803603604081101561065557600080fd5b810190602081018135600160201b81111561066f57600080fd5b82018360208201111561068157600080fd5b803590602001918460208302840111600160201b831117156106a257600080fd5b919390929091602081019035600160201b8111156106bf57600080fd5b8201836020820111156106d157600080fd5b803590602001918460208302840111600160201b831117156106f257600080fd5b509092509050611a5a565b61055f6004803603606081101561071357600080fd5b506001600160a01b03813581169160208101359091169060400135611b84565b6105f16004803603604081101561074957600080fd5b81359190810190604081016020820135600160201b81111561076a57600080fd5b82018360208201111561077c57600080fd5b803590602001918460018302840111600160201b8311171561079d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611c13945050505050565b61055f600480360360208110156107f457600080fd5b50356001600160a01b0316611c64565b610527611c71565b6105276004803603602081101561082257600080fd5b50356001600160a01b0316611c77565b6105f16004803603602081101561084857600080fd5b50356001600160a01b0316611cb6565b6108756004803603602081101561086e57600080fd5b5035611ccd565b604080516001600160a01b039092168252519081900360200190f35b610629611cf0565b61055f600480360360208110156108af57600080fd5b5035611cf5565b610629611f13565b6105f1600480360360208110156108d457600080fd5b50356001600160a01b0316611f1c565b610629611f43565b6105f16004803603602081101561090257600080fd5b810190602081018135600160201b81111561091c57600080fd5b82018360208201111561092e57600080fd5b803590602001918460018302840111600160201b8311171561094f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611f48945050505050565b6105f1600480360360208110156109a657600080fd5b810190602081018135600160201b8111156109c057600080fd5b8201836020820111156109d257600080fd5b803590602001918460018302840111600160201b831117156109f357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611f9b945050505050565b61055f611fbe565b6105f160048036036020811015610a5257600080fd5b50356001600160a01b0316611fcd565b61055f60048036036040811015610a7857600080fd5b506001600160a01b038135169060200135611ff4565b61055f60048036036020811015610aa457600080fd5b50356001600160a01b03166120c4565b6106296120d1565b6105f160048036036020811015610ad257600080fd5b50356001600160a01b03166120d6565b6105f16120ed565b6105f160048036036020811015610b0057600080fd5b50356001600160a01b0316612136565b61062961214b565b61055f60048036036040811015610b2e57600080fd5b506001600160a01b038135169060200135612150565b61052760048036036020811015610b5a57600080fd5b50356001600160a01b0316612179565b6105f160048036036020811015610b8057600080fd5b50356001600160a01b0316612194565b6106296121a9565b6105276121ae565b6105276121b4565b61055f60048036036020811015610bbe57600080fd5b50356001600160a01b03166121ba565b6105276121c7565b61055f60048036036020811015610bec57600080fd5b50356001600160a01b03166121cd565b61055f60048036036040811015610c1257600080fd5b810190602081018135600160201b811115610c2c57600080fd5b820183602082011115610c3e57600080fd5b803590602001918460208302840111600160201b83111715610c5f57600080fd5b919390929091602081019035600160201b811115610c7c57600080fd5b820183602082011115610c8e57600080fd5b803590602001918460208302840111600160201b83111715610caf57600080fd5b5090925090506121da565b61055f61232e565b61055f600480360360a0811015610cd857600080fd5b5080356001600160a01b031690602081013590604081013563ffffffff908116916060810135909116906080013561ffff16612337565b6105f160048036036020811015610d2557600080fd5b50356001600160a01b03166124f2565b6105f160048036036060811015610d4b57600080fd5b810190602081018135600160201b811115610d6557600080fd5b820183602082011115610d7757600080fd5b803590602001918460018302840111600160201b83111715610d9857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550506001600160a01b038335169350505060200135612509565b6106296126bc565b61052760048036036020811015610e0557600080fd5b50356001600160a01b03166126c1565b61062961280f565b6105f160048036036020811015610e3357600080fd5b50356001600160a01b0316612814565b61052760048036036020811015610e5957600080fd5b50356001600160a01b0316612839565b61055f612854565b61055f600480360360a0811015610e8757600080fd5b810190602081018135600160201b811115610ea157600080fd5b820183602082011115610eb357600080fd5b803590602001918460208302840111600160201b83111715610ed457600080fd5b919390929091602081019035600160201b811115610ef157600080fd5b820183602082011115610f0357600080fd5b803590602001918460208302840111600160201b83111715610f2457600080fd5b9193509150803563ffffffff908116916020810135909116906040013561ffff16612862565b6105f1600480360360a0811015610f6057600080fd5b5080351515906020810135151590604081013515159060608101359060800135151561297d565b61055f6129da565b6105276129e3565b6105276129e9565b6105f16129ef565b61052760048036036020811015610fbd57600080fd5b50356001600160a01b0316612a28565b610fd5612a55565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015611011578181015183820152602001610ff9565b505050509050019250505060405180910390f35b6105f16004803603602081101561103b57600080fd5b50356001600160a01b0316612ae0565b6105f16004803603602081101561106157600080fd5b50356001600160a01b0316612b2e565b6105f16004803603602081101561108757600080fd5b50356001600160a01b0316612b45565b6105f1612b5a565b6105f1600480360360608110156110b557600080fd5b813591602081013591810190606081016040820135600160201b8111156110db57600080fd5b8201836020820111156110ed57600080fd5b803590602001918460018302840111600160201b8311171561110e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612b89945050505050565b6105f16004803603604081101561116557600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561118f57600080fd5b8201836020820111156111a157600080fd5b803590602001918460018302840111600160201b831117156111c257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612bf1945050505050565b6104aa612cb0565b610629612d0b565b6105f16004803603602081101561122957600080fd5b50356001600160a01b0316612d10565b61055f6004803603606081101561124f57600080fd5b506001600160a01b038135169060208101359060400135612d25565b6105f1600480360360a081101561128157600080fd5b810190602081018135600160201b81111561129b57600080fd5b8201836020820111156112ad57600080fd5b803590602001918460018302840111600160201b831117156112ce57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550506001600160a01b038335811694506020840135169260408101359250606001359050612daa565b61055f6004803603604081101561134257600080fd5b506001600160a01b038135169060200135612e8e565b61055f6004803603602081101561136e57600080fd5b5035612f0b565b61055f613019565b6105f16004803603602081101561139357600080fd5b50356001600160a01b0316613029565b61055f600480360360408110156113b957600080fd5b506001600160a01b038135169060200135613077565b61055f6130b3565b610fd56130d0565b61055f600480360360208110156113f557600080fd5b50356001600160a01b0316613175565b61055f6004803603602081101561141b57600080fd5b50356001600160a01b0316613182565b610fd56004803603602081101561144157600080fd5b50356001600160a01b031661318f565b6105f16004803603602081101561146757600080fd5b5035613335565b61055f613346565b61055f6004803603606081101561148c57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b8111156114b657600080fd5b8201836020820111156114c857600080fd5b803590602001918460208302840111600160201b831117156114e957600080fd5b919390929091602081019035600160201b81111561150657600080fd5b82018360208201111561151857600080fd5b803590602001918460208302840111600160201b8311171561153957600080fd5b50909250905061334f565b6105f16004803603602081101561155a57600080fd5b50356001600160a01b03166134a0565b6104aa6004803603602081101561158057600080fd5b50356134b7565b6105f16004803603602081101561159d57600080fd5b50356001600160a01b031661355e565b6104aa600480360360208110156115c357600080fd5b50356001600160a01b0316613575565b610527600480360360208110156115e957600080fd5b50356001600160a01b0316613582565b6105f16004803603602081101561160f57600080fd5b50356135f9565b6105276004803603604081101561162c57600080fd5b506001600160a01b0381358116916020013516613640565b6105f16004803603602081101561165a57600080fd5b810190602081018135600160201b81111561167457600080fd5b82018360208201111561168657600080fd5b803590602001918460208302840111600160201b831117156116a757600080fd5b50909250905061366b565b6105f16136bf565b6105f1600480360360208110156116d057600080fd5b50356001600160a01b03166136ca565b61055f600480360360208110156116f657600080fd5b50356001600160a01b03166136e1565b6105f16004803603602081101561171c57600080fd5b50356001600160a01b03166136ee565b610527613705565b6105f16004803603602081101561174a57600080fd5b50356001600160a01b031661370b565b6104aa613722565b6105f16004803603602081101561177857600080fd5b810190602081018135600160201b81111561179257600080fd5b8201836020820111156117a457600080fd5b803590602001918460208302840111600160201b831117156117c557600080fd5b50909250905061377d565b61055f600480360360208110156117e657600080fd5b50356001600160a01b03166137d1565b6105276004803603602081101561180c57600080fd5b50356137de565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156118995780601f1061186e57610100808354040283529160200191611899565b820191906000526020600020905b81548152906001019060200180831161187c57829003601f168201915b505050505081565b60165481565b60006118b46008836138b7565b90505b919050565b60006118d66118ca336136e1565b1561708160f11b6138c5565b60005460ff16156118e657600080fd5b611926600f544211806118fd57506118fd33611c64565b8061190c575061190c336137d1565b8061191b575061191b336120c4565b61708960f11b6138c5565b6119406001600160a01b038416151561e10360f01b6138c5565b336000818152600a602090815260408083206001600160a01b038816808552908352928190208690558051868152905192939260008051602061455c833981519152929181900390910190a35060015b92915050565b60009081526004602090815260408083206001600160a01b03949094168352929052205490565b6119d46119c933613182565b61e10960f01b6138c5565b6119df6002826138d4565b6040516001600160a01b038216907fd1150a5bd2b0e9576d0be9aca2590fe10d79688e2026d41c3eeaa22d72bba1c490600090a250565b60005460ff1615611a2657600080fd5b611a41611a3233611c64565b806119c957506119c9336137d1565b611a4c6001826138d4565b50565b60125490565b600481565b6000805460ff1615611a6b57600080fd5b611a776119c9336121cd565b611a8884151561e10760f01b6138c5565b611a99828514611c2160f31b6138c5565b60005b84811015611b7857611ac8868683818110611ab357fe5b905060200201356001600160a01b03166136e1565b611b0957611b0433878784818110611adc57fe5b905060200201356001600160a01b0316868685818110611af857fe5b9050602002013561391d565b611b70565b858582818110611b1557fe5b905060200201356001600160a01b03166001600160a01b0316336001600160a01b031660008051602061451c833981519152868685818110611b5357fe5b905060200201356040518082815260200191505060405180910390a35b600101611a9c565b50600195945050505050565b6000805460ff1615611b9557600080fd5b611bac600f544211806118fd57506118fd33611c64565b6001600160a01b0384166000908152600a60209081526040808320338452909152902054611bda9083613840565b6001600160a01b0385166000908152600a60209081526040808320338452909152902055611c0984848461391d565b5060019392505050565b601454610100900460ff1615611c3d57611c3d6000611c3133612839565b1161e10560f01b6138c5565b60155415611c5257611c52333060155461391d565b611c5f3383600184613a0f565b505050565b60006118b46001836138b7565b600f5481565b60006118b4611c85836126c1565b611cb0611c9185613582565b6001600160a01b03861660009081526008602052604090205490613840565b90613b8a565b611cc2611a3233611c64565b611a4c6003826138d4565b60009081526005602052604090206001015461010090046001600160a01b031690565b600181565b6000805460ff1615611d0657600080fd5b611d1d600f544211806118fd57506118fd33611c64565b611d296118ca336136e1565b33600090815260096020526040902054611d439083613840565b33600090815260096020908152604080832093909355600890522054611d699083613b8a565b3360009081526008602052604090205560165415611eaf576000611d9860165442613b8a90919063ffffffff16565b9050611da261441a565b506040805160a0810182528481526001600160401b0383811660208084018281526000858701818152606080880183815260016080808b0182815233808852600b8a528d8820805480860182559089528a89208e5160029092020190815598519890930180549651945191511515600160701b0260ff60701b1961ffff909316600160601b0261ffff60601b1963ffffffff909716600160401b0263ffffffff60401b199b909e166001600160401b031990991698909817999099169b909b179390931694909417919091169490941790965587518b815293840194909452828701819052938201939093529351929391926000805160206144fc8339815191529281900390910190a250505b60408051838152905133917f85082129d87b2fe11527cb1b3b7a520aeb5aa6913f88a3d8757fe40d1db02fdd919081900360200190a2604080518381529051339160009160008051602061453c8339815191529181900360200190a3506001919050565b600e5460ff1681565b60005460ff1615611f2c57600080fd5b611f38611a3233611c64565b611a4c6002826138d4565b600381565b60145460ff1615611f7357611f6e611f5f33611c64565b806119c957506119c9336118a7565b611f92565b60145462010000900460ff1615611f9257611f926000611c3133612839565b611a4c81613b9c565b611fa7611a3233611c64565b8051611fba906011906020840190614448565b5050565b60145462010000900460ff1681565b60005460ff1615611fdd57600080fd5b611fe9611a3233611c64565b611a4c600282613cd5565b60006120026118ca336136e1565b60005460ff161561201257600080fd5b612029600f544211806118fd57506118fd33611c64565b6120436001600160a01b038416151561e10360f01b6138c5565b336000908152600a602090815260408083206001600160a01b03871684529091529020546120719083613b8a565b336000818152600a602090815260408083206001600160a01b03891680855290835292819020859055805194855251919360008051602061455c833981519152929081900390910190a350600192915050565b60006118b46004836138b7565b600581565b6120e2611a3233611c64565b611a4c6007826138d4565b60005460ff166120fc57600080fd5b612105336137d1565b61212c576121156119c933611c64565b61212c6121206130b3565b1561e11360f01b6138c5565b612134613d1e565b565b6121426119c933613182565b611a4c81613d5e565b600281565b60009081526004602090815260408083206001600160a01b039490941683529290522054151590565b6001600160a01b031660009081526009602052604090205490565b6121a0611a3233611c64565b611a4c81613d69565b600881565b60155481565b60035481565b60006118b4600b836138b7565b60135481565b60006118b46003836138b7565b6000805460ff16156121eb57600080fd5b6121f76119c9336121ba565b612208828514611c2160f31b6138c5565b60005b84811015611b7857600086868381811061222157fe5b905060200201356001600160a01b03169050600085858481811061224157fe5b905060200201359050612253826136e1565b612324576001600160a01b03821660009081526009602052604090205461227a9082613b8a565b6001600160a01b0383166000908152600960209081526040808320939093553382526008905220546122ac9082613840565b3360009081526008602090815260409182902092909255805183815290516001600160a01b038516927ffdb40631688a7579284e2f66bc5fd4fefeb5ff42e76828e3b307bdc4af2715bf928290030190a2604080518281529051600091339160008051602061453c8339815191529181900360200190a35b505060010161220b565b60005460ff1690565b60008061234d4263ffffffff80881690613b8a16565b905061235761441a565b6040518060a00160405280888152602001836001600160401b031681526020018663ffffffff1681526020018561ffff168152602001600015158152509050600b6000896001600160a01b03166001600160a01b031681526020019081526020016000208190806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010160006101000a8154816001600160401b0302191690836001600160401b0316021790555060408201518160010160086101000a81548163ffffffff021916908363ffffffff160217905550606082015181600101600c6101000a81548161ffff021916908361ffff160217905550608082015181600101600e6101000a81548160ff02191690831515021790555050506124928888613077565b50604080518881526001600160401b038416602082015263ffffffff87168183015261ffff8616606082015290516001600160a01b038a16916000805160206144fc833981519152919081900360800190a2506001979650505050505050565b6124fe611a3233611c64565b611a4c6008826138d4565b60005460ff161561251957600080fd5b612530600f544211806118fd57506118fd33611c64565b600061253a613d74565b338430878660405160200180878152602001866001600160a01b031660601b8152601401856001600160a01b031660601b8152601401846001600160a01b031660601b815260140183805190602001908083835b602083106125ad5780518252601f19909201916020918201910161258e565b6001836020036101000a038019825116818451168082178552505050505050905001828152602001965050505050505060405160208183030381529060405280519060200120905061260033308461391d565b80836001600160a01b0316336001600160a01b03167f6bc4afad47e010c4a48e00a6b9a230555e1c4e8420c1ede42f30b54ebb4c3fcd87866040518080602001838152602001828103825284818151815260200191508051906020019080838360005b8381101561267b578181015183820152602001612663565b50505050905090810190601f1680156126a85780820380516001836020036101000a031916815260200191505b50935050505060405180910390a450505050565b600b81565b6001600160a01b0381166000908152600b6020526040812081805b82548110156128075760008382815481106126f357fe5b600091825260209091206002909102016001810154909150426001600160401b0390911610156127fe5760018101546002600160601b90910461ffff16101561274a578054612743908490613b8a565b92506127fe565b600181015460009081906127689042906001600160401b0316613840565b600184015490915060009061278f90839063ffffffff600160401b90910481169061381e16565b6001858101549101915061ffff600160601b909104811690821611156127c95750600183015483549250600160601b900461ffff166127ee565b6001840154845461ffff808416926127ea9291600160601b9091041661381e565b0292505b6127f88684613b8a565b95505050505b506001016126dc565b509392505050565b600781565b60005460ff161561282457600080fd5b612830611a3233611c64565b611a4c81613d82565b6001600160a01b031660009081526008602052604090205490565b601454610100900460ff1681565b6000805460ff161561287357600080fd5b61287f6119c9336121cd565b61289087151561e10760f01b6138c5565b6128a1858814611c2160f31b6138c5565b60005b8781101561296e576128bb898983818110611ab357fe5b6128ff576128f98989838181106128ce57fe5b905060200201356001600160a01b03168888848181106128ea57fe5b90506020020135878787612337565b50612966565b88888281811061290b57fe5b905060200201356001600160a01b03166001600160a01b0316336001600160a01b031660008051602061451c83398151915289898581811061294957fe5b905060200201356040518082815260200191505060405180910390a35b6001016128a4565b50600198975050505050505050565b612989611a3233611c64565b6014805460ff199081169615159690961761ff001916610100951515959095029490941762ff0000191662010000931515939093029290921790925560159190915560078054909216901515179055565b60145460ff1681565b60025481565b60065481565b60005460ff16156129ff57600080fd5b6000612a0a336137d1565b9050612a1f81806119c957506119c933611c64565b611a4c81613d8d565b60006118b4612a3683613582565b6001600160a01b03841660009081526008602052604090205490613840565b6060806006546001600160401b0381118015612a7057600080fd5b50604051908082528060200260200182016040528015612a9a578160200160208202803683370190505b50905060005b600654811015612ada576000818152600560205260409020548251839083908110612ac757fe5b6020908102919091010152600101612aa0565b50905090565b612aec6119c933613182565b612af7600282613cd5565b6040516001600160a01b038216907f31f2f473acc030385200df8dddbab6686d4287a2166d4fe59a1dc72e37c1d31290600090a250565b612b3a611a3233611c64565b611a4c6004826138d4565b612b51611a3233611c64565b611a4c81613ded565b60005460ff1615612b6a57600080fd5b612b766119c933611c64565b6121343033612b8430612839565b61391d565b600754612b9f9060ff161561708560f11b6138c5565b601454610100900460ff1615612bbd57612bbd6000611c3133612839565b60155415612bdf57612bdf3330612b84856015546137f090919063ffffffff16565b612beb33848484613a0f565b50505050565b612bfd611a3233611c64565b612c0960178383613df8565b816001600160a01b03167f96494610f3d7ae42a3de83051a16063a87b5be06845d935c3a9ef103d791a096826040518080602001828103825283818151815260200191508051906020019080838360005b83811015612c72578181015183820152602001612c5a565b50505050905090810190601f168015612c9f5780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b600d805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156118995780601f1061186e57610100808354040283529160200191611899565b600681565b612d1c611a3233611c64565b611a4c81613e1f565b6000805460ff1615612d3657600080fd5b612d4d600f544211806118fd57506118fd33611c64565b612d5833858561391d565b604080518481526020810184905281516001600160a01b0387169233927f10258bfd896826cf69e885380049b1d1be0424a813d5117744373ec9f51bc86c929081900390910190a35060019392505050565b60005460ff1615612dba57600080fd5b612dc66119c933613175565b612dd130848361391d565b81836001600160a01b0316856001600160a01b03167f9403091f5664cd6d32ddbe58f2efce74b16b45841968713ab48a95da381203b188856040518080602001838152602001828103825284818151815260200191508051906020019080838360005b83811015612e4c578181015183820152602001612e34565b50505050905090810190601f168015612e795780820380516001836020036101000a031916815260200191505b50935050505060405180910390a45050505050565b6000612e9c6118ca336136e1565b60005460ff1615612eac57600080fd5b612ec3600f544211806118fd57506118fd33611c64565b612edd6001600160a01b038416151561e10360f01b6138c5565b336000908152600a602090815260408083206001600160a01b03871684529091529020546120719083613840565b6000805460ff1615612f1c57600080fd5b612f33600f544211806118fd57506118fd33611c64565b612f3f6118ca336136e1565b612f4833613e2a565b50612f63612f5533612a28565b83111561e10560f01b6138c5565b33600090815260086020526040902054612f7d9083613840565b33600090815260086020908152604080832093909355600990522054612fa39083613b8a565b3360008181526009602090815260408083209490945583518681529351919360008051602061453c833981519152929081900390910190a360408051838152905133917febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a919081900360200190a2506001919050565b600061302433613e2a565b905090565b6130356119c933613182565b6130406001826138d4565b6040516001600160a01b038216907fdd03a410a9b379c5c31df9bbec14f14840e84bec6958bba98d9c5df9fe4d713d90600090a250565b6000805460ff161561308857600080fd5b61309f600f544211806118fd57506118fd33611c64565b6130aa33848461391d565b50600192915050565b6000805460ff168015613024575050600054610100900460ff1690565b6060806006546001600160401b03811180156130eb57600080fd5b50604051908082528060200260200182016040528015613115578160200160208202803683370190505b50905060005b600654811015612ada5760008181526005602052604090206001015482516101009091046001600160a01b03169083908390811061315557fe5b6001600160a01b039092166020928302919091019091015260010161311b565b60006118b46007836138b7565b60006118b46006836138b7565b6001600160a01b0381166000908152600b6020526040902080546060919082906004026001600160401b03811180156131c757600080fd5b506040519080825280602002602001820160405280156131f1578160200160208202803683370190505b50905060005b825481101561280757600081600402905083828154811061321457fe5b90600052602060002090600202016000015483828151811061323257fe5b60200260200101818152505083828154811061324a57fe5b906000526020600020906002020160010160009054906101000a90046001600160401b03166001600160401b031683826001018151811061328757fe5b60200260200101818152505083828154811061329f57fe5b906000526020600020906002020160010160089054906101000a900463ffffffff1663ffffffff168382600201815181106132d657fe5b6020026020010181815250508382815481106132ee57fe5b9060005260206000209060020201600101600c9054906101000a900461ffff1661ffff1683826003018151811061332157fe5b6020908102919091010152506001016131f7565b613341611a3233611c64565b601655565b60075460ff1681565b6000805460ff161561336057600080fd5b61336c6119c9336121cd565b61337d84151561e10760f01b6138c5565b61338e828514611c2160f31b6138c5565b60005b84811015613493576133a8868683818110611ab357fe5b613424576133eb8484838181106133bb57fe5b6001600160a01b038b166000908152600a6020908152604080832033845282529091205493910201359050613840565b6001600160a01b0388166000908152600a6020908152604080832033845290915290205561341f87878784818110611adc57fe5b61348b565b85858281811061343057fe5b905060200201356001600160a01b03166001600160a01b0316876001600160a01b031660008051602061451c83398151915286868581811061346e57fe5b905060200201356040518082815260200191505060405180910390a35b600101613391565b5060019695505050505050565b6134ac611a3233611c64565b611a4c600382613cd5565b6000818152600560209081526040918290206002908101805484516001821615610100026000190190911692909204601f810184900484028301840190945283825260609391929091908301828280156135525780601f1061352757610100808354040283529160200191613552565b820191906000526020600020905b81548152906001019060200180831161353557829003601f168201915b50505050509050919050565b61356a611a3233611c64565b611a4c600b826138d4565b60606118b46017836142b8565b600080805b6001600160a01b0384166000908152600b60205260409020548110156135f2576001600160a01b0384166000908152600b6020526040902080546135e89190839081106135d057fe5b60009182526020909120600290910201548390613b8a565b9150600101613587565b5092915050565b613605611a3233611c64565b600f8190556040805182815290517f285ed4cab839e54405276e9e5f06f35f2f12e1d626384e4632854919077f7c7a9181900360200190a150565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b613677611a3233611c64565b61368881151561e10760f01b6138c5565b60005b81811015611c5f576136b78383838181106136a257fe5b905060200201356001600160a01b0316613ded565b60010161368b565b6121346006336138d4565b6136d6611a3233611c64565b611a4c600482613cd5565b60006118b46005836138b7565b6136fa611a3233611c64565b611a4c600882613cd5565b60105481565b613717611a3233611c64565b611a4c600b82613cd5565b6011805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156118995780601f1061186e57610100808354040283529160200191611899565b613789611a3233611c64565b61379a81151561e10760f01b6138c5565b60005b81811015611c5f576137c98383838181106137b457fe5b905060200201356001600160a01b0316613d69565b60010161379d565b60006118b46002836138b7565b60009081526005602052604090205490565b6000826137ff57506000611990565b8282028284828161380c57fe5b041461381757600080fd5b9392505050565b600080821161382c57600080fd5b600082848161383757fe5b04949350505050565b60008282111561384f57600080fd5b50900390565b60ff821660009081526020849052604090206001600160a01b03821661387a57600080fd5b6138848183614362565b1561388e57600080fd5b6001600160a01b03909116600090815260209190915260409020805460ff191660011790555050565b600061381760018484614397565b81611fba578060405260026040fd5b6138e0600183836143bc565b6040516001600160a01b0382169060ff8416907f0e1900eb0958d3192c4824b787e78e8b534e429190d9d837ecbfb6257a8a1b1c90600090a35050565b6139376001600160a01b038316151561e10360f01b6138c5565b6139436118ca846136e1565b61394f6118ca836136e1565b61395883613e2a565b5061397361396584612a28565b82111561e10560f01b6138c5565b6001600160a01b0383166000908152600860205260409020546139969082613840565b6001600160a01b0380851660009081526008602052604080822093909355908416815220546139c59082613b8a565b6001600160a01b03808416600081815260086020908152604091829020949094558051858152905191939287169260008051602061453c83398151915292918290030190a3505050565b60075460009060ff1615613a3e57613a278585612150565b15613a3157600080fd5b82600114613a3e57600080fd5b6000848152600560205260409020600181015460ff16613a5d57600080fd5b60008581526004602090815260408083206001600160a01b038a168452909152902054613a8a9085613b8a565b60008681526004602090815260408083206001600160a01b038b1684529091529020558054613ab99085613b8a565b8160000181905550847f4fa7d628f07312402be45de3ce5d77059237591939a1154550b9a3166550ebcd878684600001548760405180856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613b43578181015183820152602001613b2b565b50505050905090810190601f168015613b705780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a25495945050505050565b60008282018381101561381757600080fd5b600680546001808201909255604080516080810182526000808252602080830186815233848601908152606085018981528785526005845295909320845181559051968101805493516001600160a01b031661010002610100600160a81b031998151560ff199095169490941797909716929092179095559151805193949193613c2c9260028501920190614448565b509050507fbf516e0d163afacd132d846cf9538bcfc94834845151f27cdc9ba1ded8f063ad81836040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613c96578181015183820152602001613c7e565b50505050905090810190601f168015613cc35780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b613ce160018383613855565b6040516001600160a01b0382169060ff8416907f108cdba04fa22e3af2c83669b3a439bae9df498af451d1b1a0a7da5453c97bce90600090a35050565b6000805461ffff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b611a4c600682613cd5565b611a4c6005826138d4565b601380546001019081905590565b611a4c600182613cd5565b60008054600160ff199091161761ff0019166101008315159081029190911790915560408051338152602081019290925280517fe8699cf681560fd07de85543bd994263f4557bdc5179dd702f256d15fd083e1d9281900390910190a150565b611a4c600582613cd5565b6001600160a01b0382166000908152602084815260409091208251612beb92840190614448565b611a4c600782613cd5565b6001600160a01b0381166000908152600b602052604081208054613e525760019150506118b7565b60005b8154811015611c09576000828281548110613e6c57fe5b600091825260209091206002909102016001810154909150426001600160401b0390911610156142ab5760018101546002600160601b90910461ffff161015613ff2578054604080519182526000602083015280516001600160a01b038816926000805160206144dc83398151915292908290030190a2825460001901821015613fb857825483906000198101908110613f0257fe5b9060005260206000209060020201838381548110613f1c57fe5b600091825260209091208254600290920201908155600191820180549290910180546001600160401b0319166001600160401b0390931692909217808355815463ffffffff600160401b91829004160263ffffffff60401b1990911617808355815461ffff600160601b91829004160261ffff60601b1990911617808355905460ff600160701b918290041615150260ff60701b199091161790555b82805480613fc257fe5b60008281526020812060026000199093019283020190815560010180546001600160781b031916905590556142a6565b600181015460009081906140109042906001600160401b0316613840565b600184015490915060009061403790839063ffffffff600160401b90910481169061381e16565b6001858101549101915061ffff600160601b9091048116908216106141b157506001830154835460408051828152600060208201528151929550600160601b90930461ffff16926001600160a01b038b16926000805160206144dc833981519152929181900390910190a2855460001901851015614177578554869060001981019081106140c157fe5b90600052602060002090600202018686815481106140db57fe5b600091825260209091208254600290920201908155600191820180549290910180546001600160401b0319166001600160401b0390931692909217808355815463ffffffff600160401b91829004160263ffffffff60401b1990911617808355815461ffff600160601b91829004160261ffff60601b1990911617808355905460ff600160701b918290041615150260ff60701b199091161790555b8580548061418157fe5b60008281526020812060026000199093019283020190815560010180546001600160781b031916905590556142a2565b6001840154845461ffff808416926141d29291600160601b9091041661381e565b60018601805461ffff600160601b80830482168790039091160261ffff60601b199091161790558554910293506142099084613840565b845560018401546142309063ffffffff600160401b90910481169061ffff8416906137f016565b6001850180546001600160401b0319811663ffffffff939093166001600160401b039182160116919091179081905560408051858152600160601b90920461ffff16602083015280516001600160a01b038b16926000805160206144dc83398151915292908290030190a26001909401935b5050505b6142b2565b6001909101905b50613e55565b6001600160a01b0381166000908152602083815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156143555780601f1061432a57610100808354040283529160200191614355565b820191906000526020600020905b81548152906001019060200180831161433857829003601f168201915b5050505050905092915050565b60006001600160a01b03821661437757600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b60ff821660009081526020849052604081206143b38184614362565b95945050505050565b60ff821660009081526020849052604090206001600160a01b0382166143e157600080fd5b6143eb8183614362565b6143f457600080fd5b6001600160a01b03909116600090815260209190915260409020805460ff191690555050565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061448957805160ff19168380011785556144b6565b828001600101855582156144b6579182015b828111156144b657825182559160200191906001019061449b565b506144c29291506144c6565b5090565b5b808211156144c257600081556001016144c756fe9a28dc0f48ec36a159106c19199977fe86124fd78cf91ebe0345a1e93ecaccf8ddbc17715b9953cb1c631284bf34bc1f01934caee8c4f89d47cec8732a2f149457b832b60cac2d336bd974f846b5d4c4af5aeeeb2dbd0f8cbd3ea89fc9078eeaddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a2646970667358221220234bdf13169b58325b2dd630f037b819b4b9e91ab17cbe2e75dfde6bda4e82f664736f6c634300060c0033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000f8277896582678ac000000000000000000000000000000e4dbeac7fbad24ffeed805b4380d62e33032f3c7000000000000000000000000da0f00d92086e50099742b6bfb0230c942dda4cc000000000000000000000000da0f00d92086e50099742b6bfb0230c942dda4cc000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000084465666163746f720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005464143545200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026e61000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061049d5760003560e01c806370a082311161026b57806370a0823114610e435780637216086014610e695780637275f3c814610e715780637ad44d6014610f4a5780637c365c2c14610f875780637c7b0e6114610f8f5780638027d6cc14610f975780638456cb5914610f9f57806384955c8814610fa7578063851b6ef214610fcd57806389cf785a146110255780638ab1d6811461104b5780638d1fdf2f146110715780638d8f2adb146110975780638fad11bf1461109f57806391c3cbbb1461114f57806395d89b411461120357806397599fd91461120b57806399385006146112135780639b91293b146112395780639f9b58d31461126b578063a457c2d71461132c578063a694fc3a14611358578063a69df4b514611375578063a75d52541461137d578063a9059cbb146113a3578063ae1ccf2c146113cf578063b306f735146113d7578063b64230ba146113df578063bc9ac68c14611405578063c3f9ab581461142b578063c692586514611451578063c93dbc491461146e578063cb31b6cd14611476578063ce531ff114611544578063d157f8c81461156a578063d6fe7cb714611587578063d7e4f652146115ad578063d8fb9337146115d3578063dace4557146115f9578063dd62ed3e14611616578063de1be3c214611644578063e19e4349146116b2578063e43252d7146116ba578063e5839836146116e0578063e71bdf4114611706578063e87a7a591461172c578063edca8aa814611734578063efa1937d1461175a578063f1eddfd514611762578063f7af4a30146117d0578063ff981099146117f65761049d565b806306fdde03146104a2578063070892461461051f5780630777962714610539578063095ea7b314610573578063111c5bee1461059f57806313c3e409146105cb5780631785f53c146105f357806318160ddd146106195780631bb7cc99146106215780631e89d5451461063f57806323b872dd146106fd578063241084751461073357806324d7806c146107de578063251c1aa31461080457806325d998bb1461080c57806325db64c01461083257806326d2527c146108585780632a0acc6a146108915780632e17de7814610899578063313ce567146108b65780633192d50a146108be57806332a49578146108e457806333b15378146108ec57806333fd8b4e14610990578063373ccc5214610a34578063380a75bf14610a3c5780633950935114610a625780633af32abf14610a8e5780633b5764eb14610ab45780633f2d413114610abc5780633f4ba83a14610ae257806340abfe2614610aea57806340dce49a14610b105780634254582514610b185780634262336014610b4457806345c8b1a614610b6a5780634a2d5c9d14610b905780634c1b8ffd14610b985780634f2bf9d114610ba05780634f6218b814610ba857806353f74a7e14610bce578063551530d614610bd65780635be0606d14610bfc5780635c975abb14610cba578063633db62c14610cc257806367e7646f14610d0f5780636c76c2a114610d355780636d0b954314610de75780636f9336a914610def578063700d85ae14610e155780637048027514610e1d575b600080fd5b6104aa611813565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104e45781810151838201526020016104cc565b50505050905090810190601f1680156105115780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105276118a1565b60408051918252519081900360200190f35b61055f6004803603602081101561054f57600080fd5b50356001600160a01b03166118a7565b604080519115158252519081900360200190f35b61055f6004803603604081101561058957600080fd5b506001600160a01b0381351690602001356118bc565b610527600480360360408110156105b557600080fd5b506001600160a01b038135169060200135611996565b6105f1600480360360208110156105e157600080fd5b50356001600160a01b03166119bd565b005b6105f16004803603602081101561060957600080fd5b50356001600160a01b0316611a16565b610527611a4f565b610629611a55565b6040805160ff9092168252519081900360200190f35b61055f6004803603604081101561065557600080fd5b810190602081018135600160201b81111561066f57600080fd5b82018360208201111561068157600080fd5b803590602001918460208302840111600160201b831117156106a257600080fd5b919390929091602081019035600160201b8111156106bf57600080fd5b8201836020820111156106d157600080fd5b803590602001918460208302840111600160201b831117156106f257600080fd5b509092509050611a5a565b61055f6004803603606081101561071357600080fd5b506001600160a01b03813581169160208101359091169060400135611b84565b6105f16004803603604081101561074957600080fd5b81359190810190604081016020820135600160201b81111561076a57600080fd5b82018360208201111561077c57600080fd5b803590602001918460018302840111600160201b8311171561079d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611c13945050505050565b61055f600480360360208110156107f457600080fd5b50356001600160a01b0316611c64565b610527611c71565b6105276004803603602081101561082257600080fd5b50356001600160a01b0316611c77565b6105f16004803603602081101561084857600080fd5b50356001600160a01b0316611cb6565b6108756004803603602081101561086e57600080fd5b5035611ccd565b604080516001600160a01b039092168252519081900360200190f35b610629611cf0565b61055f600480360360208110156108af57600080fd5b5035611cf5565b610629611f13565b6105f1600480360360208110156108d457600080fd5b50356001600160a01b0316611f1c565b610629611f43565b6105f16004803603602081101561090257600080fd5b810190602081018135600160201b81111561091c57600080fd5b82018360208201111561092e57600080fd5b803590602001918460018302840111600160201b8311171561094f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611f48945050505050565b6105f1600480360360208110156109a657600080fd5b810190602081018135600160201b8111156109c057600080fd5b8201836020820111156109d257600080fd5b803590602001918460018302840111600160201b831117156109f357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611f9b945050505050565b61055f611fbe565b6105f160048036036020811015610a5257600080fd5b50356001600160a01b0316611fcd565b61055f60048036036040811015610a7857600080fd5b506001600160a01b038135169060200135611ff4565b61055f60048036036020811015610aa457600080fd5b50356001600160a01b03166120c4565b6106296120d1565b6105f160048036036020811015610ad257600080fd5b50356001600160a01b03166120d6565b6105f16120ed565b6105f160048036036020811015610b0057600080fd5b50356001600160a01b0316612136565b61062961214b565b61055f60048036036040811015610b2e57600080fd5b506001600160a01b038135169060200135612150565b61052760048036036020811015610b5a57600080fd5b50356001600160a01b0316612179565b6105f160048036036020811015610b8057600080fd5b50356001600160a01b0316612194565b6106296121a9565b6105276121ae565b6105276121b4565b61055f60048036036020811015610bbe57600080fd5b50356001600160a01b03166121ba565b6105276121c7565b61055f60048036036020811015610bec57600080fd5b50356001600160a01b03166121cd565b61055f60048036036040811015610c1257600080fd5b810190602081018135600160201b811115610c2c57600080fd5b820183602082011115610c3e57600080fd5b803590602001918460208302840111600160201b83111715610c5f57600080fd5b919390929091602081019035600160201b811115610c7c57600080fd5b820183602082011115610c8e57600080fd5b803590602001918460208302840111600160201b83111715610caf57600080fd5b5090925090506121da565b61055f61232e565b61055f600480360360a0811015610cd857600080fd5b5080356001600160a01b031690602081013590604081013563ffffffff908116916060810135909116906080013561ffff16612337565b6105f160048036036020811015610d2557600080fd5b50356001600160a01b03166124f2565b6105f160048036036060811015610d4b57600080fd5b810190602081018135600160201b811115610d6557600080fd5b820183602082011115610d7757600080fd5b803590602001918460018302840111600160201b83111715610d9857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550506001600160a01b038335169350505060200135612509565b6106296126bc565b61052760048036036020811015610e0557600080fd5b50356001600160a01b03166126c1565b61062961280f565b6105f160048036036020811015610e3357600080fd5b50356001600160a01b0316612814565b61052760048036036020811015610e5957600080fd5b50356001600160a01b0316612839565b61055f612854565b61055f600480360360a0811015610e8757600080fd5b810190602081018135600160201b811115610ea157600080fd5b820183602082011115610eb357600080fd5b803590602001918460208302840111600160201b83111715610ed457600080fd5b919390929091602081019035600160201b811115610ef157600080fd5b820183602082011115610f0357600080fd5b803590602001918460208302840111600160201b83111715610f2457600080fd5b9193509150803563ffffffff908116916020810135909116906040013561ffff16612862565b6105f1600480360360a0811015610f6057600080fd5b5080351515906020810135151590604081013515159060608101359060800135151561297d565b61055f6129da565b6105276129e3565b6105276129e9565b6105f16129ef565b61052760048036036020811015610fbd57600080fd5b50356001600160a01b0316612a28565b610fd5612a55565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015611011578181015183820152602001610ff9565b505050509050019250505060405180910390f35b6105f16004803603602081101561103b57600080fd5b50356001600160a01b0316612ae0565b6105f16004803603602081101561106157600080fd5b50356001600160a01b0316612b2e565b6105f16004803603602081101561108757600080fd5b50356001600160a01b0316612b45565b6105f1612b5a565b6105f1600480360360608110156110b557600080fd5b813591602081013591810190606081016040820135600160201b8111156110db57600080fd5b8201836020820111156110ed57600080fd5b803590602001918460018302840111600160201b8311171561110e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612b89945050505050565b6105f16004803603604081101561116557600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561118f57600080fd5b8201836020820111156111a157600080fd5b803590602001918460018302840111600160201b831117156111c257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612bf1945050505050565b6104aa612cb0565b610629612d0b565b6105f16004803603602081101561122957600080fd5b50356001600160a01b0316612d10565b61055f6004803603606081101561124f57600080fd5b506001600160a01b038135169060208101359060400135612d25565b6105f1600480360360a081101561128157600080fd5b810190602081018135600160201b81111561129b57600080fd5b8201836020820111156112ad57600080fd5b803590602001918460018302840111600160201b831117156112ce57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550506001600160a01b038335811694506020840135169260408101359250606001359050612daa565b61055f6004803603604081101561134257600080fd5b506001600160a01b038135169060200135612e8e565b61055f6004803603602081101561136e57600080fd5b5035612f0b565b61055f613019565b6105f16004803603602081101561139357600080fd5b50356001600160a01b0316613029565b61055f600480360360408110156113b957600080fd5b506001600160a01b038135169060200135613077565b61055f6130b3565b610fd56130d0565b61055f600480360360208110156113f557600080fd5b50356001600160a01b0316613175565b61055f6004803603602081101561141b57600080fd5b50356001600160a01b0316613182565b610fd56004803603602081101561144157600080fd5b50356001600160a01b031661318f565b6105f16004803603602081101561146757600080fd5b5035613335565b61055f613346565b61055f6004803603606081101561148c57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b8111156114b657600080fd5b8201836020820111156114c857600080fd5b803590602001918460208302840111600160201b831117156114e957600080fd5b919390929091602081019035600160201b81111561150657600080fd5b82018360208201111561151857600080fd5b803590602001918460208302840111600160201b8311171561153957600080fd5b50909250905061334f565b6105f16004803603602081101561155a57600080fd5b50356001600160a01b03166134a0565b6104aa6004803603602081101561158057600080fd5b50356134b7565b6105f16004803603602081101561159d57600080fd5b50356001600160a01b031661355e565b6104aa600480360360208110156115c357600080fd5b50356001600160a01b0316613575565b610527600480360360208110156115e957600080fd5b50356001600160a01b0316613582565b6105f16004803603602081101561160f57600080fd5b50356135f9565b6105276004803603604081101561162c57600080fd5b506001600160a01b0381358116916020013516613640565b6105f16004803603602081101561165a57600080fd5b810190602081018135600160201b81111561167457600080fd5b82018360208201111561168657600080fd5b803590602001918460208302840111600160201b831117156116a757600080fd5b50909250905061366b565b6105f16136bf565b6105f1600480360360208110156116d057600080fd5b50356001600160a01b03166136ca565b61055f600480360360208110156116f657600080fd5b50356001600160a01b03166136e1565b6105f16004803603602081101561171c57600080fd5b50356001600160a01b03166136ee565b610527613705565b6105f16004803603602081101561174a57600080fd5b50356001600160a01b031661370b565b6104aa613722565b6105f16004803603602081101561177857600080fd5b810190602081018135600160201b81111561179257600080fd5b8201836020820111156117a457600080fd5b803590602001918460208302840111600160201b831117156117c557600080fd5b50909250905061377d565b61055f600480360360208110156117e657600080fd5b50356001600160a01b03166137d1565b6105276004803603602081101561180c57600080fd5b50356137de565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156118995780601f1061186e57610100808354040283529160200191611899565b820191906000526020600020905b81548152906001019060200180831161187c57829003601f168201915b505050505081565b60165481565b60006118b46008836138b7565b90505b919050565b60006118d66118ca336136e1565b1561708160f11b6138c5565b60005460ff16156118e657600080fd5b611926600f544211806118fd57506118fd33611c64565b8061190c575061190c336137d1565b8061191b575061191b336120c4565b61708960f11b6138c5565b6119406001600160a01b038416151561e10360f01b6138c5565b336000818152600a602090815260408083206001600160a01b038816808552908352928190208690558051868152905192939260008051602061455c833981519152929181900390910190a35060015b92915050565b60009081526004602090815260408083206001600160a01b03949094168352929052205490565b6119d46119c933613182565b61e10960f01b6138c5565b6119df6002826138d4565b6040516001600160a01b038216907fd1150a5bd2b0e9576d0be9aca2590fe10d79688e2026d41c3eeaa22d72bba1c490600090a250565b60005460ff1615611a2657600080fd5b611a41611a3233611c64565b806119c957506119c9336137d1565b611a4c6001826138d4565b50565b60125490565b600481565b6000805460ff1615611a6b57600080fd5b611a776119c9336121cd565b611a8884151561e10760f01b6138c5565b611a99828514611c2160f31b6138c5565b60005b84811015611b7857611ac8868683818110611ab357fe5b905060200201356001600160a01b03166136e1565b611b0957611b0433878784818110611adc57fe5b905060200201356001600160a01b0316868685818110611af857fe5b9050602002013561391d565b611b70565b858582818110611b1557fe5b905060200201356001600160a01b03166001600160a01b0316336001600160a01b031660008051602061451c833981519152868685818110611b5357fe5b905060200201356040518082815260200191505060405180910390a35b600101611a9c565b50600195945050505050565b6000805460ff1615611b9557600080fd5b611bac600f544211806118fd57506118fd33611c64565b6001600160a01b0384166000908152600a60209081526040808320338452909152902054611bda9083613840565b6001600160a01b0385166000908152600a60209081526040808320338452909152902055611c0984848461391d565b5060019392505050565b601454610100900460ff1615611c3d57611c3d6000611c3133612839565b1161e10560f01b6138c5565b60155415611c5257611c52333060155461391d565b611c5f3383600184613a0f565b505050565b60006118b46001836138b7565b600f5481565b60006118b4611c85836126c1565b611cb0611c9185613582565b6001600160a01b03861660009081526008602052604090205490613840565b90613b8a565b611cc2611a3233611c64565b611a4c6003826138d4565b60009081526005602052604090206001015461010090046001600160a01b031690565b600181565b6000805460ff1615611d0657600080fd5b611d1d600f544211806118fd57506118fd33611c64565b611d296118ca336136e1565b33600090815260096020526040902054611d439083613840565b33600090815260096020908152604080832093909355600890522054611d699083613b8a565b3360009081526008602052604090205560165415611eaf576000611d9860165442613b8a90919063ffffffff16565b9050611da261441a565b506040805160a0810182528481526001600160401b0383811660208084018281526000858701818152606080880183815260016080808b0182815233808852600b8a528d8820805480860182559089528a89208e5160029092020190815598519890930180549651945191511515600160701b0260ff60701b1961ffff909316600160601b0261ffff60601b1963ffffffff909716600160401b0263ffffffff60401b199b909e166001600160401b031990991698909817999099169b909b179390931694909417919091169490941790965587518b815293840194909452828701819052938201939093529351929391926000805160206144fc8339815191529281900390910190a250505b60408051838152905133917f85082129d87b2fe11527cb1b3b7a520aeb5aa6913f88a3d8757fe40d1db02fdd919081900360200190a2604080518381529051339160009160008051602061453c8339815191529181900360200190a3506001919050565b600e5460ff1681565b60005460ff1615611f2c57600080fd5b611f38611a3233611c64565b611a4c6002826138d4565b600381565b60145460ff1615611f7357611f6e611f5f33611c64565b806119c957506119c9336118a7565b611f92565b60145462010000900460ff1615611f9257611f926000611c3133612839565b611a4c81613b9c565b611fa7611a3233611c64565b8051611fba906011906020840190614448565b5050565b60145462010000900460ff1681565b60005460ff1615611fdd57600080fd5b611fe9611a3233611c64565b611a4c600282613cd5565b60006120026118ca336136e1565b60005460ff161561201257600080fd5b612029600f544211806118fd57506118fd33611c64565b6120436001600160a01b038416151561e10360f01b6138c5565b336000908152600a602090815260408083206001600160a01b03871684529091529020546120719083613b8a565b336000818152600a602090815260408083206001600160a01b03891680855290835292819020859055805194855251919360008051602061455c833981519152929081900390910190a350600192915050565b60006118b46004836138b7565b600581565b6120e2611a3233611c64565b611a4c6007826138d4565b60005460ff166120fc57600080fd5b612105336137d1565b61212c576121156119c933611c64565b61212c6121206130b3565b1561e11360f01b6138c5565b612134613d1e565b565b6121426119c933613182565b611a4c81613d5e565b600281565b60009081526004602090815260408083206001600160a01b039490941683529290522054151590565b6001600160a01b031660009081526009602052604090205490565b6121a0611a3233611c64565b611a4c81613d69565b600881565b60155481565b60035481565b60006118b4600b836138b7565b60135481565b60006118b46003836138b7565b6000805460ff16156121eb57600080fd5b6121f76119c9336121ba565b612208828514611c2160f31b6138c5565b60005b84811015611b7857600086868381811061222157fe5b905060200201356001600160a01b03169050600085858481811061224157fe5b905060200201359050612253826136e1565b612324576001600160a01b03821660009081526009602052604090205461227a9082613b8a565b6001600160a01b0383166000908152600960209081526040808320939093553382526008905220546122ac9082613840565b3360009081526008602090815260409182902092909255805183815290516001600160a01b038516927ffdb40631688a7579284e2f66bc5fd4fefeb5ff42e76828e3b307bdc4af2715bf928290030190a2604080518281529051600091339160008051602061453c8339815191529181900360200190a35b505060010161220b565b60005460ff1690565b60008061234d4263ffffffff80881690613b8a16565b905061235761441a565b6040518060a00160405280888152602001836001600160401b031681526020018663ffffffff1681526020018561ffff168152602001600015158152509050600b6000896001600160a01b03166001600160a01b031681526020019081526020016000208190806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010160006101000a8154816001600160401b0302191690836001600160401b0316021790555060408201518160010160086101000a81548163ffffffff021916908363ffffffff160217905550606082015181600101600c6101000a81548161ffff021916908361ffff160217905550608082015181600101600e6101000a81548160ff02191690831515021790555050506124928888613077565b50604080518881526001600160401b038416602082015263ffffffff87168183015261ffff8616606082015290516001600160a01b038a16916000805160206144fc833981519152919081900360800190a2506001979650505050505050565b6124fe611a3233611c64565b611a4c6008826138d4565b60005460ff161561251957600080fd5b612530600f544211806118fd57506118fd33611c64565b600061253a613d74565b338430878660405160200180878152602001866001600160a01b031660601b8152601401856001600160a01b031660601b8152601401846001600160a01b031660601b815260140183805190602001908083835b602083106125ad5780518252601f19909201916020918201910161258e565b6001836020036101000a038019825116818451168082178552505050505050905001828152602001965050505050505060405160208183030381529060405280519060200120905061260033308461391d565b80836001600160a01b0316336001600160a01b03167f6bc4afad47e010c4a48e00a6b9a230555e1c4e8420c1ede42f30b54ebb4c3fcd87866040518080602001838152602001828103825284818151815260200191508051906020019080838360005b8381101561267b578181015183820152602001612663565b50505050905090810190601f1680156126a85780820380516001836020036101000a031916815260200191505b50935050505060405180910390a450505050565b600b81565b6001600160a01b0381166000908152600b6020526040812081805b82548110156128075760008382815481106126f357fe5b600091825260209091206002909102016001810154909150426001600160401b0390911610156127fe5760018101546002600160601b90910461ffff16101561274a578054612743908490613b8a565b92506127fe565b600181015460009081906127689042906001600160401b0316613840565b600184015490915060009061278f90839063ffffffff600160401b90910481169061381e16565b6001858101549101915061ffff600160601b909104811690821611156127c95750600183015483549250600160601b900461ffff166127ee565b6001840154845461ffff808416926127ea9291600160601b9091041661381e565b0292505b6127f88684613b8a565b95505050505b506001016126dc565b509392505050565b600781565b60005460ff161561282457600080fd5b612830611a3233611c64565b611a4c81613d82565b6001600160a01b031660009081526008602052604090205490565b601454610100900460ff1681565b6000805460ff161561287357600080fd5b61287f6119c9336121cd565b61289087151561e10760f01b6138c5565b6128a1858814611c2160f31b6138c5565b60005b8781101561296e576128bb898983818110611ab357fe5b6128ff576128f98989838181106128ce57fe5b905060200201356001600160a01b03168888848181106128ea57fe5b90506020020135878787612337565b50612966565b88888281811061290b57fe5b905060200201356001600160a01b03166001600160a01b0316336001600160a01b031660008051602061451c83398151915289898581811061294957fe5b905060200201356040518082815260200191505060405180910390a35b6001016128a4565b50600198975050505050505050565b612989611a3233611c64565b6014805460ff199081169615159690961761ff001916610100951515959095029490941762ff0000191662010000931515939093029290921790925560159190915560078054909216901515179055565b60145460ff1681565b60025481565b60065481565b60005460ff16156129ff57600080fd5b6000612a0a336137d1565b9050612a1f81806119c957506119c933611c64565b611a4c81613d8d565b60006118b4612a3683613582565b6001600160a01b03841660009081526008602052604090205490613840565b6060806006546001600160401b0381118015612a7057600080fd5b50604051908082528060200260200182016040528015612a9a578160200160208202803683370190505b50905060005b600654811015612ada576000818152600560205260409020548251839083908110612ac757fe5b6020908102919091010152600101612aa0565b50905090565b612aec6119c933613182565b612af7600282613cd5565b6040516001600160a01b038216907f31f2f473acc030385200df8dddbab6686d4287a2166d4fe59a1dc72e37c1d31290600090a250565b612b3a611a3233611c64565b611a4c6004826138d4565b612b51611a3233611c64565b611a4c81613ded565b60005460ff1615612b6a57600080fd5b612b766119c933611c64565b6121343033612b8430612839565b61391d565b600754612b9f9060ff161561708560f11b6138c5565b601454610100900460ff1615612bbd57612bbd6000611c3133612839565b60155415612bdf57612bdf3330612b84856015546137f090919063ffffffff16565b612beb33848484613a0f565b50505050565b612bfd611a3233611c64565b612c0960178383613df8565b816001600160a01b03167f96494610f3d7ae42a3de83051a16063a87b5be06845d935c3a9ef103d791a096826040518080602001828103825283818151815260200191508051906020019080838360005b83811015612c72578181015183820152602001612c5a565b50505050905090810190601f168015612c9f5780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b600d805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156118995780601f1061186e57610100808354040283529160200191611899565b600681565b612d1c611a3233611c64565b611a4c81613e1f565b6000805460ff1615612d3657600080fd5b612d4d600f544211806118fd57506118fd33611c64565b612d5833858561391d565b604080518481526020810184905281516001600160a01b0387169233927f10258bfd896826cf69e885380049b1d1be0424a813d5117744373ec9f51bc86c929081900390910190a35060019392505050565b60005460ff1615612dba57600080fd5b612dc66119c933613175565b612dd130848361391d565b81836001600160a01b0316856001600160a01b03167f9403091f5664cd6d32ddbe58f2efce74b16b45841968713ab48a95da381203b188856040518080602001838152602001828103825284818151815260200191508051906020019080838360005b83811015612e4c578181015183820152602001612e34565b50505050905090810190601f168015612e795780820380516001836020036101000a031916815260200191505b50935050505060405180910390a45050505050565b6000612e9c6118ca336136e1565b60005460ff1615612eac57600080fd5b612ec3600f544211806118fd57506118fd33611c64565b612edd6001600160a01b038416151561e10360f01b6138c5565b336000908152600a602090815260408083206001600160a01b03871684529091529020546120719083613840565b6000805460ff1615612f1c57600080fd5b612f33600f544211806118fd57506118fd33611c64565b612f3f6118ca336136e1565b612f4833613e2a565b50612f63612f5533612a28565b83111561e10560f01b6138c5565b33600090815260086020526040902054612f7d9083613840565b33600090815260086020908152604080832093909355600990522054612fa39083613b8a565b3360008181526009602090815260408083209490945583518681529351919360008051602061453c833981519152929081900390910190a360408051838152905133917febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a919081900360200190a2506001919050565b600061302433613e2a565b905090565b6130356119c933613182565b6130406001826138d4565b6040516001600160a01b038216907fdd03a410a9b379c5c31df9bbec14f14840e84bec6958bba98d9c5df9fe4d713d90600090a250565b6000805460ff161561308857600080fd5b61309f600f544211806118fd57506118fd33611c64565b6130aa33848461391d565b50600192915050565b6000805460ff168015613024575050600054610100900460ff1690565b6060806006546001600160401b03811180156130eb57600080fd5b50604051908082528060200260200182016040528015613115578160200160208202803683370190505b50905060005b600654811015612ada5760008181526005602052604090206001015482516101009091046001600160a01b03169083908390811061315557fe5b6001600160a01b039092166020928302919091019091015260010161311b565b60006118b46007836138b7565b60006118b46006836138b7565b6001600160a01b0381166000908152600b6020526040902080546060919082906004026001600160401b03811180156131c757600080fd5b506040519080825280602002602001820160405280156131f1578160200160208202803683370190505b50905060005b825481101561280757600081600402905083828154811061321457fe5b90600052602060002090600202016000015483828151811061323257fe5b60200260200101818152505083828154811061324a57fe5b906000526020600020906002020160010160009054906101000a90046001600160401b03166001600160401b031683826001018151811061328757fe5b60200260200101818152505083828154811061329f57fe5b906000526020600020906002020160010160089054906101000a900463ffffffff1663ffffffff168382600201815181106132d657fe5b6020026020010181815250508382815481106132ee57fe5b9060005260206000209060020201600101600c9054906101000a900461ffff1661ffff1683826003018151811061332157fe5b6020908102919091010152506001016131f7565b613341611a3233611c64565b601655565b60075460ff1681565b6000805460ff161561336057600080fd5b61336c6119c9336121cd565b61337d84151561e10760f01b6138c5565b61338e828514611c2160f31b6138c5565b60005b84811015613493576133a8868683818110611ab357fe5b613424576133eb8484838181106133bb57fe5b6001600160a01b038b166000908152600a6020908152604080832033845282529091205493910201359050613840565b6001600160a01b0388166000908152600a6020908152604080832033845290915290205561341f87878784818110611adc57fe5b61348b565b85858281811061343057fe5b905060200201356001600160a01b03166001600160a01b0316876001600160a01b031660008051602061451c83398151915286868581811061346e57fe5b905060200201356040518082815260200191505060405180910390a35b600101613391565b5060019695505050505050565b6134ac611a3233611c64565b611a4c600382613cd5565b6000818152600560209081526040918290206002908101805484516001821615610100026000190190911692909204601f810184900484028301840190945283825260609391929091908301828280156135525780601f1061352757610100808354040283529160200191613552565b820191906000526020600020905b81548152906001019060200180831161353557829003601f168201915b50505050509050919050565b61356a611a3233611c64565b611a4c600b826138d4565b60606118b46017836142b8565b600080805b6001600160a01b0384166000908152600b60205260409020548110156135f2576001600160a01b0384166000908152600b6020526040902080546135e89190839081106135d057fe5b60009182526020909120600290910201548390613b8a565b9150600101613587565b5092915050565b613605611a3233611c64565b600f8190556040805182815290517f285ed4cab839e54405276e9e5f06f35f2f12e1d626384e4632854919077f7c7a9181900360200190a150565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b613677611a3233611c64565b61368881151561e10760f01b6138c5565b60005b81811015611c5f576136b78383838181106136a257fe5b905060200201356001600160a01b0316613ded565b60010161368b565b6121346006336138d4565b6136d6611a3233611c64565b611a4c600482613cd5565b60006118b46005836138b7565b6136fa611a3233611c64565b611a4c600882613cd5565b60105481565b613717611a3233611c64565b611a4c600b82613cd5565b6011805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156118995780601f1061186e57610100808354040283529160200191611899565b613789611a3233611c64565b61379a81151561e10760f01b6138c5565b60005b81811015611c5f576137c98383838181106137b457fe5b905060200201356001600160a01b0316613d69565b60010161379d565b60006118b46002836138b7565b60009081526005602052604090205490565b6000826137ff57506000611990565b8282028284828161380c57fe5b041461381757600080fd5b9392505050565b600080821161382c57600080fd5b600082848161383757fe5b04949350505050565b60008282111561384f57600080fd5b50900390565b60ff821660009081526020849052604090206001600160a01b03821661387a57600080fd5b6138848183614362565b1561388e57600080fd5b6001600160a01b03909116600090815260209190915260409020805460ff191660011790555050565b600061381760018484614397565b81611fba578060405260026040fd5b6138e0600183836143bc565b6040516001600160a01b0382169060ff8416907f0e1900eb0958d3192c4824b787e78e8b534e429190d9d837ecbfb6257a8a1b1c90600090a35050565b6139376001600160a01b038316151561e10360f01b6138c5565b6139436118ca846136e1565b61394f6118ca836136e1565b61395883613e2a565b5061397361396584612a28565b82111561e10560f01b6138c5565b6001600160a01b0383166000908152600860205260409020546139969082613840565b6001600160a01b0380851660009081526008602052604080822093909355908416815220546139c59082613b8a565b6001600160a01b03808416600081815260086020908152604091829020949094558051858152905191939287169260008051602061453c83398151915292918290030190a3505050565b60075460009060ff1615613a3e57613a278585612150565b15613a3157600080fd5b82600114613a3e57600080fd5b6000848152600560205260409020600181015460ff16613a5d57600080fd5b60008581526004602090815260408083206001600160a01b038a168452909152902054613a8a9085613b8a565b60008681526004602090815260408083206001600160a01b038b1684529091529020558054613ab99085613b8a565b8160000181905550847f4fa7d628f07312402be45de3ce5d77059237591939a1154550b9a3166550ebcd878684600001548760405180856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613b43578181015183820152602001613b2b565b50505050905090810190601f168015613b705780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a25495945050505050565b60008282018381101561381757600080fd5b600680546001808201909255604080516080810182526000808252602080830186815233848601908152606085018981528785526005845295909320845181559051968101805493516001600160a01b031661010002610100600160a81b031998151560ff199095169490941797909716929092179095559151805193949193613c2c9260028501920190614448565b509050507fbf516e0d163afacd132d846cf9538bcfc94834845151f27cdc9ba1ded8f063ad81836040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613c96578181015183820152602001613c7e565b50505050905090810190601f168015613cc35780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b613ce160018383613855565b6040516001600160a01b0382169060ff8416907f108cdba04fa22e3af2c83669b3a439bae9df498af451d1b1a0a7da5453c97bce90600090a35050565b6000805461ffff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b611a4c600682613cd5565b611a4c6005826138d4565b601380546001019081905590565b611a4c600182613cd5565b60008054600160ff199091161761ff0019166101008315159081029190911790915560408051338152602081019290925280517fe8699cf681560fd07de85543bd994263f4557bdc5179dd702f256d15fd083e1d9281900390910190a150565b611a4c600582613cd5565b6001600160a01b0382166000908152602084815260409091208251612beb92840190614448565b611a4c600782613cd5565b6001600160a01b0381166000908152600b602052604081208054613e525760019150506118b7565b60005b8154811015611c09576000828281548110613e6c57fe5b600091825260209091206002909102016001810154909150426001600160401b0390911610156142ab5760018101546002600160601b90910461ffff161015613ff2578054604080519182526000602083015280516001600160a01b038816926000805160206144dc83398151915292908290030190a2825460001901821015613fb857825483906000198101908110613f0257fe5b9060005260206000209060020201838381548110613f1c57fe5b600091825260209091208254600290920201908155600191820180549290910180546001600160401b0319166001600160401b0390931692909217808355815463ffffffff600160401b91829004160263ffffffff60401b1990911617808355815461ffff600160601b91829004160261ffff60601b1990911617808355905460ff600160701b918290041615150260ff60701b199091161790555b82805480613fc257fe5b60008281526020812060026000199093019283020190815560010180546001600160781b031916905590556142a6565b600181015460009081906140109042906001600160401b0316613840565b600184015490915060009061403790839063ffffffff600160401b90910481169061381e16565b6001858101549101915061ffff600160601b9091048116908216106141b157506001830154835460408051828152600060208201528151929550600160601b90930461ffff16926001600160a01b038b16926000805160206144dc833981519152929181900390910190a2855460001901851015614177578554869060001981019081106140c157fe5b90600052602060002090600202018686815481106140db57fe5b600091825260209091208254600290920201908155600191820180549290910180546001600160401b0319166001600160401b0390931692909217808355815463ffffffff600160401b91829004160263ffffffff60401b1990911617808355815461ffff600160601b91829004160261ffff60601b1990911617808355905460ff600160701b918290041615150260ff60701b199091161790555b8580548061418157fe5b60008281526020812060026000199093019283020190815560010180546001600160781b031916905590556142a2565b6001840154845461ffff808416926141d29291600160601b9091041661381e565b60018601805461ffff600160601b80830482168790039091160261ffff60601b199091161790558554910293506142099084613840565b845560018401546142309063ffffffff600160401b90910481169061ffff8416906137f016565b6001850180546001600160401b0319811663ffffffff939093166001600160401b039182160116919091179081905560408051858152600160601b90920461ffff16602083015280516001600160a01b038b16926000805160206144dc83398151915292908290030190a26001909401935b5050505b6142b2565b6001909101905b50613e55565b6001600160a01b0381166000908152602083815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156143555780601f1061432a57610100808354040283529160200191614355565b820191906000526020600020905b81548152906001019060200180831161433857829003601f168201915b5050505050905092915050565b60006001600160a01b03821661437757600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b60ff821660009081526020849052604081206143b38184614362565b95945050505050565b60ff821660009081526020849052604090206001600160a01b0382166143e157600080fd5b6143eb8183614362565b6143f457600080fd5b6001600160a01b03909116600090815260209190915260409020805460ff191690555050565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061448957805160ff19168380011785556144b6565b828001600101855582156144b6579182015b828111156144b657825182559160200191906001019061449b565b506144c29291506144c6565b5090565b5b808211156144c257600081556001016144c756fe9a28dc0f48ec36a159106c19199977fe86124fd78cf91ebe0345a1e93ecaccf8ddbc17715b9953cb1c631284bf34bc1f01934caee8c4f89d47cec8732a2f149457b832b60cac2d336bd974f846b5d4c4af5aeeeb2dbd0f8cbd3ea89fc9078eeaddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a2646970667358221220234bdf13169b58325b2dd630f037b819b4b9e91ab17cbe2e75dfde6bda4e82f664736f6c634300060c0033

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

000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000f8277896582678ac000000000000000000000000000000e4dbeac7fbad24ffeed805b4380d62e33032f3c7000000000000000000000000da0f00d92086e50099742b6bfb0230c942dda4cc000000000000000000000000da0f00d92086e50099742b6bfb0230c942dda4cc000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000084465666163746f720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005464143545200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026e61000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Defactor
Arg [1] : _symbol (string): FACTR
Arg [2] : _decimals (uint8): 18
Arg [3] : _totalSupply (uint256): 300000000000000000000000000
Arg [4] : owner (address): 0xe4dbEAc7fBAD24ffEeD805B4380D62e33032f3C7
Arg [5] : bwAdmin (address): 0xda0f00d92086E50099742B6bfB0230c942DdA4cC
Arg [6] : feeAccount (address): 0xda0f00d92086E50099742B6bfB0230c942DdA4cC
Arg [7] : feePercentageTenths (uint256): 10
Arg [8] : attorney (address): 0x0000000000000000000000000000000000000000
Arg [9] : _attorneyEmail (string): na

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000f8277896582678ac000000
Arg [4] : 000000000000000000000000e4dbeac7fbad24ffeed805b4380d62e33032f3c7
Arg [5] : 000000000000000000000000da0f00d92086e50099742b6bfb0230c942dda4cc
Arg [6] : 000000000000000000000000da0f00d92086e50099742b6bfb0230c942dda4cc
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [11] : 4465666163746f72000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [13] : 4641435452000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [15] : 6e61000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

998:1238:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;975:18:6;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1408:39;;;:::i;:::-;;;;;;;;;;;;;;;;6834:116:7;;;;;;;;;;;;;;;;-1:-1:-1;6834:116:7;-1:-1:-1;;;;;6834:116:7;;:::i;:::-;;;;;;;;;;;;;;;;;;8036:359:6;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8036:359:6;;;;;;;;:::i;2736:146:9:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;2736:146:9;;;;;;;;:::i;2130::7:-;;;;;;;;;;;;;;;;-1:-1:-1;2130:146:7;-1:-1:-1;;;;;2130:146:7;;:::i;:::-;;2623:119;;;;;;;;;;;;;;;;-1:-1:-1;2623:119:7;-1:-1:-1;;;;;2623:119:7;;:::i;6369:102:6:-;;;:::i;468:35:7:-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7368:563:6;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7368:563:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7368:563:6;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7368:563:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7368:563:6;;;;;;;;;;-1:-1:-1;7368:563:6;;-1:-1:-1;7368:563:6;-1:-1:-1;7368:563:6;:::i;8504:289::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8504:289:6;;;;;;;;;;;;;;;;;:::i;20183:348::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;20183:348:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;20183:348:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20183:348:6;;-1:-1:-1;20183:348:6;;-1:-1:-1;;;;;20183:348:6:i;3089:110:7:-;;;;;;;;;;;;;;;;-1:-1:-1;3089:110:7;-1:-1:-1;;;;;3089:110:7;;:::i;1052:25:6:-;;;:::i;14481:174::-;;;;;;;;;;;;;;;;-1:-1:-1;14481:174:6;-1:-1:-1;;;;;14481:174:6;;:::i;3330:109:7:-;;;;;;;;;;;;;;;;-1:-1:-1;3330:109:7;-1:-1:-1;;;;;3330:109:7;;:::i;3046:139:9:-;;;;;;;;;;;;;;;;-1:-1:-1;3046:139:9;;:::i;:::-;;;;-1:-1:-1;;;;;3046:139:9;;;;;;;;;;;;;;352:31:7;;;:::i;22789:675:6:-;;;;;;;;;;;;;;;;-1:-1:-1;22789:675:6;;:::i;1025:21::-;;;:::i;1798:125:7:-;;;;;;;;;;;;;;;;-1:-1:-1;1798:125:7;-1:-1:-1;;;;;1798:125:7;;:::i;429:33::-;;;:::i;19673:358:6:-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;19673:358:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;19673:358:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19673:358:6;;-1:-1:-1;19673:358:6;;-1:-1:-1;;;;;19673:358:6:i;5010:112::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5010:112:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5010:112:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5010:112:6;;-1:-1:-1;5010:112:6;;-1:-1:-1;;;;;5010:112:6:i;1319:53::-;;;:::i;1333:119:7:-;;;;;;;;;;;;;;;;-1:-1:-1;1333:119:7;-1:-1:-1;;;;;1333:119:7;;:::i;9887:419:6:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9887:419:6;;;;;;;;:::i;4483:120:7:-;;;;;;;;;;;;;;;;-1:-1:-1;4483:120:7;-1:-1:-1;;;;;4483:120:7;;:::i;509:32::-;;;:::i;3886:109::-;;;;;;;;;;;;;;;;-1:-1:-1;3886:109:7;-1:-1:-1;;;;;3886:109:7;;:::i;5731:237:6:-;;;:::i;4719:93:7:-;;;;;;;;;;;;;;;;-1:-1:-1;4719:93:7;-1:-1:-1;;;;;4719:93:7;;:::i;389:34::-;;;:::i;2399:140:9:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;2399:140:9;;;;;;;;:::i;22494:103:6:-;;;;;;;;;;;;;;;;-1:-1:-1;22494:103:6;-1:-1:-1;;;;;22494:103:6;;:::i;5424:97:7:-;;;;;;;;;;;;;;;;-1:-1:-1;5424:97:7;-1:-1:-1;;;;;5424:97:7;;:::i;626:34::-;;;:::i;1378:23:6:-;;;:::i;297:20:8:-;;;:::i;7206:118:7:-;;;;;;;;;;;;;;;;-1:-1:-1;7206:118:7;-1:-1:-1;;;;;7206:118:7;;:::i;1194:24:6:-;;;:::i;3445:114:7:-;;;;;;;;;;;;;;;;-1:-1:-1;3445:114:7;-1:-1:-1;;;;;3445:114:7;;:::i;23916:715:6:-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;23916:715:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;23916:715:6;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;23916:715:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;23916:715:6;;;;;;;;;;-1:-1:-1;23916:715:6;;-1:-1:-1;23916:715:6;-1:-1:-1;23916:715:6;:::i;727:86:5:-;;;:::i;14831:476:6:-;;;;;;;;;;;;;;;;-1:-1:-1;14831:476:6;;-1:-1:-1;;;;;14831:476:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;6717:111:7:-;;;;;;;;;;;;;;;;-1:-1:-1;6717:111:7;-1:-1:-1;;;;;6717:111:7;;:::i;18615:395:6:-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;18615:395:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;18615:395:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18615:395:6;;-1:-1:-1;;;;;;;18615:395:6;;;;-1:-1:-1;;;18615:395:6;;;;:::i;666:36:7:-;;;:::i;16796:1016:6:-;;;;;;;;;;;;;;;;-1:-1:-1;16796:1016:6;-1:-1:-1;;;;;16796:1016:6;;:::i;587:33:7:-;;;:::i;2506:111::-;;;;;;;;;;;;;;;;-1:-1:-1;2506:111:7;-1:-1:-1;;;;;2506:111:7;;:::i;6526:116:6:-;;;;;;;;;;;;;;;;-1:-1:-1;6526:116:6;-1:-1:-1;;;;;6526:116:6;;:::i;1272:41::-;;;:::i;15503:661::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;15503:661:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;15503:661:6;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;15503:661:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;15503:661:6;;;;;;;;;;;;-1:-1:-1;15503:661:6;-1:-1:-1;15503:661:6;;;;;;;;;;;;;;;;;;;;;:::i;4371:448::-;;;;;;;;;;;;;;;;-1:-1:-1;4371:448:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;1225:41::-;;;:::i;270:21:8:-;;;:::i;783:30:9:-;;;:::i;5294:189:6:-;;;:::i;14124:141::-;;;;;;;;;;;;;;;;-1:-1:-1;14124:141:6;-1:-1:-1;;;;;14124:141:6;;:::i;1641:269:9:-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1654:138:7;;;;;;;;;;;;;;;;-1:-1:-1;1654:138:7;-1:-1:-1;;;;;1654:138:7;;:::i;4360:117::-;;;;;;;;;;;;;;;;-1:-1:-1;4360:117:7;-1:-1:-1;;;;;4360:117:7;;:::i;5233:93::-;;;;;;;;;;;;;;;;-1:-1:-1;5233:93:7;-1:-1:-1;;;;;5233:93:7;;:::i;17898:183:6:-;;;:::i;20698:474::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;20698:474:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;20698:474:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20698:474:6;;-1:-1:-1;20698:474:6;;-1:-1:-1;;;;;20698:474:6:i;3743:177::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3743:177:6;;;;;;;;;;;;;;;-1:-1:-1;;;3743:177:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3743:177:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3743:177:6;;-1:-1:-1;3743:177:6;;-1:-1:-1;;;;;3743:177:6:i;999:20::-;;;:::i;547:34:7:-;;;:::i;3687:101::-;;;;;;;;;;;;;;;;-1:-1:-1;3687:101:7;-1:-1:-1;;;;;3687:101:7;;:::i;21370:261:6:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21370:261:6;;;;;;;;;;;;;:::i;19206:301::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;19206:301:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;19206:301:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19206:301:6;;-1:-1:-1;;;;;;;19206:301:6;;;;;-1:-1:-1;19206:301:6;;;;;;;;;;;-1:-1:-1;19206:301:6;;;;-1:-1:-1;19206:301:6;:::i;10420:429::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;10420:429:6;;;;;;;;:::i;21826:494::-;;;;;;;;;;;;;;;;-1:-1:-1;21826:494:6;;:::i;11800:83::-;;;:::i;2946:137:7:-;;;;;;;;;;;;;;;;-1:-1:-1;2946:137:7;-1:-1:-1;;;;;2946:137:7;;:::i;6905:173:6:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6905:173:6;;;;;;;;:::i;992:127:5:-;;;:::i;3370:293:9:-;;;:::i;4001:114:7:-;;;;;;;;;;;;;;;;-1:-1:-1;4001:114:7;-1:-1:-1;;;;;4001:114:7;;:::i;4904:115::-;;;;;;;;;;;;;;;;-1:-1:-1;4904:115:7;-1:-1:-1;;;;;4904:115:7;;:::i;11087:556:6:-;;;;;;;;;;;;;;;;-1:-1:-1;11087:556:6;-1:-1:-1;;;;;11087:556:6;;:::i;23624:121::-;;;;;;;;;;;;;;;;-1:-1:-1;23624:121:6;;:::i;880:36:9:-;;;:::i;9125:648:6:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9125:648:6;;;;;;;;;;;;;;;-1:-1:-1;;;9125:648:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9125:648:6;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9125:648:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9125:648:6;;;;;;;;;;-1:-1:-1;9125:648:6;;-1:-1:-1;9125:648:6;-1:-1:-1;9125:648:6;:::i;3221:103:7:-;;;;;;;;;;;;;;;;-1:-1:-1;3221:103:7;-1:-1:-1;;;;;3221:103:7;;:::i;2071:139:9:-;;;;;;;;;;;;;;;;-1:-1:-1;2071:139:9;;:::i;7087:113:7:-;;;;;;;;;;;;;;;;-1:-1:-1;7087:113:7;-1:-1:-1;;;;;7087:113:7;;:::i;4087:124:6:-;;;;;;;;;;;;;;;;-1:-1:-1;4087:124:6;-1:-1:-1;;;;;4087:124:6;;:::i;16355:253::-;;;;;;;;;;;;;;;;-1:-1:-1;16355:253:6;-1:-1:-1;;;;;16355:253:6;;:::i;6160:151::-;;;;;;;;;;;;;;;;-1:-1:-1;6160:151:6;;:::i;6717:137::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6717:137:6;;;;;;;;;;:::i;5703:237:7:-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5703:237:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5703:237:7;;;;;;;;;;-1:-1:-1;5703:237:7;;-1:-1:-1;5703:237:7;-1:-1:-1;5703:237:7;:::i;4818:80::-;;;:::i;4245:109::-;;;;;;;;;;;;;;;;-1:-1:-1;4245:109:7;-1:-1:-1;;;;;4245:109:7;;:::i;6371:112::-;;;;;;;;;;;;;;;;-1:-1:-1;6371:112:7;-1:-1:-1;;;;;6371:112:7;;:::i;6606:105::-;;;;;;;;;;;;;;;;-1:-1:-1;6606:105:7;-1:-1:-1;;;;;6606:105:7;;:::i;1083:31:6:-;;;:::i;6974:107:7:-;;;;;;;;;;;;;;;;-1:-1:-1;6974:107:7;-1:-1:-1;;;;;6974:107:7;;:::i;1120:27:6:-;;;:::i;6124:241:7:-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6124:241:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6124:241:7;;;;;;;;;;-1:-1:-1;6124:241:7;;-1:-1:-1;6124:241:7;-1:-1:-1;6124:241:7;:::i;2282:116::-;;;;;;;;;;;;;;;;-1:-1:-1;2282:116:7;-1:-1:-1;;;;;2282:116:7;;:::i;1323:125:9:-;;;;;;;;;;;;;;;;-1:-1:-1;1323:125:9;;:::i;975:18:6:-;;;;;;;;;;;;;;;-1:-1:-1;;975:18:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1408:39::-;;;;:::o;6834:116:7:-;6892:4;6915:28;659:1;6935:7;6915:9;:28::i;:::-;6908:35;;6834:116;;;;:::o;8036:359:6:-;8197:4;6522:43:7;6530:20;6539:10;6530:8;:20::i;:::-;6529:21;-1:-1:-1;;;6522:6:7;:43::i;:::-;603:10:5::1;:17:::0;::::1;;602:18;594:27;;;::::0;::::1;;3403:156:6::2;3429:10;;3423:3;:16;:39;;;;3443:19;3451:10;3443:7;:19::i;:::-;3423:65;;;;3466:22;3477:10;3466;:22::i;:::-;3423:94;;;;3492:25;3506:10;3492:13;:25::i;:::-;-1:-1:-1::0;;;3403:6:6::2;:156::i;:::-;8217:52:::3;-1:-1:-1::0;;;;;8224:21:6;::::3;::::0;::::3;-1:-1:-1::0;;;8217:6:6::3;:52::i;:::-;8288:10;8280:19;::::0;;;:7:::3;:19;::::0;;;;;;;-1:-1:-1;;;;;8280:28:6;::::3;::::0;;;;;;;;;;:36;;;8331;;;;;;;8280:28;;8288:10;-1:-1:-1;;;;;;;;;;;8331:36:6;;;;;;;;;::::3;-1:-1:-1::0;8384:4:6::3;3569:1;8036:359:::0;;;;:::o;2736:146:9:-;2821:7;2847:19;;;:5;:19;;;;;;;;-1:-1:-1;;;;;2847:28:9;;;;;;;;;;;;2736:146::o;2130::7:-;5058:49;5065:21;5075:10;5065:9;:21::i;:::-;-1:-1:-1;;;5058:6:7;:49::i;:::-;2202:26:::1;422:1;2220:7;2202;:26::i;:::-;2243;::::0;-1:-1:-1;;;;;2243:26:7;::::1;::::0;::::1;::::0;;;::::1;2130:146:::0;:::o;2623:119::-;603:10:5;:17;;;602:18;594:27;;;;;;1125:73:7::1;1132:19;1140:10;1132:7;:19::i;:::-;:45;;;;1155:22;1166:10;1155;:22::i;1125:73::-;2712:23:::2;382:1;2727:7;2712;:23::i;:::-;2623:119:::0;:::o;6369:102:6:-;6448:16;;6369:102;:::o;468:35:7:-;502:1;468:35;:::o;7368:563:6:-;7514:4;603:17:5;;;;602:18;594:27;;;;;;3598:49:7::1;3605:21;3615:10;3605:9;:21::i;3598:49::-;7534:40:6::2;7541:13:::0;;;-1:-1:-1;;;7534:6:6::2;:40::i;:::-;7584:56;7591:25:::0;;::::2;-1:-1:-1::0;;;7584:6:6::2;:56::i;:::-;7656:9;7651:252;7671:13:::0;;::::2;7651:252;;;7710:15;7719:2;;7722:1;7719:5;;;;;;;;;;;;;-1:-1:-1::0;;;;;7719:5:6::2;7710:8;:15::i;:::-;7705:188;;7745:38;7755:10;7767:2;;7770:1;7767:5;;;;;;;;;;;;;-1:-1:-1::0;;;;;7767:5:6::2;7774;;7780:1;7774:8;;;;;;;;;;;;;7745:9;:38::i;:::-;7705:188;;;7862:2;;7865:1;7862:5;;;;;;;;;;;;;-1:-1:-1::0;;;;;7862:5:6::2;-1:-1:-1::0;;;;;7827:51:6::2;7850:10;-1:-1:-1::0;;;;;7827:51:6::2;-1:-1:-1::0;;;;;;;;;;;7869:5:6::2;;7875:1;7869:8;;;;;;;;;;;;;7827:51;;;;;;;;;;;;;;;;;;7705:188;7686:3;;7651:252;;;-1:-1:-1::0;7920:4:6::2;::::0;7368:563;-1:-1:-1;;;;;7368:563:6:o;8504:289::-;8649:4;603:17:5;;;;602:18;594:27;;;;;;3403:156:6::1;3429:10;;3423:3;:16;:39;;;;3443:19;3451:10;3443:7;:19::i;3403:156::-;-1:-1:-1::0;;;;;8693:13:6;::::2;;::::0;;;:7:::2;:13;::::0;;;;;;;8707:10:::2;8693:25:::0;;;;;;;;:36:::2;::::0;8723:5;8693:29:::2;:36::i;:::-;-1:-1:-1::0;;;;;8665:13:6;::::2;;::::0;;;:7:::2;:13;::::0;;;;;;;8679:10:::2;8665:25:::0;;;;;;;:64;8739:26:::2;8673:4:::0;8755:2;8759:5;8739:9:::2;:26::i;:::-;-1:-1:-1::0;8782:4:6::2;8504:289:::0;;;;;:::o;20183:348::-;20263:21;;;;;;;20259:113;;;20300:61;20331:1;20307:21;20317:10;20307:9;:21::i;:::-;:25;-1:-1:-1;;;20300:6:6;:61::i;:::-;20386:8;;:12;20382:89;;20414:46;20424:10;20444:4;20451:8;;20414:9;:46::i;:::-;20481:43;20487:10;20499:12;20513:1;20516:7;20481:5;:43::i;:::-;;20183:348;;:::o;3089:110:7:-;3144:4;3167:25;382:1;3184:7;3167:9;:25::i;1052::6:-;;;;:::o;14481:174::-;14549:7;14575:73;14623:24;14639:7;14623:15;:24::i;:::-;14575:43;14597:20;14609:7;14597:11;:20::i;:::-;-1:-1:-1;;;;;14575:17:6;;;;;;:8;:17;;;;;;;:21;:43::i;:::-;:47;;:73::i;3330:109:7:-;1125:73;1132:19;1140:10;1132:7;:19::i;1125:73::-;3407:25:::1;461:1;3424:7;3407;:25::i;3046:139:9:-:0;3119:7;3145:25;;;:11;:25;;;;;:33;;;;;;-1:-1:-1;;;;;3145:33:9;;3046:139::o;352:31:7:-;382:1;352:31;:::o;22789:675:6:-;22864:4;603:17:5;;;;602:18;594:27;;;;;;3403:156:6::1;3429:10;;3423:3;:16;:39;;;;3443:19;3451:10;3443:7;:19::i;3403:156::-;22880:43:::2;22888:20;22897:10;22888:8;:20::i;22880:43::-;22962:10;22955:18;::::0;;;:6:::2;:18;::::0;;;;;:29:::2;::::0;22978:5;22955:22:::2;:29::i;:::-;22941:10;22934:18;::::0;;;:6:::2;:18;::::0;;;;;;;:50;;;;23017:8:::2;:20:::0;;;;:31:::2;::::0;23042:5;23017:24:::2;:31::i;:::-;23003:10;22994:20;::::0;;;:8:::2;:20;::::0;;;;:54;23063:14:::2;::::0;:18;23059:281:::2;;23097:14;23121:35;23141:14;;23121:15;:19;;:35;;;;:::i;:::-;23097:60;;23171:19;;:::i;:::-;-1:-1:-1::0;23193:32:6::2;::::0;;::::2;::::0;::::2;::::0;;;;;-1:-1:-1;;;;;23193:32:6;;::::2;;::::0;;::::2;::::0;;;-1:-1:-1;23193:32:6;;;;;;;;;;;;;23220:4:::2;23193:32:::0;;;;;;;23245:10:::2;23239:17:::0;;;:5:::2;:17:::0;;;;;:31;;;;::::2;::::0;;;;;;;;;;::::2;::::0;;::::2;;::::0;;;;;;;;::::2;::::0;;;;;;;;::::2;;-1:-1:-1::0;;;23239:31:6::2;-1:-1:-1::0;;;;23193:32:6::2;23239:31:::0;;::::2;-1:-1:-1::0;;;23239:31:6::2;-1:-1:-1::0;;;;23193:32:6::2;23239:31:::0;;::::2;-1:-1:-1::0;;;23239:31:6::2;-1:-1:-1::0;;;;23239:31:6;;;::::2;-1:-1:-1::0;;;;;;23239:31:6;;::::2;::::0;;;::::2;::::0;;;::::2;::::0;;;::::2;::::0;;;::::2;::::0;;;::::2;::::0;;;::::2;::::0;;;::::2;::::0;;;23289:40;;;;;;;::::2;::::0;;;;;;;;;;;;;;;;;;;23193:32;;23245:10;;-1:-1:-1;;;;;;;;;;;23289:40:6;;;;;;;;::::2;23059:281;;;23355:26;::::0;;;;;;;23363:10:::2;::::0;23355:26:::2;::::0;;;;;::::2;::::0;;::::2;23396:39;::::0;;;;;;;23417:10:::2;::::0;23413:1:::2;::::0;-1:-1:-1;;;;;;;;;;;23396:39:6;;;;::::2;::::0;;::::2;-1:-1:-1::0;23453:4:6::2;22789:675:::0;;;:::o;1025:21::-;;;;;;:::o;1798:125:7:-;603:10:5;:17;;;602:18;594:27;;;;;;1125:73:7::1;1132:19;1140:10;1132:7;:19::i;1125:73::-;1890:26:::2;422:1;1908:7;1890;:26::i;429:33::-:0;461:1;429:33;:::o;19673:358:6:-;19740:21;;;;19736:256;;;19777:73;19784:19;19792:10;19784:7;:19::i;:::-;:45;;;;19807:22;19818:10;19807;:22::i;19777:73::-;19736:256;;;19871:33;;;;;;;19867:125;;;19920:61;19951:1;19927:21;19937:10;19927:9;:21::i;19920:61::-;20001:23;20019:4;20001:17;:23::i;5010:112::-;1125:73:7;1132:19;1140:10;1132:7;:19::i;1125:73::-;5094:21:6;;::::1;::::0;:13:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;5010:112:::0;:::o;1319:53::-;;;;;;;;;:::o;1333:119:7:-;603:10:5;:17;;;602:18;594:27;;;;;;1125:73:7::1;1132:19;1140:10;1132:7;:19::i;1125:73::-;1422:23:::2;422:1;1437:7;1422:4;:23::i;9887:419:6:-:0;10046:4;6522:43:7;6530:20;6539:10;6530:8;:20::i;6522:43::-;603:10:5::1;:17:::0;::::1;;602:18;594:27;;;::::0;::::1;;3403:156:6::2;3429:10;;3423:3;:16;:39;;;;3443:19;3451:10;3443:7;:19::i;3403:156::-;10066:52:::3;-1:-1:-1::0;;;;;10073:21:6;::::3;::::0;::::3;-1:-1:-1::0;;;10066:6:6::3;:52::i;:::-;10168:10;10160:19;::::0;;;:7:::3;:19;::::0;;;;;;;-1:-1:-1;;;;;10160:28:6;::::3;::::0;;;;;;;;:44:::3;::::0;10193:10;10160:32:::3;:44::i;:::-;10137:10;10129:19;::::0;;;:7:::3;:19;::::0;;;;;;;-1:-1:-1;;;;;10129:28:6;::::3;::::0;;;;;;;;;;:75;;;10219:59;;;;;;10129:28;;-1:-1:-1;;;;;;;;;;;10219:59:6;;;;;;;;;::::3;-1:-1:-1::0;10295:4:6::3;9887:419:::0;;;;:::o;4483:120:7:-;4544:4;4567:29;502:1;4588:7;4567:9;:29::i;509:32::-;540:1;509:32;:::o;3886:109::-;1125:73;1132:19;1140:10;1132:7;:19::i;1125:73::-;3963:25:::1;619:1;3980:7;3963;:25::i;5731:237:6:-:0;685:10:5;:17;;;677:26;;;;;;5783:22:6::1;5794:10;5783;:22::i;:::-;5778:164;;5821:47;5828:19;5836:10;5828:7;:19::i;5821:47::-;5882:49;5890:18;:16;:18::i;:::-;5889:19;-1:-1:-1::0;;;5882:6:6::1;:49::i;:::-;5951:10;:8;:10::i;:::-;5731:237::o:0;4719:93:7:-;5058:49;5065:21;5075:10;5065:9;:21::i;5058:49::-;4785:20:::1;4797:7;4785:11;:20::i;389:34::-:0;422:1;389:34;:::o;2399:140:9:-;2477:4;2500:19;;;:5;:19;;;;;;;;-1:-1:-1;;;;;2500:28:9;;;;;;;;;;;:32;;;2399:140::o;22494:103:6:-;-1:-1:-1;;;;;22575:15:6;22549:7;22575:15;;;:6;:15;;;;;;;22494:103::o;5424:97:7:-;1125:73;1132:19;1140:10;1132:7;:19::i;1125:73::-;5496:18:::1;5506:7;5496:9;:18::i;626:34::-:0;659:1;626:34;:::o;1378:23:6:-;;;;:::o;297:20:8:-;;;;:::o;7206:118:7:-;7265:4;7288:29;700:2;7309:7;7288:9;:29::i;1194:24:6:-;;;;:::o;3445:114:7:-;3502:4;3525:27;461:1;3544:7;3525:9;:27::i;23916:715:6:-;24040:4;603:17:5;;;;602:18;594:27;;;;;;24060:51:6::1;24067:23;24079:10;24067:11;:23::i;24060:51::-;24121:56;24128:25:::0;;::::1;-1:-1:-1::0;;;24121:6:6::1;:56::i;:::-;24193:9;24188:415;24208:13:::0;;::::1;24188:415;;;24242:15;24260:2;;24263:1;24260:5;;;;;;;;;;;;;-1:-1:-1::0;;;;;24260:5:6::1;24242:23;;24279:11;24293:5;;24299:1;24293:8;;;;;;;;;;;;;24279:22;;24320:17;24329:7;24320:8;:17::i;:::-;24315:278;;-1:-1:-1::0;;;;;24375:15:6;::::1;;::::0;;;:6:::1;:15;::::0;;;;;:24:::1;::::0;24395:3;24375:19:::1;:24::i;:::-;-1:-1:-1::0;;;;;24357:15:6;::::1;;::::0;;;:6:::1;:15;::::0;;;;;;;:42;;;;24449:10:::1;24440:20:::0;;:8:::1;:20:::0;;;;:29:::1;::::0;24465:3;24440:24:::1;:29::i;:::-;24426:10;24417:20;::::0;;;:8:::1;:20;::::0;;;;;;;;:52;;;;24493:25;;;;;;;-1:-1:-1;;;;;24493:25:6;::::1;::::0;::::1;::::0;;;;;;::::1;24541:37;::::0;;;;;;;24570:1:::1;::::0;24550:10:::1;::::0;-1:-1:-1;;;;;;;;;;;24541:37:6;;;;::::1;::::0;;::::1;24315:278;-1:-1:-1::0;;24223:3:6::1;;24188:415;;727:86:5::0;766:4;789:17;;;727:86;:::o;14831:476:6:-;14999:4;;15039:29;:15;:29;;;;;:19;:29;:::i;:::-;15015:54;;15079:19;;:::i;:::-;15101:50;;;;;;;;15106:5;15101:50;;;;15113:7;-1:-1:-1;;;;;15101:50:6;;;;;15122:12;15101:50;;;;;;15136:7;15101:50;;;;;;15145:5;15101:50;;;;;15079:72;;15161:5;:9;15167:2;-1:-1:-1;;;;;15161:9:6;-1:-1:-1;;;;;15161:9:6;;;;;;;;;;;;15176:7;15161:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15161:23:6;;;;;-1:-1:-1;;;;;15161:23:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15195:19;15204:2;15208:5;15195:8;:19::i;:::-;-1:-1:-1;15229:49:6;;;;;;-1:-1:-1;;;;;15229:49:6;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15229:49:6;;;-1:-1:-1;;;;;;;;;;;15229:49:6;;;;;;;;;-1:-1:-1;15296:4:6;;14831:476;-1:-1:-1;;;;;;;14831:476:6:o;6717:111:7:-;1125:73;1132:19;1140:10;1132:7;:19::i;1125:73::-;6795:26:::1;659:1;6813:7;6795;:26::i;18615:395:6:-:0;603:10:5;:17;;;602:18;594:27;;;;;;3403:156:6::1;3429:10;;3423:3;:16;:39;;;;3443:19;3451:10;3443:7;:19::i;3403:156::-;18758:14:::2;18815;:12;:14::i;:::-;18831:10;18843:2;18855:4;18862:5;18869;18798:77;;;;;;;;;;;-1:-1:-1::0;;;;;18798:77:6::2;;;;;;;;-1:-1:-1::0;;;;;18798:77:6::2;;;;;;;;-1:-1:-1::0;;;;;18798:77:6::2;;;;;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;18798:77:6;;;;::::2;::::0;;::::2;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18775:110;;;;;;18758:127;;18896:43;18906:10;18926:4;18933:5;18896:9;:43::i;:::-;18989:6;18985:2;-1:-1:-1::0;;;;;18954:49:6::2;18973:10;-1:-1:-1::0;;;;;18954:49:6::2;;18966:5;18997;18954:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::2;::::0;;;::::2;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3569:1;18615:395:::0;;;:::o;666:36:7:-;700:2;666:36;:::o;16796:1016:6:-;-1:-1:-1;;;;;16905:14:6;;16859:7;16905:14;;;:5;:14;;;;;16859:7;;16956:827;16980:16;;16976:20;;16956:827;;;17017:17;17037:9;17047:1;17037:12;;;;;;;;;;;;;;;;;;;;;17067:15;;;;17037:12;;-1:-1:-1;17085:15:6;-1:-1:-1;;;;;17067:15:6;;;:33;17063:710;;;17124:12;;;;17139:1;-1:-1:-1;;;17124:12:6;;;;;:16;17120:639;;;17182:10;;17172:21;;:5;;:9;:21::i;:::-;17164:29;;17120:639;;;17310:15;;;;17240:13;;;;17290:36;;:15;;-1:-1:-1;;;;;17310:15:6;17290:19;:36::i;:::-;17391:17;;;;17275:51;;-1:-1:-1;17348:20:6;;17382:27;;17275:51;;17391:17;-1:-1:-1;;;17391:17:6;;;;;;17382:8;:27;:::i;:::-;17371:1;17452:12;;;;17371:39;;;-1:-1:-1;17452:12:6;-1:-1:-1;;;17452:12:6;;;;;17436:28;;;;17432:262;;;-1:-1:-1;17508:12:6;;;;17554:10;;;-1:-1:-1;;;;17508:12:6;;;;17432:262;;;17642:12;;;;17627:10;;:44;;;;;:28;;:10;-1:-1:-1;;;17642:12:6;;;;17627:14;:28::i;:::-;:44;17619:52;;17432:262;17724:16;:5;17734;17724:9;:16::i;:::-;17716:24;;17120:639;;;;-1:-1:-1;16998:3:6;;16956:827;;;-1:-1:-1;17800:5:6;16796:1016;-1:-1:-1;;;16796:1016:6:o;587:33:7:-;619:1;587:33;:::o;2506:111::-;603:10:5;:17;;;602:18;594:27;;;;;;1125:73:7::1;1132:19;1140:10;1132:7;:19::i;1125:73::-;2592:18:::2;2602:7;2592:9;:18::i;6526:116:6:-:0;-1:-1:-1;;;;;6618:17:6;6592:7;6618:17;;;:8;:17;;;;;;;6526:116::o;1272:41::-;;;;;;;;;:::o;15503:661::-;15724:4;603:17:5;;;;602:18;594:27;;;;;;3598:49:7::1;3605:21;3615:10;3605:9;:21::i;3598:49::-;15740:40:6::2;15747:13:::0;;;-1:-1:-1;;;15740:6:6::2;:40::i;:::-;15790:56;15797:25:::0;;::::2;-1:-1:-1::0;;;15790:6:6::2;:56::i;:::-;15862:9;15857:279;15877:13:::0;;::::2;15857:279;;;15916:15;15925:2;;15928:1;15925:5;;;;;;15916:15;15911:215;;15951:65;15967:2;;15970:1;15967:5;;;;;;;;;;;;;-1:-1:-1::0;;;;;15967:5:6::2;15974;;15980:1;15974:8;;;;;;;;;;;;;15984;15994:12;16008:7;15951:15;:65::i;:::-;;15911:215;;;16095:2;;16098:1;16095:5;;;;;;;;;;;;;-1:-1:-1::0;;;;;16095:5:6::2;-1:-1:-1::0;;;;;16060:51:6::2;16083:10;-1:-1:-1::0;;;;;16060:51:6::2;-1:-1:-1::0;;;;;;;;;;;16102:5:6::2;;16108:1;16102:8;;;;;;;;;;;;;16060:51;;;;;;;;;;;;;;;;;;15911:215;15892:3;;15857:279;;;-1:-1:-1::0;16153:4:6::2;::::0;15503:661;-1:-1:-1;;;;;;;;15503:661:6:o;4371:448::-;1125:73:7;1132:19;1140:10;1132:7;:19::i;1125:73::-;4587:21:6::1;:43:::0;;-1:-1:-1;;4587:43:6;;::::1;::::0;::::1;;::::0;;;::::1;-1:-1:-1::0;;4640:38:6::1;4587:43;4640:38:::0;::::1;;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;4688:62:6::1;::::0;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;;4760:8:::1;:15:::0;;;;4785:17:::1;:27:::0;;;;::::1;::::0;::::1;;;::::0;;4371:448::o;1225:41::-;;;;;;:::o;270:21:8:-;;;;:::o;783:30:9:-;;;;:::o;5294:189:6:-;603:10:5;:17;;;602:18;594:27;;;;;;5342:13:6::1;5358:22;5369:10;5358;:22::i;:::-;5342:38;;5390:59;5397:8;:31;;;;5409:19;5417:10;5409:7;:19::i;5390:59::-;5460:16;5467:8;5460:6;:16::i;14124:141::-:0;14189:7;14215:43;14237:20;14249:7;14237:11;:20::i;:::-;-1:-1:-1;;;;;14215:17:6;;;;;;:8;:17;;;;;;;:21;:43::i;1641:269:9:-;1685:16;1713:22;1752:15;;-1:-1:-1;;;;;1738:30:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1738:30:9;;1713:55;;1784:9;1779:102;1803:15;;1799:1;:19;1779:102;;;1850:14;;;;:11;:14;;;;;:20;1839:8;;:5;;1862:1;;1839:8;;;;;;;;;;;;;;;:31;1820:3;;1779:102;;;-1:-1:-1;1898:5:9;-1:-1:-1;1641:269:9;:::o;1654:138:7:-;5058:49;5065:21;5075:10;5065:9;:21::i;5058:49::-;1723:23:::1;422:1;1738:7;1723:4;:23::i;:::-;1761:24;::::0;-1:-1:-1;;;;;1761:24:7;::::1;::::0;::::1;::::0;;;::::1;1654:138:::0;:::o;4360:117::-;1125:73;1132:19;1140:10;1132:7;:19::i;1125:73::-;4443:27:::1;502:1;4462:7;4443;:27::i;5233:93::-:0;1125:73;1132:19;1140:10;1132:7;:19::i;1125:73::-;5303:16:::1;5311:7;5303;:16::i;17898:183:6:-:0;603:10:5;:17;;;602:18;594:27;;;;;;17955:47:6::1;17962:19;17970:10;17962:7;:19::i;17955:47::-;18012:62;18030:4;18037:10;18049:24;18067:4;18049:9;:24::i;:::-;18012:9;:62::i;20698:474::-:0;20832:17;;20824:50;;20832:17;;20831:18;-1:-1:-1;;;20824:6:6;:50::i;:::-;20889:21;;;;;;;20885:113;;;20926:61;20957:1;20933:21;20943:10;20933:9;:21::i;20926:61::-;21012:8;;:12;21008:100;;21040:57;21050:10;21070:4;21077:19;21090:5;21077:8;;:12;;:19;;;;:::i;21040:57::-;21118:47;21124:10;21136:12;21150:5;21157:7;21118:5;:47::i;:::-;;20698:474;;;:::o;3743:177::-;1125:73:7;1132:19;1140:10;1132:7;:19::i;1125:73::-;3838:34:6::1;:8;3857:7:::0;3866:5;3838:18:::1;:34::i;:::-;3898:7;-1:-1:-1::0;;;;;3887:26:6::1;;3907:5;3887:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3743:177:::0;;:::o;999:20::-;;;;;;;;;;;;;;;-1:-1:-1;;999:20:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;547:34:7;580:1;547:34;:::o;3687:101::-;1125:73;1132:19;1140:10;1132:7;:19::i;1125:73::-;3761:20:::1;3773:7;3761:11;:20::i;21370:261:6:-:0;21502:4;603:17:5;;;;602:18;594:27;;;;;;3403:156:6::1;3429:10;;3423:3;:16;:39;;;;3443:19;3451:10;3443:7;:19::i;3403:156::-;21518:32:::2;21528:10;21540:2;21544:5;21518:9;:32::i;:::-;21566:37;::::0;;;;;::::2;::::0;::::2;::::0;;;;;-1:-1:-1;;;;;21566:37:6;::::2;::::0;21574:10:::2;::::0;21566:37:::2;::::0;;;;;;;;;::::2;-1:-1:-1::0;21620:4:6::2;21370:261:::0;;;;;:::o;19206:301::-;603:10:5;:17;;;602:18;594:27;;;;;;4154:49:7::1;4161:21;4171:10;4161:9;:21::i;4154:49::-;19400:35:6::2;19418:4;19425:2;19429:5;19400:9;:35::i;:::-;19486:6;19482:2;-1:-1:-1::0;;;;;19451:49:6::2;19476:4;-1:-1:-1::0;;;;;19451:49:6::2;;19465:9;19494:5;19451:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::2;::::0;;;::::2;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19206:301:::0;;;;;:::o;10420:429::-;10584:4;6522:43:7;6530:20;6539:10;6530:8;:20::i;6522:43::-;603:10:5::1;:17:::0;::::1;;602:18;594:27;;;::::0;::::1;;3403:156:6::2;3429:10;;3423:3;:16;:39;;;;3443:19;3451:10;3443:7;:19::i;3403:156::-;10604:52:::3;-1:-1:-1::0;;;;;10611:21:6;::::3;::::0;::::3;-1:-1:-1::0;;;10604:6:6::3;:52::i;:::-;10706:10;10698:19;::::0;;;:7:::3;:19;::::0;;;;;;;-1:-1:-1;;;;;10698:28:6;::::3;::::0;;;;;;;;:49:::3;::::0;10731:15;10698:32:::3;:49::i;21826:494::-:0;21899:4;603:17:5;;;;602:18;594:27;;;;;;3403:156:6::1;3429:10;;3423:3;:16;:39;;;;3443:19;3451:10;3443:7;:19::i;3403:156::-;21915:43:::2;21923:20;21932:10;21923:8;:20::i;21915:43::-;21969:19;21977:10;21969:7;:19::i;:::-;;21998:74;22014:29;22032:10;22014:17;:29::i;:::-;22005:38:::0;::::2;;-1:-1:-1::0;;;21998:6:6::2;:74::i;:::-;22115:10;22106:20;::::0;;;:8:::2;:20;::::0;;;;;:31:::2;::::0;22131:5;22106:24:::2;:31::i;:::-;22092:10;22083:20;::::0;;;:8:::2;:20;::::0;;;;;;;:54;;;;22168:6:::2;:18:::0;;;;:29:::2;::::0;22191:5;22168:22:::2;:29::i;:::-;22154:10;22147:18;::::0;;;:6:::2;:18;::::0;;;;;;;:50;;;;22213:39;;;;;;;22147:18;;-1:-1:-1;;;;;;;;;;;22213:39:6;;;;;;;;;::::2;22267:24;::::0;;;;;;;22273:10:::2;::::0;22267:24:::2;::::0;;;;;::::2;::::0;;::::2;-1:-1:-1::0;22309:4:6::2;21826:494:::0;;;:::o;11800:83::-;11834:4;11857:19;11865:10;11857:7;:19::i;:::-;11850:26;;11800:83;:::o;2946:137:7:-;5058:49;5065:21;5075:10;5065:9;:21::i;5058:49::-;3015:23:::1;382:1;3030:7;3015;:23::i;:::-;3053;::::0;-1:-1:-1;;;;;3053:23:7;::::1;::::0;::::1;::::0;;;::::1;2946:137:::0;:::o;6905:173:6:-;7002:4;603:17:5;;;;602:18;594:27;;;;;;3403:156:6::1;3429:10;;3423:3;:16;:39;;;;3443:19;3451:10;3443:7;:19::i;3403:156::-;7018:32:::2;7028:10;7040:2;7044:5;7018:9;:32::i;:::-;-1:-1:-1::0;7067:4:6::2;6905:173:::0;;;;:::o;992:127:5:-;1041:4;1064:17;;;;:48;;;;-1:-1:-1;;1085:10:5;:27;;;;;;;992:127::o;3370:293:9:-;3427:16;3455:25;3497:15;;-1:-1:-1;;;;;3483:30:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3483:30:9;;3455:58;;3529:9;3524:107;3548:15;;3544:1;:19;3524:107;;;3598:14;;;;:11;:14;;;;;:22;;;3584:11;;3598:22;;;;-1:-1:-1;;;;;3598:22:9;;3584:11;;3598:14;;3584:11;;;;;;-1:-1:-1;;;;;3584:36:9;;;:11;;;;;;;;;;;:36;3565:3;;3524:107;;4001:114:7;4058:4;4081:27;619:1;4100:7;4081:9;:27::i;4904:115::-;4961:4;4984:28;580:1;5004:7;4984:9;:28::i;11087:556:6:-;-1:-1:-1;;;;;11197:14:6;;11170:24;11197:14;;;:5;:14;;;;;11265:16;;11142;;11197:14;11142:16;;11284:1;11265:20;-1:-1:-1;;;;;11251:35:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11251:35:6;;11222:64;;11302:9;11297:313;11321:16;;11317:20;;11297:313;;;11358:11;11376:1;11372;:5;11358:19;;11408:9;11418:1;11408:12;;;;;;;;;;;;;;;;;;:18;;;11391:9;11401:3;11391:14;;;;;;;;;;;;;:35;;;;;11461:9;11471:1;11461:12;;;;;;;;;;;;;;;;;;:23;;;;;;;;;;-1:-1:-1;;;;;11461:23:6;-1:-1:-1;;;;;11440:44:6;:9;11450:3;11456:1;11450:7;11440:18;;;;;;;;;;;;;:44;;;;;11519:9;11529:1;11519:12;;;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;11498:46;;:9;11508:3;11514:1;11508:7;11498:18;;;;;;;;;;;;;:46;;;;;11579:9;11589:1;11579:12;;;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;11558:41;;:9;11568:3;11574:1;11568:7;11558:18;;;;;;;;;;;;;;;;;:41;-1:-1:-1;11339:3:6;;11297:313;;23624:121;1125:73:7;1132:19;1140:10;1132:7;:19::i;1125:73::-;23709:14:6::1;:29:::0;23624:121::o;880:36:9:-;;;;;;:::o;9125:648:6:-;9287:4;603:17:5;;;;602:18;594:27;;;;;;3598:49:7::1;3605:21;3615:10;3605:9;:21::i;3598:49::-;9303:40:6::2;9310:13:::0;;;-1:-1:-1;;;9303:6:6::2;:40::i;:::-;9353:56;9360:25:::0;;::::2;-1:-1:-1::0;;;9353:6:6::2;:56::i;:::-;9425:9;9420:325;9440:13:::0;;::::2;9420:325;;;9479:15;9488:2;;9491:1;9488:5;;;;;;9479:15;9474:261;;9542:39;9572:5;;9578:1;9572:8;;;;;;;-1:-1:-1::0;;;;;9542:13:6;::::2;;::::0;;;:7:::2;9572:8;9542:13:::0;;;;;;;9556:10:::2;9542:25:::0;;;;;;;;;9572:8;::::2;;;::::0;-1:-1:-1;9542:29:6::2;:39::i;:::-;-1:-1:-1::0;;;;;9514:13:6;::::2;;::::0;;;:7:::2;:13;::::0;;;;;;;9528:10:::2;9514:25:::0;;;;;;;:67;9599:32:::2;9522:4:::0;9615:2;;9618:1;9615:5;;::::2;;;;9599:32;9474:261;;;9704:2;;9707:1;9704:5;;;;;;;;;;;;;-1:-1:-1::0;;;;;9704:5:6::2;-1:-1:-1::0;;;;;9675:45:6::2;9698:4;-1:-1:-1::0;;;;;9675:45:6::2;-1:-1:-1::0;;;;;;;;;;;9711:5:6::2;;9717:1;9711:8;;;;;;;;;;;;;9675:45;;;;;;;;;;;;;;;;;;9474:261;9455:3;;9420:325;;;-1:-1:-1::0;9762:4:6::2;::::0;9125:648;-1:-1:-1;;;;;;9125:648:6:o;3221:103:7:-;1125:73;1132:19;1140:10;1132:7;:19::i;1125:73::-;3295:22:::1;461:1;3309:7;3295:4;:22::i;2071:139:9:-:0;2173:25;;;;:11;:25;;;;;;;;;:30;;;;2166:37;;;;;;;;;;-1:-1:-1;;2166:37:9;;;;;;;;;;;;;;;;;;;;;;;;;;2141:13;;2166:37;;2173:30;;2166:37;;;2173:30;2166:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2071:139;;;:::o;7087:113:7:-;1125:73;1132:19;1140:10;1132:7;:19::i;1125:73::-;7166:27:::1;700:2;7185:7;7166;:27::i;4087:124:6:-:0;4145:13;4177:27;:8;4196:7;4177:18;:27::i;16355:253::-;16414:7;;;16460:119;-1:-1:-1;;;;;16484:14:6;;;;;;:5;:14;;;;;:21;16480:25;;16460:119;;;-1:-1:-1;;;;;16544:14:6;;;;;;:5;:14;;;;;:17;;16534:34;;16544:14;16559:1;;16544:17;;;;;;;;;;;;;;;;;;;:23;16534:5;;:9;:34::i;:::-;16526:42;-1:-1:-1;16507:3:6;;16460:119;;;-1:-1:-1;16596:5:6;16355:253;-1:-1:-1;;16355:253:6:o;6160:151::-;1125:73:7;1132:19;1140:10;1132:7;:19::i;1125:73::-;6239:10:6::1;:22:::0;;;6276:28:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;6160:151:::0;:::o;6717:137::-;-1:-1:-1;;;;;6824:14:6;;;6798:7;6824:14;;;:7;:14;;;;;;;;:23;;;;;;;;;;;;;6717:137::o;5703:237:7:-;1125:73;1132:19;1140:10;1132:7;:19::i;1125:73::-;5789:45:::1;5796:18:::0;;;-1:-1:-1;;;5789:6:7::1;:45::i;:::-;5850:9;5845:89;5865:18:::0;;::::1;5845:89;;;5904:19;5912:7;;5920:1;5912:10;;;;;;;;;;;;;-1:-1:-1::0;;;;;5912:10:7::1;5904:7;:19::i;:::-;5885:3;;5845:89;;4818:80:::0;4862:29;580:1;4880:10;4862:7;:29::i;4245:109::-;1125:73;1132:19;1140:10;1132:7;:19::i;1125:73::-;4323:24:::1;502:1;4339:7;4323:4;:24::i;6371:112::-:0;6427:4;6450:26;540:1;6468:7;6450:9;:26::i;6606:105::-;1125:73;1132:19;1140:10;1132:7;:19::i;1125:73::-;6681:23:::1;659:1;6696:7;6681:4;:23::i;1083:31:6:-:0;;;;:::o;6974:107:7:-;1125:73;1132:19;1140:10;1132:7;:19::i;1125:73::-;7050:24:::1;700:2;7066:7;7050:4;:24::i;1120:27:6:-:0;;;;;;;;;;;;;;;-1:-1:-1;;1120:27:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6124:241:7;1125:73;1132:19;1140:10;1132:7;:19::i;1125:73::-;6212:45:::1;6219:18:::0;;;-1:-1:-1;;;6212:6:7::1;:45::i;:::-;6273:9;6268:91;6288:18:::0;;::::1;6268:91;;;6327:21;6337:7;;6345:1;6337:10;;;;;;;;;;;;;-1:-1:-1::0;;;;;6337:10:7::1;6327:9;:21::i;:::-;6308:3;;6268:91;;2282:116:::0;2340:4;2363:28;422:1;2383:7;2363:9;:28::i;1323:125:9:-;1384:7;1410:25;;;:11;:25;;;;;:31;;1323:125::o;368:421:11:-;426:7;666:6;662:45;;-1:-1:-1;695:1:11;688:8;;662:45;729:5;;;733:1;729;:5;:1;752:5;;;;;:10;744:19;;;;;;781:1;368:421;-1:-1:-1;;;368:421:11:o;909:296::-;967:7;1064:1;1060;:5;1052:14;;;;;;1076:9;1092:1;1088;:5;;;;;;;909:296;-1:-1:-1;;;;909:296:11:o;1328:145::-;1386:7;1418:1;1413;:6;;1405:15;;;;;;-1:-1:-1;1442:5:11;;;1328:145::o;552:297:4:-;694:19;;;668:23;694:19;;;;;;;;;;-1:-1:-1;;;;;731:21:4;;723:30;;;;;;772:29;786:5;793:7;772:13;:29::i;:::-;771:30;763:39;;;;;;-1:-1:-1;;;;;813:22:4;;;:13;:22;;;;;;;;;;;:29;;-1:-1:-1;;813:29:4;838:4;813:29;;;-1:-1:-1;;552:297:4:o;7669:137:7:-;7743:4;7766:33;:6;7782:7;7791;7766:15;:33::i;1476:199:3:-;1545:4;1540:129;;1605:4;1599;1592:18;1640:4;1634;1627:18;7508:155:7;7576:31;:6;7590:7;7599;7576:13;:31::i;:::-;7622:34;;-1:-1:-1;;;;;7622:34:7;;;;;;;;;;;;7508:155;;:::o;24702:499:6:-;24811:47;-1:-1:-1;;;;;24818:16:6;;;;-1:-1:-1;;;24811:6:6;:47::i;:::-;24868:37;24876:14;24885:4;24876:8;:14::i;24868:37::-;24915:35;24923:12;24932:2;24923:8;:12::i;24915:35::-;24961:13;24969:4;24961:7;:13::i;:::-;;24985:68;25001:23;25019:4;25001:17;:23::i;:::-;24992:32;;;-1:-1:-1;;;24985:6:6;:68::i;:::-;-1:-1:-1;;;;;25081:14:6;;;;;;:8;:14;;;;;;:25;;25100:5;25081:18;:25::i;:::-;-1:-1:-1;;;;;25064:14:6;;;;;;;:8;:14;;;;;;:42;;;;25131:12;;;;;;;:23;;25148:5;25131:16;:23::i;:::-;-1:-1:-1;;;;;25116:12:6;;;;;;;:8;:12;;;;;;;;;:38;;;;25169:25;;;;;;;25116:12;;25169:25;;;;-1:-1:-1;;;;;;;;;;;25169:25:6;;;;;;;;24702:499;;;:::o;4348:612:9:-;4519:17;;4496:7;;4519:17;;4515:122;;;4561:31;4570:7;4579:12;4561:8;:31::i;:::-;4560:32;4552:41;;;;;;4615:5;4624:1;4615:10;4607:19;;;;;;4646:23;4672:25;;;:11;:25;;;;;4715:12;;;;;;4707:21;;;;;;4770:19;;;;:5;:19;;;;;;;;-1:-1:-1;;;;;4770:28:9;;;;;;;;;;:39;;4803:5;4770:32;:39::i;:::-;4739:19;;;;:5;:19;;;;;;;;-1:-1:-1;;;;;4739:28:9;;;;;;;;;:70;4832:10;;:21;;4847:5;4832:14;:21::i;:::-;4819:4;:10;;:34;;;;4884:12;4869:56;4875:7;4898:5;4905:4;:10;;;4917:7;4869:56;;;;-1:-1:-1;;;;;4869:56:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4943:10;;4348:612;-1:-1:-1;;;;;4348:612:9:o;1546:145:11:-;1604:7;1635:5;;;1658:6;;;;1650:15;;;;;3835:356:9;4009:15;:17;;;;;;;;;4094:37;;;;;;;;3986:20;4094:37;;;;;;;;;;4114:10;4094:37;;;;;;;;;;;;4066:25;;;:11;:25;;;;;;:65;;;;;;;;;;;;;-1:-1:-1;;;;;4066:65:9;;;-1:-1:-1;;;;;;4066:65:9;;;-1:-1:-1;;4066:65:9;;;;;;;;;;;;;;;;;;;;;;4009:17;;4094:37;;4066:65;;;;;;;;;:::i;:::-;;;;;4147:37;4165:12;4179:4;4147:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3835:356;;:::o;7357:145:7:-;7422:28;:6;7433:7;7442;7422:10;:28::i;:::-;7465:30;;-1:-1:-1;;;;;7465:30:7;;;;;;;;;;;;7357:145;;:::o;1635:151:5:-;1694:5;1674:25;;-1:-1:-1;;1709:35:5;;;1759:20;;;1768:10;1759:20;;;;;;;;;;;;;1635:151::o;4626:87:7:-;4683:23;580:1;4698:7;4683:4;:23::i;5332:86::-;5387:24;540:1;5403:7;5387;:24::i;18263:86:6:-;18333:9;18331:11;;;;;;;;18263:86;:::o;2418:82:7:-;2473:20;382:1;2485:7;2473:4;:20::i;1290:172:5:-;1340:10;:24;;1360:4;-1:-1:-1;;1340:24:5;;;;-1:-1:-1;;1374:38:5;1340:24;1374:38;;;;;;;;;;;;;1427:28;;;1434:10;1427:28;;;;;;;;;;;;;;;;;;;;;1290:172;:::o;5146:81:7:-;5199:21;540:1;5212:7;5199:4;:21::i;1190:174:2:-;-1:-1:-1;;;;;1315:27:2;;:9;:27;;;;;;;;;;;:42;;;;;;;;:::i;3794:86:7:-;3851:22;619:1;3865:7;3851:4;:22::i;12047:1895:6:-;-1:-1:-1;;;;;12137:14:6;;12099:4;12137:14;;;:5;:14;;;;;12165:11;;12161:58;;12204:4;12197:11;;;;;12161:58;12234:9;12229:1685;12253:11;;12249:15;;12229:1685;;;12282:17;12302:4;12307:1;12302:7;;;;;;;;;;;;;;;;;;;;;12327:15;;;;12302:7;;-1:-1:-1;12345:15:6;-1:-1:-1;;;;;12327:15:6;;;:33;12323:1581;;;12475:12;;;;12490:1;-1:-1:-1;;;12475:12:6;;;;;:16;12471:1377;;;12538:10;;12520:32;;;;;;12538:10;12520:32;;;;;;-1:-1:-1;;;;;12520:32:6;;;-1:-1:-1;;;;;;;;;;;12520:32:6;;;;;;;;12583:11;;-1:-1:-1;;12583:15:6;12579:19;;12575:105;;;12641:11;;12636:4;;-1:-1:-1;;12641:15:6;;;12636:21;;;;;;;;;;;;;;;;12626:4;12631:1;12626:7;;;;;;;;;;;;;;;;:31;;:7;;;;;:31;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12626:31:6;-1:-1:-1;;;;;12626:31:6;;;;;;;;;;;;;-1:-1:-1;;;12626:31:6;;;;;;-1:-1:-1;;;;12626:31:6;;;;;;;;;;-1:-1:-1;;;12626:31:6;;;;;;-1:-1:-1;;;;12626:31:6;;;;;;;;;;-1:-1:-1;;;12626:31:6;;;;;;;;-1:-1:-1;;;;12626:31:6;;;;;;12575:105;12701:4;:10;;;;;;;;;;;;;;;-1:-1:-1;;12701:10:6;;;;;;;;;;;;;;-1:-1:-1;;;;;;12701:10:6;;;;;12471:1377;;;12828:15;;;;12758:13;;;;12808:36;;:15;;-1:-1:-1;;;;;12828:15:6;12808:19;:36::i;:::-;12909:17;;;;12793:51;;-1:-1:-1;12866:20:6;;12900:27;;12793:51;;12909:17;-1:-1:-1;;;12909:17:6;;;;;;12900:8;:27;:::i;:::-;12889:1;12971:12;;;;12889:39;;;-1:-1:-1;12971:12:6;-1:-1:-1;;;12971:12:6;;;;;12954:29;;;;12950:880;;-1:-1:-1;13027:12:6;;;;13073:10;;13114:27;;;;;;13073:10;13114:27;;;;;;13073:10;;-1:-1:-1;;;;13027:12:6;;;;;;-1:-1:-1;;;;;13114:27:6;;;-1:-1:-1;;;;;;;;;;;13114:27:6;;;;;;;;;;13175:11;;-1:-1:-1;;13175:15:6;13171:19;;13167:113;;;13237:11;;13232:4;;-1:-1:-1;;13237:15:6;;;13232:21;;;;;;;;;;;;;;;;13222:4;13227:1;13222:7;;;;;;;;;;;;;;;;:31;;:7;;;;;:31;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13222:31:6;-1:-1:-1;;;;;13222:31:6;;;;;;;;;;;;;-1:-1:-1;;;13222:31:6;;;;;;-1:-1:-1;;;;13222:31:6;;;;;;;;;;-1:-1:-1;;;13222:31:6;;;;;;-1:-1:-1;;;;13222:31:6;;;;;;;;;;-1:-1:-1;;;13222:31:6;;;;;;;;-1:-1:-1;;;;13222:31:6;;;;;;13167:113;13305:4;:10;;;;;;;;;;;;;;;-1:-1:-1;;13305:10:6;;;;;;;;;;;;;;-1:-1:-1;;;;;;13305:10:6;;;;;12950:880;;;13393:12;;;;13378:10;;:44;;;;;:28;;:10;-1:-1:-1;;;13393:12:6;;;;13378:14;:28::i;:::-;13449:12;;;:29;;;-1:-1:-1;;;13449:29:6;;;;;;;;;;;;-1:-1:-1;;;;13449:29:6;;;;;;13517:10;;13378:44;;;-1:-1:-1;13517:21:6;;13378:44;13517:14;:21::i;:::-;13504:34;;13671:17;;;;13663:45;;13671:17;-1:-1:-1;;;13671:17:6;;;;;;13663:45;;;;:30;:45;:::i;:::-;13610:15;;;;;-1:-1:-1;;;;;;13564:145:6;;13610:99;;;;;-1:-1:-1;;;;;13610:15:6;;;:99;13564:145;;;;;;;;;13740:38;;;;;;-1:-1:-1;;;13765:12:6;;;;;13740:38;;;;;;-1:-1:-1;;;;;13740:38:6;;;-1:-1:-1;;;;;;;;;;;13740:38:6;;;;;;;;13804:3;;;;;12950:880;12471:1377;;;;12323:1581;;;13886:3;;;;;12323:1581;12229:1685;;;1538:152:2;-1:-1:-1;;;;;1655:27:2;;:9;:27;;;;;;;;;;;;1641:42;;;;;;-1:-1:-1;;1641:42:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1616:13;;1641:42;;;1655:27;1641:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1538:152;;;;:::o;1749:180:4:-;1837:4;-1:-1:-1;;;;;1861:21:4;;1853:30;;;;;;-1:-1:-1;;;;;;1900:22:4;:13;:22;;;;;;;;;;;;;;;1749:180::o;1504:239::-;1671:19;;;1629:4;1671:19;;;;;;;;;;1707:29;1671:19;1728:7;1707:13;:29::i;:::-;1700:36;1504:239;-1:-1:-1;;;;;1504:239:4:o;1010:300::-;1155:19;;;1129:23;1155:19;;;;;;;;;;-1:-1:-1;;;;;1192:21:4;;1184:30;;;;;;1232:29;1246:5;1253:7;1232:13;:29::i;:::-;1224:38;;;;;;-1:-1:-1;;;;;1273:22:4;;;1298:5;1273:22;;;;;;;;;;;:30;;-1:-1:-1;;1273:30:4;;;-1:-1:-1;;1010:300:4:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;

Swarm Source

ipfs://234bdf13169b58325b2dd630f037b819b4b9e91ab17cbe2e75dfde6bda4e82f6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.