Full Code of hiddify/HiddifyN for AI

master cb0909f13ad6 cached
179 files
1.5 MB
341.5k tokens
909 symbols
1 requests
Download .txt
Showing preview only (1,639K chars total). Download the full file or copy to clipboard to get everything.
Repository: hiddify/HiddifyN
Branch: master
Commit: cb0909f13ad6
Files: 179
Total size: 1.5 MB

Directory structure:
gitextract_b47e1nds/

├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── 01_bug_report.yml
│   │   └── 02_feature_request.yml
│   └── workflows/
│       ├── ci.yml
│       └── release.yml
├── .gitignore
├── LICENSE
├── README.md
└── v2rayN/
    ├── .gitattributes
    ├── .gitignore
    ├── HiddifyRestartN/
    │   ├── HiddifyRestartN.csproj
    │   ├── Program.cs
    │   └── Properties/
    │       └── launchSettings.json
    ├── HiddifyUpgradeN/
    │   ├── HiddifyUpgradeN.csproj
    │   ├── MainForm.Designer.cs
    │   ├── MainForm.cs
    │   ├── MainForm.resx
    │   ├── Program.cs
    │   ├── Properties/
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   └── app.manifest
    ├── PacLib/
    │   ├── PacHandler.cs
    │   ├── PacLib.csproj
    │   ├── Resources/
    │   │   └── pac.txt
    │   ├── Resources.Designer.cs
    │   └── Resources.resx
    ├── ProtosLib/
    │   ├── ProtosLib.csproj
    │   ├── Statistics.proto
    │   └── Tests.cs
    ├── v2rayN/
    │   ├── App.xaml
    │   ├── App.xaml.cs
    │   ├── AssemblyInfo.cs
    │   ├── Base/
    │   │   ├── DownloaderHelper.cs
    │   │   ├── HttpClientHelper.cs
    │   │   ├── MyDGTextColumn.cs
    │   │   ├── SqliteHelper.cs
    │   │   └── StringEx.cs
    │   ├── Converters/
    │   │   ├── DelayColorConverter.cs
    │   │   ├── LocalizeConverter.cs
    │   │   ├── MaterialDesignFonts.cs
    │   │   └── SizeConverter.cs
    │   ├── FodyWeavers.xml
    │   ├── Global.cs
    │   ├── Handler/
    │   │   ├── ConfigHandler.cs
    │   │   ├── CoreConfigHandler.cs
    │   │   ├── CoreConfigSingbox.cs
    │   │   ├── CoreConfigV2ray.cs
    │   │   ├── CoreHandler.cs
    │   │   ├── DownloadHandle.cs
    │   │   ├── HotkeyHandler.cs
    │   │   ├── LazyConfig.cs
    │   │   ├── MainFormHandler.cs
    │   │   ├── NoticeHandler.cs
    │   │   ├── ProfileExHandler.cs
    │   │   ├── ProxySetting.cs
    │   │   ├── QRCodeHelper.cs
    │   │   ├── ShareHandler.cs
    │   │   ├── SpeedtestHandler.cs
    │   │   ├── StatisticsHandler.cs
    │   │   ├── SysProxyHandle.cs
    │   │   ├── TunHandler.cs
    │   │   └── UpdateHandle.cs
    │   ├── Mode/
    │   │   ├── BalancerItem.cs
    │   │   ├── ComboItem.cs
    │   │   ├── Config.cs
    │   │   ├── ConfigItems.cs
    │   │   ├── ConfigOld.cs
    │   │   ├── CoreInfo.cs
    │   │   ├── DNSItem.cs
    │   │   ├── EConfigType.cs
    │   │   ├── ECoreType.cs
    │   │   ├── EGlobalHotkey.cs
    │   │   ├── EMove.cs
    │   │   ├── EServerColName.cs
    │   │   ├── ESpeedActionType.cs
    │   │   ├── ESysProxyType.cs
    │   │   ├── EViewAction.cs
    │   │   ├── GitHubRelease.cs
    │   │   ├── HiddifyEnums.cs
    │   │   ├── ProfileExItem.cs
    │   │   ├── ProfileItem.cs
    │   │   ├── ProfileItemModel.cs
    │   │   ├── ProxyMode.cs
    │   │   ├── RoutingItem.cs
    │   │   ├── RoutingItemModel.cs
    │   │   ├── RulesItem.cs
    │   │   ├── RulesItemModel.cs
    │   │   ├── ServerSpeedItem.cs
    │   │   ├── ServerStatItem.cs
    │   │   ├── ServerTestItem.cs
    │   │   ├── SingboxConfig.cs
    │   │   ├── SsSIP008.cs
    │   │   ├── SubItem.cs
    │   │   ├── SubscriptionInfo.cs
    │   │   ├── SysproxyConfig.cs
    │   │   ├── V2rayConfig.cs
    │   │   ├── V2rayTcpRequest.cs
    │   │   └── VmessQRCode.cs
    │   ├── Resx/
    │   │   ├── Hiddify.Designer.cs
    │   │   ├── Hiddify.resx
    │   │   ├── ResUI.Designer.cs
    │   │   ├── ResUI.fa-Ir.resx
    │   │   ├── ResUI.resx
    │   │   ├── ResUI.ru.resx
    │   │   └── ResUI.zh-Hans.resx
    │   ├── Sample/
    │   │   ├── SampleClientConfig
    │   │   ├── SampleHttprequest
    │   │   ├── SampleHttpresponse
    │   │   ├── SampleInbound
    │   │   ├── SingboxSampleClientConfig
    │   │   ├── custom_routing_black
    │   │   ├── custom_routing_global
    │   │   ├── custom_routing_locked
    │   │   ├── custom_routing_rules
    │   │   ├── custom_routing_white
    │   │   ├── dns_singbox_normal
    │   │   ├── dns_v2ray_normal
    │   │   ├── tun_singbox
    │   │   ├── tun_singbox_dns
    │   │   ├── tun_singbox_inbound
    │   │   └── tun_singbox_rules
    │   ├── Tool/
    │   │   ├── DeepLinking.cs
    │   │   ├── FileManager.cs
    │   │   ├── Job.cs
    │   │   ├── Logging.cs
    │   │   ├── QueryableExtension.cs
    │   │   ├── TestSpeed.cs
    │   │   ├── UI.cs
    │   │   └── Utils.cs
    │   ├── ViewModels/
    │   │   ├── AddServer2ViewModel.cs
    │   │   ├── AddServerViewModel.cs
    │   │   ├── AnotherCommandImplementation.cs
    │   │   ├── DNSSettingViewModel.cs
    │   │   ├── DemoItem.cs
    │   │   ├── HomeWindowViewModel.cs
    │   │   ├── MainWindowViewModel.cs
    │   │   ├── OptionSettingViewModel.cs
    │   │   ├── RoutingRuleDetailsViewModel.cs
    │   │   ├── RoutingRuleSettingViewModel.cs
    │   │   ├── RoutingSettingViewModel.cs
    │   │   ├── SubEditViewModel.cs
    │   │   ├── SubSettingViewModel.cs
    │   │   └── ViewModelBase.cs
    │   ├── Views/
    │   │   ├── AddServer2Window.xaml
    │   │   ├── AddServer2Window.xaml.cs
    │   │   ├── AddServerWindow.xaml
    │   │   ├── AddServerWindow.xaml.cs
    │   │   ├── DNSSettingWindow.xaml
    │   │   ├── DNSSettingWindow.xaml.cs
    │   │   ├── GlobalHotkeySettingWindow.xaml
    │   │   ├── GlobalHotkeySettingWindow.xaml.cs
    │   │   ├── HiddifyUI.xaml
    │   │   ├── HiddifyUI.xaml.cs
    │   │   ├── MainSubInfoView.xaml
    │   │   ├── MainSubInfoView.xaml.cs
    │   │   ├── MainWindow.xaml
    │   │   ├── MainWindow.xaml.cs
    │   │   ├── MsgView.xaml
    │   │   ├── MsgView.xaml.cs
    │   │   ├── OptionSettingWindow.xaml
    │   │   ├── OptionSettingWindow.xaml.cs
    │   │   ├── QrcodeView.xaml
    │   │   ├── QrcodeView.xaml.cs
    │   │   ├── RoutingRuleDetailsWindow.xaml
    │   │   ├── RoutingRuleDetailsWindow.xaml.cs
    │   │   ├── RoutingRuleSettingWindow.xaml
    │   │   ├── RoutingRuleSettingWindow.xaml.cs
    │   │   ├── RoutingSettingWindow.xaml
    │   │   ├── RoutingSettingWindow.xaml.cs
    │   │   ├── SubEditWindow.xaml
    │   │   ├── SubEditWindow.xaml.cs
    │   │   ├── SubInfoView.xaml
    │   │   ├── SubInfoView.xaml.cs
    │   │   ├── SubSettingWindow.xaml
    │   │   └── SubSettingWindow.xaml.cs
    │   ├── app.manifest
    │   └── v2rayN.csproj
    └── v2rayN.sln

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/ISSUE_TEMPLATE/01_bug_report.yml
================================================
name: Bug 报告
description: 在提出问题前请先自行排除服务器端问题和升级到最新客户端,同时也请通过搜索确认是否有人提出过相同问题。
title: "[Bug]: "
labels: ["bug"]
body:
  - type: input
    id: "expectation"
    attributes:
      label: "预期情况"
      description: "描述你认为应该发生什么"
    validations:
      required: true
  - type: textarea
    id: "describe-the-bug"
    attributes:
      label: "实际情况"
      description: "描述实际发生了什么"
    validations:
      required: true
  - type: textarea
    id: "reproduction-method"
    attributes:
      label: "复现方法"
      description: "在BUG出现前执行了哪些操作"
      placeholder: 标序号
    validations:
      required: true
  - type: textarea
    id: "log"
    attributes:
      label: "日志信息"
      description: "位置在软件当前目录下的guiLogs"
      placeholder: 在日志开始和结束位置粘贴冒号后的内容:```
    validations:
      required: true
  - type: textarea
    id: "more"
    attributes:
      label: "额外信息"
      description: "可选"
    validations:
      required: false
  - type: checkboxes
    id: "latest-version"
    attributes:
      label: "我确认已更新至最新版本"
      description: "否则请更新后尝试"
      options:
        - label: 是
          required: true
  - type: checkboxes
    id: "issues"
    attributes:
      label: "我确认已查询历史issues"
      description: "否则请查询后提出"
      options:
        - label: 是
          required: true


================================================
FILE: .github/ISSUE_TEMPLATE/02_feature_request.yml
================================================
name: Feature 请求
description: "为这个项目提出一个建议"
title: "[Feature request]: "
labels: ['enhancement']
body: 
- type: input
  id: problem
  attributes:
    label: 相关问题
    description: "清楚而简洁地描述问题是什么。"
    placeholder: "当我想要……时,软件不能……"
  validations:
    required: true
- type: input
  id: way-to-solve
  attributes:
    label: 描述你希望的解决方案
    description: "你希望发生什么"
  validations:
    required: true
- type: input
  id: instead
  attributes:
    label: 描述你所考虑的替代方案
  validations:
    required: false
- type: checkboxes
  id: "issues"
  attributes:
    label: "我确认已查询历史issues"
    description: "否则请查询后提出"
    options:
      - label: 是
        required: true


================================================
FILE: .github/workflows/ci.yml
================================================
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# This workflow will build, test, sign and package a WPF or Windows Forms desktop application
# built on .NET Core.
# To learn how to migrate your existing application to .NET Core,
# refer to https://docs.microsoft.com/en-us/dotnet/desktop-wpf/migration/convert-project-from-net-framework
#
# To configure this workflow:
#
# 1. Configure environment variables
# GitHub sets default environment variables for every workflow run.
# Replace the variables relative to your project in the "env" section below.
#
# 2. Signing
# Generate a signing certificate in the Windows Application
# Packaging Project or add an existing signing certificate to the project.
# Next, use PowerShell to encode the .pfx file using Base64 encoding
# by running the following Powershell script to generate the output string:
#
# $pfx_cert = Get-Content '.\SigningCertificate.pfx' -Encoding Byte
# [System.Convert]::ToBase64String($pfx_cert) | Out-File 'SigningCertificate_Encoded.txt'
#
# Open the output file, SigningCertificate_Encoded.txt, and copy the
# string inside. Then, add the string to the repo as a GitHub secret
# and name it "Base64_Encoded_Pfx."
# For more information on how to configure your signing certificate for
# this workflow, refer to https://github.com/microsoft/github-actions-for-desktop-apps#signing
#
# Finally, add the signing certificate password to the repo as a secret and name it "Pfx_Key".
# See "Build the Windows Application Packaging project" below to see how the secret is used.
#
# For more information on GitHub Actions, refer to https://github.com/features/actions
# For a complete CI/CD sample to get started with GitHub Action workflows for Desktop Applications,
# refer to https://github.com/microsoft/github-actions-for-desktop-apps

name: .NET Core Desktop

on:
  push:
    branches: [ "master" ]
  pull_request:
    branches: [ "master" ]

jobs:

  build:

    strategy:
      matrix:
          include:
          - configuration: x64
            xray: Xray-windows-64.zip
          - configuration: x86
            xray: Xray-windows-32.zip
      

    runs-on: windows-latest  # For a list of available runner types, refer to
                             # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on

    steps:
    - name: Checkout
      uses: actions/checkout@v3
      with:
        fetch-depth: 0
    - name: Download xray
      run: |
        curl -L -o ${{ matrix.xray }} https://github.com/hiddify/Hiddify-Xray-core/releases/latest/download/${{ matrix.xray }}
        dir
      
    

    # Install the .NET Core workload
    - name: Install .NET Core
      uses: actions/setup-dotnet@v3
      with:
        dotnet-version: 6.0.x
    - name: Restore
      run: | 
        dotnet restore
      working-directory: v2rayN
        
    
    - name: Build
      working-directory: v2rayN
      run: |
        dotnet build --configuration Release --no-restore
        
    - name: Publish win ${{ matrix.configuration }}
      working-directory: v2rayN
      run: |
        dotnet publish v2rayN\v2rayN.csproj --property WarningLevel=0 -c Release -o ../release/win-${{ matrix.configuration }} -r win-${{ matrix.configuration }} -p:PublishSingleFile=true --self-contained false /p:UseAppHost=true /p:PublishReadyToRun=true /p:PublishSingleFileExecutable=HiddifyN.exe
#        dotnet publish --property WarningLevel=0 -c Release -o ../release/win-x64 -r win-x64 -p:PublishSingleFile=true --self-contained false /p:UseAppHost=true /p:PublishReadyToRun=true          
    - name: add xray
      run: |
        mkdir release\win-${{ matrix.configuration }}\bin\Xray
        dir
        7z x "${{ matrix.xray }}" -i!"*.exe"
        move *xray.exe  release\win-${{ matrix.configuration }}\bin\Xray\
        
    # Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact
    - name: Upload build win-${{ matrix.configuration }}
      uses: actions/upload-artifact@v3
      with:
        name: win-${{ matrix.configuration }}
        path: release/win-${{ matrix.configuration }}
        retention-days: 5

    


================================================
FILE: .github/workflows/release.yml
================================================
name: Release
on:
  push:
    # Sequence of patterns matched against refs/tags
    tags:
      - "v*"

jobs:

  build:

    strategy:
      matrix:
          include:
          - configuration: x64
            xray: Xray-windows-64.zip
          - configuration: x86
            xray: Xray-windows-32.zip
      

    runs-on: windows-latest  # For a list of available runner types, refer to
                             # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on

    steps:
    - name: Checkout
      uses: actions/checkout@v3
      with:
        fetch-depth: 0
    - name: Download xray
      run: |
        curl -L -o ${{ matrix.xray }} https://github.com/hiddify/Hiddify-Xray-core/releases/latest/download/${{ matrix.xray }}
        dir
      
    

    # Install the .NET Core workload
    - name: Install .NET Core
      uses: actions/setup-dotnet@v3
      with:
        dotnet-version: 6.0.x
    - name: Restore
      run: | 
        dotnet restore
      working-directory: v2rayN
        
    
    - name: Build
      working-directory: v2rayN
      run: |
        dotnet build --configuration Release --no-restore
        
    - name: Publish win ${{ matrix.configuration }}
      working-directory: v2rayN
      run: |
        dotnet publish v2rayN\v2rayN.csproj --property WarningLevel=0 -c Release -o ../release/win-${{ matrix.configuration }} -r win-${{ matrix.configuration }} -p:PublishSingleFile=true --self-contained false /p:UseAppHost=true /p:PublishReadyToRun=true /p:PublishSingleFileExecutable=HiddifyN.exe
#        dotnet publish --property WarningLevel=0 -c Release -o ../release/win-x64 -r win-x64 -p:PublishSingleFile=true --self-contained false /p:UseAppHost=true /p:PublishReadyToRun=true          
    - name: add xray
      run: |
        mkdir release\win-${{ matrix.configuration }}\bin\Xray
        dir
        7z x "${{ matrix.xray }}" -i!"*.exe"
        move *xray.exe  release\win-${{ matrix.configuration }}\bin\Xray\
        
    # Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact
    - name: Upload build win-${{ matrix.configuration }}
      uses: actions/upload-artifact@v3
      with:
        name: win-${{ matrix.configuration }}
        path: release/win-${{ matrix.configuration }}
        retention-days: 5
  publish:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - name: Load Release URL File from release job
      uses: actions/download-artifact@v1
      with:
        name: win-x64.zip
    - name: Load Release URL File from release job
      uses: actions/download-artifact@v1
      with:
        name: win-x86.zip
    - name: Upload Release
      uses: softprops/action-gh-release@v1
      with:
          # tag: ${{ github.ref_name }}
          tag_name: ${{ github.ref }}
          release_name: ${{ github.ref }}
          files: "*.zip"
          prerelease: false
          generate_release_notes: true    


================================================
FILE: .gitignore
================================================
################################################################################
# 此 .gitignore 文件已由 Microsoft(R) Visual Studio 自动创建。
################################################################################

/vs
/v2rayN/.vs/
/v2rayN/v2rayN/bin/Debug/app.publish
/v2rayN/v2rayN/bin/Debug
/v2rayN/v2rayN/bin/Release
/v2rayN/v2rayN/obj/
/v2rayN/.vs/v2rayN/DesignTimeBuild
/v2rayN/packages
.vs/ProjectSettings.json
.vs/slnx.sqlite
.vs/VSWorkspaceState.json
/v2rayN/v2rayUpgrade/bin/Debug
/v2rayN/v2rayUpgrade/bin/Release
/v2rayN/v2rayUpgrade/obj/
*.user
/v2rayN/v2rayN/Properties/*
/v2rayN/v2rayN/Properties/
/.vs/v2rayN

================================================
FILE: LICENSE
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

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

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey 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;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If 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 convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public 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.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  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
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
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.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright (C) <year>  <name of author>
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.


================================================
FILE: README.md
================================================
# HiddifyN
A GUI client for Windows, support [Xray core](https://github.com/XTLS/Xray-core) and [v2fly core](https://github.com/v2fly/v2ray-core) and [others](https://github.com/2dust/v2rayN/wiki/List-of-supported-cores)
![image](https://user-images.githubusercontent.com/114227601/236046684-35a41cbc-9b4f-4dbf-8592-ef0436fbb5b0.png)


[![GitHub commit activity](https://img.shields.io/github/commit-activity/m/2dust/v2rayN)](https://github.com/2dust/v2rayN/commits/master)
[![CodeFactor](https://www.codefactor.io/repository/github/2dust/v2rayn/badge)](https://www.codefactor.io/repository/github/2dust/v2rayn)
[![GitHub Releases](https://img.shields.io/github/downloads/2dust/v2rayN/latest/total?logo=github)](https://github.com/2dust/v2rayN/releases)
[![Chat on Telegram](https://img.shields.io/badge/Chat%20on-Telegram-brightgreen.svg)](https://t.me/v2rayn)

### How to use
- If you are new to this, please download v2rayN-Core.zip from [releases](https://github.com/2dust/v2rayN/releases)
- Otherwise please download v2rayN.zip (you will also need to download v2ray core into the same folder with HiddifyN.exe)
- Run HiddifyN.exe

## Requirements  
- [Microsoft .NET 6.0 Desktop Runtime ](https://download.visualstudio.microsoft.com/download/pr/513d13b7-b456-45af-828b-b7b7981ff462/edf44a743b78f8b54a2cec97ce888346/windowsdesktop-runtime-6.0.15-win-x64.exe)
- [Supported cores](https://github.com/2dust/v2rayN/wiki/List-of-supported-cores)

### Telegram
- Channel: [Hiddify](https://t.me/hiddify)
- Group: [Hiddify Discussion](https://t.me/hiddify_board)


================================================
FILE: v2rayN/.gitattributes
================================================
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto

###############################################################################
# Set default behavior for command prompt diff.
#
# This is need for earlier builds of msysgit that does not have it on by
# default for csharp files.
# Note: This is only used by command line
###############################################################################
#*.cs     diff=csharp

###############################################################################
# Set the merge driver for project and solution files
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following 
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
###############################################################################
#*.sln       merge=binary
#*.csproj    merge=binary
#*.vbproj    merge=binary
#*.vcxproj   merge=binary
#*.vcproj    merge=binary
#*.dbproj    merge=binary
#*.fsproj    merge=binary
#*.lsproj    merge=binary
#*.wixproj   merge=binary
#*.modelproj merge=binary
#*.sqlproj   merge=binary
#*.wwaproj   merge=binary

###############################################################################
# behavior for image files
#
# image files are treated as binary by default.
###############################################################################
#*.jpg   binary
#*.png   binary
#*.gif   binary

###############################################################################
# diff behavior for common document formats
# 
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the 
# entries below.
###############################################################################
#*.doc   diff=astextplain
#*.DOC   diff=astextplain
#*.docx  diff=astextplain
#*.DOCX  diff=astextplain
#*.dot   diff=astextplain
#*.DOT   diff=astextplain
#*.pdf   diff=astextplain
#*.PDF   diff=astextplain
#*.rtf   diff=astextplain
#*.RTF   diff=astextplain


================================================
FILE: v2rayN/.gitignore
================================================
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore

# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
*.sln.docstates

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

# Mono auto generated files
mono_crash.*

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Ww][Ii][Nn]32/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Oo]ut/
[Ll]og/
[Ll]ogs/

# Visual Studio 2015/2017 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/

# Visual Studio 2017 auto generated files
Generated\ Files/

# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

# NUnit
*.VisualState.xml
TestResult.xml
nunit-*.xml

# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c

# Benchmark Results
BenchmarkDotNet.Artifacts/

# .NET Core
project.lock.json
project.fragment.lock.json
artifacts/

# ASP.NET Scaffolding
ScaffoldingReadMe.txt

# StyleCop
StyleCopReport.xml

# Files built by Visual Studio
*_i.c
*_p.c
*_h.h
*.ilk
*.meta
*.obj
*.iobj
*.pch
*.pdb
*.ipdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*_wpftmp.csproj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc

# Chutzpah Test files
_Chutzpah*

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb

# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap

# Visual Studio Trace Files
*.e2e

# TFS 2012 Local Workspace
$tf/

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# AxoCover is a Code Coverage Tool
.axoCover/*
!.axoCover/settings.json

# Coverlet is a free, cross platform Code Coverage Tool
coverage*.json
coverage*.xml
coverage*.info

# Visual Studio code coverage results
*.coverage
*.coveragexml

# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*

# MightyMoose
*.mm.*
AutoTest.Net/

# Web workbench (sass)
.sass-cache/

# Installshield output folder
[Ee]xpress/

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish/

# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# Note: Comment the next line if you want to checkin your web deploy settings,
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj

# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/

# NuGet Packages
*.nupkg
# NuGet Symbol Packages
*.snupkg
# The packages folder can be ignored because of Package Restore
**/[Pp]ackages/*
# except build/, which is used as an MSBuild target.
!**/[Pp]ackages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/[Pp]ackages/repositories.config
# NuGet v3's project.json files produces more ignorable files
*.nuget.props
*.nuget.targets

# Microsoft Azure Build Output
csx/
*.build.csdef

# Microsoft Azure Emulator
ecf/
rcf/

# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt
*.appx
*.appxbundle
*.appxupload

# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!?*.[Cc]ache/

# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.jfm
*.pfx
*.publishsettings
orleans.codegen.cs

# Including strong name files can present a security risk
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
#*.snk

# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/

# RIA/Silverlight projects
Generated_Code/

# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
ServiceFabricBackup/
*.rptproj.bak

# SQL Server files
*.mdf
*.ldf
*.ndf

# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings
*.rptproj.rsuser
*- [Bb]ackup.rdl
*- [Bb]ackup ([0-9]).rdl
*- [Bb]ackup ([0-9][0-9]).rdl

# Microsoft Fakes
FakesAssemblies/

# GhostDoc plugin setting file
*.GhostDoc.xml

# Node.js Tools for Visual Studio
.ntvs_analysis.dat
node_modules/

# Visual Studio 6 build log
*.plg

# Visual Studio 6 workspace options file
*.opt

# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw

# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions

# Paket dependency manager
.paket/paket.exe
paket-files/

# FAKE - F# Make
.fake/

# CodeRush personal settings
.cr/personal

# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc

# Cake - Uncomment if you are using it
# tools/**
# !tools/packages.config

# Tabs Studio
*.tss

# Telerik's JustMock configuration file
*.jmconfig

# BizTalk build output
*.btp.cs
*.btm.cs
*.odx.cs
*.xsd.cs

# OpenCover UI analysis results
OpenCover/

# Azure Stream Analytics local run output
ASALocalRun/

# MSBuild Binary and Structured Log
*.binlog

# NVidia Nsight GPU debugger configuration file
*.nvuser

# MFractors (Xamarin productivity tool) working folder
.mfractor/

# Local History for Visual Studio
.localhistory/

# BeatPulse healthcheck temp database
healthchecksdb

# Backup folder for Package Reference Convert tool in Visual Studio 2017
MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/

# Fody - auto-generated XML schema
FodyWeavers.xsd

================================================
FILE: v2rayN/HiddifyRestartN/HiddifyRestartN.csproj
================================================
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
  </PropertyGroup>

</Project>


================================================
FILE: v2rayN/HiddifyRestartN/Program.cs
================================================
using System.Diagnostics;

// This program is jsut for restarting main program
try
{
    // Killing

    // Get running main program process id
    int mainProgramProcessID = int.Parse(Environment.GetCommandLineArgs()[1]);
    // Get process
    //var mainProcess = Process.GetProcessById(mainProgramProcessID);
    // Kill process
    //mainProcess.Kill();

    // Running

    // Main program exe path
    string mainProgramPath = Path.GetFullPath(Path.Combine(Environment.CurrentDirectory, "HiddifyN.exe"));
    // Command to run program
    string cmd = $"{mainProgramPath}";

    // Run again
    Process.Start(cmd);
}
catch (Exception err)
{
    Console.Error.WriteLine(err);
}

================================================
FILE: v2rayN/HiddifyRestartN/Properties/launchSettings.json
================================================
{
  "profiles": {
    "HiddifyRestartN": {
      "commandName": "Project",
      "commandLineArgs": "2342 --admin",
      "workingDirectory": "C:\\Users\\me\\Desktop\\HiddifyDesktopN\\v2rayN\\v2rayN\\bin\\Debug\\net6.0-windows"
    }
  }
}

================================================
FILE: v2rayN/HiddifyUpgradeN/HiddifyUpgradeN.csproj
================================================
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
	<TargetFramework>net6.0-windows</TargetFramework>
	<OutputType>WinExe</OutputType>
	<UseWindowsForms>true</UseWindowsForms>	    
	<Copyright>Copyright © 2019-2023 (GPLv3)</Copyright>
	<FileVersion>1.1.0.0</FileVersion>
	<ApplicationManifest>app.manifest</ApplicationManifest>
	<Nullable>enable</Nullable>
	<AssemblyName>HiddifyUpgradeN</AssemblyName>
  </PropertyGroup>
</Project>

================================================
FILE: v2rayN/HiddifyUpgradeN/MainForm.Designer.cs
================================================
namespace v2rayUpgrade
{
    partial class MainForm
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要修改
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.btnClose = new System.Windows.Forms.Button();
            this.btnOK = new System.Windows.Forms.Button();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // btnClose
            // 
            this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnClose.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnClose.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.btnClose.Location = new System.Drawing.Point(367, 118);
            this.btnClose.Name = "btnClose";
            this.btnClose.Size = new System.Drawing.Size(184, 89);
            this.btnClose.TabIndex = 1;
            this.btnClose.Text = "&Exit(退出)";
            this.btnClose.UseVisualStyleBackColor = true;
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // btnOK
            // 
            this.btnOK.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnOK.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.btnOK.Location = new System.Drawing.Point(81, 118);
            this.btnOK.Name = "btnOK";
            this.btnOK.Size = new System.Drawing.Size(184, 89);
            this.btnOK.TabIndex = 0;
            this.btnOK.Text = "&Upgrade(升级)";
            this.btnOK.UseVisualStyleBackColor = true;
            this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label1.Location = new System.Drawing.Point(79, 64);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(205, 15);
            this.label1.TabIndex = 8;
            this.label1.Text = "升级成功后将自动重启v2rayN";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label2.Location = new System.Drawing.Point(79, 37);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(471, 15);
            this.label2.TabIndex = 9;
            this.label2.Text = "v2rayN will restart automatically after successful upgrade";
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(616, 284);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.btnClose);
            this.Controls.Add(this.btnOK);
            this.Name = "MainForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "v2rayUpgrade";
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Button btnClose;
        private System.Windows.Forms.Button btnOK;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Label label2;
    }
}



================================================
FILE: v2rayN/HiddifyUpgradeN/MainForm.cs
================================================
using System;
using System.Diagnostics;
using System.IO;
using System.IO.Compression;
using System.Text;
using System.Web;
using System.Windows.Forms;

namespace v2rayUpgrade
{
    public partial class MainForm : Form
    {
        private readonly string defaultFilename = "v2ray-windows.zip";
        private string? fileName;

        public MainForm(string[] args)
        {
            InitializeComponent();
            if (args.Length > 0)
            {
                fileName = HttpUtility.UrlDecode(string.Join(" ", args));
            }
            else
            {
                fileName = defaultFilename;
            }
        }

        private void ShowWarn(string message)
        {
            MessageBox.Show(message, "", MessageBoxButtons.OK, MessageBoxIcon.Warning);
        }

        private void btnOK_Click(object sender, EventArgs e)
        {
            try
            {
                Process[] existing = Process.GetProcessesByName("HiddifyN");
                foreach (Process p in existing)
                {
                    string? path = p.MainModule?.FileName;
                    if (path == GetPath("HiddifyN.exe"))
                    {
                        p.Kill();
                        p.WaitForExit(100);
                    }
                }
            }
            catch (Exception ex)
            {
                // Access may be denied without admin right. The user may not be an administrator.
                ShowWarn("Failed to close v2rayN(关闭v2rayN失败).\n" +
                    "Close it manually, or the upgrade may fail.(请手动关闭正在运行的v2rayN,否则可能升级失败。\n\n" + ex.StackTrace);
            }

            if (!File.Exists(fileName))
            {
                if (File.Exists(defaultFilename))
                {
                    fileName = defaultFilename;
                }
                else
                {
                    ShowWarn("Upgrade Failed, File Not Exist(升级失败,文件不存在).");
                    return;
                }
            }

            StringBuilder sb = new();
            try
            {
                string thisAppOldFile = $"{Application.ExecutablePath}.tmp";
                File.Delete(thisAppOldFile);
                string startKey = "v2rayN/";

                using ZipArchive archive = ZipFile.OpenRead(fileName);
                foreach (ZipArchiveEntry entry in archive.Entries)
                {
                    try
                    {
                        if (entry.Length == 0)
                        {
                            continue;
                        }
                        string fullName = entry.FullName;
                        if (fullName.StartsWith(startKey))
                        {
                            fullName = fullName[startKey.Length..];
                        }
                        if (string.Equals(Application.ExecutablePath, GetPath(fullName), StringComparison.OrdinalIgnoreCase))
                        {
                            File.Move(Application.ExecutablePath, thisAppOldFile);
                        }

                        string entryOuputPath = GetPath(fullName);
                        Directory.CreateDirectory(Path.GetDirectoryName(entryOuputPath)!);
                        entry.ExtractToFile(entryOuputPath, true);
                    }
                    catch (Exception ex)
                    {
                        sb.Append(ex.StackTrace);
                    }
                }
            }
            catch (Exception ex)
            {
                ShowWarn("Upgrade Failed(升级失败)." + ex.StackTrace);
                return;
            }
            if (sb.Length > 0)
            {
                ShowWarn("Upgrade Failed,Hold ctrl + c to copy to clipboard.\n" +
                    "(升级失败,按住ctrl+c可以复制到剪贴板)." + sb.ToString());
                return;
            }

            Process.Start("HiddifyN.exe");
            MessageBox.Show("Upgrade successed(升级成功)", "", MessageBoxButtons.OK, MessageBoxIcon.Information);

            Close();
        }

        private void btnClose_Click(object sender, EventArgs e)
        {
            Close();
        }

        public static string GetExePath()
        {
            return Application.ExecutablePath;
        }

        public static string StartupPath()
        {
            return Application.StartupPath;
        }

        public static string GetPath(string fileName)
        {
            string startupPath = StartupPath();
            if (string.IsNullOrEmpty(fileName))
            {
                return startupPath;
            }
            return Path.Combine(startupPath, fileName);
        }
    }
}

================================================
FILE: v2rayN/HiddifyUpgradeN/MainForm.resx
================================================
<?xml version="1.0" encoding="utf-8"?>
<root>
  <!-- 
    Microsoft ResX Schema 
    
    Version 2.0
    
    The primary goals of this format is to allow a simple XML format 
    that is mostly human readable. The generation and parsing of the 
    various data types are done through the TypeConverter classes 
    associated with the data types.
    
    Example:
    
    ... ado.net/XML headers & schema ...
    <resheader name="resmimetype">text/microsoft-resx</resheader>
    <resheader name="version">2.0</resheader>
    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
        <value>[base64 mime encoded serialized .NET Framework object]</value>
    </data>
    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
        <comment>This is a comment</comment>
    </data>
                
    There are any number of "resheader" rows that contain simple 
    name/value pairs.
    
    Each data row contains a name, and value. The row also contains a 
    type or mimetype. Type corresponds to a .NET class that support 
    text/value conversion through the TypeConverter architecture. 
    Classes that don't support this are serialized and stored with the 
    mimetype set.
    
    The mimetype is used for serialized objects, and tells the 
    ResXResourceReader how to depersist the object. This is currently not 
    extensible. For a given mimetype the value must be set accordingly:
    
    Note - application/x-microsoft.net.object.binary.base64 is the format 
    that the ResXResourceWriter will generate, however the reader can 
    read any of the formats listed below.
    
    mimetype: application/x-microsoft.net.object.binary.base64
    value   : The object must be serialized with 
            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
            : and then encoded with base64 encoding.
    
    mimetype: application/x-microsoft.net.object.soap.base64
    value   : The object must be serialized with 
            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
            : and then encoded with base64 encoding.

    mimetype: application/x-microsoft.net.object.bytearray.base64
    value   : The object must be serialized into a byte array 
            : using a System.ComponentModel.TypeConverter
            : and then encoded with base64 encoding.
    -->
  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
    <xsd:element name="root" msdata:IsDataSet="true">
      <xsd:complexType>
        <xsd:choice maxOccurs="unbounded">
          <xsd:element name="metadata">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" />
              </xsd:sequence>
              <xsd:attribute name="name" use="required" type="xsd:string" />
              <xsd:attribute name="type" type="xsd:string" />
              <xsd:attribute name="mimetype" type="xsd:string" />
              <xsd:attribute ref="xml:space" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="assembly">
            <xsd:complexType>
              <xsd:attribute name="alias" type="xsd:string" />
              <xsd:attribute name="name" type="xsd:string" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="data">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
              </xsd:sequence>
              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
              <xsd:attribute ref="xml:space" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="resheader">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
              </xsd:sequence>
              <xsd:attribute name="name" type="xsd:string" use="required" />
            </xsd:complexType>
          </xsd:element>
        </xsd:choice>
      </xsd:complexType>
    </xsd:element>
  </xsd:schema>
  <resheader name="resmimetype">
    <value>text/microsoft-resx</value>
  </resheader>
  <resheader name="version">
    <value>2.0</value>
  </resheader>
  <resheader name="reader">
    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  </resheader>
  <resheader name="writer">
    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  </resheader>
</root>

================================================
FILE: v2rayN/HiddifyUpgradeN/Program.cs
================================================
using System;
using System.Windows.Forms;

namespace v2rayUpgrade
{
    internal static class Program
    {
        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        [STAThread]
        private static void Main(string[] args)
        {
            Application.EnableVisualStyles();
            Application.SetHighDpiMode(HighDpiMode.SystemAware);
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new MainForm(args));
        }
    }
}

================================================
FILE: v2rayN/HiddifyUpgradeN/Properties/Resources.Designer.cs
================================================
//------------------------------------------------------------------------------
// <auto-generated>
//     此代码由工具生成。
//     运行时版本:4.0.30319.42000
//
//     对此文件的更改可能会导致不正确的行为,并且如果
//     重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------

namespace v2rayUpgrade.Properties {
    using System;
    
    
    /// <summary>
    ///   一个强类型的资源类,用于查找本地化的字符串等。
    /// </summary>
    // 此类是由 StronglyTypedResourceBuilder
    // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
    // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
    // (以 /str 作为命令选项),或重新生成 VS 项目。
    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
    internal class Resources {
        
        private static global::System.Resources.ResourceManager resourceMan;
        
        private static global::System.Globalization.CultureInfo resourceCulture;
        
        [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
        internal Resources() {
        }
        
        /// <summary>
        ///   返回此类使用的缓存的 ResourceManager 实例。
        /// </summary>
        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
        internal static global::System.Resources.ResourceManager ResourceManager {
            get {
                if (object.ReferenceEquals(resourceMan, null)) {
                    global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("v2rayUpgrade.Properties.Resources", typeof(Resources).Assembly);
                    resourceMan = temp;
                }
                return resourceMan;
            }
        }
        
        /// <summary>
        ///   重写当前线程的 CurrentUICulture 属性
        ///   重写当前线程的 CurrentUICulture 属性。
        /// </summary>
        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
        internal static global::System.Globalization.CultureInfo Culture {
            get {
                return resourceCulture;
            }
            set {
                resourceCulture = value;
            }
        }
    }
}


================================================
FILE: v2rayN/HiddifyUpgradeN/Properties/Resources.resx
================================================
<?xml version="1.0" encoding="utf-8"?>
<root>
  <!-- 
    Microsoft ResX Schema 
    
    Version 2.0
    
    The primary goals of this format is to allow a simple XML format 
    that is mostly human readable. The generation and parsing of the 
    various data types are done through the TypeConverter classes 
    associated with the data types.
    
    Example:
    
    ... ado.net/XML headers & schema ...
    <resheader name="resmimetype">text/microsoft-resx</resheader>
    <resheader name="version">2.0</resheader>
    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
        <value>[base64 mime encoded serialized .NET Framework object]</value>
    </data>
    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
        <comment>This is a comment</comment>
    </data>
                
    There are any number of "resheader" rows that contain simple 
    name/value pairs.
    
    Each data row contains a name, and value. The row also contains a 
    type or mimetype. Type corresponds to a .NET class that support 
    text/value conversion through the TypeConverter architecture. 
    Classes that don't support this are serialized and stored with the 
    mimetype set.
    
    The mimetype is used for serialized objects, and tells the 
    ResXResourceReader how to depersist the object. This is currently not 
    extensible. For a given mimetype the value must be set accordingly:
    
    Note - application/x-microsoft.net.object.binary.base64 is the format 
    that the ResXResourceWriter will generate, however the reader can 
    read any of the formats listed below.
    
    mimetype: application/x-microsoft.net.object.binary.base64
    value   : The object must be serialized with 
            : System.Serialization.Formatters.Binary.BinaryFormatter
            : and then encoded with base64 encoding.
    
    mimetype: application/x-microsoft.net.object.soap.base64
    value   : The object must be serialized with 
            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
            : and then encoded with base64 encoding.

    mimetype: application/x-microsoft.net.object.bytearray.base64
    value   : The object must be serialized into a byte array 
            : using a System.ComponentModel.TypeConverter
            : and then encoded with base64 encoding.
    -->
  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
    <xsd:element name="root" msdata:IsDataSet="true">
      <xsd:complexType>
        <xsd:choice maxOccurs="unbounded">
          <xsd:element name="metadata">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" />
              </xsd:sequence>
              <xsd:attribute name="name" type="xsd:string" />
              <xsd:attribute name="type" type="xsd:string" />
              <xsd:attribute name="mimetype" type="xsd:string" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="assembly">
            <xsd:complexType>
              <xsd:attribute name="alias" type="xsd:string" />
              <xsd:attribute name="name" type="xsd:string" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="data">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
              </xsd:sequence>
              <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="resheader">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
              </xsd:sequence>
              <xsd:attribute name="name" type="xsd:string" use="required" />
            </xsd:complexType>
          </xsd:element>
        </xsd:choice>
      </xsd:complexType>
    </xsd:element>
  </xsd:schema>
  <resheader name="resmimetype">
    <value>text/microsoft-resx</value>
  </resheader>
  <resheader name="version">
    <value>2.0</value>
  </resheader>
  <resheader name="reader">
    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  </resheader>
  <resheader name="writer">
    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  </resheader>
</root>

================================================
FILE: v2rayN/HiddifyUpgradeN/Properties/Settings.Designer.cs
================================================
//------------------------------------------------------------------------------
// <auto-generated>
//     此代码由工具生成。
//     运行时版本:4.0.30319.42000
//
//     对此文件的更改可能会导致不正确的行为,并且如果
//     重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------

namespace v2rayUpgrade.Properties {
    
    
    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.3.0.0")]
    internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
        
        private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
        
        public static Settings Default {
            get {
                return defaultInstance;
            }
        }
    }
}


================================================
FILE: v2rayN/HiddifyUpgradeN/Properties/Settings.settings
================================================
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
  <Profiles>
    <Profile Name="(Default)" />
  </Profiles>
  <Settings />
</SettingsFile>


================================================
FILE: v2rayN/HiddifyUpgradeN/app.manifest
================================================
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
  <asmv3:application>
    <asmv3:windowsSettings>
      <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
      <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness>
    </asmv3:windowsSettings>
  </asmv3:application>
</assembly>

================================================
FILE: v2rayN/PacLib/PacHandler.cs
================================================
using System;
using System.IO;
using System.Net.Sockets;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace PacLib;

public class PacHandler
{
    private static string _configPath;
    private static int _httpPort;
    private static int _pacPort;
    private static TcpListener? _tcpListener;
    private static string _pacText;
    private static bool _isRunning;
    private static bool _needRestart = true;

    public static void Start(string configPath, int httpPort, int pacPort)
    {
        _needRestart = (configPath != _configPath || httpPort != _httpPort || pacPort != _pacPort || !_isRunning);

        _configPath = configPath;
        _httpPort = httpPort;
        _pacPort = pacPort;

        InitText();

        if (_needRestart)
        {
            Stop();
            RunListener();
        }
    }

    private static void InitText()
    {
        var path = Path.Combine(_configPath, "pac.txt");
        if (!File.Exists(path))
        {
            File.AppendAllText(path, Resources.ResourceManager.GetString("pac"));
        }

        _pacText = File.ReadAllText(path).Replace("__PROXY__", $"PROXY 127.0.0.1:{_httpPort};DIRECT;");
    }

    private static void RunListener()
    {
        _tcpListener = TcpListener.Create(_pacPort);
        _isRunning = true;
        _tcpListener.Start();
        Task.Factory.StartNew(() =>
        {
            while (_isRunning)
            {
                try
                {
                    if (!_tcpListener.Pending())
                    {
                        Thread.Sleep(10);
                        continue;
                    }

                    var client = _tcpListener.AcceptTcpClient();
                    Task.Run(() =>
                    {
                        var stream = client.GetStream();
                        var sb = new StringBuilder();
                        sb.AppendLine("HTTP/1.0 200 OK");
                        sb.AppendLine("Content-type:application/x-ns-proxy-autoconfig");
                        sb.AppendLine("Connection:close");
                        sb.AppendLine("Content-Length:" + Encoding.UTF8.GetByteCount(_pacText));
                        sb.AppendLine();
                        sb.Append(_pacText);
                        var content = Encoding.UTF8.GetBytes(sb.ToString());
                        stream.Write(content, 0, content.Length);
                        stream.Flush();
                    });
                }
                catch (Exception e)
                {
                }
            }
        }, TaskCreationOptions.LongRunning);
    }

    public static void Stop()
    {
        if (_tcpListener != null)
        {
            try
            {
                _isRunning = false;
                _tcpListener.Stop();
                _tcpListener = null;
            }
            catch (Exception e)
            {
            }
        }
    }
}

================================================
FILE: v2rayN/PacLib/PacLib.csproj
================================================
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <TargetFramework>net6.0-windows</TargetFramework>
    <Nullable>enable</Nullable>
  </PropertyGroup>

  <ItemGroup>
    <Compile Update="Resources.Designer.cs">
      <DesignTime>True</DesignTime>
      <AutoGen>True</AutoGen>
      <DependentUpon>Resources.resx</DependentUpon>
    </Compile> 
    <EmbeddedResource Update="Resources.resx">
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
    </EmbeddedResource>
  </ItemGroup>

</Project>


================================================
FILE: v2rayN/PacLib/Resources/pac.txt
================================================
var proxy = '__PROXY__';
var rules = [
    [
        [],
        []
    ],
    [
        [
            "aftygh.gov.tw",
            "aide.gov.tw",
            "aliyun.com",
            "arte.gov.tw",
            "baidu.com",
            "chinaso.com",
            "chinaz.com",
            "chukuang.gov.tw",
            "cycab.gov.tw",
            "dbnsa.gov.tw",
            "df.gov.tw",
            "eastcoast-nsa.gov.tw",
            "erv-nsa.gov.tw",
            "grb.gov.tw",
            "haosou.com",
            "haygo.com",
            "hchcc.gov.tw",
            "hsinchu-cc.gov.tw",
            "iner.gov.tw",
            "ip.cn",
            "jike.com",
            "jpush.cn",
            "klsio.gov.tw",
            "kmseh.gov.tw",
            "locql.com",
            "lungtanhr.gov.tw",
            "maolin-nsa.gov.tw",
            "matsu-news.gov.tw",
            "matsu-nsa.gov.tw",
            "matsucc.gov.tw",
            "moe.gov.tw",
            "nankan.gov.tw",
            "ncree.gov.tw",
            "necoast-nsa.gov.tw",
            "ner.gov.tw",
            "nmmba.gov.tw",
            "nmp.gov.tw",
            "nmvttc.gov.tw",
            "northguan-nsa.gov.tw",
            "npm.gov.tw",
            "nstm.gov.tw",
            "ntdmh.gov.tw",
            "ntl.gov.tw",
            "ntsec.gov.tw",
            "ntuh.gov.tw",
            "nvri.gov.tw",
            "nyc.gov.tw",
            "penghu-nsa.gov.tw",
            "post.gov.tw",
            "qq.com",
            "simplecd.me",
            "sina.cn",
            "sina.com.cn",
            "siraya-nsa.gov.tw",
            "sl-reverse.com",
            "so.com",
            "sogou.com",
            "soso.com",
            "stdtime.gov.tw",
            "sunmoonlake.gov.tw",
            "syniumsoftware.com",
            "taitung-house.gov.tw",
            "taoyuan.gov.tw",
            "tphcc.gov.tw",
            "trimt-nsa.gov.tw",
            "uluai.com.cn",
            "vghks.gov.tw",
            "vghtc.gov.tw",
            "vghtpe.gov.tw",
            "wallproxy.com.cn",
            "wanfang.gov.tw",
            "weibo.com",
            "yahoo.cn",
            "yatsen.gov.tw",
            "yda.gov.tw",
            "youdao.com",
            "zhongsou.com"
        ],
        [
            "000webhost.com",
            "030buy.com",
            "0rz.tw",
            "1-apple.com.tw",
            "10.tt",
            "1000giri.net",
            "100ke.org",
            "10beasts.net",
            "10conditionsoflove.com",
            "10musume.com",
            "123rf.com",
            "12bet.com",
            "12vpn.com",
            "12vpn.net",
            "1337x.to",
            "138.com",
            "141hongkong.com",
            "141jj.com",
            "141tube.com",
            "1688.com.au",
            "173ng.com",
            "177pic.info",
            "17t17p.com",
            "18board.com",
            "18board.info",
            "18onlygirls.com",
            "18p2p.com",
            "18virginsex.com",
            "1949er.org",
            "1984.city",
            "1984bbs.com",
            "1984bbs.org",
            "1991way.com",
            "1998cdp.org",
            "1bao.org",
            "1dumb.com",
            "1e100.net",
            "1eew.com",
            "1mobile.com",
            "1mobile.tw",
            "1pondo.tv",
            "2-hand.info",
            "2000fun.com",
            "2008xianzhang.info",
            "2017.hk",
            "2021hkcharter.com",
            "2047.name",
            "21andy.com",
            "21join.com",
            "21pron.com",
            "21sextury.com",
            "228.net.tw",
            "233abc.com",
            "24hrs.ca",
            "24smile.org",
            "25u.com",
            "2lipstube.com",
            "2shared.com",
            "2waky.com",
            "3-a.net",
            "30boxes.com",
            "315lz.com",
            "32red.com",
            "36rain.com",
            "3a5a.com",
            "3arabtv.com",
            "3boys2girls.com",
            "3d-game.com",
            "3proxy.ru",
            "3ren.ca",
            "3tui.net",
            "404museum.com",
            "43110.cf",
            "466453.com",
            "4bluestones.biz",
            "4chan.com",
            "4dq.com",
            "4everproxy.com",
            "4irc.com",
            "4mydomain.com",
            "4pu.com",
            "4rbtv.com",
            "4shared.com",
            "4sqi.net",
            "50webs.com",
            "51.ca",
            "51jav.org",
            "51luoben.com",
            "5278.cc",
            "5299.tv",
            "5aimiku.com",
            "5i01.com",
            "5isotoi5.org",
            "5maodang.com",
            "63i.com",
            "64museum.org",
            "64tianwang.com",
            "64wiki.com",
            "66.ca",
            "666kb.com",
            "6do.news",
            "6park.com",
            "6parkbbs.com",
            "6parker.com",
            "6parknews.com",
            "7-zip.org",
            "7capture.com",
            "7cow.com",
            "8-d.com",
            "85cc.net",
            "85cc.us",
            "85st.com",
            "881903.com",
            "888.com",
            "888poker.com",
            "89-64.org",
            "8964museum.com",
            "8news.com.tw",
            "8z1.net",
            "9001700.com",
            "908taiwan.org",
            "91porn.com",
            "91vps.club",
            "92ccav.com",
            "991.com",
            "99btgc01.com",
            "99cn.info",
            "9bis.com",
            "9bis.net",
            "9cache.com",
            "9gag.com",
            "9news.com.au",
            "a-normal-day.com",
            "aamacau.com",
            "abc.com",
            "abc.net.au",
            "abc.xyz",
            "abchinese.com",
            "abclite.net",
            "abebooks.com",
            "ablwang.com",
            "aboluowang.com",
            "about.google",
            "aboutgfw.com",
            "abs.edu",
            "acast.com",
            "accim.org",
            "accountkit.com",
            "aceros-de-hispania.com",
            "acevpn.com",
            "acg18.me",
            "acgbox.org",
            "acgkj.com",
            "acgnx.se",
            "acmedia365.com",
            "acmetoy.com",
            "acnw.com.au",
            "actfortibet.org",
            "actimes.com.au",
            "activpn.com",
            "aculo.us",
            "adcex.com",
            "addictedtocoffee.de",
            "addyoutube.com",
            "adelaidebbs.com",
            "admob.com",
            "adpl.org.hk",
            "ads-twitter.com",
            "adsense.com",
            "adult-sex-games.com",
            "adultfriendfinder.com",
            "adultkeep.net",
            "advanscene.com",
            "advertfan.com",
            "advertisercommunity.com",
            "ae.org",
            "aenhancers.com",
            "aex.com",
            "af.mil",
            "afantibbs.com",
            "afr.com",
            "afreecatv.com",
            "agnesb.fr",
            "agoogleaday.com",
            "agro.hk",
            "ai-kan.net",
            "ai-wen.net",
            "ai.google",
            "aiph.net",
            "airasia.com",
            "airconsole.com",
            "aircrack-ng.org",
            "airvpn.org",
            "aisex.com",
            "ait.org.tw",
            "aiweiwei.com",
            "aiweiweiblog.com",
            "ajsands.com",
            "akademiye.org",
            "akamai.net",
            "akamaihd.net",
            "akamaistream.net",
            "akamaized.net",
            "akiba-online.com",
            "akiba-web.com",
            "akow.org",
            "al-islam.com",
            "al-qimmah.net",
            "alabout.com",
            "alanhou.com",
            "alarab.qa",
            "alasbarricadas.org",
            "alexlur.org",
            "alforattv.net",
            "alhayat.com",
            "alicejapan.co.jp",
            "aliengu.com",
            "alive.bar",
            "alkasir.com",
            "all4mom.org",
            "allcoin.com",
            "allconnected.co",
            "alldrawnsex.com",
            "allervpn.com",
            "allfinegirls.com",
            "allgirlmassage.com",
            "allgirlsallowed.org",
            "allgravure.com",
            "alliance.org.hk",
            "allinfa.com",
            "alljackpotscasino.com",
            "allmovie.com",
            "allowed.org",
            "almasdarnews.com",
            "almostmy.com",
            "alphaporno.com",
            "alternate-tools.com",
            "alternativeto.net",
            "altrec.com",
            "alvinalexander.com",
            "alwaysdata.com",
            "alwaysdata.net",
            "alwaysvpn.com",
            "am730.com.hk",
            "amazon.co.jp",
            "amazon.com",
            "amazonaws.com",
            "ameblo.jp",
            "america.gov",
            "american.edu",
            "americangreencard.com",
            "americanunfinished.com",
            "americorps.gov",
            "amiblockedornot.com",
            "amigobbs.net",
            "amitabhafoundation.us",
            "amnesty.org",
            "amnesty.org.hk",
            "amnesty.tw",
            "amnestyusa.org",
            "amnyemachen.org",
            "amoiist.com",
            "ampproject.org",
            "amtb-taipei.org",
            "anchor.fm",
            "anchorfree.com",
            "ancsconf.org",
            "andfaraway.net",
            "android-x86.org",
            "android.com",
            "androidify.com",
            "androidplus.co",
            "androidtv.com",
            "andygod.com",
            "angela-merkel.de",
            "angelfire.com",
            "angola.org",
            "angularjs.org",
            "animecrazy.net",
            "aniscartujo.com",
            "annatam.com",
            "anobii.com",
            "anontext.com",
            "anonymitynetwork.com",
            "anonymizer.com",
            "anonymouse.org",
            "anpopo.com",
            "answering-islam.org",
            "antd.org",
            "anthonycalzadilla.com",
            "anti1984.com",
            "antichristendom.com",
            "antiwave.net",
            "anws.gov.tw",
            "anyporn.com",
            "anysex.com",
            "ao3.org",
            "aobo.com.au",
            "aofriend.com",
            "aofriend.com.au",
            "aojiao.org",
            "aol.ca",
            "aol.co.uk",
            "aol.com",
            "aolnews.com",
            "aomiwang.com",
            "ap.org",
            "apartmentratings.com",
            "apartments.com",
            "apat1989.org",
            "apetube.com",
            "api.ai",
            "apiary.io",
            "apigee.com",
            "apk-dl.com",
            "apk.support",
            "apkcombo.com",
            "apkmirror.com",
            "apkmonk.com",
            "apkplz.com",
            "apkpure.com",
            "aplusvpn.com",
            "appbrain.com",
            "appdownloader.net",
            "appledaily.com",
            "appledaily.com.hk",
            "appledaily.com.tw",
            "appshopper.com",
            "appsocks.net",
            "appspot.com",
            "appsto.re",
            "aptoide.com",
            "archive.fo",
            "archive.is",
            "archive.li",
            "archive.org",
            "archive.ph",
            "archive.today",
            "archiveofourown.com",
            "archiveofourown.org",
            "archives.gov",
            "archives.gov.tw",
            "arctosia.com",
            "areca-backup.org",
            "arena.taipei",
            "arethusa.su",
            "arlingtoncemetery.mil",
            "army.mil",
            "art4tibet1998.org",
            "arte.tv",
            "artofpeacefoundation.org",
            "artstation.com",
            "artsy.net",
            "asacp.org",
            "asdfg.jp",
            "asg.to",
            "asia-gaming.com",
            "asiaharvest.org",
            "asianage.com",
            "asianews.it",
            "asianfreeforum.com",
            "asiansexdiary.com",
            "asianspiss.com",
            "asianwomensfilm.de",
            "asiaone.com",
            "asiatgp.com",
            "asiatoday.us",
            "askstudent.com",
            "askynz.net",
            "aspi.org.au",
            "aspistrategist.org.au",
            "assembla.com",
            "assimp.org",
            "astrill.com",
            "atc.org.au",
            "atchinese.com",
            "atdmt.com",
            "atgfw.org",
            "athenaeizou.com",
            "atlanta168.com",
            "atlaspost.com",
            "atnext.com",
            "audionow.com",
            "authorizeddns.net",
            "authorizeddns.org",
            "authorizeddns.us",
            "autodraw.com",
            "av-e-body.com",
            "av.com",
            "av.movie",
            "avaaz.org",
            "avbody.tv",
            "avcity.tv",
            "avcool.com",
            "avdb.in",
            "avdb.tv",
            "avfantasy.com",
            "avg.com",
            "avgle.com",
            "avidemux.org",
            "avmo.pw",
            "avmoo.com",
            "avmoo.net",
            "avmoo.pw",
            "avoision.com",
            "avyahoo.com",
            "axios.com",
            "axureformac.com",
            "azerbaycan.tv",
            "azerimix.com",
            "azubu.tv",
            "azurewebsites.net",
            "b-ok.cc",
            "b0ne.com",
            "baby-kingdom.com",
            "babylonbee.com",
            "babynet.com.hk",
            "backchina.com",
            "backpackers.com.tw",
            "backtotiananmen.com",
            "badiucao.com",
            "badjojo.com",
            "badoo.com",
            "baidu.jp",
            "baijie.org",
            "bailandaily.com",
            "baixing.me",
            "bakgeekhome.tk",
            "banana-vpn.com",
            "band.us",
            "bandcamp.com",
            "bandwagonhost.com",
            "bangbrosnetwork.com",
            "bangchen.net",
            "bangdream.space",
            "bangkokpost.com",
            "bangyoulater.com",
            "bankmobilevibe.com",
            "bannedbook.org",
            "bannednews.org",
            "banorte.com",
            "baramangaonline.com",
            "barenakedislam.com",
            "barnabu.co.uk",
            "barton.de",
            "bastillepost.com",
            "bayvoice.net",
            "baywords.com",
            "bb-chat.tv",
            "bbc.co.uk",
            "bbc.com",
            "bbc.in",
            "bbcchinese.com",
            "bbchat.tv",
            "bbci.co.uk",
            "bbg.gov",
            "bbkz.com",
            "bbnradio.org",
            "bbs-tw.com",
            "bbsdigest.com",
            "bbsfeed.com",
            "bbsland.com",
            "bbsmo.com",
            "bbsone.com",
            "bbtoystore.com",
            "bcast.co.nz",
            "bcc.com.tw",
            "bcchinese.net",
            "bcex.ca",
            "bcmorning.com",
            "bdsmvideos.net",
            "beaconevents.com",
            "bebo.com",
            "beeg.com",
            "beevpn.com",
            "behance.net",
            "behindkink.com",
            "beijing1989.com",
            "beijing2022.art",
            "beijingspring.com",
            "beijingzx.org",
            "belamionline.com",
            "bell.wiki",
            "bemywife.cc",
            "beric.me",
            "berlinerbericht.de",
            "berlintwitterwall.com",
            "berm.co.nz",
            "bestforchina.org",
            "bestgore.com",
            "bestpornstardb.com",
            "bestvpn.com",
            "bestvpnanalysis.com",
            "bestvpnserver.com",
            "bestvpnservice.com",
            "bestvpnusa.com",
            "bet365.com",
            "betfair.com",
            "betternet.co",
            "bettervpn.com",
            "bettween.com",
            "betvictor.com",
            "bewww.net",
            "beyondfirewall.com",
            "bfnn.org",
            "bfsh.hk",
            "bgvpn.com",
            "bianlei.com",
            "biantailajiao.com",
            "biantailajiao.in",
            "biblesforamerica.org",
            "bibox.com",
            "bic2011.org",
            "biedian.me",
            "big.one",
            "bigfools.com",
            "bigjapanesesex.com",
            "bigmoney.biz",
            "bignews.org",
            "bigone.com",
            "bigsound.org",
            "bild.de",
            "biliworld.com",
            "billypan.com",
            "binance.com",
            "bing.com",
            "binux.me",
            "binwang.me",
            "bird.so",
            "bit-z.com",
            "bit.do",
            "bit.ly",
            "bitbay.net",
            "bitchute.com",
            "bitcointalk.org",
            "bitcoinworld.com",
            "bitfinex.com",
            "bithumb.com",
            "bitinka.com.ar",
            "bitmex.com",
            "bitshare.com",
            "bitsnoop.com",
            "bitterwinter.org",
            "bitvise.com",
            "bitz.ai",
            "bizhat.com",
            "bjnewlife.org",
            "bjs.org",
            "bjzc.org",
            "bl-doujinsouko.com",
            "blacklogic.com",
            "blackvpn.com",
            "blewpass.com",
            "blingblingsquad.net",
            "blinkx.com",
            "blinw.com",
            "blip.tv",
            "blockcast.it",
            "blockcn.com",
            "blockedbyhk.com",
            "blockless.com",
            "blog.de",
            "blog.google",
            "blog.jp",
            "blogblog.com",
            "blogcatalog.com",
            "blogcity.me",
            "blogdns.org",
            "blogger.com",
            "blogimg.jp",
            "bloglines.com",
            "bloglovin.com",
            "blogs.com",
            "blogspot.com",
            "blogspot.hk",
            "blogspot.jp",
            "blogspot.tw",
            "blogtd.net",
            "blogtd.org",
            "bloodshed.net",
            "bloomberg.cn",
            "bloomberg.com",
            "bloomberg.de",
            "bloombergview.com",
            "bloomfortune.com",
            "blubrry.com",
            "blueangellive.com",
            "bmfinn.com",
            "bnews.co",
            "bnext.com.tw",
            "bnn.co",
            "bnrmetal.com",
            "boardreader.com",
            "bod.asia",
            "bodog88.com",
            "bolehvpn.net",
            "bonbonme.com",
            "bonbonsex.com",
            "bonfoundation.org",
            "bongacams.com",
            "boobstagram.com",
            "book.com.tw",
            "bookdepository.com",
            "bookepub.com",
            "books.com.tw",
            "booktopia.com.au",
            "boomssr.com",
            "borgenmagazine.com",
            "bot.nu",
            "botanwang.com",
            "bowenpress.com",
            "box.com",
            "box.net",
            "boxpn.com",
            "boxun.com",
            "boxun.tv",
            "boxunblog.com",
            "boxunclub.com",
            "boyangu.com",
            "boyfriendtv.com",
            "boysfood.com",
            "boysmaster.com",
            "br.st",
            "brainyquote.com",
            "brandonhutchinson.com",
            "braumeister.org",
            "brave.com",
            "bravotube.net",
            "brazzers.com",
            "breached.to",
            "break.com",
            "breakgfw.com",
            "breaking911.com",
            "breakingtweets.com",
            "breakwall.net",
            "briefdream.com",
            "briian.com",
            "brill.com",
            "brizzly.com",
            "brkmd.com",
            "broadbook.com",
            "broadpressinc.com",
            "brockbbs.com",
            "brookings.edu",
            "brucewang.net",
            "brutaltgp.com",
            "bt2mag.com",
            "bt95.com",
            "btaia.com",
            "btbtav.com",
            "btc98.com",
            "btcbank.bank",
            "btctrade.im",
            "btdigg.org",
            "btku.me",
            "btku.org",
            "btspread.com",
            "btsynckeys.com",
            "budaedu.org",
            "buddhanet.com.tw",
            "buddhistchannel.tv",
            "buffered.com",
            "bullguard.com",
            "bullog.org",
            "bullogger.com",
            "bunbunhk.com",
            "busayari.com",
            "business-humanrights.org",
            "business.page",
            "businessinsider.com",
            "businessinsider.com.au",
            "businesstoday.com.tw",
            "businessweek.com",
            "busu.org",
            "busytrade.com",
            "buugaa.com",
            "buzzhand.com",
            "buzzhand.net",
            "buzzorange.com",
            "bvpn.com",
            "bwbx.io",
            "bwgyhw.com",
            "bwh1.net",
            "bwsj.hk",
            "bx.in.th",
            "bx.tl",
            "bybit.com",
            "bynet.co.il",
            "bypasscensorship.org",
            "byrut.org",
            "c-est-simple.com",
            "c-span.org",
            "c-spanvideo.org",
            "c100tibet.org",
            "c2cx.com",
            "cablegatesearch.net",
            "cachinese.com",
            "cacnw.com",
            "cactusvpn.com",
            "cafepress.com",
            "cahr.org.tw",
            "caijinglengyan.com",
            "calameo.com",
            "calebelston.com",
            "calgarychinese.ca",
            "calgarychinese.com",
            "calgarychinese.net",
            "calibre-ebook.com",
            "caltech.edu",
            "cam4.com",
            "cam4.jp",
            "cam4.sg",
            "camfrog.com",
            "campaignforuyghurs.org",
            "cams.com",
            "cams.org.sg",
            "canadameet.com",
            "canalporno.com",
            "cantonese.asia",
            "canyu.org",
            "cao.im",
            "caobian.info",
            "caochangqing.com",
            "cap.org.hk",
            "carabinasypistolas.com",
            "cardinalkungfoundation.org",
            "careerengine.us",
            "carfax.com",
            "cari.com.my",
            "caribbeancom.com",
            "carmotorshow.com",
            "carrd.co",
            "carryzhou.com",
            "cartoonmovement.com",
            "casadeltibetbcn.org",
            "casatibet.org.mx",
            "casinobellini.com",
            "casinoking.com",
            "casinoriva.com",
            "castbox.fm",
            "catch22.net",
            "catchgod.com",
            "catfightpayperview.xxx",
            "catholic.org.hk",
            "catholic.org.tw",
            "cathvoice.org.tw",
            "cato.org",
            "cattt.com",
            "cbc.ca",
            "cbsnews.com",
            "cbtc.org.hk",
            "cc.com",
            "cccat.cc",
            "cccat.co",
            "ccdtr.org",
            "cchere.com",
            "ccim.org",
            "cclife.ca",
            "cclife.org",
            "cclifefl.org",
            "ccthere.com",
            "ccthere.net",
            "cctmweb.net",
            "cctongbao.com",
            "ccue.ca",
            "ccue.com",
            "ccvoice.ca",
            "ccw.org.tw",
            "cdbook.org",
            "cdcparty.com",
            "cdef.org",
            "cdig.info",
            "cdjp.org",
            "cdnews.com.tw",
            "cdninstagram.com",
            "cdp1989.org",
            "cdp1998.org",
            "cdp2006.org",
            "cdpeu.org",
            "cdpusa.org",
            "cdpweb.org",
            "cdpwu.org",
            "cdw.com",
            "cecc.gov",
            "cellulo.info",
            "cenews.eu",
            "centauro.com.br",
            "centerforhumanreprod.com",
            "centralnation.com",
            "centurys.net",
            "certificate-transparency.org",
            "cfhks.org.hk",
            "cfos.de",
            "cfr.org",
            "cftfc.com",
            "cgdepot.org",
            "cgst.edu",
            "change.org",
            "changeip.name",
            "changeip.net",
            "changeip.org",
            "changp.com",
            "changsa.net",
            "channelnewsasia.com",
            "chaoex.com",
            "chapm25.com",
            "chatnook.com",
            "chaturbate.com",
            "checkgfw.com",
            "chengmingmag.com",
            "chenguangcheng.com",
            "chenpokong.com",
            "chenpokong.net",
            "chenpokongvip.com",
            "cherrysave.com",
            "chhongbi.org",
            "chicagoncmtv.com",
            "china-mmm.net",
            "china-review.com.ua",
            "china-week.com",
            "china101.com",
            "china18.org",
            "china21.com",
            "china21.org",
            "china5000.us",
            "chinaaffairs.org",
            "chinaaid.me",
            "chinaaid.net",
            "chinaaid.org",
            "chinaaid.us",
            "chinachange.org",
            "chinachannel.hk",
            "chinacitynews.be",
            "chinacomments.org",
            "chinadialogue.net",
            "chinadigitaltimes.net",
            "chinaelections.org",
            "chinaeweekly.com",
            "chinafreepress.org",
            "chinagate.com",
            "chinageeks.org",
            "chinagfw.org",
            "chinagonet.com",
            "chinagreenparty.org",
            "chinahorizon.org",
            "chinahush.com",
            "chinainperspective.com",
            "chinainterimgov.org",
            "chinalaborwatch.org",
            "chinalawandpolicy.com",
            "chinalawtranslate.com",
            "chinamule.com",
            "chinamz.org",
            "chinanewscenter.com",
            "chinapost.com.tw",
            "chinapress.com.my",
            "chinarightsia.org",
            "chinasmile.net",
            "chinasocialdemocraticparty.com",
            "chinasoul.org",
            "chinasucks.net",
            "chinatimes.com",
            "chinatopsex.com",
            "chinatown.com.au",
            "chinatweeps.com",
            "chinaway.org",
            "chinaworker.info",
            "chinaxchina.com",
            "chinayouth.org.hk",
            "chinayuanmin.org",
            "chinese-hermit.net",
            "chinese-leaders.org",
            "chinese-memorial.org",
            "chinesedaily.com",
            "chinesedailynews.com",
            "chinesedemocracy.com",
            "chinesegay.org",
            "chinesen.de",
            "chinesenews.net.au",
            "chinesepen.org",
            "chineseradioseattle.com",
            "chinesetalks.net",
            "chineseupress.com",
            "chingcheong.com",
            "chinman.net",
            "chithu.org",
            "chobit.cc",
            "chosun.com",
            "chrdnet.com",
            "christianfreedom.org",
            "christianstudy.com",
            "christiantimes.org.hk",
            "christusrex.org",
            "chrlawyers.hk",
            "chrome.com",
            "chromecast.com",
            "chromeenterprise.google",
            "chromeexperiments.com",
            "chromercise.com",
            "chromestatus.com",
            "chromium.org",
            "chuang-yen.org",
            "chubold.com",
            "chubun.com",
            "churchinhongkong.org",
            "chushigangdrug.ch",
            "cienen.com",
            "cineastentreff.de",
            "cipfg.org",
            "circlethebayfortibet.org",
            "cirosantilli.com",
            "citizencn.com",
            "citizenlab.ca",
            "citizenlab.org",
            "citizenscommission.hk",
            "citizensradio.org",
            "city365.ca",
            "city9x.com",
            "citypopulation.de",
            "citytalk.tw",
            "civicparty.hk",
            "civildisobediencemovement.org",
            "civilhrfront.org",
            "civiliangunner.com",
            "civilmedia.tw",
            "civisec.org",
            "cjb.net",
            "ck101.com",
            "clarionproject.org",
            "classicalguitarblog.net",
            "clb.org.hk",
            "cleansite.biz",
            "cleansite.info",
            "cleansite.us",
            "clearharmony.net",
            "clearsurance.com",
            "clearwisdom.net",
            "clementine-player.org",
            "clinica-tibet.ru",
            "clipfish.de",
            "cloakpoint.com",
            "cloudcone.com",
            "cloudflare-ipfs.com",
            "cloudfront.net",
            "club1069.com",
            "clubhouseapi.com",
            "clyp.it",
            "cmcn.org",
            "cmi.org.tw",
            "cmoinc.org",
            "cms.gov",
            "cmu.edu",
            "cmule.com",
            "cmule.org",
            "cmx.im",
            "cn-proxy.com",
            "cn.com",
            "cn6.eu",
            "cna.com.tw",
            "cnabc.com",
            "cnd.org",
            "cnet.com",
            "cnex.org.cn",
            "cnineu.com",
            "cnitter.com",
            "cnn.com",
            "cnpolitics.org",
            "cnproxy.com",
            "cnyes.com",
            "co.tv",
            "coat.co.jp",
            "cobinhood.com",
            "cochina.co",
            "cochina.org",
            "code1984.com",
            "codeplex.com",
            "codeshare.io",
            "codeskulptor.org",
            "coin2co.in",
            "coinbene.com",
            "coinegg.com",
            "coinex.com",
            "coingecko.com",
            "coingi.com",
            "coinmarketcap.com",
            "coinrail.co.kr",
            "cointiger.com",
            "cointobe.com",
            "coinut.com",
            "collateralmurder.com",
            "collateralmurder.org",
            "com.google",
            "com.ru",
            "com.uk",
            "comedycentral.com",
            "comefromchina.com",
            "comic-mega.me",
            "comico.tw",
            "commandarms.com",
            "commentshk.com",
            "communistcrimes.org",
            "communitychoicecu.com",
            "comparitech.com",
            "compileheart.com",
            "compress.to",
            "compython.net",
            "conoha.jp",
            "constitutionalism.solutions",
            "contactmagazine.net",
            "convio.net",
            "coobay.com",
            "cool18.com",
            "coolaler.com",
            "coolder.com",
            "coolloud.org.tw",
            "coolncute.com",
            "coolstuffinc.com",
            "corumcollege.com",
            "cos-moe.com",
            "cosplayjav.pl",
            "costco.com",
            "cotweet.com",
            "counter.social",
            "coursehero.com",
            "cpj.org",
            "cq99.us",
            "crackle.com",
            "crazys.cc",
            "crazyshit.com",
            "crbug.com",
            "crchina.org",
            "crd-net.org",
            "creaders.net",
            "creadersnet.com",
            "creativelab5.com",
            "crisisresponse.google",
            "cristyli.com",
            "crocotube.com",
            "crossfire.co.kr",
            "crossthewall.net",
            "crossvpn.net",
            "croxyproxy.com",
            "crrev.com",
            "crucial.com",
            "crunchyroll.com",
            "cryptographyengineering.com",
            "csdparty.com",
            "csis.org",
            "csmonitor.com",
            "csuchen.de",
            "csw.org.uk",
            "ct.org.tw",
            "ctao.org",
            "ctfriend.net",
            "ctitv.com.tw",
            "ctowc.org",
            "cts.com.tw",
            "ctwant.com",
            "cuhk.edu.hk",
            "cuhkacs.org",
            "cuihua.org",
            "cuiweiping.net",
            "culture.tw",
            "cumlouder.com",
            "curvefish.com",
            "cusp.hk",
            "cusu.hk",
            "cutscenes.net",
            "cw.com.tw",
            "cwb.gov.tw",
            "cyberctm.com",
            "cyberghostvpn.com",
            "cynscribe.com",
            "cytode.us",
            "cz.cc",
            "d-fukyu.com",
            "d0z.net",
            "d100.net",
            "d2bay.com",
            "d2pass.com",
            "dabr.co.uk",
            "dabr.eu",
            "dabr.me",
            "dabr.mobi",
            "dadazim.com",
            "dadi360.com",
            "dafabet.com",
            "dafagood.com",
            "dafahao.com",
            "dafoh.org",
            "daftporn.com",
            "dagelijksestandaard.nl",
            "daidostup.ru",
            "dailidaili.com",
            "dailymail.co.uk",
            "dailymotion.com",
            "dailysabah.com",
            "dailyview.tw",
            "daiphapinfo.net",
            "dajiyuan.com",
            "dajiyuan.de",
            "dajiyuan.eu",
            "dalailama-archives.org",
            "dalailama.com",
            "dalailama.mn",
            "dalailama.ru",
            "dalailama80.org",
            "dalailamacenter.org",
            "dalailamafellows.org",
            "dalailamafilm.com",
            "dalailamafoundation.org",
            "dalailamahindi.com",
            "dalailamainaustralia.org",
            "dalailamajapanese.com",
            "dalailamaprotesters.info",
            "dalailamaquotes.org",
            "dalailamatrust.org",
            "dalailamavisit.org.nz",
            "dalailamaworld.com",
            "dalianmeng.org",
            "daliulian.org",
            "danke4china.net",
            "daolan.net",
            "darktech.org",
            "darktoy.net",
            "darpa.mil",
            "darrenliuwei.com",
            "dastrassi.org",
            "data-vocabulary.org",
            "data.gov.tw",
            "daum.net",
            "david-kilgour.com",
            "dawangidc.com",
            "daxa.cn",
            "dayabook.com",
            "daylife.com",
            "db.tt",
            "dbc.hk",
            "dbgjd.com",
            "dcard.tw",
            "dcmilitary.com",
            "ddc.com.tw",
            "ddhw.info",
            "ddns.info",
            "ddns.me.uk",
            "ddns.mobi",
            "ddns.ms",
            "ddns.name",
            "ddns.net",
            "ddns.us",
            "de-sci.org",
            "deadline.com",
            "deaftone.com",
            "debug.com",
            "deck.ly",
            "decodet.co",
            "deepmind.com",
            "deezer.com",
            "definebabe.com",
            "deja.com",
            "delcamp.net",
            "delicious.com",
            "democrats.org",
            "demosisto.hk",
            "depositphotos.com",
            "desc.se",
            "design.google",
            "desipro.de",
            "dessci.com",
            "destroy-china.jp",
            "deutsche-welle.de",
            "deviantart.com",
            "deviantart.net",
            "devio.us",
            "devpn.com",
            "dfas.mil",
            "dfn.org",
            "dharamsalanet.com",
            "dharmakara.net",
            "dhcp.biz",
            "diaoyuislands.org",
            "difangwenge.org",
            "digiland.tw",
            "digisfera.com",
            "digitalnomadsproject.org",
            "diigo.com",
            "dilber.se",
            "dingchin.com.tw",
            "dipity.com",
            "directcreative.com",
            "discoins.com",
            "disconnect.me",
            "discord.com",
            "discord.gg",
            "discordapp.com",
            "discordapp.net",
            "discuss.com.hk",
            "discuss4u.com",
            "dish.com",
            "disp.cc",
            "disqus.com",
            "dit-inc.us",
            "dizhidizhi.com",
            "dizhuzhishang.com",
            "djangosnippets.org",
            "djorz.com",
            "dl-laby.jp",
            "dlive.tv",
            "dlsite.com",
            "dlsite.jp",
            "dlyoutube.com",
            "dm530.net",
            "dmc.nico",
            "dmcdn.net",
            "dmhy.org",
            "dmm.co.jp",
            "dmm.com",
            "dns-dns.com",
            "dns-stuff.com",
            "dns.google",
            "dns04.com",
            "dns05.com",
            "dns1.us",
            "dns2.us",
            "dns2go.com",
            "dnscrypt.org",
            "dnset.com",
            "dnsrd.com",
            "dnssec.net",
            "dnvod.tv",
            "doctorvoice.org",
            "documentingreality.com",
            "dogfartnetwork.com",
            "dojin.com",
            "dok-forum.net",
            "dolc.de",
            "dolf.org.hk",
            "dollf.com",
            "domain.club.tw",
            "domains.google",
            "domaintoday.com.au",
            "donga.com",
            "dongtaiwang.com",
            "dongtaiwang.net",
            "dongyangjing.com",
            "donmai.us",
            "dontfilter.us",
            "dontmovetochina.com",
            "dorjeshugden.com",
            "dotplane.com",
            "dotsub.com",
            "dotvpn.com",
            "doub.io",
            "doubibackup.com",
            "doubmirror.cf",
            "dougscripts.com",
            "douhokanko.net",
            "doujincafe.com",
            "dowei.org",
            "dowjones.com",
            "dphk.org",
            "dpp.org.tw",
            "dpr.info",
            "dragonex.io",
            "dragonsprings.org",
            "dreamamateurs.com",
            "drepung.org",
            "drgan.net",
            "drmingxia.org",
            "dropbooks.tv",
            "dropbox.com",
            "dropboxapi.com",
            "dropboxusercontent.com",
            "drsunacademy.com",
            "drtuber.com",
            "dscn.info",
            "dsmtp.com",
            "dstk.dk",
            "dtdns.net",
            "dtiblog.com",
            "dtic.mil",
            "dtwang.org",
            "duanzhihu.com",
            "dubox.com",
            "duck.com",
            "duckdns.org",
            "duckduckgo.com",
            "duckload.com",
            "duckmylife.com",
            "duga.jp",
            "duihua.org",
            "duihuahrjournal.org",
            "dumb1.com",
            "dunyabulteni.net",
            "duoweitimes.com",
            "duping.net",
            "duplicati.com",
            "dupola.com",
            "dupola.net",
            "dushi.ca",
            "duyaoss.com",
            "dvdpac.com",
            "dvorak.org",
            "dw-world.com",
            "dw-world.de",
            "dw.com",
            "dw.de",
            "dwheeler.com",
            "dwnews.com",
            "dwnews.net",
            "dxiong.com",
            "dynamic-dns.net",
            "dynamicdns.biz",
            "dynamicdns.co.uk",
            "dynamicdns.me.uk",
            "dynamicdns.org.uk",
            "dynawebinc.com",
            "dyndns-ip.com",
            "dyndns-pics.com",
            "dyndns.org",
            "dyndns.pro",
            "dynssl.com",
            "dynu.com",
            "dynu.net",
            "dysfz.cc",
            "dzze.com",
            "e-classical.com.tw",
            "e-gold.com",
            "e-hentai.org",
            "e-hentaidb.com",
            "e-info.org.tw",
            "e-traderland.net",
            "e-zone.com.hk",
            "e123.hk",
            "earlytibet.com",
            "earthcam.com",
            "earthvpn.com",
            "eastern-ark.com",
            "easternlightning.org",
            "eastturkestan.com",
            "eastturkistan-gov.org",
            "eastturkistan.net",
            "eastturkistancc.org",
            "eastturkistangovernmentinexile.us",
            "easyca.ca",
            "easypic.com",
            "ebc.net.tw",
            "ebony-beauty.com",
            "ebookbrowse.com",
            "ebookee.com",
            "ebtcbank.com",
            "ecfa.org.tw",
            "echainhost.com",
            "echofon.com",
            "ecimg.tw",
            "ecministry.net",
            "economist.com",
            "ecstart.com",
            "edgecastcdn.net",
            "edgesuite.net",
            "edicypages.com",
            "edmontonchina.cn",
            "edmontonservice.com",
            "edns.biz",
            "edoors.com",
            "edubridge.com",
            "edupro.org",
            "eesti.ee",
            "eevpn.com",
            "efcc.org.hk",
            "effers.com",
            "efksoft.com",
            "efukt.com",
            "eic-av.com",
            "eireinikotaerukai.com",
            "eisbb.com",
            "eksisozluk.com",
            "electionsmeter.com",
            "elgoog.im",
            "ellawine.org",
            "elpais.com",
            "eltondisney.com",
            "emaga.com",
            "emanna.com",
            "emilylau.org.hk",
            "emory.edu",
            "empfil.com",
            "emule-ed2k.com",
            "emulefans.com",
            "emuparadise.me",
            "enanyang.my",
            "encrypt.me",
            "encyclopedia.com",
            "enewstree.com",
            "enfal.de",
            "engadget.com",
            "engagedaily.org",
            "englishforeveryone.org",
            "englishfromengland.co.uk",
            "englishpen.org",
            "enlighten.org.tw",
            "entermap.com",
            "environment.google",
            "epa.gov.tw",
            "epac.to",
            "episcopalchurch.org",
            "epochhk.com",
            "epochtimes-bg.com",
            "epochtimes-romania.com",
            "epochtimes.co.il",
            "epochtimes.co.kr",
            "epochtimes.com",
            "epochtimes.cz",
            "epochtimes.de",
            "epochtimes.fr",
            "epochtimes.ie",
            "epochtimes.it",
            "epochtimes.jp",
            "epochtimes.ru",
            "epochtimes.se",
            "epochtimestr.com",
            "epochweek.com",
            "epochweekly.com",
            "eporner.com",
            "equinenow.com",
            "erabaru.net",
            "eracom.com.tw",
            "eraysoft.com.tr",
            "erepublik.com",
            "erights.net",
            "eriversoft.com",
            "erktv.com",
            "ernestmandel.org",
            "erodaizensyu.com",
            "erodoujinlog.com",
            "erodoujinworld.com",
            "eromanga-kingdom.com",
            "eromangadouzin.com",
            "eromon.net",
            "eroprofile.com",
            "eroticsaloon.net",
            "eslite.com",
            "esmtp.biz",
            "esu.dog",
            "esu.im",
            "esurance.com",
            "etaa.org.au",
            "etadult.com",
            "etaiwannews.com",
            "etherdelta.com",
            "etherscan.io",
            "etizer.org",
            "etokki.com",
            "etowns.net",
            "etowns.org",
            "etsy.com",
            "ettoday.net",
            "etvonline.hk",
            "eu.org",
            "eucasino.com",
            "eulam.com",
            "eurekavpt.com",
            "euronews.com",
            "europa.eu",
            "evozi.com",
            "evschool.net",
            "exblog.co.jp",
            "exblog.jp",
            "exchristian.hk",
            "excite.co.jp",
            "exhentai.org",
            "exmo.com",
            "exmormon.org",
            "expatshield.com",
            "expecthim.com",
            "expekt.com",
            "experts-univers.com",
            "exploader.net",
            "expofutures.com",
            "expressvpn.com",
            "exrates.me",
            "extmatrix.com",
            "extremetube.com",
            "exx.com",
            "eyevio.jp",
            "eyny.com",
            "ezpc.tk",
            "ezpeer.com",
            "ezua.com",
            "f8.com",
            "fa.gov.tw",
            "facebook.br",
            "facebook.com",
            "facebook.design",
            "facebook.hu",
            "facebook.in",
            "facebook.net",
            "facebook.nl",
            "facebook.se",
            "facebookmail.com",
            "facebookquotes4u.com",
            "faceless.me",
            "facesofnyfw.com",
            "facesoftibetanselfimmolators.info",
            "factpedia.org",
            "fail.hk",
            "faith100.org",
            "faithfuleye.com",
            "faiththedog.info",
            "fakku.net",
            "fallenark.com",
            "falsefire.com",
            "falun-co.org",
            "falun-ny.net",
            "falunart.org",
            "falunasia.info",
            "falunau.org",
            "falunaz.net",
            "falundafa-dc.org",
            "falundafa-florida.org",
            "falundafa-nc.org",
            "falundafa-pa.net",
            "falundafa-sacramento.org",
            "falundafa.org",
            "falundafaindia.org",
            "falundafamuseum.org",
            "falungong.club",
            "falungong.de",
            "falungong.org.uk",
            "falunhr.org",
            "faluninfo.de",
            "faluninfo.net",
            "falunpilipinas.net",
            "falunworld.net",
            "familyfed.org",
            "famunion.com",
            "fan-qiang.com",
            "fandom.com",
            "fangbinxing.com",
            "fangeming.com",
            "fangeqiang.com",
            "fanglizhi.info",
            "fangmincn.org",
            "fangong.org",
            "fangongheike.com",
            "fanhaodang.com",
            "fanhaolou.com",
            "fanqiang.network",
            "fanqiang.tk",
            "fanqiangdang.com",
            "fanqianghou.com",
            "fanqiangyakexi.net",
            "fanqiangzhe.com",
            "fanswong.com",
            "fantv.hk",
            "fanyue.info",
            "fapdu.com",
            "faproxy.com",
            "faqserv.com",
            "fartit.com",
            "farwestchina.com",
            "fastestvpn.com",
            "fastly.net",
            "fastpic.ru",
            "fastssh.com",
            "faststone.org",
            "fatbtc.com",
            "favotter.net",
            "favstar.fm",
            "fawanghuihui.org",
            "faydao.com",
            "faz.net",
            "fb.com",
            "fb.me",
            "fb.watch",
            "fbaddins.com",
            "fbcdn.net",
            "fbsbx.com",
            "fbworkmail.com",
            "fc2.com",
            "fc2blog.net",
            "fc2china.com",
            "fc2cn.com",
            "fc2web.com",
            "fda.gov.tw",
            "fdbox.com",
            "fdc64.de",
            "fdc64.org",
            "fdc89.jp",
            "feedburner.com",
            "feeder.co",
            "feedly.com",
            "feedx.net",
            "feelssh.com",
            "feer.com",
            "feifeiss.com",
            "feitian-california.org",
            "feitianacademy.org",
            "feixiaohao.com",
            "feministteacher.com",
            "fengzhenghu.com",
            "fengzhenghu.net",
            "fevernet.com",
            "ff.im",
            "fffff.at",
            "fflick.com",
            "ffvpn.com",
            "fgmtv.net",
            "fgmtv.org",
            "fhreports.net",
            "figprayer.com",
            "fileflyer.com",
            "fileforum.com",
            "files2me.com",
            "fileserve.com",
            "filesor.com",
            "fillthesquare.org",
            "filmingfortibet.org",
            "filthdump.com",
            "financetwitter.com",
            "finchvpn.com",
            "findmespot.com",
            "findyoutube.com",
            "findyoutube.net",
            "fingerdaily.com",
            "finler.net",
            "firearmsworld.net",
            "firebaseio.com",
            "firefox.com",
            "fireofliberty.org",
            "firetweet.io",
            "firstfivefollowers.com",
            "firstpost.com",
            "firstrade.com",
            "fizzik.com",
            "flagsonline.it",
            "flecheinthepeche.fr",
            "fleshbot.com",
            "fleursdeslettres.com",
            "flgg.us",
            "flgjustice.org",
            "flickr.com",
            "flickrhivemind.net",
            "flickriver.com",
            "fling.com",
            "flipboard.com",
            "flipkart.com",
            "flitto.com",
            "flnet.org",
            "flog.tw",
            "flurry.com",
            "flyvpn.com",
            "flyzy2005.com",
            "fmnnow.com",
            "fnac.be",
            "fnac.com",
            "fochk.org",
            "focustaiwan.tw",
            "focusvpn.com",
            "fofg-europe.net",
            "fofg.org",
            "fofldfradio.org",
            "foolsmountain.com",
            "fooooo.com",
            "foreignaffairs.com",
            "foreignpolicy.com",
            "forum4hk.com",
            "forums-free.com",
            "fotile.me",
            "fourthinternational.org",
            "foxbusiness.com",
            "foxdie.us",
            "foxgay.com",
            "foxsub.com",
            "foxtang.com",
            "fpmt-osel.org",
            "fpmt.org",
            "fpmt.tw",
            "fpmtmexico.org",
            "fqok.org",
            "fqrouter.com",
            "franklc.com",
            "freakshare.com",
            "free-gate.org",
            "free-hada-now.org",
            "free-proxy.cz",
            "free-ss.site",
            "free-ssh.com",
            "free.fr",
            "free4u.com.ar",
            "freealim.com",
            "freebeacon.com",
            "freebearblog.org",
            "freebrowser.org",
            "freechal.com",
            "freechina.net",
            "freechina.news",
            "freechinaforum.org",
            "freechinaweibo.com",
            "freeddns.com",
            "freeddns.org",
            "freedomchina.info",
            "freedomcollection.org",
            "freedomhouse.org",
            "freedomsherald.org",
            "freeforums.org",
            "freefq.com",
            "freefuckvids.com",
            "freegao.com",
            "freehongkong.org",
            "freeilhamtohti.org",
            "freekazakhs.org",
            "freekwonpyong.org",
            "freelotto.com",
            "freeman2.com",
            "freemoren.com",
            "freemorenews.com",
            "freemuse.org",
            "freenet-china.org",
            "freenetproject.org",
            "freenewscn.com",
            "freeones.com",
            "freeopenvpn.com",
            "freeoz.org",
            "freerk.com",
            "freessh.us",
            "freetcp.com",
            "freetibet.net",
            "freetibet.org",
            "freetibetanheroes.org",
            "freetribe.me",
            "freeviewmovies.com",
            "freevpn.me",
            "freevpn.nl",
            "freewallpaper4.me",
            "freewebs.com",
            "freewechat.com",
            "freeweibo.com",
            "freewww.biz",
            "freewww.info",
            "freexinwen.com",
            "freeyellow.com",
            "freeyoutubeproxy.net",
            "frienddy.com",
            "friendfeed-media.com",
            "friendfeed.com",
            "friendfinder.com",
            "friends-of-tibet.org",
            "friendsoftibet.org",
            "fring.com",
            "fringenetwork.com",
            "from-pr.com",
            "from-sd.com",
            "fromchinatousa.net",
            "frommel.net",
            "frontlinedefenders.org",
            "frootvpn.com",
            "fscked.org",
            "fsurf.com",
            "ftchinese.com",
            "ftp1.biz",
            "ftpserver.biz",
            "ftv.com.tw",
            "ftvnews.com.tw",
            "ftx.com",
            "fucd.com",
            "fuckcnnic.net",
            "fuckgfw.org",
            "fuckgfw233.org",
            "fulione.com",
            "fullerconsideration.com",
            "fulue.com",
            "funf.tw",
            "funkyimg.com",
            "funp.com",
            "fuq.com",
            "furbo.org",
            "furhhdl.org",
            "furinkan.com",
            "furl.net",
            "futurechinaforum.org",
            "futuremessage.org",
            "fux.com",
            "fuyin.net",
            "fuyindiantai.org",
            "fuyu.org.tw",
            "fw.cm",
            "fxcm-chinese.com",
            "fxnetworks.com",
            "fzh999.com",
            "fzh999.net",
            "fzlm.com",
            "g-area.org",
            "g-queen.com",
            "g.co",
            "g0v.social",
            "g6hentai.com",
            "gab.com",
            "gabocorp.com",
            "gaeproxy.com",
            "gaforum.org",
            "gagaoolala.com",
            "galaxymacau.com",
            "galenwu.com",
            "galstars.net",
            "game735.com",
            "gamebase.com.tw",
            "gamejolt.com",
            "gamer.com.tw",
            "gamerp.jp",
            "gamez.com.tw",
            "gamousa.com",
            "ganges.com",
            "ganjingworld.com",
            "gaoming.net",
            "gaopi.net",
            "gaozhisheng.net",
            "gaozhisheng.org",
            "gardennetworks.com",
            "gardennetworks.org",
            "gartlive.com",
            "gate-project.com",
            "gate.io",
            "gatecoin.com",
            "gather.com",
            "gatherproxy.com",
            "gati.org.tw",
            "gaybubble.com",
            "gaycn.net",
            "gayhub.com",
            "gaymap.cc",
            "gaymenring.com",
            "gaytube.com",
            "gaywatch.com",
            "gazotube.com",
            "gcc.org.hk",
            "gclooney.com",
            "gclubs.com",
            "gcmasia.com",
            "gcpnews.com",
            "gcr.io",
            "gdbt.net",
            "gdzf.org",
            "geek-art.net",
            "geekerhome.com",
            "geekheart.info",
            "gekikame.com",
            "gelbooru.com",
            "genius.com",
            "geocities.co.jp",
            "geocities.com",
            "geocities.jp",
            "geph.io",
            "gerefoundation.org",
            "get.app",
            "get.dev",
            "get.how",
            "get.page",
            "getastrill.com",
            "getchu.com",
            "getcloak.com",
            "getfoxyproxy.org",
            "getfreedur.com",
            "getgom.com",
            "geti2p.net",
            "getiton.com",
            "getjetso.com",
            "getlantern.org",
            "getmalus.com",
            "getmdl.io",
            "getoutline.org",
            "getsocialscope.com",
            "getsync.com",
            "gettr.com",
            "gettrials.com",
            "gettyimages.com",
            "getuploader.com",
            "gfbv.de",
            "gfgold.com.hk",
            "gfsale.com",
            "gfw.org.ua",
            "gfw.press",
            "gfw.report",
            "ggpht.com",
            "ggssl.com",
            "ghidra-sre.org",
            "ghostpath.com",
            "ghut.org",
            "giantessnight.com",
            "gifree.com",
            "giga-web.jp",
            "gigacircle.com",
            "giganews.com",
            "gigporno.ru",
            "girlbanker.com",
            "git.io",
            "gitbooks.io",
            "githack.com",
            "github.blog",
            "github.com",
            "github.io",
            "githubassets.com",
            "githubusercontent.com",
            "gizlen.net",
            "gjczz.com",
            "glass8.eu",
            "globaljihad.net",
            "globalmediaoutreach.com",
            "globalmuseumoncommunism.org",
            "globalrescue.net",
            "globaltm.org",
            "globalvoices.org",
            "globalvoicesonline.org",
            "globalvpn.net",
            "glock.com",
            "gloryhole.com",
            "glorystar.me",
            "gluckman.com",
            "glype.com",
            "gmail.com",
            "gmgard.com",
            "gmhz.org",
            "gmiddle.com",
            "gmiddle.net",
            "gmll.org",
            "gmodules.com",
            "gmx.net",
            "gnci.org.hk",
            "gnews.org",
            "go-pki.com",
            "go141.com",
            "goagent.biz",
            "goagentplus.com",
            "gobet.cc",
            "godfootsteps.org",
            "godns.work",
            "godoc.org",
            "godsdirectcontact.co.uk",
            "godsdirectcontact.org",
            "godsdirectcontact.org.tw",
            "godsimmediatecontact.com",
            "gofundme.com",
            "gogotunnel.com",
            "gohappy.com.tw",
            "gokbayrak.com",
            "golang.org",
            "goldbet.com",
            "goldbetsports.com",
            "golden-ages.org",
            "goldeneyevault.com",
            "goldenfrog.com",
            "goldjizz.com",
            "goldstep.net",
            "goldwave.com",
            "gongm.in",
            "gongmeng.info",
            "gongminliliang.com",
            "gongwt.com",
            "goo.gl",
            "goo.gle",
            "goo.ne.jp",
            "gooday.xyz",
            "gooddns.info",
            "goodhope.school",
            "goodreaders.com",
            "goodreads.com",
            "goodtv.com.tw",
            "goodtv.tv",
            "goofind.com",
            "google.ac",
            "google.ad",
            "google.ae",
            "google.af",
            "google.ai",
            "google.al",
            "google.am",
            "google.as",
            "google.at",
            "google.az",
            "google.ba",
            "google.be",
            "google.bf",
            "google.bg",
            "google.bi",
            "google.bj",
            "google.bs",
            "google.bt",
            "google.by",
            "google.ca",
            "google.cat",
            "google.cd",
            "google.cf",
            "google.cg",
            "google.ch",
            "google.ci",
            "google.cl",
            "google.cm",
            "google.cn",
            "google.co.ao",
            "google.co.bw",
            "google.co.ck",
            "google.co.cr",
            "google.co.id",
            "google.co.il",
            "google.co.in",
            "google.co.jp",
            "google.co.ke",
            "google.co.kr",
            "google.co.ls",
            "google.co.ma",
            "google.co.mz",
            "google.co.nz",
            "google.co.th",
            "google.co.tz",
            "google.co.ug",
            "google.co.uk",
            "google.co.uz",
            "google.co.ve",
            "google.co.vi",
            "google.co.za",
            "google.co.zm",
            "google.co.zw",
            "google.com",
            "google.com.af",
            "google.com.ag",
            "google.com.ai",
            "google.com.ar",
            "google.com.au",
            "google.com.bd",
            "google.com.bh",
            "google.com.bn",
            "google.com.bo",
            "google.com.br",
            "google.com.bz",
            "google.com.co",
            "google.com.cu",
            "google.com.cy",
            "google.com.do",
            "google.com.ec",
            "google.com.eg",
            "google.com.et",
            "google.com.fj",
            "google.com.gh",
            "google.com.gi",
            "google.com.gt",
            "google.com.hk",
            "google.com.jm",
            "google.com.kh",
            "google.com.kw",
            "google.com.lb",
            "google.com.ly",
            "google.com.mm",
            "google.com.mt",
            "google.com.mx",
            "google.com.my",
            "google.com.na",
            "google.com.nf",
            "google.com.ng",
            "google.com.ni",
            "google.com.np",
            "google.com.om",
            "google.com.pa",
            "google.com.pe",
            "google.com.pg",
            "google.com.ph",
            "google.com.pk",
            "google.com.pr",
            "google.com.py",
            "google.com.qa",
            "google.com.sa",
            "google.com.sb",
            "google.com.sg",
            "google.com.sl",
            "google.com.sv",
            "google.com.tj",
            "google.com.tr",
            "google.com.tw",
            "google.com.ua",
            "google.com.uy",
            "google.com.vc",
            "google.com.vn",
            "google.cv",
            "google.cz",
            "google.de",
            "google.dev",
            "google.dj",
            "google.dk",
            "google.dm",
            "google.dz",
            "google.ee",
            "google.es",
            "google.eu",
            "google.fi",
            "google.fm",
            "google.fr",
            "google.ga",
            "google.ge",
            "google.gg",
            "google.gl",
            "google.gm",
            "google.gp",
            "google.gr",
            "google.gy",
            "google.hk",
            "google.hn",
            "google.hr",
            "google.ht",
            "google.hu",
            "google.ie",
            "google.im",
            "google.iq",
            "google.is",
            "google.it",
            "google.it.ao",
            "google.je",
            "google.jo",
            "google.kg",
            "google.ki",
            "google.kz",
            "google.la",
            "google.li",
            "google.lk",
            "google.lt",
            "google.lu",
            "google.lv",
            "google.md",
            "google.me",
            "google.mg",
            "google.mk",
            "google.ml",
            "google.mn",
            "google.ms",
            "google.mu",
            "google.mv",
            "google.mw",
            "google.mx",
            "google.ne",
            "google.nl",
            "google.no",
            "google.nr",
            "google.nu",
            "google.org",
            "google.pl",
            "google.pn",
            "google.ps",
            "google.pt",
            "google.ro",
            "google.rs",
            "google.ru",
            "google.rw",
            "google.sc",
            "google.se",
            "google.sh",
            "google.si",
            "google.sk",
            "google.sm",
            "google.sn",
            "google.so",
            "google.sr",
            "google.st",
            "google.td",
            "google.tg",
            "google.tk",
            "google.tl",
            "google.tm",
            "google.tn",
            "google.to",
            "google.tt",
            "google.us",
            "google.vg",
            "google.vn",
            "google.vu",
            "google.ws",
            "googleapis.cn",
            "googleapis.com",
            "googleapps.com",
            "googlearth.com",
            "googleartproject.com",
            "googleblog.com",
            "googlebot.com",
            "googlechinawebmaster.com",
            "googlecode.com",
            "googlecommerce.com",
            "googledomains.com",
            "googledrive.com",
            "googleearth.com",
            "googlefiber.net",
            "googlegroups.com",
            "googlehosted.com",
            "googleideas.com",
            "googleinsidesearch.com",
            "googlelabs.com",
            "googlemail.com",
            "googlemashups.com",
            "googlepagecreator.com",
            "googleplay.com",
            "googleplus.com",
            "googlesile.com",
            "googlesource.com",
            "googleusercontent.com",
            "googlevideo.com",
            "googleweblight.com",
            "googlezip.net",
            "gopetition.com",
            "goproxing.net",
            "goreforum.com",
            "goregrish.com",
            "gospelherald.com",
            "got-game.org",
            "gotdns.ch",
            "gotgeeks.com",
            "gotrusted.com",
            "gotw.ca",
            "gov.taipei",
            "gr8domain.biz",
            "gr8name.biz",
            "gradconnection.com",
            "grammaly.com",
            "grandtrial.org",
            "grangorz.org",
            "graphis.ne.jp",
            "graphql.org",
            "gravatar.com",
            "greasespot.net",
            "great-firewall.com",
            "great-roc.org",
            "greatfire.org",
            "greatfirewall.biz",
            "greatfirewallofchina.net",
            "greatfirewallofchina.org",
            "greatroc.org",
            "greatroc.tw",
            "greatzhonghua.org",
            "greenfieldbookstore.com.hk",
            "greenparty.org.tw",
            "greenpeace.com.tw",
            "greenpeace.org",
            "greenreadings.com",
            "greenvpn.net",
            "greenvpn.org",
            "grotty-monday.com",
            "grow.google",
            "gs-discuss.com",
            "gsearch.media",
            "gstatic.com",
            "gtricks.com",
            "gts-vpn.com",
            "gtv.org",
            "gtv1.org",
            "gu-chu-sum.org",
            "guaguass.com",
            "guaguass.org",
            "guancha.org",
            "guaneryu.com",
            "guangming.com.my",
            "guangnianvpn.com",
            "guardster.com",
            "guishan.org",
            "gumroad.com",
            "gun-world.net",
            "gunsamerica.com",
            "gunsandammo.com",
            "guo.media",
            "guruonline.hk",
            "gutteruncensored.com",
            "gvlib.com",
            "gvm.com.tw",
            "gvt0.com",
            "gvt1.com",
            "gvt3.com",
            "gwins.org",
            "gwtproject.org",
            "gyalwarinpoche.com",
            "gyatsostudio.com",
            "gzm.tv",
            "gzone-anime.info",
            "h-china.org",
            "h-moe.com",
            "h1n1china.org",
            "h528.com",
            "h5dm.com",
            "h5galgame.me",
            "hacg.club",
            "hacg.in",
            "hacg.li",
            "hacg.me",
            "hacg.red",
            "hacken.cc",
            "hacker.org",
            "hackmd.io",
            "hackthatphone.net",
            "hahlo.com",
            "hakkatv.org.tw",
            "handcraftedsoftware.org",
            "hanime.tv",
            "hanminzu.org",
            "hanunyi.com",
            "hao.news",
            "hao123.com",
            "hao123img.com",
            "happy-vpn.com",
            "haproxy.org",
            "hardsextube.com",
            "harunyahya.com",
            "hasi.wang",
            "hautelook.com",
            "hautelookcdn.com",
            "have8.com",
            "hbg.com",
            "hbo.com",
            "hclips.com",
            "hdlt.me",
            "hdtvb.net",
            "hdzog.com",
            "he.net",
            "heartyit.com",
            "heavy-r.com",
            "hec.su",
            "hecaitou.net",
            "hechaji.com",
            "heeact.edu.tw",
            "hegre-art.com",
            "helixstudios.net",
            "helloandroid.com",
            "helloqueer.com",
            "helloss.pw",
            "hellotxt.com",
            "hellouk.org",
            "helpeachpeople.com",
            "helplinfen.com",
            "helpster.de",
            "helpuyghursnow.org",
            "helpzhuling.org",
            "hentai.to",
            "hentaitube.tv",
            "hentaivideoworld.com",
            "heqinglian.net",
            "here.com",
            "heritage.org",
            "heroku.com",
            "heungkongdiscuss.com",
            "hexieshe.com",
            "hexieshe.xyz",
            "hexxeh.net",
            "heyuedi.com",
            "heywire.com",
            "heyzo.com",
            "hgseav.com",
            "hhdcb3office.org",
            "hhthesakyatrizin.org",
            "hi-on.org.tw",
            "hidden-advent.org",
            "hide.me",
            "hidecloud.com",
            "hidein.net",
            "hideipvpn.com",
            "hideman.net",
            "hideme.nl",
            "hidemy.name",
            "hidemyass.com",
            "hidemycomp.com",
            "higfw.com",
            "highpeakspureearth.com",
            "highrockmedia.com",
            "hightail.com",
            "hihiforum.com",
            "hihistory.net",
            "hiitch.com",
            "hikinggfw.org",
            "hilive.tv",
            "himalayan-foundation.org",
            "himalayanglacier.com",
            "himemix.com",
            "himemix.net",
            "hinet.net",
            "hitbtc.com",
            "hitomi.la",
            "hiwifi.com",
            "hizb-ut-tahrir.info",
            "hizb-ut-tahrir.org",
            "hizbuttahrir.org",
            "hjclub.info",
            "hk-pub.com",
            "hk01.com",
            "hk32168.com",
            "hkacg.com",
            "hkacg.net",
            "hkatvnews.com",
            "hkbc.net",
            "hkbf.org",
            "hkbookcity.com",
            "hkchronicles.com",
            "hkchurch.org",
            "hkci.org.hk",
            "hkcmi.edu",
            "hkcnews.com",
            "hkcoc.com",
            "hkctu.org.hk",
            "hkdailynews.com.hk",
            "hkday.net",
            "hkdc.us",
            "hkdf.org",
            "hkej.com",
            "hkepc.com",
            "hket.com",
            "hkfaa.com",
            "hkfreezone.com",
            "hkfront.org",
            "hkgalden.com",
            "hkgolden.com",
            "hkgpao.com",
            "hkgreenradio.org",
            "hkheadline.com",
            "hkhkhk.com",
            "hkhrc.org.hk",
            "hkhrm.org.hk",
            "hkip.org.uk",
            "hkja.org.hk",
            "hkjc.com",
            "hkjp.org",
            "hklft.com",
            "hklts.org.hk",
            "hkmap.live",
            "hkopentv.com",
            "hkpeanut.com",
            "hkptu.org",
            "hkreporter.com",
            "hku.hk",
            "hkusu.net",
            "hkvwet.com",
            "hkwcc.org.hk",
            "hkzone.org",
            "hmoegirl.com",
            "hmonghot.com",
            "hmv.co.jp",
            "hmvdigital.ca",
            "hmvdigital.com",
            "hnjhj.com",
            "hnntube.com",
            "hola.com",
            "hola.org",
            "holymountaincn.com",
            "holyspiritspeaks.org",
            "homedepot.com",
            "homeip.net",
            "homeperversion.com",
            "homeservershow.com",
            "honeynet.org",
            "hongkongfp.com",
            "hongmeimei.com",
            "hongzhi.li",
            "honven.xyz",
            "hootsuite.com",
            "hoover.org",
            "hoovers.com",
            "hopedialogue.org",
            "hopto.org",
            "hornygamer.com",
            "hornytrip.com",
            "horrorporn.com",
            "hotair.com",
            "hotav.tv",
            "hotels.cn",
            "hotfrog.com.tw",
            "hotgoo.com",
            "hotpornshow.com",
            "hotpot.hk",
            "hotshame.com",
            "hotspotshield.com",
            "hottg.com",
            "hotvpn.com",
            "hougaige.com",
            "howtoforge.com",
            "hoxx.com",
            "hpa.gov.tw",
            "hqcdp.org",
            "hqjapanesesex.com",
            "hqmovies.com",
            "hrcchina.org",
            "hrcir.com",
            "hrea.org",
            "hrichina.org",
            "hrtsea.com",
            "hrw.org",
            "hrweb.org",
            "hsjp.net",
            "hsselite.com",
            "hst.net.tw",
            "hstern.net",
            "hstt.net",
            "ht.ly",
            "htkou.net",
            "htl.li",
            "html5rocks.com",
            "https443.net",
            "https443.org",
            "hua-yue.net",
            "huaglad.com",
            "huanghuagang.org",
            "huangyiyu.com",
            "huaren.us",
            "huaren4us.com",
            "huashangnews.com",
            "huasing.org",
            "huaxia-news.com",
            "huaxiabao.org",
            "huaxin.ph",
            "huayuworld.org",
            "hudatoriq.web.id",
            "hudson.org",
            "huffingtonpost.com",
            "hugoroy.eu",
            "huhaitai.com",
            "huhamhire.com",
            "huhangfei.com",
            "huiyi.in",
            "hulkshare.com",
            "hulu.com",
            "huluim.com",
            "hung-ya.com",
            "hungerstrikeforaids.org",
            "huobi.co",
            "huobi.com",
            "huobi.me",
            "huobi.pro",
            "huobi.sc",
            "huobipro.com",
            "huping.net",
            "hurgokbayrak.com",
            "hurriyet.com.tr",
            "hustler.com",
            "hustlercash.com",
            "hut2.ru",
            "hutianyi.net",
            "hutong9.net",
            "huyandex.com",
            "hwadzan.tw",
            "hwayue.org.tw",
            "hwinfo.com",
            "hxwk.org",
            "hxwq.org",
            "hybrid-analysis.com",
            "hyperrate.com",
            "hyread.com.tw",
            "i-cable.com",
            "i-part.com.tw",
            "i-scmp.com",
            "i1.hk",
            "i2p2.de",
            "i2runner.com",
            "i818hk.com",
            "iam.soy",
            "iamtopone.com",
            "iask.bz",
            "iask.ca",
            "iav19.com",
            "ibiblio.org",
            "ibit.am",
            "iblist.com",
            "iblogserv-f.net",
            "ibros.org",
            "ibtimes.com",
            "ibvpn.com",
            "icams.com",
            "icerocket.com",
            "icij.org",
            "icl-fi.org",
            "icoco.com",
            "iconfactory.net",
            "iconpaper.org",
            "icu-project.org",
            "idaiwan.com",
            "idemocracy.asia",
            "identi.ca",
            "idiomconnection.com",
            "idlcoyote.com",
            "idouga.com",
            "idreamx.com",
            "idsam.com",
            "ieasy5.com",
            "ied2k.net",
            "ienergy1.com",
            "iepl.us",
            "ifanqiang.com",
            "ifcss.org",
            "ifjc.org",
            "ifreewares.com",
            "ift.tt",
            "igcd.net",
            "igfw.net",
            "igfw.tech",
            "igmg.de",
            "ignitedetroit.net",
            "igoogle.com",
            "igotmail.com.tw",
            "igvita.com",
            "ihakka.net",
            "ihao.org",
            "iicns.com",
            "ikstar.com",
            "ikwb.com",
            "ilbe.com",
            "ilhamtohtiinstitute.org",
            "illusionfactory.com",
            "ilove80.be",
            "ilovelongtoes.com",
            "im.tv",
            "im88.tw",
            "imageab.com",
            "imagefap.com",
            "imageflea.com",
            "images-gaytube.com",
            "imageshack.us",
            "imagevenue.com",
            "imagezilla.net",
            "imb.org",
            "imdb.com",
            "img.ly",
            "imgchili.net",
            "imgmega.com",
            "imgur.com",
            "imkev.com",
            "imlive.com",
            "immigration.gov.tw",
            "immoral.jp",
            "impact.org.au",
            "impp.mn",
            "in-disguise.com",
            "in.com",
            "in99.org",
            "incapdns.net",
            "incloak.com",
            "incredibox.fr",
            "independent.co.uk",
            "indiablooms.com",
            "indianarrative.com",
            "indiandefensenews.in",
            "indiatimes.com",
            "indiemerch.com",
            "info-graf.fr",
            "informer.com",
            "initiativesforchina.org",
            "inkui.com",
            "inmediahk.net",
            "innermongolia.org",
            "inoreader.com",
            "inote.tw",
            "insecam.org",
            "inside.com.tw",
            "insidevoa.com",
            "instagram.com",
            "instanthq.com",
            "institut-tibetain.org",
            "internet.org",
            "internetdefenseleague.org",
            "internetfreedom.org",
            "internetpopculture.com",
            "inthenameofconfuciusmovie.com",
            "inxian.com",
            "iownyour.biz",
            "iownyour.org",
            "ipalter.com",
            "ipfire.org",
            "ipfs.io",
            "iphone4hongkong.com",
            "iphonehacks.com",
            "iphonetaiwan.org",
            "iphonix.fr",
            "ipicture.ru",
            "ipjetable.net",
            "ipobar.com",
            "ipoock.com",
            "iportal.me",
            "ippotv.com",
            "ipredator.se",
            "iptv.com.tw",
            "iptvbin.com",
            "ipvanish.com",
            "iqiyi.com",
            "iredmail.org",
            "irib.ir",
            "ironpython.net",
            "ironsocket.com",
            "is-a-hunter.com",
            "is.gd",
            "isaacmao.com",
            "isasecret.com",
            "isgreat.org",
            "islahhaber.net",
            "islam.org.hk",
            "islamawareness.net",
            "islamhouse.com",
            "islamicity.com",
            "islamicpluralism.org",
            "islamtoday.net",
            "ismaelan.com",
            "ismalltits.com",
            "ismprofessional.net",
            "isohunt.com",
            "israbox.com",
            "issuu.com",
            "istars.co.nz",
            "istarshine.com",
            "istef.info",
            "istiqlalhewer.com",
            "istockphoto.com",
            "isunaffairs.com",
            "isuntv.com",
            "isupportuyghurs.org",
            "itaboo.info",
            "itaiwan.gov.tw",
            "italiatibet.org",
            "itasoftware.com",
            "itemdb.com",
            "ithome.com.tw",
            "itsaol.com",
            "itshidden.com",
            "itsky.it",
            "itweet.net",
            "iu45.com",
            "iuhrdf.org",
            "iuksky.com",
            "ivacy.com",
            "iverycd.com",
            "ivpn.net",
            "ixquick.com",
            "ixxx.com",
            "iyouport.com",
            "iyouport.org",
            "izaobao.us",
            "izihost.org",
            "izles.net",
            "izlesem.org",
            "j.mp",
            "jable.tv",
            "jackjia.com",
            "jamaat.org",
            "jamestown.org",
            "jamyangnorbu.com",
            "jandyx.com",
            "janwongphoto.com",
            "japan-whores.com",
            "japantimes.co.jp",
            "jav.com",
            "jav101.com",
            "jav2be.com",
            "jav68.tv",
            "javakiba.org",
            "javbus.com",
            "javfor.me",
            "javhd.com",
            "javhip.com",
            "javhub.net",
            "javhuge.com",
            "javlibrary.com",
            "javmobile.net",
            "javmoo.com",
            "javmoo.xyz",
            "javseen.com",
            "javtag.com",
            "javzoo.com",
            "jbtalks.cc",
            "jbtalks.com",
            "jbtalks.my",
            "jcpenney.com",
            "jdwsy.com",
            "jeanyim.com",
            "jetos.com",
            "jex.com",
            "jfqu36.club",
            "jfqu37.xyz",
            "jgoodies.com",
            "jiangweiping.com",
            "jiaoyou8.com",
            "jichangtj.com",
            "jiehua.cz",
            "jiepang.com",
            "jieshibaobao.com",
            "jigglegifs.com",
            "jigong1024.com",
            "jigsy.com",
            "jihadology.net",
            "jiji.com",
            "jims.net",
            "jinbushe.org",
            "jingpin.org",
            "jingsim.org",
            "jinhai.de",
            "jinpianwang.com",
            "jinroukong.com",
            "jintian.net",
            "jinx.com",
            "jiruan.net",
            "jitouch.com",
            "jizzthis.com",
            "jjgirls.com",
            "jkb.cc",
            "jkforum.net",
            "jkub.com",
            "jma.go.jp",
            "jmscult.com",
            "joachims.org",
            "jobso.tv",
            "joinbbs.net",
            "joinclubhouse.com",
            "joinmastodon.org",
            "joins.com",
            "jornaldacidadeonline.com.br",
            "journalchretien.net",
            "journalofdemocracy.org",
            "joymiihub.com",
            "joyourself.com",
            "jp.net",
            "jpopforum.net",
            "jqueryui.com",
            "jsdelivr.net",
            "jshell.net",
            "jtvnw.net",
            "jubushoushen.com",
            "juhuaren.com",
            "jukujo-club.com",
            "juliepost.com",
            "juliereyc.com",
            "junauza.com",
            "june4commemoration.org",
            "junefourth-20.net",
            "jungleheart.com",
            "junglobal.net",
            "juoaa.com",
            "justdied.com",
            "justfreevpn.com",
            "justicefortenzin.org",
            "justmysocks1.net",
            "justpaste.it",
            "justtristan.com",
            "juyuange.org",
            "juziyue.com",
            "jwmusic.org",
            "jyxf.net",
            "k-doujin.net",
            "ka-wai.com",
            "kadokawa.co.jp",
            "kagyu.org",
            "kagyu.org.za",
            "kagyumonlam.org",
            "kagyunews.com.hk",
            "kagyuoffice.org",
            "kagyuoffice.org.tw",
            "kaiyuan.de",
            "kakao.com",
            "kalachakralugano.org",
            "kangye.org",
            "kankan.today",
            "kannewyork.com",
            "kanshifang.com",
            "kantie.org",
            "kanzhongguo.com",
            "kanzhongguo.eu",
            "kaotic.com",
            "karayou.com",
            "karkhung.com",
            "karmapa-teachings.org",
            "karmapa.org",
            "kawaiikawaii.jp",
            "kawase.com",
            "kba-tx.org",
            "kcoolonline.com",
            "kebrum.com",
            "kechara.com",
            "keepandshare.com",
            "keezmovies.com",
            "kendatire.com",
            "kendincos.net",
            "kenengba.com",
            "keontech.net",
            "kepard.com",
            "keso.cn",
            "kex.com",
            "keycdn.com",
            "khabdha.org",
            "khatrimaza.org",
            "khmusic.com.tw",
            "kichiku-doujinko.com",
            "kik.com",
            "killwall.com",
            "kimy.com.tw",
            "kindleren.com",
            "kingdomsalvation.org",
            "kinghost.com",
            "kingstone.com.tw",
            "kink.com",
            "kinmen.org.tw",
            "kinmen.travel",
            "kinokuniya.com",
            "kir.jp",
            "kissbbao.cn",
            "kiwi.kz",
            "kk-whys.co.jp",
            "kkbox.com",
            "kknews.cc",
            "klip.me",
            "kmuh.org.tw",
            "knowledgerush.com",
            "knowyourmeme.com",
            "kobo.com",
            "kobobooks.com",
            "kodingen.com",
            "kompozer.net",
            "konachan.com",
            "kone.com",
            "koolsolutions.com",
            "koornk.com",
            "koranmandarin.com",
            "korenan2.com",
            "kqes.net",
            "krtco.com.tw",
            "ksdl.org",
            "ksnews.com.tw",
            "kspcoin.com",
            "ktzhk.com",
            "kucoin.com",
            "kui.name",
            "kukuku.uk",
            "kun.im",
            "kurashsultan.com",
            "kurtmunger.com",
            "kusocity.com",
            "kwcg.ca",
            "kwok7.com",
            "kwongwah.com.my",
            "kxsw.life",
            "kyofun.com",
            "kyohk.net",
            "kyoyue.com",
            "kyzyhello.com",
            "kzeng.info",
            "la-forum.org",
            "labiennale.org",
            "ladbrokes.com",
            "lagranepoca.com",
            "lala.im",
            "lalulalu.com",
            "lama.com.tw",
            "lamayeshe.com",
            "lamenhu.com",
            "lamnia.co.uk",
            "lamrim.com",
            "landofhope.tv",
            "lanterncn.cn",
            "lantosfoundation.org",
            "laod.cn",
            "laogai.org",
            "laogairesearch.org",
            "laomiu.com",
            "laoyang.info",
            "laptoplockdown.com",
            "laqingdan.net",
            "larsgeorge.com",
            "lastcombat.com",
            "lastfm.es",
            "latelinenews.com",
            "lausan.hk",
            "law.com",
            "lbank.info",
            "le-vpn.com",
            "leafyvpn.net",
            "lecloud.net",
            "leeao.com.cn",
            "lefora.com",
            "left21.hk",
            "legalporno.com",
            "legsjapan.com",
            "leirentv.ca",
            "leisurecafe.ca",
            "leisurepro.com",
            "lematin.ch",
            "lemonde.fr",
            "lenwhite.com",
            "leorockwell.com",
            "lerosua.org",
            "lers.google",
            "lesoir.be",
            "lester850.info",
            "letou.com",
            "letscorp.net",
            "letsencrypt.org",
            "levyhsu.com",
            "lflink.com",
            "lflinkup.com",
            "lflinkup.net",
            "lflinkup.org",
            "lfpcontent.com",
            "lhakar.org",
            "lhasocialwork.org",
            "liangyou.net",
            "liangzhichuanmei.com",
            "lianyue.net",
            "liaowangxizang.net",
            "liberal.org.hk",
            "libertytimes.com.tw",
            "libraryinformationtechnology.com",
            "libredd.it",
            "lifemiles.com",
            "lighten.org.tw",
            "lighti.me",
            "lightnovel.cn",
            "lightyearvpn.com",
            "lihkg.com",
            "like.com",
            "limiao.net",
            "line-apps.com",
            "line-scdn.net",
            "line.me",
            "linglingfa.com",
            "lingvodics.com",
            "link-o-rama.com",
            "linkedin.com",
            "linkideo.com",
            "linksalpha.com",
            "linkuswell.com",
            "linpie.com",
            "linux.org.hk",
            "linuxtoy.org",
            "lionsroar.com",
            "lipuman.com",
            "liquiditytp.com",
            "liquidvpn.com",
            "list-manage.com",
            "listennotes.com",
            "listentoyoutube.com",
            "listorious.com",
            "lithium.com",
            "liu-xiaobo.org",
            "liudejun.com",
            "liuhanyu.com",
            "liujianshu.com",
            "liuxiaobo.net",
            "liuxiaotong.com",
            "live.com",
            "livecoin.net",
            "livedoor.jp",
            "liveleak.com",
            "livemint.com",
            "livestation.com",
            "livestream.com",
            "livevideo.com",
            "livingonline.us",
            "livingstream.com",
            "liwangyang.com",
            "lizhizhuangbi.com",
            "lkcn.net",
            "llss.me",
            "lncn.org",
            "load.to",
            "lobsangwangyal.com",
            "localbitcoins.com",
            "localdomain.ws",
            "localpresshk.com",
            "lockestek.com",
            "logbot.net",
            "logiqx.com",
            "logmein.com",
            "logos.com.hk",
            "londonchinese.ca",
            "longhair.hk",
            "longmusic.com",
            "longtermly.net",
            "longtoes.com",
            "lookpic.com",
            "looktoronto.com",
            "lotsawahouse.org",
            "lotuslight.org.hk",
            "lotuslight.org.tw",
            "loved.hk",
            "lovetvshow.com",
            "lpsg.com",
            "lrfz.com",
            "lrip.org",
            "lsd.org.hk",
            "lsforum.net",
            "lsm.org",
            "lsmchinese.org",
            "lsmkorean.org",
            "lsmradio.com",
            "lsmwebcast.com",
            "lsxszzg.com",
            "ltn.com.tw",
            "luckydesigner.space",
            "luke54.com",
            "luke54.org",
            "lupm.org",
            "lushstories.com",
            "luxebc.com",
            "lvhai.org",
            "lvv2.com",
            "lyfhk.net",
            "lzjscript.com",
            "lzmtnews.org",
            "m-sport.co.uk",
            "m-team.cc",
            "m.me",
            "macgamestore.com",
            "macrovpn.com",
            "macts.com.tw",
            "mad-ar.ch",
            "madewithcode.com",
            "madonna-av.com",
            "madrau.com",
            "madthumbs.com",
            "magic-net.info",
            "mahabodhi.org",
            "maiio.net",
            "mail-archive.com",
            "mail.ru",
            "mailchimp.com",
            "maildns.xyz",
            "maiplus.com",
            "maizhong.org",
            "makemymood.com",
            "makkahnewspaper.com",
            "malaysiakini.com",
            "mamingzhe.com",
            "manchukuo.net",
            "mandiant.com",
            "mangafox.com",
            "mangafox.me",
            "maniash.com",
            "manicur4ik.ru",
            "mansion.com",
            "mansionpoker.com",
            "manta.com",
            "manyvoices.news",
            "maplew.com",
            "marc.info",
            "marguerite.su",
            "martau.com",
            "martincartoons.com",
            "martinoei.com",
            "martsangkagyuofficial.org",
            "maruta.be",
            "marxist.com",
            "marxist.net",
            "marxists.org",
            "mash.to",
            "maskedip.com",
            "mastodon.cloud",
            "mastodon.host",
            "mastodon.social",
            "mastodon.xyz",
            "matainja.com",
            "material.io",
            "mathable.io",
            "mathiew-badimon.com",
            "matome-plus.com",
            "matome-plus.net",
            "matrix.org",
            "matsushimakaede.com",
            "matters.news",
            "mattwilcox.net",
            "maturejp.com",
            "maxing.jp",
            "mayimayi.com",
            "mcadforums.com",
            "mcaf.ee",
            "mcfog.com",
            "mcreasite.com",
            "md-t.org",
            "me.me",
            "meansys.com",
            "media.org.hk",
            "mediachinese.com",
            "mediafire.com",
            "mediafreakcity.com",
            "medium.com",
            "meetav.com",
            "meetup.com",
            "mefeedia.com",
            "meforum.org",
            "mefound.com",
            "mega.co.nz",
            "mega.io",
            "mega.nz",
            "megaproxy.com",
            "megarotic.com",
            "megavideo.com",
            "megurineluka.com",
            "meizhong.blog",
            "meizhong.report",
            "meltoday.com",
            "memehk.com",
            "memorybbs.com",
            "memri.org",
            "memrijttm.org",
            "mercatox.com",
            "mercdn.net",
            "mercyprophet.org",
            "mergersandinquisitions.org",
            "meridian-trust.org",
            "meripet.biz",
            "meripet.com",
            "merit-times.com.tw",
            "meshrep.com",
            "mesotw.com",
            "messenger.com",
            "metacafe.com",
            "metafilter.com",
            "metart.com",
            "metarthunter.com",
            "meteorshowersonline.com",
            "metro.taipei",
            "metrohk.com.hk",
            "metrolife.ca",
            "metroradio.com.hk",
            "mewe.com",
            "meyou.jp",
            "meyul.com",
            "mfxmedia.com",
            "mgoon.com",
            "mgstage.com",
            "mh4u.org",
            "mhradio.org",
            "michaelanti.com",
            "michaelmarketl.com",
            "microvpn.com",
            "middle-way.net",
            "mihk.hk",
            "mihr.com",
            "mihua.org",
            "mikesoltys.com",
            "mikocon.com",
            "milph.net",
            "milsurps.com",
            "mimiai.net",
            "mimivip.com",
            "mimivv.com",
            "mindrolling.org",
            "mingdemedia.org",
            "minghui-a.org",
            "minghui-b.org",
            "minghui-school.org",
            "minghui.or.kr",
            "minghui.org",
            "mingjinglishi.com",
            "mingjingnews.com",
            "mingjingtimes.com",
            "mingpao.com",
            "mingpaocanada.com",
            "mingpaomonthly.com",
            "mingpaonews.com",
            "mingpaony.com",
            "mingpaosf.com",
            "mingpaotor.com",
            "mingpaovan.com",
            "mingshengbao.com",
            "minhhue.net",
            "miniforum.org",
            "ministrybooks.org",
            "minzhuhua.net",
            "minzhuzhanxian.com",
            "minzhuzhongguo.org",
            "miroguide.com",
            "mirrorbooks.com",
            "mirrormedia.mg",
            "mist.vip",
            "mit.edu",
            "mitao.com.tw",
            "mitbbs.com",
            "mitbbsau.com",
            "mixero.com",
            "mixi.jp",
            "mixpod.com",
            "mixx.com",
            "mizzmona.com",
            "mjib.gov.tw",
            "mk5000.com",
            "mlcool.com",
            "mlzs.work",
            "mm-cg.com",
            "mmaaxx.com",
            "mmmca.com",
            "mnewstv.com",
            "mobatek.net",
            "mobile01.com",
            "mobileways.de",
            "moby.to",
            "mobypicture.com",
            "mod.io",
            "modernchinastudies.org",
            "moeaic.gov.tw",
            "moeerolibrary.com",
            "moegirl.org",
            "mofa.gov.tw",
            "mofaxiehui.com",
            "mofos.com",
            "mog.com",
            "mohu.club",
            "mohu.ml",
            "mohu.rocks",
            "mojim.com",
            "mol.gov.tw",
            "molihua.org",
            "monar.ch",
            "mondex.org",
            "money-link.com.tw",
            "moneyhome.biz",
            "monitorchina.org",
            "monitorware.com",
            "monlamit.org",
            "monster.com",
            "moodyz.com",
            "moon.fm",
            "moonbbs.com",
            "moonbingo.com",
            "moptt.tw",
            "morbell.com",
            "morningsun.org",
            "moroneta.com",
            "mos.ru",
            "motherless.com",
            "motiyun.com",
            "motor4ik.ru",
            "mousebreaker.com",
            "movements.org",
            "moviefap.com",
            "moztw.org",
            "mp3buscador.com",
            "mpettis.com",
            "mpfinance.com",
            "mpinews.com",
            "mponline.hk",
            "mqxd.org",
            "mrbasic.com",
            "mrbonus.com",
            "mrface.com",
            "mrslove.com",
            "mrtweet.com",
            "msa-it.org",
            "msguancha.com",
            "msha.gov",
            "msn.com",
            "msn.com.tw",
            "mswe1.org",
            "mthruf.com",
            "mtw.tl",
            "mubi.com",
            "muchosucko.com",
            "mullvad.net",
            "multiply.com",
            "multiproxy.org",
            "multiupload.com",
            "mummysgold.com",
            "murmur.tw",
            "musicade.net",
            "muslimvideo.com",
            "muzi.com",
            "muzi.net",
            "muzu.tv",
            "mvdis.gov.tw",
            "mvg.jp",
            "mx981.com",
            "my-formosa.com",
            "my-private-network.co.uk",
            "my-proxy.com",
            "my03.com",
            "my903.com",
            "myactimes.com",
            "myanniu.com",
            "myaudiocast.com",
            "myav.com.tw",
            "mybbs.us",
            "mybet.com",
            "myca168.com",
            "mycanadanow.com",
            "mychat.to",
            "mychinamyhome.com",
            "mychinanet.com",
            "mychinanews.com",
            "mychinese.news",
            "mycnnews.com",
            "mycould.com",
            "mydad.info",
            "myddns.com",
            "myeasytv.com",
            "myeclipseide.com",
            "myforum.com.hk",
            "myfreecams.com",
            "myfreepaysite.com",
            "myfreshnet.com",
            "myftp.info",
            "myftp.name",
            "myiphide.com",
            "mykomica.org",
            "mylftv.com",
            "mymaji.com",
            "mymediarom.com",
            "mymoe.moe",
            "mymom.info",
            "mymusic.net.tw",
            "mynetav.net",
            "mynetav.org",
            "mynumber.org",
            "myparagliding.com",
            "mypicture.info",
            "mypikpak.com",
            "mypop3.net",
            "mypop3.org",
            "mypopescu.com",
            "myradio.hk",
            "myreadingmanga.info",
            "mysecondarydns.com",
            "mysinablog.com",
            "myspace.com",
            "myspacecdn.com",
            "mytalkbox.com",
            "mytizi.com",
            "mywww.biz",
            "myz.info",
            "naacoalition.org",
            "nabble.com",
            "naitik.net",
            "nakido.com",
            "nakuz.com",
            "nalandabodhi.org",
            "nalandawest.org",
            "namgyal.org",
            "namgyalmonastery.org",
            "namsisi.com",
            "nanyang.com",
            "nanyangpost.com",
            "nanzao.com",
            "naol.ca",
            "naol.cc",
            "narod.ru",
            "nasa.gov",
            "nat.gov.tw",
            "nat.moe",
            "natado.com",
            "national-lottery.co.uk",
            "nationalawakening.org",
            "nationalgeographic.com",
            "nationalinterest.org",
            "nationalreview.com",
            "nationsonline.org",
            "nationwide.com",
            "naughtyamerica.com",
            "naver.jp",
            "navy.mil",
            "naweeklytimes.com",
            "nbc.com",
            "nbcnews.com",
            "nbtvpn.com",
            "nccwatch.org.tw",
            "nch.com.tw",
            "nchrd.org",
            "ncn.org",
            "ncol.com",
            "nde.de",
            "ndi.org",
            "ndr.de",
            "ned.org",
            "nekoslovakia.net",
            "neo-miracle.com",
            "neowin.net",
            "nepusoku.com",
            "nesnode.com",
            "net-fits.pro",
            "netalert.me",
            "netbig.com",
            "netbirds.com",
            "netcolony.com",
            "netfirms.com",
            "netflav.com",
            "netflix.com",
            "netflix.net",
            "netme.cc",
            "netsarang.com",
            "netsneak.com",
            "network54.com",
            "networkedblogs.com",
            "networktunnel.net",
            "neverforget8964.org",
            "new-3lunch.net",
            "new-akiba.com",
            "new96.ca",
            "newcenturymc.com",
            "newcenturynews.com",
            "newchen.com",
            "newgrounds.com",
            "newhighlandvision.com",
            "newipnow.com",
            "newlandmagazine.com.au",
            "newnews.ca",
            "news100.com.tw",
            "newsancai.com",
            "newschinacomment.org",
            "newscn.org",
            "newsdetox.ca",
            "newsdh.com",
            "newsmagazine.asia",
            "newsmax.com",
            "newspeak.cc",
            "newstamago.com",
            "newstapa.org",
            "newstarnet.com",
            "newstatesman.com",
            "newsweek.com",
            "newtaiwan.com.tw",
            "newtalk.tw",
            "newyorker.com",
            "newyorktimes.com",
            "nexon.com",
            "next11.co.jp",
            "nextdigital.com.hk",
            "nextmag.com.tw",
            "nextmedia.com",
            "nexton-net.jp",
            "nexttv.com.tw",
            "nf.id.au",
            "nfjtyd.com",
            "nflxext.com",
            "nflximg.com",
            "nflximg.net",
            "nflxso.net",
            "nflxvideo.net",
            "ng.mil",
            "nga.mil",
            "ngensis.com",
            "ngodupdongchung.com",
            "nhentai.net",
            "nhi.gov.tw",
            "nhk-ondemand.jp",
            "nic.google",
            "nic.gov",
            "nicovideo.jp",
            "nighost.org",
            "nightlife141.com",
            "nike.com",
            "nikkei.com",
            "ninecommentaries.com",
            "ning.com",
            "ninjacloak.com",
            "ninjaproxy.ninja",
            "nintendium.com",
            "ninth.biz",
            "nitter.cc",
            "nitter.net",
            "niu.moe",
            "niusnews.com",
            "njactb.org",
            "njuice.com",
            "nlfreevpn.com",
            "nmsl.website",
            "nnews.eu",
            "no-ip.com",
            "no-ip.org",
            "nobel.se",
            "nobelprize.org",
            "nobodycanstop.us",
            "nodesnoop.com",
            "nofile.io",
            "nokogiri.org",
            "nokola.com",
            "noodlevpn.com",
            "norbulingka.org",
            "nordstrom.com",
            "nordstromimage.com",
            "nordstromrack.com",
            "nordvpn.com",
            "notepad-plus-plus.org",
            "nottinghampost.com",
            "novelasia.com",
            "now.com",
            "now.im",
            "nownews.com",
            "nowtorrents.com",
            "noxinfluencer.com",
            "noypf.com",
            "npa.go.jp",
            "npa.gov.tw",
            "npnt.me",
            "nps.gov",
            "npsboost.com",
            "nradio.me",
            "nrk.no",
            "ns01.biz",
            "ns01.info",
            "ns01.us",
            "ns02.biz",
            "ns02.info",
            "ns02.us",
            "ns1.name",
            "ns2.name",
            "ns3.name",
            "nsc.gov.tw",
            "ntbk.gov.tw",
            "ntbna.gov.tw",
            "ntbt.gov.tw",
            "ntd.tv",
            "ntdtv.ca",
            "ntdtv.co.kr",
            "ntdtv.com",
            "ntdtv.com.tw",
            "ntdtv.cz",
            "ntdtv.org",
            "ntdtv.ru",
            "ntdtvla.com",
            "ntrfun.com",
            "ntsna.gov.tw",
            "ntu.edu.tw",
            "nu.nl",
            "nubiles.net",
            "nudezz.com",
            "nuexpo.com",
            "nukistream.com",
            "nurgo-software.com",
            "nusatrip.com",
            "nutaku.net",
            "nutsvpn.work",
            "nuuvem.com",
            "nuvid.com",
            "nuzcom.com",
            "nvdst.com",
            "nvquan.org",
            "nvtongzhisheng.org",
            "nwtca.org",
            "nyaa.eu",
            "nyaa.si",
            "nybooks.com",
            "nydus.ca",
            "nylon-angel.com",
            "nylonstockingsonline.com",
            "nypost.com",
            "nyt.com",
            "nytchina.com",
            "nytcn.me",
            "nytco.com",
            "nyti.ms",
            "nytimes.com",
            "nytimg.com",
            "nytlog.com",
            "nytstyle.com",
            "nzchinese.com",
            "nzchinese.net.nz",
            "oanda.com",
            "oann.com",
            "oauth.net",
            "observechina.net",
            "obutu.com",
            "ocaspro.com",
            "occupytiananmen.com",
            "oclp.hk",
            "ocreampies.com",
            "ocry.com",
            "october-review.org",
            "oculus.com",
            "oculuscdn.com",
            "odysee.com",
            "oex.com",
            "offbeatchina.com",
            "officeoftibet.com",
            "ofile.org",
            "ogaoga.org",
            "ogate.org",
            "ohchr.org",
            "ohmyrss.com",
            "oikos.com.tw",
            "oiktv.com",
            "oizoblog.com",
            "ok.ru",
            "okayfreedom.com",
            "okex.com",
            "okk.tw",
            "okx.com",
            "olabloga.pl",
            "old-cat.net",
            "olevod.com",
            "olumpo.com",
            "olympicwatch.org",
            "omct.org",
            "omgili.com",
            "omni7.jp",
            "omnitalk.com",
            "omnitalk.org",
            "omny.fm",
            "omy.sg",
            "on.cc",
            "on2.com",
            "onapp.com",
            "onedumb.com",
            "onejav.com",
            "onion.city",
            "onion.ly",
            "onlinecha.com",
            "onlineyoutube.com",
            "onlygayvideo.com",
            "onlytweets.com",
            "onmoon.com",
            "onmoon.net",
            "onmypc.biz",
            "onmypc.info",
            "onmypc.net",
            "onmypc.org",
            "onmypc.us",
            "onthehunt.com",
            "ontrac.com",
            "oopsforum.com",
            "open.com.hk",
            "openallweb.com",
            "opendemocracy.net",
            "opendn.xyz",
            "openervpn.in",
            "openid.net",
            "openleaks.org",
            "opensea.io",
            "opensource.google",
            "opentech.fund",
            "openvpn.net",
            "openvpn.org",
            "openwebster.com",
            "openwrt.org.cn",
            "opera-mini.net",
            "opera.com",
            "opus-gaming.com",
            "orchidbbs.com",
            "organcare.org.tw",
            "organharvestinvestigation.net",
            "organiccrap.com",
            "orgasm.com",
            "orgfree.com",
            "oricon.co.jp",
            "orient-doll.com",
            "orientaldaily.com.my",
            "orn.jp",
            "orzdream.com",
            "orzistic.org",
            "osfoora.com",
            "otcbtc.com",
            "otnd.org",
            "otto.de",
            "otzo.com",
            "ourdearamy.com",
            "ourhobby.com",
            "oursogo.com",
            "oursteps.com.au",
            "oursweb.net",
            "ourtv.hk",
            "over-blog.com",
            "overcast.fm",
            "overdaily.org",
            "overplay.net",
            "ovi.com",
            "ovpn.com",
            "ow.ly",
            "owind.com",
            "owl.li",
            "owltail.com",
            "oxfordscholarship.com",
            "oxid.it",
            "oyax.com",
            "oyghan.com",
            "ozchinese.com",
            "ozvoice.org",
            "ozxw.com",
            "ozyoyo.com",
            "pachosting.com",
            "pacificpoker.com",
            "packetix.net",
            "pacopacomama.com",
            "padmanet.com",
            "page.tl",
            "page2rss.com",
            "pages.dev",
            "pagodabox.com",
            "palacemoon.com",
            "paldengyal.com",
            "paljorpublications.com",
            "palmislife.com",
            "paltalk.com",
            "pandapow.co",
            "pandapow.net",
            "pandavpn-jp.com",
            "pandavpnpro.com",
            "pandora.com",
            "pandora.tv",
            "panluan.net",
            "panoramio.com",
            "pao-pao.net",
            "paper.li",
            "paperb.us",
            "paradisehill.cc",
            "paradisepoker.com",
            "parkansky.com",
            "parler.com",
            "parse.com",
            "parsevideo.com",
            "partycasino.com",
            "partypoker.com",
            "passion.com",
            "passiontimes.hk",
            "paste.ee",
            "pastebin.com",
            "pastie.org",
            "pathtosharepoint.com",
            "patreon.com",
            "paxful.com",
            "pbs.org",
            "pbwiki.com",
            "pbworks.com",
            "pbxes.com",
            "pbxes.org",
            "pcanywhere.net",
            "pcc.gov.tw",
            "pcdvd.com.tw",
            "pchome.com.tw",
            "pcij.org",
            "pcloud.com",
            "pcstore.com.tw",
            "pct.org.tw",
            "pdetails.com",
            "pdproxy.com",
            "peace.ca",
            "peacefire.org",
            "peacehall.com",
            "pearlher.org",
            "peeasian.com",
            "peing.net",
            "pekingduck.org",
            "pemulihan.or.id",
            "pen.io",
            "penchinese.com",
            "penchinese.net",
            "pengyulong.com",
            "penisbot.com",
            "pentalogic.net",
            "penthouse.com",
            "pentoy.hk",
            "peoplebookcafe.com",
            "peoplenews.tw",
            "peopo.org",
            "percy.in",
            "perfect-privacy.com",
            "perfectgirls.net",
            "periscope.tv",
            "persecutionblog.com",
            "persiankitty.com",
            "phapluan.org",
            "phayul.com",
            "philborges.com",
            "philly.com",
            "phmsociety.org",
            "phncdn.com",
            "phonegap.com",
            "photodharma.net",
            "photofocus.com",
            "phuquocservices.com",
            "picacomic.com",
            "picacomiccn.com",
            "picasaweb.com",
            "picidae.net",
            "picturedip.com",
            "picturesocial.com",
            "pimg.tw",
            "pin-cong.com",
            "pin6.com",
            "pincong.rocks",
            "ping.fm",
            "pinimg.com",
            "pinkrod.com",
            "pinoy-n.com",
            "pinterest.at",
  
Download .txt
gitextract_b47e1nds/

├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── 01_bug_report.yml
│   │   └── 02_feature_request.yml
│   └── workflows/
│       ├── ci.yml
│       └── release.yml
├── .gitignore
├── LICENSE
├── README.md
└── v2rayN/
    ├── .gitattributes
    ├── .gitignore
    ├── HiddifyRestartN/
    │   ├── HiddifyRestartN.csproj
    │   ├── Program.cs
    │   └── Properties/
    │       └── launchSettings.json
    ├── HiddifyUpgradeN/
    │   ├── HiddifyUpgradeN.csproj
    │   ├── MainForm.Designer.cs
    │   ├── MainForm.cs
    │   ├── MainForm.resx
    │   ├── Program.cs
    │   ├── Properties/
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   └── app.manifest
    ├── PacLib/
    │   ├── PacHandler.cs
    │   ├── PacLib.csproj
    │   ├── Resources/
    │   │   └── pac.txt
    │   ├── Resources.Designer.cs
    │   └── Resources.resx
    ├── ProtosLib/
    │   ├── ProtosLib.csproj
    │   ├── Statistics.proto
    │   └── Tests.cs
    ├── v2rayN/
    │   ├── App.xaml
    │   ├── App.xaml.cs
    │   ├── AssemblyInfo.cs
    │   ├── Base/
    │   │   ├── DownloaderHelper.cs
    │   │   ├── HttpClientHelper.cs
    │   │   ├── MyDGTextColumn.cs
    │   │   ├── SqliteHelper.cs
    │   │   └── StringEx.cs
    │   ├── Converters/
    │   │   ├── DelayColorConverter.cs
    │   │   ├── LocalizeConverter.cs
    │   │   ├── MaterialDesignFonts.cs
    │   │   └── SizeConverter.cs
    │   ├── FodyWeavers.xml
    │   ├── Global.cs
    │   ├── Handler/
    │   │   ├── ConfigHandler.cs
    │   │   ├── CoreConfigHandler.cs
    │   │   ├── CoreConfigSingbox.cs
    │   │   ├── CoreConfigV2ray.cs
    │   │   ├── CoreHandler.cs
    │   │   ├── DownloadHandle.cs
    │   │   ├── HotkeyHandler.cs
    │   │   ├── LazyConfig.cs
    │   │   ├── MainFormHandler.cs
    │   │   ├── NoticeHandler.cs
    │   │   ├── ProfileExHandler.cs
    │   │   ├── ProxySetting.cs
    │   │   ├── QRCodeHelper.cs
    │   │   ├── ShareHandler.cs
    │   │   ├── SpeedtestHandler.cs
    │   │   ├── StatisticsHandler.cs
    │   │   ├── SysProxyHandle.cs
    │   │   ├── TunHandler.cs
    │   │   └── UpdateHandle.cs
    │   ├── Mode/
    │   │   ├── BalancerItem.cs
    │   │   ├── ComboItem.cs
    │   │   ├── Config.cs
    │   │   ├── ConfigItems.cs
    │   │   ├── ConfigOld.cs
    │   │   ├── CoreInfo.cs
    │   │   ├── DNSItem.cs
    │   │   ├── EConfigType.cs
    │   │   ├── ECoreType.cs
    │   │   ├── EGlobalHotkey.cs
    │   │   ├── EMove.cs
    │   │   ├── EServerColName.cs
    │   │   ├── ESpeedActionType.cs
    │   │   ├── ESysProxyType.cs
    │   │   ├── EViewAction.cs
    │   │   ├── GitHubRelease.cs
    │   │   ├── HiddifyEnums.cs
    │   │   ├── ProfileExItem.cs
    │   │   ├── ProfileItem.cs
    │   │   ├── ProfileItemModel.cs
    │   │   ├── ProxyMode.cs
    │   │   ├── RoutingItem.cs
    │   │   ├── RoutingItemModel.cs
    │   │   ├── RulesItem.cs
    │   │   ├── RulesItemModel.cs
    │   │   ├── ServerSpeedItem.cs
    │   │   ├── ServerStatItem.cs
    │   │   ├── ServerTestItem.cs
    │   │   ├── SingboxConfig.cs
    │   │   ├── SsSIP008.cs
    │   │   ├── SubItem.cs
    │   │   ├── SubscriptionInfo.cs
    │   │   ├── SysproxyConfig.cs
    │   │   ├── V2rayConfig.cs
    │   │   ├── V2rayTcpRequest.cs
    │   │   └── VmessQRCode.cs
    │   ├── Resx/
    │   │   ├── Hiddify.Designer.cs
    │   │   ├── Hiddify.resx
    │   │   ├── ResUI.Designer.cs
    │   │   ├── ResUI.fa-Ir.resx
    │   │   ├── ResUI.resx
    │   │   ├── ResUI.ru.resx
    │   │   └── ResUI.zh-Hans.resx
    │   ├── Sample/
    │   │   ├── SampleClientConfig
    │   │   ├── SampleHttprequest
    │   │   ├── SampleHttpresponse
    │   │   ├── SampleInbound
    │   │   ├── SingboxSampleClientConfig
    │   │   ├── custom_routing_black
    │   │   ├── custom_routing_global
    │   │   ├── custom_routing_locked
    │   │   ├── custom_routing_rules
    │   │   ├── custom_routing_white
    │   │   ├── dns_singbox_normal
    │   │   ├── dns_v2ray_normal
    │   │   ├── tun_singbox
    │   │   ├── tun_singbox_dns
    │   │   ├── tun_singbox_inbound
    │   │   └── tun_singbox_rules
    │   ├── Tool/
    │   │   ├── DeepLinking.cs
    │   │   ├── FileManager.cs
    │   │   ├── Job.cs
    │   │   ├── Logging.cs
    │   │   ├── QueryableExtension.cs
    │   │   ├── TestSpeed.cs
    │   │   ├── UI.cs
    │   │   └── Utils.cs
    │   ├── ViewModels/
    │   │   ├── AddServer2ViewModel.cs
    │   │   ├── AddServerViewModel.cs
    │   │   ├── AnotherCommandImplementation.cs
    │   │   ├── DNSSettingViewModel.cs
    │   │   ├── DemoItem.cs
    │   │   ├── HomeWindowViewModel.cs
    │   │   ├── MainWindowViewModel.cs
    │   │   ├── OptionSettingViewModel.cs
    │   │   ├── RoutingRuleDetailsViewModel.cs
    │   │   ├── RoutingRuleSettingViewModel.cs
    │   │   ├── RoutingSettingViewModel.cs
    │   │   ├── SubEditViewModel.cs
    │   │   ├── SubSettingViewModel.cs
    │   │   └── ViewModelBase.cs
    │   ├── Views/
    │   │   ├── AddServer2Window.xaml
    │   │   ├── AddServer2Window.xaml.cs
    │   │   ├── AddServerWindow.xaml
    │   │   ├── AddServerWindow.xaml.cs
    │   │   ├── DNSSettingWindow.xaml
    │   │   ├── DNSSettingWindow.xaml.cs
    │   │   ├── GlobalHotkeySettingWindow.xaml
    │   │   ├── GlobalHotkeySettingWindow.xaml.cs
    │   │   ├── HiddifyUI.xaml
    │   │   ├── HiddifyUI.xaml.cs
    │   │   ├── MainSubInfoView.xaml
    │   │   ├── MainSubInfoView.xaml.cs
    │   │   ├── MainWindow.xaml
    │   │   ├── MainWindow.xaml.cs
    │   │   ├── MsgView.xaml
    │   │   ├── MsgView.xaml.cs
    │   │   ├── OptionSettingWindow.xaml
    │   │   ├── OptionSettingWindow.xaml.cs
    │   │   ├── QrcodeView.xaml
    │   │   ├── QrcodeView.xaml.cs
    │   │   ├── RoutingRuleDetailsWindow.xaml
    │   │   ├── RoutingRuleDetailsWindow.xaml.cs
    │   │   ├── RoutingRuleSettingWindow.xaml
    │   │   ├── RoutingRuleSettingWindow.xaml.cs
    │   │   ├── RoutingSettingWindow.xaml
    │   │   ├── RoutingSettingWindow.xaml.cs
    │   │   ├── SubEditWindow.xaml
    │   │   ├── SubEditWindow.xaml.cs
    │   │   ├── SubInfoView.xaml
    │   │   ├── SubInfoView.xaml.cs
    │   │   ├── SubSettingWindow.xaml
    │   │   └── SubSettingWindow.xaml.cs
    │   ├── app.manifest
    │   └── v2rayN.csproj
    └── v2rayN.sln
Download .txt
SYMBOL INDEX (909 symbols across 114 files)

FILE: v2rayN/HiddifyUpgradeN/MainForm.Designer.cs
  class MainForm (line 3) | partial class MainForm
    method Dispose (line 14) | protected override void Dispose(bool disposing)
    method InitializeComponent (line 29) | private void InitializeComponent()

FILE: v2rayN/HiddifyUpgradeN/MainForm.cs
  class MainForm (line 11) | public partial class MainForm : Form
    method MainForm (line 16) | public MainForm(string[] args)
    method ShowWarn (line 29) | private void ShowWarn(string message)
    method btnOK_Click (line 34) | private void btnOK_Click(object sender, EventArgs e)
    method btnClose_Click (line 123) | private void btnClose_Click(object sender, EventArgs e)
    method GetExePath (line 128) | public static string GetExePath()
    method StartupPath (line 133) | public static string StartupPath()
    method GetPath (line 138) | public static string GetPath(string fileName)

FILE: v2rayN/HiddifyUpgradeN/Program.cs
  class Program (line 6) | internal static class Program
    method Main (line 11) | [STAThread]

FILE: v2rayN/HiddifyUpgradeN/Properties/Resources.Designer.cs
  class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource...
    method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic...

FILE: v2rayN/HiddifyUpgradeN/Properties/Settings.Designer.cs
  class Settings (line 14) | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]

FILE: v2rayN/PacLib/PacHandler.cs
  class PacHandler (line 10) | public class PacHandler
    method Start (line 20) | public static void Start(string configPath, int httpPort, int pacPort)
    method InitText (line 37) | private static void InitText()
    method RunListener (line 48) | private static void RunListener()
    method Stop (line 88) | public static void Stop()

FILE: v2rayN/PacLib/Resources.Designer.cs
  class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource...
    method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic...

FILE: v2rayN/ProtosLib/Tests.cs
  class Tests (line 5) | public class Tests
    method Tests (line 9) | public Tests()

FILE: v2rayN/v2rayN/App.xaml.cs
  class App (line 19) | public partial class App : Application
    method App (line 26) | public App()
    method OnStartup (line 38) | protected override void OnStartup(StartupEventArgs e)
    method sendLinkToUi (line 69) | private void sendLinkToUi()
    method Init (line 100) | private void Init()
    method App_DispatcherUnhandledException (line 115) | private void App_DispatcherUnhandledException(object sender, Dispatche...
    method CurrentDomain_UnhandledException (line 121) | private void CurrentDomain_UnhandledException(object sender, Unhandled...
    method TaskScheduler_UnobservedTaskException (line 129) | private void TaskScheduler_UnobservedTaskException(object? sender, Uno...

FILE: v2rayN/v2rayN/Base/DownloaderHelper.cs
  class DownloaderHelper (line 7) | internal class DownloaderHelper
    method DownloadStringAsync (line 12) | public async Task<string?> DownloadStringAsync(IWebProxy? webProxy, st...
    method DownloadDataAsync4Speed (line 57) | public async Task DownloadDataAsync4Speed(IWebProxy webProxy, string u...
    method DownloadFileAsync (line 120) | public async Task DownloadFileAsync(IWebProxy? webProxy, string url, s...

FILE: v2rayN/v2rayN/Base/HttpClientHelper.cs
  class HttpClientHelper (line 10) | public class HttpClientHelper
    method HttpClientHelper (line 22) | private HttpClientHelper(HttpClient httpClient) => this.httpClient = h...
    method GetAsync (line 24) | public async Task<string?> GetAsync(string url)
    method GetAsync (line 30) | public async Task<string?> GetAsync(HttpClient client, string url, Can...
    method PutAsync (line 36) | public async Task PutAsync(string url, Dictionary<string, string> head...
    method DownloadFileAsync (line 44) | public static async Task DownloadFileAsync(HttpClient client, string u...
    method DownloadDataAsync4Speed (line 89) | public async Task DownloadDataAsync4Speed(HttpClient client, string ur...

FILE: v2rayN/v2rayN/Base/MyDGTextColumn.cs
  class MyDGTextColumn (line 5) | internal class MyDGTextColumn : DataGridTextColumn

FILE: v2rayN/v2rayN/Base/SqliteHelper.cs
  class SqliteHelper (line 6) | public sealed class SqliteHelper
    method SqliteHelper (line 15) | public SqliteHelper()
    method CreateTable (line 22) | public CreateTableResult CreateTable<T>()
    method Insert (line 27) | public int Insert(object model)
    method InsertAll (line 32) | public int InsertAll(IEnumerable models)
    method InsertAsync (line 40) | public async Task<int> InsertAsync(object model)
    method Replace (line 45) | public int Replace(object model)
    method Replacesync (line 53) | public async Task<int> Replacesync(object model)
    method Update (line 58) | public int Update(object model)
    method UpdateAsync (line 66) | public async Task<int> UpdateAsync(object model)
    method UpdateAll (line 71) | public int UpdateAll(IEnumerable models)
    method Delete (line 79) | public int Delete(object model)
    method DeleteAsync (line 87) | public async Task<int> DeleteAsync(object model)
    method Query (line 92) | public List<T> Query<T>(string sql) where T : new()
    method QueryAsync (line 97) | public async Task<List<T>> QueryAsync<T>(string sql) where T : new()
    method Execute (line 102) | public int Execute(string sql)
    method ExecuteAsync (line 107) | public async Task<int> ExecuteAsync(string sql)
    method Table (line 112) | public TableQuery<T> Table<T>() where T : new()
    method TableAsync (line 117) | public AsyncTableQuery<T> TableAsync<T>() where T : new()

FILE: v2rayN/v2rayN/Base/StringEx.cs
  class StringEx (line 6) | internal static class StringEx
    method IsNullOrEmpty (line 8) | public static bool IsNullOrEmpty([NotNullWhen(false)] this string? value)
    method IsNullOrWhiteSpace (line 13) | public static bool IsNullOrWhiteSpace([NotNullWhen(false)] this string...
    method BeginWithAny (line 18) | public static bool BeginWithAny(this string s, IEnumerable<char> chars)
    method IsWhiteSpace (line 24) | public static bool IsWhiteSpace(this string value)
    method NonWhiteSpaceLines (line 35) | public static IEnumerable<string> NonWhiteSpaceLines(this TextReader r...
    method TrimEx (line 45) | public static string TrimEx(this string? value)

FILE: v2rayN/v2rayN/Converters/DelayColorConverter.cs
  class DelayColorConverter (line 6) | public class DelayColorConverter : IValueConverter
    method Convert (line 8) | public object Convert(object value, Type targetType, object parameter,...
    method ConvertBack (line 20) | public object? ConvertBack(object value, Type targetType, object param...

FILE: v2rayN/v2rayN/Converters/LocalizeConverter.cs
  class LocalizeConverter (line 13) | public class LocalizeConverter : IValueConverter
    method Convert (line 15) | public object Convert(object value, Type targetType, object parameter,...
    method ConvertBack (line 23) | public object ConvertBack(object value, Type targetType, object parame...

FILE: v2rayN/v2rayN/Converters/MaterialDesignFonts.cs
  class MaterialDesignFonts (line 6) | public class MaterialDesignFonts
    method MaterialDesignFonts (line 10) | static MaterialDesignFonts()

FILE: v2rayN/v2rayN/Converters/SizeConverter.cs
  class SizeConverter (line 7) | public class SizeConverter : IValueConverter
    method IsNumber (line 12) | private static bool IsNumber(object value)
    method Convert (line 22) | public object Convert(object value, Type targetType, object parameter,...
    method ConvertBack (line 43) | public object ConvertBack(object value, Type targetType, object parame...

FILE: v2rayN/v2rayN/Global.cs
  class Global (line 5) | internal class Global

FILE: v2rayN/v2rayN/Handler/ConfigHandler.cs
  class ConfigHandler (line 17) | internal class ConfigHandler
    method LoadConfig (line 29) | public static int LoadConfig(ref Config config)
    method SaveConfig (line 207) | public static int SaveConfig(ref Config config, bool reload = true)
    method ToJsonFile (line 218) | private static void ToJsonFile(Config config)
    method ImportOldGuiConfig (line 246) | public static int ImportOldGuiConfig(ref Config config, string fileName)
    method AddServer (line 355) | public static int AddServer(ref Config config, ProfileItem profileItem...
    method RemoveServer (line 384) | public static int RemoveServer(Config config, List<ProfileItem> indexs)
    method CopyServer (line 404) | public static int CopyServer(ref Config config, List<ProfileItem> indexs)
    method SetDefaultServerIndex (line 440) | public static int SetDefaultServerIndex(ref Config config, string? ind...
    method SetDefaultServer (line 454) | public static int SetDefaultServer(Config config, List<ProfileItemMode...
    method GetDefaultServer (line 471) | public static ProfileItem? GetDefaultServer(ref Config config)
    method MoveServer (line 492) | public static int MoveServer(ref Config config, ref List<ProfileItem> ...
    method AddCustomServer (line 564) | public static int AddCustomServer(ref Config config, ProfileItem profi...
    method EditCustomServer (line 607) | public static int EditCustomServer(ref Config config, ProfileItem prof...
    method AddShadowsocksServer (line 627) | public static int AddShadowsocksServer(ref Config config, ProfileItem ...
    method AddSocksServer (line 651) | public static int AddSocksServer(ref Config config, ProfileItem profil...
    method AddTrojanServer (line 668) | public static int AddTrojanServer(ref Config config, ProfileItem profi...
    method SortServers (line 684) | public static int SortServers(ref Config config, string subId, string ...
    class CustomComparer (line 801) | class CustomComparer : IComparer<ProfileItem>
      method CustomComparer (line 803) | CustomComparer(String property)
      method Compare (line 807) | public int Compare(ProfileItem a, ProfileItem b)
    method AddVlessServer (line 825) | public static int AddVlessServer(ref Config config, ProfileItem profil...
    method DedupServerList (line 848) | public static Tuple<int, int> DedupServerList(Config config, string su...
    method AddServerCommon (line 872) | public static int AddServerCommon(ref Config config, ProfileItem profi...
    method CompareProfileItem (line 907) | private static bool CompareProfileItem(ProfileItem o, ProfileItem n, b...
    method RemoveProfileItem (line 930) | private static int RemoveProfileItem(Config config, string indexId)
    method AddBatchServers (line 965) | private static int AddBatchServers(ref Config config, string clipboard...
    method HomeAddBatchServers (line 1186) | public static (int,List<string>) HomeAddBatchServers(ref Config config...
    method AddBatchServers4Custom (line 1406) | private static int AddBatchServers4Custom(ref Config config, string cl...
    method AddBatchServers4SsSIP008 (line 1503) | private static int AddBatchServers4SsSIP008(ref Config config, string ...
    method AddBatchServers (line 1554) | public static int AddBatchServers(ref Config config, string clipboardD...
    method AddSubItem (line 1600) | public static int AddSubItem(ref Config config, string url, string? su...
    method AddSubItem (line 1631) | public static int AddSubItem(ref Config config, SubItem subItem,bool d...
    method RemoveServerViaSubid (line 1682) | public static int RemoveServerViaSubid(ref Config config, string subid...
    method DeleteSubItem (line 1705) | public static int DeleteSubItem(ref Config config, string id)
    method MoveToGroup (line 1718) | public static int MoveToGroup(Config config, List<ProfileItem> lstProf...
    method SaveRoutingItem (line 1733) | public static int SaveRoutingItem(ref Config config, RoutingItem item)
    method AddBatchRoutingRules (line 1756) | public static int AddBatchRoutingRules(ref RoutingItem routingItem, st...
    method MoveRoutingRule (line 1798) | public static int MoveRoutingRule(List<RulesItem> rules, int index, EM...
    method SetDefaultRouting (line 1868) | public static int SetDefaultRouting(ref Config config, RoutingItem rou...
    method GetDefaultRouting (line 1880) | public static RoutingItem GetDefaultRouting(ref Config config)
    method InitBuiltinRouting (line 1893) | public static int InitBuiltinRouting(ref Config config, bool blImportA...
    method GetLockedRoutingItem (line 1945) | public static RoutingItem GetLockedRoutingItem(ref Config config)
    method RemoveRoutingItem (line 1950) | public static void RemoveRoutingItem(RoutingItem routingItem)
    method InitBuiltinDNS (line 1959) | public static int InitBuiltinDNS(Config config)
    method SaveDNSItems (line 1982) | public static int SaveDNSItems(Config config, DNSItem item)

FILE: v2rayN/v2rayN/Handler/CoreConfigHandler.cs
  class CoreConfigHandler (line 10) | internal class CoreConfigHandler
    method GenerateClientConfig (line 12) | public static int GenerateClientConfig(ProfileItem node, string? fileN...
    method GenerateClientCustomConfig (line 89) | private static int GenerateClientCustomConfig(ProfileItem node, string...
    method GenerateClientSpeedtestConfigString (line 168) | public static string GenerateClientSpeedtestConfigString(Config config...

FILE: v2rayN/v2rayN/Handler/CoreConfigSingbox.cs
  class CoreConfigSingbox (line 7) | internal class CoreConfigSingbox
    method CoreConfigSingbox (line 12) | public CoreConfigSingbox(Config config)
    method GenerateClientConfigContent (line 17) | public int GenerateClientConfigContent(ProfileItem node, out SingboxCo...
    method log (line 68) | private int log(SingboxConfig singboxConfig)
    method inbound (line 106) | private int inbound(SingboxConfig singboxConfig)
    method GetInbound (line 185) | private Inbound4Sbox? GetInbound(Inbound4Sbox inItem, string tag, int ...
    method outbound (line 198) | private int outbound(ProfileItem node, SingboxConfig singboxConfig)
    method outboundMux (line 282) | private int outboundMux(ProfileItem node, Outbound4Sbox outbound)
    method outboundTls (line 306) | private int outboundTls(ProfileItem node, Outbound4Sbox outbound)
    method outboundTransport (line 347) | private int outboundTransport(ProfileItem node, Outbound4Sbox outbound)
    method routing (line 396) | private int routing(SingboxConfig singboxConfig)
    method routingDirectExe (line 489) | private void routingDirectExe(out List<string> lstDnsExe, out List<str...
    method routingUserRule (line 515) | private int routingUserRule(RulesItem item, List<Rule4Sbox> rules)
    method parseV2Domain (line 583) | private void parseV2Domain(string domain, Rule4Sbox rule)
    method parseV2Address (line 623) | private void parseV2Address(string address, Rule4Sbox rule)
    method dns (line 649) | private int dns(ProfileItem node, SingboxConfig singboxConfig)
    method statistic (line 717) | private int statistic(SingboxConfig singboxConfig)

FILE: v2rayN/v2rayN/Handler/CoreConfigV2ray.cs
  class CoreConfigV2ray (line 9) | internal class CoreConfigV2ray
    method CoreConfigV2ray (line 14) | public CoreConfigV2ray(Config config)
    method HiddifyGenerateSubConfigContent (line 20) | public int HiddifyGenerateSubConfigContent(ProfileItem node, out V2ray...
    method GenerateClientConfigContent (line 87) | public int GenerateClientConfigContent(ProfileItem node, out V2rayConf...
    method log (line 138) | private int log(V2rayConfig v2rayConfig)
    method inbound (line 163) | private int inbound(V2rayConfig v2rayConfig)
    method GetInbound (line 212) | private Inbounds? GetInbound(InItem inItem, string tag, int offset, bo...
    method routing (line 235) | private int routing(V2rayConfig v2rayConfig, BalancerItem balancer = n...
    method routingUserRule (line 288) | private int routingUserRule(RulesItem rules, V2rayConfig v2rayConfig, ...
    method outbound (line 377) | private int outbound(ProfileItem node, V2rayConfig v2rayConfig, String...
    method boundStreamSettings (line 579) | private int boundStreamSettings(ProfileItem node, StreamSettings strea...
    method dns (line 781) | private int dns(V2rayConfig v2rayConfig)
    method statistic (line 832) | private int statistic(V2rayConfig v2rayConfig)
    method GenerateClientSpeedtestConfigString (line 883) | public string GenerateClientSpeedtestConfigString(List<ServerTestItem>...

FILE: v2rayN/v2rayN/Handler/CoreHandler.cs
  class CoreHandler (line 12) | internal class CoreHandler
    method CoreHandler (line 20) | public CoreHandler(Config config, Action<bool, string> update)
    method LoadCore (line 29) | public void LoadCore()
    method LoadCoreConfigString (line 57) | public int LoadCoreConfigString(List<ServerTestItem> _selecteds)
    method CoreStop (line 73) | public void CoreStop()
    method CoreStopPid (line 116) | public void CoreStopPid(int pid)
    method CoreFindexe (line 129) | private string CoreFindexe(CoreInfo coreInfo)
    method CoreStart (line 151) | private void CoreStart(ProfileItem node)
    method CoreStartViaString (line 189) | private int CoreStartViaString(string configStr)
    method ShowMsg (line 255) | private void ShowMsg(bool updateToTrayTooltip, string msg)
    method SetCore (line 260) | private int SetCore(ProfileItem node)
    method RunProcess (line 279) | private Process? RunProcess(ProfileItem node, CoreInfo coreInfo, strin...
    method KillProcess (line 347) | private void KillProcess(Process p)

FILE: v2rayN/v2rayN/Handler/DownloadHandle.cs
  class DownloadHandle (line 15) | internal class DownloadHandle
    class ResultEventArgs (line 21) | public class ResultEventArgs : EventArgs
      method ResultEventArgs (line 26) | public ResultEventArgs(bool success, string msg)
    method DownloadDataAsync (line 33) | public async Task<int> DownloadDataAsync(string url, WebProxy webProxy...
    method DownloadFileAsync (line 65) | public async Task DownloadFileAsync(string url, bool blProxy, int down...
    method UrlRedirectAsync (line 97) | public async Task<string?> UrlRedirectAsync(string url, bool blProxy)
    method TryDownloadString (line 119) | public async Task<string?> TryDownloadString(string url, bool blProxy,...
    method DownloadStringAsync (line 184) | public async Task<string?> DownloadStringAsync(string url, bool blProx...
    method DownloadStringViaDownloader (line 229) | public async Task<string?> DownloadStringViaDownloader(string url, boo...
    method RunAvailabilityCheck (line 256) | public async Task<int> RunAvailabilityCheck(IWebProxy? webProxy,int co...
    method GetRealPingTime (line 286) | public async Task<int> GetRealPingTime(string url, IWebProxy? webProxy...
    method GetWebProxy (line 311) | private WebProxy? GetWebProxy(bool blProxy)
    method SocketCheck (line 326) | private bool SocketCheck(string ip, int port)

FILE: v2rayN/v2rayN/Handler/HotkeyHandler.cs
  class HotkeyHandler (line 12) | public sealed class HotkeyHandler
    method HotkeyHandler (line 32) | public HotkeyHandler()
    method Init (line 39) | private void Init()
    method Load (line 66) | public void Load()
    method ReLoad (line 94) | public void ReLoad()
    method GetHotkeyInfo (line 107) | private (int fsModifiers, int vKey, string hotkeyStr, List<string> Nam...
    method OnThreadPreProcessMessage (line 129) | private void OnThreadPreProcessMessage(ref MSG msg, ref bool handled)
    method RegisterHotKey (line 163) | [DllImport("user32.dll", SetLastError = true)]
    method UnregisterHotKey (line 166) | [DllImport("user32.dll", SetLastError = true)]
    type KeyModifiers (line 169) | [Flags]

FILE: v2rayN/v2rayN/Handler/LazyConfig.cs
  class LazyConfig (line 6) | public sealed class LazyConfig
    method LazyConfig (line 14) | public LazyConfig()
    method SetConfig (line 26) | public void SetConfig(Config config)
    method GetConfig (line 31) | public Config GetConfig()
    method GetLocalPort (line 36) | public int GetLocalPort(string protocol)
    method SubItems (line 66) | public List<SubItem> SubItems()
    method GetLastSubItem (line 70) | public SubItem? GetLastSubItem()
    method GetLastSubItemSortNumber (line 81) | public int GetLastSubItemSortNumber()
    method GetSubItem (line 90) | public SubItem GetSubItem(string subid)
    method ProfileItems (line 95) | public List<ProfileItem> ProfileItems(string subid)
    method ProfileItemIndexs (line 107) | public List<string> ProfileItemIndexs(string subid)
    method ProfileItems (line 119) | public List<ProfileItemModel> ProfileItems(string subid, string filter)
    method GetProfileItem (line 142) | public ProfileItem? GetProfileItem(string indexId)
    method RoutingItems (line 151) | public List<RoutingItem> RoutingItems()
    method GetRoutingItem (line 156) | public RoutingItem GetRoutingItem(string id)
    method DNSItems (line 161) | public List<DNSItem> DNSItems()
    method GetDNSItem (line 166) | public DNSItem GetDNSItem(ECoreType eCoreType)
    method GetShadowsocksSecuritys (line 175) | public List<string> GetShadowsocksSecuritys(ProfileItem profileItem)
    method GetCoreType (line 189) | public ECoreType GetCoreType(ProfileItem profileItem, EConfigType eCon...
    method GetCoreInfo (line 208) | public CoreInfo? GetCoreInfo(ECoreType coreType)
    method GetCoreInfos (line 217) | public List<CoreInfo>? GetCoreInfos()
    method InitCoreInfo (line 226) | private void InitCoreInfo()

FILE: v2rayN/v2rayN/Handler/MainFormHandler.cs
  class MainFormHandler (line 10) | public sealed class MainFormHandler
    method GetNotifyIcon (line 15) | public Icon GetNotifyIcon(Config config)
    method GetAppIcon (line 50) | public System.Windows.Media.ImageSource GetAppIcon(Config config)
    method GetNotifyIcon4Routing (line 71) | private Icon? GetNotifyIcon4Routing(Config config)
    method Export2ClientConfig (line 120) | public void Export2ClientConfig(ProfileItem item, Config config)
    method UpdateTask (line 157) | public void UpdateTask(Config config, Action<bool, string> update)
    method UpdateTaskRunSubscription (line 164) | private void UpdateTaskRunSubscription(Config config, Action<bool, str...
    method UpdateTaskRunGeo (line 195) | private void UpdateTaskRunGeo(Config config, Action<bool, string> update)
    method RegisterGlobalHotkey (line 222) | public void RegisterGlobalHotkey(Config config, Action<EGlobalHotkey> ...

FILE: v2rayN/v2rayN/Handler/NoticeHandler.cs
  class NoticeHandler (line 6) | public class NoticeHandler
    method NoticeHandler (line 10) | public NoticeHandler(ISnackbarMessageQueue snackbarMessageQueue)
    method Enqueue (line 17) | public void Enqueue(object content)
    method SendMessage (line 22) | public void SendMessage(string msg)
    method SendMessage (line 27) | public void SendMessage(string msg, bool time)

FILE: v2rayN/v2rayN/Handler/ProfileExHandler.cs
  class ProfileExHandler (line 8) | internal class ProfileExHandler
    method ProfileExHandler (line 16) | public ProfileExHandler()
    method Init (line 21) | private void Init()
    method IndexIdEnqueue (line 46) | private void IndexIdEnqueue(string indexId)
    method AddProfileEx (line 54) | private void AddProfileEx(string indexId, ref ProfileExItem profileEx)
    method ClearAll (line 67) | public void ClearAll()
    method SaveTo (line 73) | public void SaveTo()
    method SetTestDelay (line 89) | public void SetTestDelay(string indexId, string delayVal)
    method SetTestSpeed (line 102) | public void SetTestSpeed(string indexId, string speedVal)
    method SetSort (line 115) | public void SetSort(string indexId, int sort)
    method GetSort (line 126) | public int GetSort(string indexId)
    method GetMaxSort (line 136) | public int GetMaxSort()

FILE: v2rayN/v2rayN/Handler/ProxySetting.cs
  class ProxySetting (line 6) | internal class ProxySetting
    method UnsetProxy (line 8) | public static bool UnsetProxy()
    method SetProxy (line 13) | public static bool SetProxy(string? strProxy, string? exceptions, int ...
    type InternetPerConnOptionList (line 110) | [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
    type InternetConnectionOption (line 122) | [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
      method InternetConnectionOption (line 129) | static InternetConnectionOption()
      type InternetConnectionOptionValue (line 135) | [StructLayout(LayoutKind.Explicit)]
    type InternetOption (line 157) | public enum InternetOption : uint
    type PerConnOption (line 165) | public enum PerConnOption
    type PerConnFlags (line 176) | [Flags]
    class NativeMethods (line 187) | internal static class NativeMethods
      method InternetSetOption (line 189) | [DllImport("WinInet.dll", SetLastError = true, CharSet = CharSet.Auto)]
    method UsedProxy (line 195) | public static bool UsedProxy()
    method GetProxyProxyServer (line 209) | public static string? GetProxyProxyServer()

FILE: v2rayN/v2rayN/Handler/QRCodeHelper.cs
  class QRCodeHelper (line 10) | public class QRCodeHelper
    method GetQRCode (line 12) | public static DrawingImage? GetQRCode(string strContent)

FILE: v2rayN/v2rayN/Handler/ShareHandler.cs
  class ShareHandler (line 10) | internal class ShareHandler
    method GetShareUrl (line 19) | public static string? GetShareUrl(ProfileItem item)
    method ShareVmess (line 44) | private static string ShareVmess(ProfileItem item)
    method ShareShadowsocks (line 75) | private static string ShareShadowsocks(ProfileItem item)
    method ShareSocks (line 97) | private static string ShareSocks(ProfileItem item)
    method ShareTrojan (line 118) | private static string ShareTrojan(ProfileItem item)
    method ShareVLESS (line 138) | private static string ShareVLESS(ProfileItem item)
    method GetIpv6 (line 166) | private static string GetIpv6(string address)
    method GetStdTransport (line 171) | private static int GetStdTransport(ProfileItem item, string? securityD...
    method ImportFromClipboardConfig (line 292) | public static ProfileItem? ImportFromClipboardConfig(string clipboardD...
    method ResolveVmess (line 378) | private static ProfileItem? ResolveVmess(string result, out string msg)
    method ResolveVmess4Kitsunebi (line 429) | private static ProfileItem? ResolveVmess4Kitsunebi(string result)
    method ResolveStdVmess (line 467) | private static ProfileItem? ResolveStdVmess(string result)
    method ResolveSip002 (line 546) | private static ProfileItem? ResolveSip002(string result)
    method ResolveSSLegacy (line 612) | private static ProfileItem? ResolveSSLegacy(string result)
    method ResolveSocks (line 646) | private static ProfileItem? ResolveSocks(string result)
    method ResolveSocksNew (line 694) | private static ProfileItem? ResolveSocksNew(string result)
    method ResolveTrojan (line 725) | private static ProfileItem ResolveTrojan(string result)
    method ResolveStdVLESS (line 745) | private static ProfileItem ResolveStdVLESS(string result)
    method ResolveStdTransport (line 768) | private static int ResolveStdTransport(NameValueCollection query, ref ...

FILE: v2rayN/v2rayN/Handler/SpeedtestHandler.cs
  class SpeedtestHandler (line 10) | internal class SpeedtestHandler
    method SpeedtestHandler (line 18) | public SpeedtestHandler(Config config)
    method SpeedtestHandler (line 23) | public SpeedtestHandler(Config config, CoreHandler coreHandler, List<P...
    method RunPingSub (line 98) | private void RunPingSub(Action<ServerTestItem> updateFun)
    method RunPing (line 122) | private void RunPing()
    method RunTcping (line 134) | private void RunTcping()
    method RunRealPing (line 146) | private Task RunRealPing()
    method RunSpeedTestAsync (line 207) | private async Task RunSpeedTestAsync()
    method RunSpeedTestMulti (line 269) | private async Task RunSpeedTestMulti()
    method RunMixedtestAsync (line 328) | private async Task RunMixedtestAsync()
    method GetRealPingTime (line 337) | public async Task<string> GetRealPingTime(DownloadHandle downloadHandl...
    method GetTcpingTime (line 347) | private int GetTcpingTime(string url, int port)
    method Ping (line 385) | public long Ping(string host)
    method FormatOut (line 417) | private string FormatOut(object time, string unit)
    method UpdateFunc (line 426) | private void UpdateFunc(string indexId, string delay, string speed = "")

FILE: v2rayN/v2rayN/Handler/StatisticsHandler.cs
  class StatisticsHandler (line 11) | internal class StatisticsHandler
    method StatisticsHandler (line 28) | public StatisticsHandler(Mode.Config config, Action<ServerSpeedItem> u...
    method GrpcInit (line 41) | private void GrpcInit()
    method Close (line 52) | public void Close()
    method Run (line 65) | public async void Run()
    method ClearAllServerStatistics (line 116) | public void ClearAllServerStatistics()
    method SaveTo (line 123) | public void SaveTo()
    method Init (line 135) | private void Init()
    method GetServerStatItem (line 145) | private void GetServerStatItem(string indexId)
    method ParseOutput (line 180) | private void ParseOutput(Google.Protobuf.Collections.RepeatedField<Sta...
    method GetFreePort (line 227) | private int GetFreePort()

FILE: v2rayN/v2rayN/Handler/SysProxyHandle.cs
  class SysProxyHandle (line 11) | public static class SysProxyHandle
    type RET_ERRORS (line 25) | private enum RET_ERRORS : int
    method SysProxyHandle (line 35) | static SysProxyHandle()
    method UpdateSysProxy (line 48) | public static bool UpdateSysProxy(Config config, bool forceDisable)
    method ResetIEProxy4WindowsShutDown (line 113) | public static void ResetIEProxy4WindowsShutDown()
    method SetIEProxy (line 125) | public static void SetIEProxy(bool global, string strProxy, string str...
    method ResetIEProxy (line 135) | public static void ResetIEProxy()
    method ExecSysproxy (line 140) | private static void ExecSysproxy(string arguments)

FILE: v2rayN/v2rayN/Handler/TunHandler.cs
  class TunHandler (line 10) | public sealed class TunHandler
    method TunHandler (line 22) | public TunHandler()
    method Start (line 44) | public void Start()
    method Stop (line 69) | public void Stop()
    method Init (line 74) | private bool Init()
    method routingDirectExe (line 189) | private void routingDirectExe(out List<string> lstDnsExe, out List<str...
    method CoreStop (line 215) | private void CoreStop()
    method CoreFindexe (line 234) | private string CoreFindexe()
    method CoreStart (line 255) | private void CoreStart()
    method KillProcess (line 301) | private void KillProcess(Process p)
    method CoreStartTest (line 319) | private int CoreStartTest()

FILE: v2rayN/v2rayN/Handler/UpdateHandle.cs
  class UpdateHandle (line 15) | internal class UpdateHandle
    class ResultEventArgs (line 22) | public class ResultEventArgs : EventArgs
      method ResultEventArgs (line 27) | public ResultEventArgs(bool success, string msg)
    method CheckUpdateGuiN (line 34) | public void CheckUpdateGuiN(Config config, Action<bool, string> update...
    method CheckUpdateCore (line 99) | public void CheckUpdateCore(ECoreType type, Config config, Action<bool...
    method UpdateSubscriptionProcess (line 150) | public void UpdateSubscriptionProcess(Config config, string subId, boo...
    method UpdateGeoFileAll (line 303) | public void UpdateGeoFileAll(Config config, Action<bool, string> update)
    method RunAvailabilityCheck (line 315) | public void RunAvailabilityCheck(Action<bool, string> update)
    method CheckUpdateAsync (line 327) | private async void CheckUpdateAsync(ECoreType type, bool preRelease)
    method getCoreVersion (line 355) | private string getCoreVersion(ECoreType type)
    method responseHandler (line 419) | private void responseHandler(ECoreType type, string gitHubReleaseApi, ...
    method askToDownload (line 559) | private async Task askToDownload(DownloadHandle downloadHandle, string...
    method UpdateGeoFile (line 579) | private async Task UpdateGeoFile(string geoName, Config config, Action...
    method UpdateGeoFile4Singbox (line 626) | private async Task UpdateGeoFile4Singbox(string geoName, Config config...

FILE: v2rayN/v2rayN/Mode/BalancerItem.cs
  class BalancerItem (line 3) | [Serializable]
  class BalancerStrategyItem (line 13) | [Serializable]
  type BalancerStrategySettings (line 21) | public interface BalancerStrategySettings{}
  class OptimalBalancerStrategySetting (line 23) | [Serializable]

FILE: v2rayN/v2rayN/Mode/ComboItem.cs
  class ComboItem (line 3) | public class ComboItem

FILE: v2rayN/v2rayN/Mode/Config.cs
  class Config (line 6) | [Serializable]

FILE: v2rayN/v2rayN/Mode/ConfigItems.cs
  class CoreBasicItem (line 5) | [Serializable]
  class InItem (line 36) | [Serializable]
  class KcpItem (line 57) | [Serializable]
  class GrpcItem (line 75) | [Serializable]
  class GUIItem (line 84) | [Serializable]
  class UIItem (line 111) | [Serializable]
  class ConstItem (line 132) | [Serializable]
  class KeyEventItem (line 139) | [Serializable]
  class CoreTypeItem (line 153) | [Serializable]
  class TunModeItem (line 161) | [Serializable]
  class SpeedTestItem (line 180) | [Serializable]
  class RoutingBasicItem (line 188) | [Serializable]
  class ColumnItem (line 202) | [Serializable]

FILE: v2rayN/v2rayN/Mode/ConfigOld.cs
  class ConfigOld (line 3) | [Serializable]
  class VmessItem (line 208) | [Serializable]
    method VmessItem (line 211) | public VmessItem()
  class RoutingItemOld (line 407) | [Serializable]

FILE: v2rayN/v2rayN/Mode/CoreInfo.cs
  class CoreInfo (line 3) | [Serializable]

FILE: v2rayN/v2rayN/Mode/DNSItem.cs
  class DNSItem (line 5) | [Serializable]

FILE: v2rayN/v2rayN/Mode/EConfigType.cs
  type EConfigType (line 3) | public enum EConfigType

FILE: v2rayN/v2rayN/Mode/ECoreType.cs
  type ECoreType (line 3) | public enum ECoreType

FILE: v2rayN/v2rayN/Mode/EGlobalHotkey.cs
  type EGlobalHotkey (line 3) | public enum EGlobalHotkey

FILE: v2rayN/v2rayN/Mode/EMove.cs
  type EMove (line 3) | public enum EMove

FILE: v2rayN/v2rayN/Mode/EServerColName.cs
  type EServerColName (line 3) | public enum EServerColName

FILE: v2rayN/v2rayN/Mode/ESpeedActionType.cs
  type ESpeedActionType (line 3) | public enum ESpeedActionType

FILE: v2rayN/v2rayN/Mode/ESysProxyType.cs
  type ESysProxyType (line 3) | public enum ESysProxyType

FILE: v2rayN/v2rayN/Mode/EViewAction.cs
  type EViewAction (line 3) | public enum EViewAction

FILE: v2rayN/v2rayN/Mode/GitHubRelease.cs
  class GitHubReleaseAsset (line 5) | public class GitHubReleaseAsset
  class GitHubRelease (line 32) | public class GitHubRelease

FILE: v2rayN/v2rayN/Mode/HiddifyEnums.cs
  class HiddifyEnums (line 13) | internal class HiddifyEnums
  type RoutingEnum (line 16) | public enum RoutingEnum
  type ProxyModeEnum (line 22) | public enum ProxyModeEnum : int
  class LocalizedDescriptionAttribute (line 35) | public class LocalizedDescriptionAttribute : DescriptionAttribute
    method LocalizedDescriptionAttribute (line 40) | public LocalizedDescriptionAttribute(string resourceName, Type resourc...
  class ProxyModeEnumExtensions (line 59) | public static class ProxyModeEnumExtensions
    method ToLocalizedDescriptionString (line 61) | public static string ToLocalizedDescriptionString(this ProxyModeEnum v...

FILE: v2rayN/v2rayN/Mode/ProfileExItem.cs
  class ProfileExItem (line 5) | [Serializable]

FILE: v2rayN/v2rayN/Mode/ProfileItem.cs
  class ProfileItem (line 6) | [Serializable]
    method ProfileItem (line 9) | public ProfileItem()
    method GetSummary (line 32) | public string GetSummary()
    method GetAlpn (line 66) | public List<string> GetAlpn()
    method GetNetwork (line 78) | public string GetNetwork()

FILE: v2rayN/v2rayN/Mode/ProfileItemModel.cs
  class ProfileItemModel (line 3) | [Serializable]

FILE: v2rayN/v2rayN/Mode/ProxyMode.cs
  class ProxyMode (line 9) | public class ProxyMode

FILE: v2rayN/v2rayN/Mode/RoutingItem.cs
  class RoutingItem (line 5) | [Serializable]

FILE: v2rayN/v2rayN/Mode/RoutingItemModel.cs
  class RoutingItemModel (line 3) | [Serializable]

FILE: v2rayN/v2rayN/Mode/RulesItem.cs
  class RulesItem (line 3) | [Serializable]

FILE: v2rayN/v2rayN/Mode/RulesItemModel.cs
  class RulesItemModel (line 3) | [Serializable]

FILE: v2rayN/v2rayN/Mode/ServerSpeedItem.cs
  class ServerSpeedItem (line 3) | [Serializable]

FILE: v2rayN/v2rayN/Mode/ServerStatItem.cs
  class ServerStatItem (line 5) | [Serializable]

FILE: v2rayN/v2rayN/Mode/ServerTestItem.cs
  class ServerTestItem (line 3) | [Serializable]

FILE: v2rayN/v2rayN/Mode/SingboxConfig.cs
  class SingboxConfig (line 3) | public class SingboxConfig
  class Log4Sbox (line 13) | public class Log4Sbox
  class Dns4Sbox (line 21) | public class Dns4Sbox
  class Route4Sbox (line 27) | public class Route4Sbox
  class Rule4Sbox (line 33) | [Serializable]
  class Inbound4Sbox (line 58) | [Serializable]
  class User4Sbox (line 79) | public class User4Sbox
  class Outbound4Sbox (line 85) | public class Outbound4Sbox
  class Tls4Sbox (line 113) | public class Tls4Sbox
  class Multiplex4Sbox (line 123) | public class Multiplex4Sbox
  class Utls4Sbox (line 132) | public class Utls4Sbox
  class Reality4Sbox (line 138) | public class Reality4Sbox
  class Transport4Sbox (line 145) | public class Transport4Sbox
  class Server4Sbox (line 156) | public class Server4Sbox
  class Experimental4Sbox (line 165) | public class Experimental4Sbox
  class V2ray_Api4Sbox (line 170) | public class V2ray_Api4Sbox
  class Stats4Sbox (line 176) | public class Stats4Sbox

FILE: v2rayN/v2rayN/Mode/SsSIP008.cs
  class SsSIP008 (line 3) | public class SsSIP008
  class SsServer (line 8) | [Serializable]

FILE: v2rayN/v2rayN/Mode/SubItem.cs
  class SubItem (line 6) | [Serializable]
    method UploadMegaBytes (line 43) | public double UploadMegaBytes()
    method DownloadMegaBytes (line 47) | public double DownloadMegaBytes()
    method TotalMegaBytes (line 51) | public double TotalMegaBytes()
    method UploadGigaBytes (line 56) | public double UploadGigaBytes()
    method DownloadGigaBytes (line 60) | public double DownloadGigaBytes()
    method TotalDataGigaBytes (line 64) | public int TotalDataGigaBytes()
    method UsedDataGigaBytes (line 68) | public int UsedDataGigaBytes()
    method DownloadAndUploadTotalGigaBytes (line 72) | public double DownloadAndUploadTotalGigaBytes()
    method ExpireToDate (line 76) | public DateTime ExpireToDate()
    method DaysLeftToExpire (line 81) | public int DaysLeftToExpire()
    method GetJustThreeDigitOfaNumber (line 86) | private double GetJustThreeDigitOfaNumber(double num)

FILE: v2rayN/v2rayN/Mode/SubscriptionInfo.cs
  class SubscriptionInfo (line 10) | public class SubscriptionInfo

FILE: v2rayN/v2rayN/Mode/SysproxyConfig.cs
  class SysproxyConfig (line 3) | internal class SysproxyConfig
    method SysproxyConfig (line 11) | public SysproxyConfig()

FILE: v2rayN/v2rayN/Mode/V2rayConfig.cs
  class V2rayConfig (line 10) | public class V2rayConfig
  class Observatory (line 50) | public class Observatory
  class Stats (line 58) | public class Stats { };
  class API (line 60) | public class API
  class Policy (line 66) | public class Policy
  class SystemPolicy (line 71) | public class SystemPolicy
  class Log (line 77) | public class Log
  class Inbounds (line 95) | public class Inbounds
  class Inboundsettings (line 130) | public class Inboundsettings
  class UsersItem (line 167) | public class UsersItem
  class Sniffing (line 200) | public class Sniffing
  class Outbounds (line 207) | public class Outbounds
  class Outboundsettings (line 235) | public class Outboundsettings
  class VnextItem (line 263) | public class VnextItem
  class ServersItem (line 281) | public class ServersItem
  class SocksUsersItem (line 329) | public class SocksUsersItem
  class Mux (line 347) | public class Mux
  class Response (line 360) | public class Response
  class Dns (line 368) | public class Dns
  class Routing (line 376) | public class Routing
  class StreamSettings (line 399) | public class StreamSettings
  class TlsSettings (line 452) | public class TlsSettings
  class TcpSettings (line 479) | public class TcpSettings
  class Header (line 487) | public class Header
  class KcpSettings (line 505) | public class KcpSettings
  class WsSettings (line 553) | public class WsSettings
  class FragmentationConfig (line 566) | public class FragmentationConfig
  class Headers (line 574) | public class Headers
  class HttpSettings (line 588) | public class HttpSettings
  class QuicSettings (line 601) | public class QuicSettings
  class GrpcSettings (line 619) | public class GrpcSettings
  class AccountsItem (line 629) | public class AccountsItem

FILE: v2rayN/v2rayN/Mode/V2rayTcpRequest.cs
  class V2rayTcpRequest (line 6) | public class V2rayTcpRequest
  class RequestHeaders (line 14) | public class RequestHeaders

FILE: v2rayN/v2rayN/Mode/VmessQRCode.cs
  class VmessQRCode (line 6) | [Serializable]

FILE: v2rayN/v2rayN/Resx/Hiddify.Designer.cs
  class Hiddify (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource...
    method Hiddify (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic...

FILE: v2rayN/v2rayN/Resx/ResUI.Designer.cs
  class ResUI (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource...
    method ResUI (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic...

FILE: v2rayN/v2rayN/Tool/DeepLinking.cs
  class DeepLinking (line 6) | public class DeepLinking
    method RegisterSchemes (line 11) | public static void RegisterSchemes()
    method CheckSchemeRegistered (line 44) | public static bool CheckSchemeRegistered(string scheme)
    method IsUriForProgram (line 68) | public static (bool, string?) IsUriForProgram(string uri)
    method ParseProtocol (line 82) | private static (Protocol?, string?) ParseProtocol(string uri)
    method ParseSubscription (line 120) | private static (Subscription?, string?) ParseSubscription(string uri)
    method IsUriSub (line 173) | private static bool IsUriSub(string uri)
    method ParseUri (line 181) | public static (ParseResult? res, string? err) ParseUri(string uri)
  class ParseResult (line 206) | public class ParseResult
  class Protocol (line 213) | public class Protocol
  class Subscription (line 223) | public class Subscription
  type Scheme (line 233) | public enum Scheme

FILE: v2rayN/v2rayN/Tool/FileManager.cs
  class FileManager (line 7) | public static class FileManager
    method ByteArrayToFile (line 9) | public static bool ByteArrayToFile(string fileName, byte[] content)
    method UncompressFile (line 23) | public static void UncompressFile(string fileName, byte[] content)
    method NonExclusiveReadAllText (line 37) | public static string NonExclusiveReadAllText(string path)
    method NonExclusiveReadAllText (line 42) | public static string NonExclusiveReadAllText(string path, Encoding enc...
    method ZipExtractToFile (line 57) | public static bool ZipExtractToFile(string fileName, string toPath, st...

FILE: v2rayN/v2rayN/Tool/Job.cs
  class Job (line 11) | public class Job : IDisposable
    method Job (line 15) | public Job()
    method AddProcess (line 49) | public bool AddProcess(IntPtr processHandle)
    method AddProcess (line 61) | public bool AddProcess(int processId)
    method Dispose (line 70) | public void Dispose()
    method Dispose (line 76) | protected virtual void Dispose(bool disposing)
    method CreateJobObject (line 102) | [DllImport("kernel32.dll", CharSet = CharSet.Unicode)]
    method SetInformationJobObject (line 105) | [DllImport("kernel32.dll", SetLastError = true)]
    method AssignProcessToJobObject (line 108) | [DllImport("kernel32.dll", SetLastError = true)]
    method CloseHandle (line 111) | [DllImport("kernel32.dll", SetLastError = true)]
  type IO_COUNTERS (line 120) | [StructLayout(LayoutKind.Sequential)]
  type JOBOBJECT_BASIC_LIMIT_INFORMATION (line 131) | [StructLayout(LayoutKind.Sequential)]
  type SECURITY_ATTRIBUTES (line 145) | [StructLayout(LayoutKind.Sequential)]
  type JOBOBJECT_EXTENDED_LIMIT_INFORMATION (line 153) | [StructLayout(LayoutKind.Sequential)]
  type JobObjectInfoType (line 164) | public enum JobObjectInfoType

FILE: v2rayN/v2rayN/Tool/Logging.cs
  class Logging (line 8) | public class Logging
    method Setup (line 10) | public static void Setup()
    method LoggingEnabled (line 21) | public static void LoggingEnabled(bool enable)
    method ClearLogs (line 29) | public static void ClearLogs()

FILE: v2rayN/v2rayN/Tool/QueryableExtension.cs
  class QueryableExtension (line 6) | public static class QueryableExtension
    method OrderBy (line 8) | public static IOrderedQueryable<T> OrderBy<T>(this IQueryable<T> query...
    method OrderByDescending (line 13) | public static IOrderedQueryable<T> OrderByDescending<T>(this IQueryabl...
    method _OrderBy (line 18) | private static IOrderedQueryable<T> _OrderBy<T>(IQueryable<T> query, s...
    method OrderByInternal (line 30) | public static IOrderedQueryable<T> OrderByInternal<T, TProp>(IQueryabl...
    method OrderByDescendingInternal (line 35) | public static IOrderedQueryable<T> OrderByDescendingInternal<T, TProp>...
    method _GetLamba (line 40) | private static Expression<Func<T, TProp>> _GetLamba<T, TProp>(Property...

FILE: v2rayN/v2rayN/Tool/TestSpeed.cs
  class TestSpeed (line 11) | public class TestSpeed
    method TestSpeed (line 14) | public TestSpeed()
    method UploadSpeed (line 20) | public double? UploadSpeed(bool withProxy = true)
    method DownloadSpeed (line 50) | public double? DownloadSpeed(bool withProxy = true)
    method ConvertJsonListToObject (line 80) | private string ConvertJsonListToObject(string j)

FILE: v2rayN/v2rayN/Tool/UI.cs
  class UI (line 5) | internal class UI
    method Show (line 9) | public static void Show(string msg)
    method ShowWarning (line 14) | public static void ShowWarning(string msg)
    method ShowError (line 18) | public static void ShowError(string msg)
    method ShowYesNo (line 23) | public static MessageBoxResult ShowYesNo(string msg)

FILE: v2rayN/v2rayN/Tool/Utils.cs
  class Utils (line 47) | internal class Utils
    method GetEmbedText (line 56) | public static string GetEmbedText(string res)
    method LoadResource (line 79) | public static string? LoadResource(string res)
    method FromJson (line 99) | public static T? FromJson<T>(string? strJson)
    method ToJson (line 120) | public static string ToJson(object? obj, bool indented = true)
    method ToJsonFile (line 153) | public static int ToJsonFile(object? obj, string filePath, bool nullVa...
    method ParseJson (line 180) | public static JObject? ParseJson(string strJson)
    method List2String (line 202) | public static string List2String(List<string> lst, bool wrap = false)
    method String2List (line 231) | public static List<string> String2List(string str)
    method String2ListSorted (line 250) | public static List<string> String2ListSorted(string str)
    method Base64Encode (line 271) | public static string Base64Encode(string plainText)
    method Base64Decode (line 290) | public static string Base64Decode(string plainText)
    method ToInt (line 322) | public static int ToInt(object obj)
    method ToBool (line 335) | public static bool ToBool(object obj)
    method ToString (line 348) | public static string ToString(object obj)
    method ToHumanReadable (line 368) | public static void ToHumanReadable(long amount, out double result, out...
    method HumanFy (line 410) | public static string HumanFy(long amount)
    method UrlEncode (line 416) | public static string UrlEncode(string url)
    method UrlDecode (line 422) | public static string UrlDecode(string url)
    method GetMD5 (line 427) | public static string GetMD5(string str)
    method IconToImageSource (line 439) | public static ImageSource IconToImageSource(Icon icon)
    method GetPunycode (line 452) | public static string GetPunycode(string url)
    method IsBase64String (line 476) | public static bool IsBase64String(string plainText)
    method Convert2Comma (line 482) | public static string Convert2Comma(string text)
    method IsNumberic (line 500) | public static bool IsNumberic(string oText)
    method IsNullOrEmpty (line 519) | public static bool IsNullOrEmpty(string? text)
    method IsIP (line 536) | public static bool IsIP(string ip)
    method IsDomain (line 571) | public static bool IsDomain(string domain)
    method IsMatch (line 587) | public static bool IsMatch(string input, string pattern)
    method IsIpv6 (line 592) | public static bool IsIpv6(string ip)
    method SetAutoRun (line 615) | public static void SetAutoRun(bool run)
    method IsAutoRun (line 651) | public static bool IsAutoRun()
    method GetPath (line 679) | public static string GetPath(string fileName)
    method GetExePath (line 693) | public static string GetExePath()
    method StartupPath (line 698) | public static string StartupPath()
    method RegReadValue (line 703) | public static string? RegReadValue(string path, string name, string def)
    method RegWriteValue (line 730) | public static void RegWriteValue(string path, string name, object value)
    method CheckForDotNetVersion (line 761) | public static bool CheckForDotNetVersion(int release = 528040)
    method AutoStart (line 779) | public static void AutoStart(string taskName, string fileName, string ...
    method SetSecurityProtocol (line 842) | public static void SetSecurityProtocol(bool enableSecurityProtocolTls13)
    method PortInUse (line 855) | public static bool PortInUse(int port)
    method GetVersion (line 889) | public static string GetVersion(bool blFull = true)
    method DeepCopy (line 919) | public static T DeepCopy<T>(T obj)
    method GetClipboardData (line 936) | public static string? GetClipboardData()
    method SetClipboardData (line 959) | public static void SetClipboardData(string strData)
    method GetGUID (line 974) | public static string GetGUID(bool full = true)
    method IsAdministrator (line 998) | public static bool IsAdministrator()
    method GetDownloadFileName (line 1014) | public static string GetDownloadFileName(string url)
    method GetDefaultGateway (line 1022) | public static IPAddress? GetDefaultGateway()
    method IsGuidByParse (line 1036) | public static bool IsGuidByParse(string strSrc)
    method ProcessStart (line 1041) | public static void ProcessStart(string fileName)
    method SetDarkBorder (line 1053) | public static void SetDarkBorder(System.Windows.Window window, bool dark)
    method GetTempPath (line 1068) | public static string GetTempPath(string filename = "")
    method UnGzip (line 1085) | public static string UnGzip(byte[] buf)
    method GetBackupPath (line 1094) | public static string GetBackupPath(string filename)
    method GetConfigPath (line 1104) | public static string GetConfigPath(string filename = "")
    method GetBinPath (line 1121) | public static string GetBinPath(string filename, ECoreType? coreType =...
    method GetLogPath (line 1146) | public static string GetLogPath(string filename = "")
    method GetFontsPath (line 1163) | public static string GetFontsPath(string filename = "")
    method SaveLog (line 1184) | public static void SaveLog(string strContent)
    method SaveLog (line 1193) | public static void SaveLog(string strTitle, Exception ex)
    method ScanScreen (line 1211) | public static string ScanScreen(float dpiX, float dpiY)
    method GetDpiXY (line 1259) | public static Tuple<float, float> GetDpiXY(Window window)
    type DWMWINDOWATTRIBUTE (line 1271) | [Flags]
    method DwmSetWindowAttribute (line 1278) | [DllImport("dwmapi.dll")]
    method LockMainFormReloadFile (line 1285) | private static void LockMainFormReloadFile()
    method UnlockMainFormReloadFile (line 1289) | private static void UnlockMainFormReloadFile()
    method IsMainFormReloadFileLocked (line 1293) | private static bool IsMainFormReloadFileLocked()
    method SetMainPageReload (line 1314) | public static void SetMainPageReload()
    method UnsetMainPageReload (line 1330) | public static void UnsetMainPageReload()
    method DoesMainPageNeedReload (line 1345) | public static bool DoesMainPageNeedReload()
    method ExitSuccess (line 1349) | public static void ExitSuccess()
    method ExitError (line 1356) | public static void ExitError(int err)
    method GetAppProcessID (line 1363) | public static int GetAppProcessID()
    method GetAppProxyAddress (line 1367) | public static IWebProxy GetAppProxyAddress()
    method RestartProgram (line 1373) | public static void RestartProgram(bool asAdmin = false)
    method IsSystemProxyEnabled (line 1396) | public static bool IsSystemProxyEnabled(ESysProxyType sysProxyType)
    method ExtractNameParameterFromUri (line 1405) | public static string? ExtractNameParameterFromUri(string uri)
    method ExtractUrlParameterFromUri (line 1427) | public static string? ExtractUrlParameterFromUri(string uri)
    method ChangeHiddifySubDeeplinkToNormalSubUri (line 1449) | public static string ChangeHiddifySubDeeplinkToNormalSubUri(string hid...
    method GetUrlResponseHeader (line 1463) | public static HttpResponseHeaders? GetUrlResponseHeader(string url, bo...
    method GetUrlResponseStatusCode (line 1490) | public async static Task<HttpStatusCode?> GetUrlResponseStatusCode(str...
    method IsUrlStatusCode204 (line 1514) | public async static Task<bool> IsUrlStatusCode204(string url, bool use...
    method EpochToDate (line 1541) | public static DateTime EpochToDate(long epoch)
    method GetHostAndFirstTwoPathInUri (line 1547) | public static string? GetHostAndFirstTwoPathInUri(string url)
    method StartProcess (line 1565) | public static (string?,string?) StartProcess(ProcessStartInfo sInfo)
    method GetSubscriptionInfoFromHeaders (line 1602) | public static SubscriptionInfo? GetSubscriptionInfoFromHeaders(HttpRes...
    method CalculateRemaningExpireDays (line 1686) | public int CalculateRemaningExpireDays(DateTime dateTime)

FILE: v2rayN/v2rayN/ViewModels/AddServer2ViewModel.cs
  class AddServer2ViewModel (line 16) | public class AddServer2ViewModel : ReactiveValidationObject
    method AddServer2ViewModel (line 30) | public AddServer2ViewModel(ProfileItem profileItem, Window view)
    method SaveServer (line 64) | private void SaveServer()
    method BrowseServer (line 104) | private void BrowseServer()
    method EditServer (line 140) | private void EditServer()

FILE: v2rayN/v2rayN/ViewModels/AddServerViewModel.cs
  class AddServerViewModel (line 13) | public class AddServerViewModel : ReactiveObject
    method AddServerViewModel (line 24) | public AddServerViewModel(ProfileItem profileItem, Window view)
    method SaveServer (line 51) | private void SaveServer()

FILE: v2rayN/v2rayN/ViewModels/AnotherCommandImplementation.cs
  class AnotherCommandImplementation (line 10) | public class AnotherCommandImplementation : ICommand
    method AnotherCommandImplementation (line 15) | public AnotherCommandImplementation(Action<object?> execute)
    method AnotherCommandImplementation (line 19) | public AnotherCommandImplementation(Action<object?> execute, Func<obje...
    method CanExecute (line 27) | public bool CanExecute(object? parameter) => _canExecute(parameter);
    method Execute (line 29) | public void Execute(object? parameter) => _execute(parameter);
    method Refresh (line 43) | public void Refresh() => CommandManager.InvalidateRequerySuggested();

FILE: v2rayN/v2rayN/ViewModels/DNSSettingViewModel.cs
  class DNSSettingViewModel (line 12) | public class DNSSettingViewModel : ReactiveObject
    method DNSSettingViewModel (line 26) | public DNSSettingViewModel(Window view)
    method SaveSetting (line 57) | private void SaveSetting()

FILE: v2rayN/v2rayN/ViewModels/DemoItem.cs
  class DemoItem (line 12) | public class DemoItem : ViewModelBase
    method DemoItem (line 24) | public DemoItem(string name, Type contentType,
    method CreateContent (line 70) | private object? CreateContent()
    method AddNewNotification (line 81) | public void AddNewNotification()
    method DismissAllNotifications (line 87) | public void DismissAllNotifications()

FILE: v2rayN/v2rayN/ViewModels/HomeWindowViewModel.cs
  class HomeWindowViewModel (line 25) | public class HomeWindowViewModel : ViewModelBase
    method HomeWindowViewModel (line 28) | public HomeWindowViewModel(ISnackbarMessageQueue snackbarMessageQueue)
    method ExecuteNewProfileDialog (line 83) | private async void ExecuteNewProfileDialog(object? _)
    method GenerateDemoItems (line 140) | private static IEnumerable<DemoItem> GenerateDemoItems(ISnackbarMessag...

FILE: v2rayN/v2rayN/ViewModels/MainWindowViewModel.cs
  class MainWindowViewModel (line 39) | public class MainWindowViewModel : ReactiveObject
    method MainWindowViewModel (line 318) | public MainWindowViewModel(ISnackbarMessageQueue snackbarMessageQueue,...
    method Init (line 743) | private void Init()
    method OnProgramStarted (line 761) | private void OnProgramStarted(object state, bool timeout)
    method UpdateHandler (line 773) | private void UpdateHandler(bool notify, string msg)
    method UpdateTaskHandler (line 778) | private void UpdateTaskHandler(bool success, string msg)
    method UpdateStatisticsHandler (line 797) | private void UpdateStatisticsHandler(ServerSpeedItem update)
    method UpdateSpeedtestHandler (line 845) | private void UpdateSpeedtestHandler(string indexId, string delay, stri...
    method SetTestResult (line 853) | private void SetTestResult(string indexId, string delay, string speed)
    method OnHotkeyHandler (line 878) | private void OnHotkeyHandler(EGlobalHotkey e)
    method PreExit (line 904) | public void PreExit(bool blWindowsShutDown)
    method MyAppExit (line 929) | public void MyAppExit(bool blWindowsShutDown)
    method SubSelectedChanged (line 946) | public void SubSelectedChanged(bool c)
    method SelectAppropiateServer (line 969) | private void SelectAppropiateServer()
    method GetSubIdByRemark (line 1030) | private string? GetSubIdByRemark(string remarks)
    method ServerFilterChanged (line 1039) | private void ServerFilterChanged(bool c)
    method RefreshServers (line 1052) | public void RefreshServers()
    method RefreshServersMenu (line 1128) | private void RefreshServersMenu()
    method InitSubscriptionView (line 1152) | public void InitSubscriptionView()
    method GetProfileItems (line 1178) | private int GetProfileItems(out List<ProfileItem> lstSelecteds, bool l...
    method EditServer (line 1206) | public void EditServer(bool blNew, EConfigType eConfigType)
    method HomeAddServerOrSubViaClipboard (line 1250) | public (int, List<string>) HomeAddServerOrSubViaClipboard(string cData)
    method AddServerOrSubViaClipboard (line 1276) | public void AddServerOrSubViaClipboard()
    method AddServerOrSubViaDeepLink (line 1294) | public void AddServerOrSubViaDeepLink(string url)
    method AddServersViaDeeplink (line 1310) | public void AddServersViaDeeplink(string servers_link)
    method AddSubViaDeeplink (line 1314) | public void AddSubViaDeeplink(string sub_url)
    method AddSubAndServerViaDeeplink (line 1318) | public void AddSubAndServerViaDeeplink(string data)
    method ScanScreenTaskAsync (line 1322) | public async Task ScanScreenTaskAsync()
    method RemoveServer (line 1350) | public void RemoveServer()
    method RemoveDuplicateServer (line 1373) | private void RemoveDuplicateServer()
    method CopyServer (line 1381) | private void CopyServer()
    method SetDefaultServer (line 1394) | public void SetDefaultServer()
    method SetDefaultServer (line 1403) | private void SetDefaultServer(string indexId)
    method ServerSelectedChanged (line 1427) | private void ServerSelectedChanged(bool c)
    method ShareServer (line 1444) | public async void ShareServer()
    method SortServer (line 1467) | public void SortServer(string colName)
    method TestServerAvailability (line 1484) | public void TestServerAvailability()
    method MoveToGroup (line 1506) | private void MoveToGroup(bool c)
    method MoveServer (line 1526) | public void MoveServer(EMove eMove)
    method MoveServerTo (line 1546) | public void MoveServerTo(int startIndex, ProfileItemModel targetItem)
    method ServerSpeedtest (line 1558) | public void ServerSpeedtest(ESpeedActionType actionType)
    method Export2ClientConfig (line 1572) | private void Export2ClientConfig()
    method Export2ShareUrl (line 1583) | public void Export2ShareUrl()
    method Export2SubContent (line 1608) | private void Export2SubContent()
    method SubSetting (line 1637) | private void SubSetting()
    method AddSub (line 1654) | private void AddSub()
    method UpdateSubscriptionProcess (line 1674) | public void UpdateSubscriptionProcess(string subId, bool blProxy)
    method OptionSetting (line 1683) | private void OptionSetting()
    method RoutingSetting (line 1693) | private void RoutingSetting()
    method DNSSetting (line 1705) | private void DNSSetting()
    method RebootAsAdmin (line 1714) | private void RebootAsAdmin()
    method ImportOldGuiConfig (line 1732) | private void ImportOldGuiConfig()
    method CheckUpdateN (line 1768) | private void CheckUpdateN()
    method CheckUpdateCore (line 1781) | private void CheckUpdateCore(ECoreType type)
    method CheckUpdateGeo (line 1810) | private void CheckUpdateGeo()
    method Reload (line 1819) | public void Reload()
    method LoadV2ray (line 1824) | private async Task LoadV2ray()
    method CloseV2ray (line 1849) | private void CloseV2ray()
    method SetListenerType (line 1862) | public void SetListenerType(ESysProxyType type)
    method ChangeSystemProxyStatus (line 1875) | private void ChangeSystemProxyStatus(ESysProxyType type, bool blChange)
    method RefreshRoutingsMenu (line 1905) | private void RefreshRoutingsMenu()
    method RoutingSelectedChanged (line 1925) | private void RoutingSelectedChanged(bool c)
    method DoSystemProxySelected (line 1954) | private void DoSystemProxySelected(bool c)
    method SetSysProxy (line 1966) | private void SetSysProxy()
    method UnsetSysProxy (line 1972) | private void UnsetSysProxy()
    method ToggleSysProxy (line 1978) | public void ToggleSysProxy()
    method DoEnableTun (line 1992) | private void DoEnableTun(bool c)
    method TunModeSwitch (line 2013) | private void TunModeSwitch()
    method ShowHideWindow (line 2029) | public void ShowHideWindow(bool? blShow)
    method RestoreUI (line 2053) | private void RestoreUI()
    method StorageUI (line 2069) | private void StorageUI()
    method BindingUI (line 2073) | private void BindingUI()
    method InboundDisplayStaus (line 2207) | public void InboundDisplayStaus()
    method ModifyTheme (line 2243) | public void ModifyTheme(bool isDarkTheme)
    method ChangePrimaryColor (line 2253) | public void ChangePrimaryColor(System.Windows.Media.Color color)
    method AutoHideStartup (line 2264) | private void AutoHideStartup()
    method HomeNewProfile (line 2283) | public void HomeNewProfile()
    method HomeUpdateUsage (line 2318) | public void HomeUpdateUsage(SubItem sub)
    method HomeConnect (line 2350) | public async Task HomeConnect(bool forceConnect = false)
    method HomeGotoProfile (line 2471) | public void HomeGotoProfile(string subId)
    method HomeDeleteSub (line 2480) | private void HomeDeleteSub()
    method HomeSelectedRouteChanged (line 2493) | public void HomeSelectedRouteChanged()
    method HomeSelectedProxyChanged (line 2498) | public async Task HomeSelectedProxyChanged()
    method ToggleV2rayPanel (line 2517) | private void ToggleV2rayPanel()
    method GetSelectedServer (line 2527) | private ProfileItem? GetSelectedServer(string subId,ProxyModeEnum prox...
    method HomeRealPingServer (line 2560) | private async Task HomeRealPingServer(string serverIndexId)
    method UpdateHomeRealPingServer (line 2576) | private void UpdateHomeRealPingServer(string indexId, string delay, st...

FILE: v2rayN/v2rayN/ViewModels/OptionSettingViewModel.cs
  class OptionSettingViewModel (line 12) | public class OptionSettingViewModel : ReactiveObject
    method OptionSettingViewModel (line 111) | public OptionSettingViewModel(Window view)
    method InitCoreType (line 210) | private void InitCoreType()
    method SaveSetting (line 262) | private void SaveSetting()
    method SaveCoreType (line 369) | private int SaveCoreType()

FILE: v2rayN/v2rayN/ViewModels/RoutingRuleDetailsViewModel.cs
  class RoutingRuleDetailsViewModel (line 13) | public class RoutingRuleDetailsViewModel : ReactiveObject
    method RoutingRuleDetailsViewModel (line 36) | public RoutingRuleDetailsViewModel(RulesItem rulesItem, Window view)
    method SaveRules (line 65) | private void SaveRules()

FILE: v2rayN/v2rayN/ViewModels/RoutingRuleSettingViewModel.cs
  class RoutingRuleSettingViewModel (line 17) | public class RoutingRuleSettingViewModel : ReactiveObject
    method RoutingRuleSettingViewModel (line 48) | public RoutingRuleSettingViewModel(RoutingItem routingItem, Window view)
    method RefreshRulesItems (line 123) | public void RefreshRulesItems()
    method RuleEdit (line 144) | public void RuleEdit(bool blNew)
    method RuleRemove (line 170) | public void RuleRemove()
    method RuleExportSelected (line 193) | public void RuleExportSelected()
    method MoveRule (line 217) | public void MoveRule(EMove eMove)
    method SaveRouting (line 237) | private void SaveRouting()
    method ImportRulesFromFile (line 266) | private void ImportRulesFromFile()
    method ImportRulesFromClipboard (line 295) | private void ImportRulesFromClipboard()
    method ImportRulesFromUrl (line 305) | private async Task ImportRulesFromUrl()
    method AddBatchRoutingRules (line 326) | private int AddBatchRoutingRules(RoutingItem routingItem, string clipb...

FILE: v2rayN/v2rayN/ViewModels/RoutingSettingViewModel.cs
  class RoutingSettingViewModel (line 15) | public class RoutingSettingViewModel : ReactiveObject
    method RoutingSettingViewModel (line 77) | public RoutingSettingViewModel(Window view)
    method BindingLockedData (line 135) | private void BindingLockedData()
    method EndBindingLockedData (line 152) | private void EndBindingLockedData()
    method RefreshRoutingItems (line 175) | public void RefreshRoutingItems()
    method SaveRouting (line 202) | private void SaveRouting()
    method RoutingBasicImportRules (line 224) | private void RoutingBasicImportRules()
    method RoutingAdvancedEdit (line 236) | public void RoutingAdvancedEdit(bool blNew)
    method RoutingAdvancedRemove (line 259) | public void RoutingAdvancedRemove()
    method RoutingAdvancedSetDefault (line 283) | public void RoutingAdvancedSetDefault()
    method RoutingAdvancedImportRules (line 299) | private void RoutingAdvancedImportRules()

FILE: v2rayN/v2rayN/ViewModels/SubEditViewModel.cs
  class SubEditViewModel (line 13) | public class SubEditViewModel : ReactiveObject
    method SubEditViewModel (line 24) | public SubEditViewModel(SubItem subItem, Window view)
    method SaveSub (line 47) | private void SaveSub()

FILE: v2rayN/v2rayN/ViewModels/SubSettingViewModel.cs
  class SubSettingViewModel (line 17) | public class SubSettingViewModel : ReactiveObject
    method SubSettingViewModel (line 36) | public SubSettingViewModel(Window view)
    method RefreshSubItems (line 69) | public void RefreshSubItems()
    method EditSub (line 75) | public void EditSub(bool blNew)
    method DeleteSub (line 98) | private void DeleteSub()
    method SubShare (line 114) | private async void SubShare()

FILE: v2rayN/v2rayN/ViewModels/ViewModelBase.cs
  class ViewModelBase (line 12) | public abstract class ViewModelBase : ReactiveObject, INotifyPropertyCha...
    method SetProperty (line 25) | protected virtual bool SetProperty<T>(ref T member, T value, [CallerMe...
    method OnPropertyChanged (line 41) | protected void OnPropertyChanged([CallerMemberName] string? propertyNa...

FILE: v2rayN/v2rayN/Views/AddServer2Window.xaml.cs
  class AddServer2Window (line 9) | public partial class AddServer2Window
    method AddServer2Window (line 11) | public AddServer2Window(ProfileItem profileItem)
    method Window_Loaded (line 40) | private void Window_Loaded(object sender, RoutedEventArgs e)
    method btnCancel_Click (line 45) | private void btnCancel_Click(object sender, System.Windows.RoutedEvent...

FILE: v2rayN/v2rayN/Views/AddServerWindow.xaml.cs
  class AddServerWindow (line 13) | public partial class AddServerWindow
    method AddServerWindow (line 15) | public AddServerWindow(ProfileItem profileItem)
    method Window_Loaded (line 177) | private void Window_Loaded(object sender, RoutedEventArgs e)
    method CmbNetwork_SelectionChanged (line 182) | private void CmbNetwork_SelectionChanged(object sender, SelectionChang...
    method CmbStreamSecurity_SelectionChanged (line 188) | private void CmbStreamSecurity_SelectionChanged(object sender, Selecti...
    method btnGUID_Click (line 208) | private void btnGUID_Click(object sender, RoutedEventArgs e)
    method SetHeaderType (line 214) | private void SetHeaderType()
    method SetTips (line 250) | private void SetTips()
    method btnCancel_Click (line 299) | private void btnCancel_Click(object sender, RoutedEventArgs e)

FILE: v2rayN/v2rayN/Views/DNSSettingWindow.xaml.cs
  class DNSSettingWindow (line 10) | public partial class DNSSettingWindow
    method DNSSettingWindow (line 14) | public DNSSettingWindow()
    method linkDnsObjectDoc_Click (line 39) | private void linkDnsObjectDoc_Click(object sender, RoutedEventArgs e)
    method linkDnsSingboxObjectDoc_Click (line 44) | private void linkDnsSingboxObjectDoc_Click(object sender, RoutedEventA...
    method btnCancel_Click (line 49) | private void btnCancel_Click(object sender, RoutedEventArgs e)

FILE: v2rayN/v2rayN/Views/GlobalHotkeySettingWindow.xaml.cs
  class GlobalHotkeySettingWindow (line 11) | public partial class GlobalHotkeySettingWindow
    method GlobalHotkeySettingWindow (line 16) | public GlobalHotkeySettingWindow()
    method InitData (line 35) | private void InitData()
    method TxtGlobalHotkey_KeyDown (line 48) | private void TxtGlobalHotkey_KeyDown(object sender, KeyEventArgs e)
    method GetKeyEventItemByEGlobalHotkey (line 60) | private KeyEventItem GetKeyEventItemByEGlobalHotkey(List<KeyEventItem>...
    method KeyEventItemToString (line 72) | private string KeyEventItemToString(KeyEventItem item)
    method BindingData (line 85) | private void BindingData()
    method btnSave_Click (line 100) | private void btnSave_Click(object sender, RoutedEventArgs e)
    method btnCancel_Click (line 115) | private void btnCancel_Click(object sender, RoutedEventArgs e)
    method btnReset_Click (line 120) | private void btnReset_Click(object sender, RoutedEventArgs e)
    method GlobalHotkeySettingWindow_KeyDown (line 132) | private void GlobalHotkeySettingWindow_KeyDown(object sender, KeyEvent...

FILE: v2rayN/v2rayN/Views/HiddifyUI.xaml.cs
  class HiddifyUI (line 26) | public partial class HiddifyUI : UserControl
    method HiddifyUI (line 37) | public HiddifyUI()
    method OnCopy (line 57) | private void OnCopy(object sender, ExecutedRoutedEventArgs e)
    method MenuToggleButton_Click (line 72) | private void MenuToggleButton_Click(object sender, RoutedEventArgs e)
    method MenuDarkModeButton_Click (line 77) | private void MenuDarkModeButton_Click(object sender, RoutedEventArgs e)
    method ModifyTheme (line 83) | private static void ModifyTheme(bool isDarkTheme)
    method DarkModeToggleButton_Click (line 92) | private void DarkModeToggleButton_Click(object sender, RoutedEventArgs e)
    method DarkModeToggleButton_Click_1 (line 97) | private void DarkModeToggleButton_Click_1(object sender, RoutedEventAr...
    method CloseNotificationPanel_Click (line 101) | private void CloseNotificationPanel_Click(object sender, RoutedEventAr...
    method FAB_Click (line 103) | private void FAB_Click(object sender, RoutedEventArgs e)
    method ConnectVPN_Click (line 108) | private void ConnectVPN_Click(object sender, RoutedEventArgs e)
    method NewProfile_Click (line 126) | private void NewProfile_Click(object sender, RoutedEventArgs e)
    method ActiveProfile_PreviewMouseDown (line 132) | private void ActiveProfile_PreviewMouseDown(object sender, MouseButton...
    method UpdateUsage_Click (line 137) | private void UpdateUsage_Click(object sender, RoutedEventArgs e)

FILE: v2rayN/v2rayN/Views/MainSubInfoView.xaml.cs
  class MainSubInfoView (line 21) | public partial class MainSubInfoView : UserControl
    method MainSubInfoView (line 23) | public MainSubInfoView()

FILE: v2rayN/v2rayN/Views/MainWindow.xaml.cs
  class MainWindow (line 25) | public partial class MainWindow
    method HandleClientConnection (line 30) | private void HandleClientConnection(IAsyncResult ar)
    method MainWindow (line 49) | public MainWindow()
    method HandlePageReloading (line 270) | private void HandlePageReloading()
    method HandleDeepLink (line 300) | public void HandleDeepLink(String? message=null)
    method UpdateViewHandler (line 354) | private void UpdateViewHandler(EViewAction action)
    method MainWindow_Closing (line 369) | private void MainWindow_Closing(object? sender, CancelEventArgs e)
    method update_sub_click (line 377) | private void update_sub_click(object sender, RoutedEventArgs e)
    method menuExit_Click (line 388) | private void menuExit_Click(object sender, RoutedEventArgs e)
    method Current_SessionEnding (line 400) | private void Current_SessionEnding(object sender, SessionEndingCancelE...
    method lstProfiles_SelectionChanged (line 407) | private void lstProfiles_SelectionChanged(object sender, System.Window...
    method LstProfiles_LoadingRow (line 412) | private void LstProfiles_LoadingRow(object? sender, DataGridRowEventAr...
    method LstProfiles_MouseDoubleClick (line 418) | private void LstProfiles_MouseDoubleClick(object sender, MouseButtonEv...
    method LstProfiles_ColumnHeader_Click (line 440) | private void LstProfiles_ColumnHeader_Click(object sender, RoutedEvent...
    method menuSelectAll_Click (line 452) | private void menuSelectAll_Click(object sender, RoutedEventArgs e)
    method MainWindow_PreviewKeyDown (line 457) | private void MainWindow_PreviewKeyDown(object sender, KeyEventArgs e)
    method LstProfiles_PreviewKeyDown (line 499) | private void LstProfiles_PreviewKeyDown(object sender, KeyEventArgs e)
    method menuClose_Click (line 549) | private void menuClose_Click(object sender, RoutedEventArgs e)
    method menuPromotion_Click (line 555) | private void menuPromotion_Click(object sender, RoutedEventArgs e)
    method txtRunningInfoDisplay_MouseDoubleClick (line 560) | private void txtRunningInfoDisplay_MouseDoubleClick(object sender, Mou...
    method menuSettingsSetUWP_Click (line 565) | private void menuSettingsSetUWP_Click(object sender, RoutedEventArgs e)
    method BtnAutofitColumnWidth_Click (line 570) | private void BtnAutofitColumnWidth_Click(object sender, RoutedEventArg...
    method AutofitColumnWidth (line 575) | private void AutofitColumnWidth()
    method TxtServerFilter_PreviewKeyDown (line 583) | private void TxtServerFilter_PreviewKeyDown(object sender, KeyEventArg...
    method RestoreUI (line 595) | private void RestoreUI()
    method StorageUI (line 644) | private void StorageUI()
    method AddHelpMenuItem (line 666) | private void AddHelpMenuItem()
    method MenuItem_Click (line 681) | private void MenuItem_Click(object sender, RoutedEventArgs e)
    method FindAnchestor (line 703) | private static T? FindAnchestor<T>(DependencyObject current) where T :...
    method LstProfiles_PreviewMouseLeftButtonDown (line 717) | private void LstProfiles_PreviewMouseLeftButtonDown(object sender, Mou...
    method LstProfiles_MouseMove (line 723) | private void LstProfiles_MouseMove(object sender, MouseEventArgs e)
    method LstProfiles_DragEnter (line 747) | private void LstProfiles_DragEnter(object sender, DragEventArgs e)
    method LstProfiles_Drop (line 755) | private void LstProfiles_Drop(object sender, DragEventArgs e)
    method togEnableTun_Click (line 784) | private void togEnableTun_Click(object sender, RoutedEventArgs e)
    method togEnableProxy_Click (line 797) | private void togEnableProxy_Click(object sender, RoutedEventArgs e)
    method ResizeWindowToFirstColumn (line 812) | private void ResizeWindowToFirstColumn()
    method HideBtn_Click (line 826) | private void HideBtn_Click(object sender, RoutedEventArgs e)
    method HiddifyUI_Loaded (line 833) | private void HiddifyUI_Loaded(object sender, RoutedEventArgs e)

FILE: v2rayN/v2rayN/Views/MsgView.xaml.cs
  class MsgView (line 11) | public partial class MsgView
    method MsgView (line 18) | public MsgView()
    method DelegateAppendText (line 33) | private void DelegateAppendText(string msg)
    method AppendText (line 38) | public void AppendText(string msg)
    method ShowMsg (line 71) | private void ShowMsg(string msg)
    method ClearMsg (line 85) | public void ClearMsg()
    method menuMsgViewSelectAll_Click (line 90) | private void menuMsgViewSelectAll_Click(object sender, System.Windows....
    method menuMsgViewCopy_Click (line 96) | private void menuMsgViewCopy_Click(object sender, System.Windows.Route...
    method menuMsgViewCopyAll_Click (line 102) | private void menuMsgViewCopyAll_Click(object sender, System.Windows.Ro...
    method menuMsgViewClear_Click (line 108) | private void menuMsgViewClear_Click(object sender, System.Windows.Rout...
    method cmbMsgFilter_TextChanged (line 113) | private void cmbMsgFilter_TextChanged(object sender, System.Windows.Co...

FILE: v2rayN/v2rayN/Views/OptionSettingWindow.xaml.cs
  class OptionSettingWindow (line 14) | public partial class OptionSettingWindow
    method OptionSettingWindow (line 18) | public OptionSettingWindow()
    method btnCancel_Click (line 195) | private void btnCancel_Click(object sender, RoutedEventArgs e)
    method btnBrowse_Click (line 200) | private void btnBrowse_Click(object sender, System.Windows.RoutedEvent...

FILE: v2rayN/v2rayN/Views/QrcodeView.xaml.cs
  class QrcodeView (line 5) | public partial class QrcodeView : UserControl
    method QrcodeView (line 7) | public QrcodeView()

FILE: v2rayN/v2rayN/Views/RoutingRuleDetailsWindow.xaml.cs
  class RoutingRuleDetailsWindow (line 10) | public partial class RoutingRuleDetailsWindow
    method RoutingRuleDetailsWindow (line 12) | public RoutingRuleDetailsWindow(RulesItem rulesItem)
    method Window_Loaded (line 58) | private void Window_Loaded(object sender, RoutedEventArgs e)
    method ClbProtocol_SelectionChanged (line 63) | private void ClbProtocol_SelectionChanged(object sender, System.Window...
    method ClbInboundTag_SelectionChanged (line 68) | private void ClbInboundTag_SelectionChanged(object sender, System.Wind...
    method btnCancel_Click (line 73) | private void btnCancel_Click(object sender, RoutedEventArgs e)
    method linkRuleobjectDoc_Click (line 78) | private void linkRuleobjectDoc_Click(object sender, RoutedEventArgs e)

FILE: v2rayN/v2rayN/Views/RoutingRuleSettingWindow.xaml.cs
  class RoutingRuleSettingWindow (line 11) | public partial class RoutingRuleSettingWindow
    method RoutingRuleSettingWindow (line 13) | public RoutingRuleSettingWindow(RoutingItem routingItem)
    method Window_Loaded (line 63) | private void Window_Loaded(object sender, RoutedEventArgs e)
    method RoutingRuleSettingWindow_PreviewKeyDown (line 68) | private void RoutingRuleSettingWindow_PreviewKeyDown(object sender, Ke...
    method lstRules_SelectionChanged (line 106) | private void lstRules_SelectionChanged(object sender, System.Windows.C...
    method LstRules_MouseDoubleClick (line 111) | private void LstRules_MouseDoubleClick(object sender, MouseButtonEvent...
    method menuRuleSelectAll_Click (line 116) | private void menuRuleSelectAll_Click(object sender, System.Windows.Rou...
    method btnBrowse_Click (line 121) | private void btnBrowse_Click(object sender, System.Windows.RoutedEvent...

FILE: v2rayN/v2rayN/Views/RoutingSettingWindow.xaml.cs
  class RoutingSettingWindow (line 10) | public partial class RoutingSettingWindow
    method RoutingSettingWindow (line 12) | public RoutingSettingWindow()
    method RoutingSettingWindow_Closing (line 70) | private void RoutingSettingWindow_Closing(object? sender, System.Compo...
    method RoutingSettingWindow_PreviewKeyDown (line 78) | private void RoutingSettingWindow_PreviewKeyDown(object sender, KeyEve...
    method menuRoutingAdvancedSelectAll_Click (line 97) | private void menuRoutingAdvancedSelectAll_Click(object sender, System....
    method lstRoutings_SelectionChanged (line 102) | private void lstRoutings_SelectionChanged(object sender, System.Window...
    method LstRoutings_MouseDoubleClick (line 107) | private void LstRoutings_MouseDoubleClick(object sender, MouseButtonEv...
    method linkdomainStrategy_Click (line 112) | private void linkdomainStrategy_Click(object sender, System.Windows.Ro...
    method linkdomainStrategy4Singbox_Click (line 117) | private void linkdomainStrategy4Singbox_Click(object sender, RoutedEve...
    method btnCancel_Click (line 122) | private void btnCancel_Click(object sender, System.Windows.RoutedEvent...

FILE: v2rayN/v2rayN/Views/SubEditWindow.xaml.cs
  class SubEditWindow (line 9) | public partial class SubEditWindow
    method SubEditWindow (line 11) | public SubEditWindow(SubItem subItem)
    method Window_Loaded (line 40) | private void Window_Loaded(object sender, RoutedEventArgs e)
    method btnCancel_Click (line 45) | private void btnCancel_Click(object sender, RoutedEventArgs e)

FILE: v2rayN/v2rayN/Views/SubInfoView.xaml.cs
  class SubInfoView (line 21) | public partial class SubInfoView : UserControl
    method SubInfoView (line 23) | public SubInfoView()

FILE: v2rayN/v2rayN/Views/SubSettingWindow.xaml.cs
  class SubSettingWindow (line 11) | public partial class SubSettingWindow
    method SubSettingWindow (line 13) | public SubSettingWindow()
    method SubSettingWindow_Closing (line 35) | private void SubSettingWindow_Closing(object? sender, CancelEventArgs e)
    method LstSubscription_MouseDoubleClick (line 43) | private void LstSubscription_MouseDoubleClick(object sender, MouseButt...
    method LstSubscription_SelectionChanged (line 48) | private void LstSubscription_SelectionChanged(object sender, System.Wi...
    method menuClose_Click (line 53) | private void menuClose_Click(object sender, System.Windows.RoutedEvent...
Condensed preview — 179 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,694K chars).
[
  {
    "path": ".github/ISSUE_TEMPLATE/01_bug_report.yml",
    "chars": 1267,
    "preview": "name: Bug 报告\ndescription: 在提出问题前请先自行排除服务器端问题和升级到最新客户端,同时也请通过搜索确认是否有人提出过相同问题。\ntitle: \"[Bug]: \"\nlabels: [\"bug\"]\nbody:\n  - "
  },
  {
    "path": ".github/ISSUE_TEMPLATE/02_feature_request.yml",
    "chars": 651,
    "preview": "name: Feature 请求\ndescription: \"为这个项目提出一个建议\"\ntitle: \"[Feature request]: \"\nlabels: ['enhancement']\nbody: \n- type: input\n  "
  },
  {
    "path": ".github/workflows/ci.yml",
    "chars": 4311,
    "preview": "# This workflow uses actions that are not certified by GitHub.\n# They are provided by a third-party and are governed by\n"
  },
  {
    "path": ".github/workflows/release.yml",
    "chars": 2988,
    "preview": "name: Release\non:\n  push:\n    # Sequence of patterns matched against refs/tags\n    tags:\n      - \"v*\"\n\njobs:\n\n  build:\n\n"
  },
  {
    "path": ".gitignore",
    "chars": 625,
    "preview": "################################################################################\n# 此 .gitignore 文件已由 Microsoft(R) Visua"
  },
  {
    "path": "LICENSE",
    "chars": 35147,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "README.md",
    "chars": 1560,
    "preview": "# HiddifyN\nA GUI client for Windows, support [Xray core](https://github.com/XTLS/Xray-core) and [v2fly core](https://git"
  },
  {
    "path": "v2rayN/.gitattributes",
    "chars": 2518,
    "preview": "###############################################################################\n# Set default behavior to automatically "
  },
  {
    "path": "v2rayN/.gitignore",
    "chars": 6223,
    "preview": "## Ignore Visual Studio temporary files, build results, and\n## files generated by popular Visual Studio add-ons.\n##\n## G"
  },
  {
    "path": "v2rayN/HiddifyRestartN/HiddifyRestartN.csproj",
    "chars": 239,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <OutputType>Exe</OutputType>\n    <TargetFramework>net6.0</Targe"
  },
  {
    "path": "v2rayN/HiddifyRestartN/Program.cs",
    "chars": 684,
    "preview": "using System.Diagnostics;\n\n// This program is jsut for restarting main program\ntry\n{\n    // Killing\n\n    // Get running"
  },
  {
    "path": "v2rayN/HiddifyRestartN/Properties/launchSettings.json",
    "chars": 239,
    "preview": "{\n  \"profiles\": {\n    \"HiddifyRestartN\": {\n      \"commandName\": \"Project\",\n      \"commandLineArgs\": \"2342 --admin\",\n    "
  },
  {
    "path": "v2rayN/HiddifyUpgradeN/HiddifyUpgradeN.csproj",
    "chars": 434,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n  <PropertyGroup>\n\t<TargetFramework>net6.0-windows</TargetFramework>\n\t<OutputType>Win"
  },
  {
    "path": "v2rayN/HiddifyUpgradeN/MainForm.Designer.cs",
    "chars": 4475,
    "preview": "namespace v2rayUpgrade\n{\n    partial class MainForm\n    {\n        /// <summary>\n        /// 必需的设计器变量。\n        /// </sum"
  },
  {
    "path": "v2rayN/HiddifyUpgradeN/MainForm.cs",
    "chars": 4705,
    "preview": "using System;\nusing System.Diagnostics;\nusing System.IO;\nusing System.IO.Compression;\nusing System.Text;\nusing System.W"
  },
  {
    "path": "v2rayN/HiddifyUpgradeN/MainForm.resx",
    "chars": 5696,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<root>\n  <!-- \n    Microsoft ResX Schema \n    \n    Version 2.0\n    \n    The prim"
  },
  {
    "path": "v2rayN/HiddifyUpgradeN/Program.cs",
    "chars": 498,
    "preview": "using System;\nusing System.Windows.Forms;\n\nnamespace v2rayUpgrade\n{\n    internal static class Program\n    {\n        ///"
  },
  {
    "path": "v2rayN/HiddifyUpgradeN/Properties/Resources.Designer.cs",
    "chars": 2462,
    "preview": "//------------------------------------------------------------------------------\n// <auto-generated>\n//     此代码由工具生成。\n/"
  },
  {
    "path": "v2rayN/HiddifyUpgradeN/Properties/Resources.resx",
    "chars": 5494,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<root>\n  <!-- \n    Microsoft ResX Schema \n    \n    Version 2.0\n    \n    The prim"
  },
  {
    "path": "v2rayN/HiddifyUpgradeN/Properties/Settings.Designer.cs",
    "chars": 978,
    "preview": "//------------------------------------------------------------------------------\n// <auto-generated>\n//     此代码由工具生成。\n/"
  },
  {
    "path": "v2rayN/HiddifyUpgradeN/Properties/Settings.settings",
    "chars": 240,
    "preview": "<?xml version='1.0' encoding='utf-8'?>\n<SettingsFile xmlns=\"http://schemas.microsoft.com/VisualStudio/2004/01/settings\""
  },
  {
    "path": "v2rayN/HiddifyUpgradeN/app.manifest",
    "chars": 495,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<assembly xmlns=\"urn:schemas-microsoft-com:asm.v1\" manifestVers"
  },
  {
    "path": "v2rayN/PacLib/PacHandler.cs",
    "chars": 2951,
    "preview": "using System;\nusing System.IO;\nusing System.Net.Sockets;\nusing System.Text;\nusing System.Threading;\nusing System.Thread"
  },
  {
    "path": "v2rayN/PacLib/PacLib.csproj",
    "chars": 561,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <TargetFramework>net6.0-windows</TargetFramework>\n    <Nullabl"
  },
  {
    "path": "v2rayN/PacLib/Resources/pac.txt",
    "chars": 169850,
    "preview": "var proxy = '__PROXY__';\nvar rules = [\n    [\n        [],\n        []\n    ],\n    [\n        [\n            \"aftygh.gov.tw\",\n"
  },
  {
    "path": "v2rayN/PacLib/Resources.Designer.cs",
    "chars": 3605,
    "preview": "//------------------------------------------------------------------------------\n// <auto-generated>\n//     此代码由工具生成。\n/"
  },
  {
    "path": "v2rayN/PacLib/Resources.resx",
    "chars": 6058,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<root>\n  <!-- \n    Microsoft ResX Schema \n    \n    Version 2.0\n    \n    The prim"
  },
  {
    "path": "v2rayN/ProtosLib/ProtosLib.csproj",
    "chars": 623,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n  <PropertyGroup>\n    <TargetFramework>net6.0-windows</TargetFramework>\n    <Nullable"
  },
  {
    "path": "v2rayN/ProtosLib/Statistics.proto",
    "chars": 1028,
    "preview": "syntax = \"proto3\";\n\npackage v2ray.core.app.stats.command;\noption csharp_namespace = \"ProtosLib.Statistics\";\n\nmessage Ge"
  },
  {
    "path": "v2rayN/ProtosLib/Tests.cs",
    "chars": 189,
    "preview": "using ProtosLib.Statistics;\n\nnamespace ProtosLib\n{\n    public class Tests\n    {\n        private StatsService.StatsServi"
  },
  {
    "path": "v2rayN/v2rayN/App.xaml",
    "chars": 7156,
    "preview": "<Application\n    x:Class=\"v2rayN.App\"\n    xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n    xmlns:x"
  },
  {
    "path": "v2rayN/v2rayN/App.xaml.cs",
    "chars": 4516,
    "preview": "using System.Windows;\nusing System.Windows.Threading;\nusing v2rayN.Handler;\nusing v2rayN.Mode;\nusing v2rayN.Tool;\nusing"
  },
  {
    "path": "v2rayN/v2rayN/AssemblyInfo.cs",
    "chars": 594,
    "preview": "using System.Windows;\n\n[assembly: ThemeInfo(\n    ResourceDictionaryLocation.None, //where theme specific resource dictio"
  },
  {
    "path": "v2rayN/v2rayN/Base/DownloaderHelper.cs",
    "chars": 6293,
    "preview": "using Downloader;\nusing System.IO;\nusing System.Net;\n\nnamespace v2rayN.Base\n{\n    internal class DownloaderHelper\n    {"
  },
  {
    "path": "v2rayN/v2rayN/Base/HttpClientHelper.cs",
    "chars": 5561,
    "preview": "using System.IO;\nusing System.Net.Http;\nusing System.Net.Mime;\nusing System.Text;\n\nnamespace v2rayN.Base\n{\n    /// <sum"
  },
  {
    "path": "v2rayN/v2rayN/Base/MyDGTextColumn.cs",
    "chars": 168,
    "preview": "using System.Windows.Controls;\n\nnamespace v2rayN.Base\n{\n    internal class MyDGTextColumn : DataGridTextColumn\n    {\n  "
  },
  {
    "path": "v2rayN/v2rayN/Base/SqliteHelper.cs",
    "chars": 2983,
    "preview": "using SQLite;\nusing System.Collections;\n\nnamespace v2rayN.Base\n{\n    public sealed class SqliteHelper\n    {\n        pri"
  },
  {
    "path": "v2rayN/v2rayN/Base/StringEx.cs",
    "chars": 1328,
    "preview": "using System.Diagnostics.CodeAnalysis;\nusing System.IO;\n\nnamespace v2rayN.Base\n{\n    internal static class StringEx\n   "
  },
  {
    "path": "v2rayN/v2rayN/Converters/DelayColorConverter.cs",
    "chars": 779,
    "preview": "using System.Windows.Data;\nusing System.Windows.Media;\n\nnamespace v2rayN.Converters\n{\n    public class DelayColorConver"
  },
  {
    "path": "v2rayN/v2rayN/Converters/LocalizeConverter.cs",
    "chars": 842,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Globalization;\nusing System.Linq;\nusing System.Text;\nusing"
  },
  {
    "path": "v2rayN/v2rayN/Converters/MaterialDesignFonts.cs",
    "chars": 725,
    "preview": "using System.Windows.Media;\nusing v2rayN.Handler;\n\nnamespace v2rayN.Converters\n{\n    public class MaterialDesignFonts\n "
  },
  {
    "path": "v2rayN/v2rayN/Converters/SizeConverter.cs",
    "chars": 1555,
    "preview": "using System.Globalization;\nusing System.Windows.Data;\nusing System.Windows.Media;\n\nnamespace v2rayN.Converters\n{\n    p"
  },
  {
    "path": "v2rayN/v2rayN/FodyWeavers.xml",
    "chars": 140,
    "preview": "<Weavers xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"FodyWeavers.xsd\">\n  <Reac"
  },
  {
    "path": "v2rayN/v2rayN/Global.cs",
    "chars": 12534,
    "preview": "using System.IO;\n\nnamespace v2rayN\n{\n    internal class Global\n    {\n        #region const\n\n        public const string"
  },
  {
    "path": "v2rayN/v2rayN/Handler/ConfigHandler.cs",
    "chars": 69840,
    "preview": "using Splat;\nusing System.Collections.Specialized;\nusing System.Data;\nusing System.IO;\nusing System.Security.Policy;\nus"
  },
  {
    "path": "v2rayN/v2rayN/Handler/CoreConfigHandler.cs",
    "chars": 6588,
    "preview": "using System.IO;\nusing v2rayN.Mode;\nusing v2rayN.Resx;\n\nnamespace v2rayN.Handler\n{\n    /// <summary>\n    /// Core confi"
  },
  {
    "path": "v2rayN/v2rayN/Handler/CoreConfigSingbox.cs",
    "chars": 26330,
    "preview": "using v2rayN.Base;\nusing v2rayN.Mode;\nusing v2rayN.Resx;\n\nnamespace v2rayN.Handler\n{\n    internal class CoreConfigSingb"
  },
  {
    "path": "v2rayN/v2rayN/Handler/CoreConfigV2ray.cs",
    "chars": 41743,
    "preview": "using System.Net;\nusing System.Net.NetworkInformation;\nusing v2rayN.Base;\nusing v2rayN.Mode;\nusing v2rayN.Resx;\n\nnamesp"
  },
  {
    "path": "v2rayN/v2rayN/Handler/CoreHandler.cs",
    "chars": 12494,
    "preview": "using System.Diagnostics;\nusing System.IO;\nusing System.Text;\nusing v2rayN.Mode;\nusing v2rayN.Resx;\n\nnamespace v2rayN.H"
  },
  {
    "path": "v2rayN/v2rayN/Handler/DownloadHandle.cs",
    "chars": 11368,
    "preview": "using System.Diagnostics;\nusing System.IO;\nusing System.Net;\nusing System.Net.Http;\nusing System.Net.Http.Headers;\nusin"
  },
  {
    "path": "v2rayN/v2rayN/Handler/HotkeyHandler.cs",
    "chars": 6451,
    "preview": "using System.ComponentModel;\nusing System.Runtime.InteropServices;\nusing System.Text;\nusing System.Windows;\nusing Syste"
  },
  {
    "path": "v2rayN/v2rayN/Handler/LazyConfig.cs",
    "chars": 14825,
    "preview": "using v2rayN.Base;\nusing v2rayN.Mode;\n\nnamespace v2rayN.Handler\n{\n    public sealed class LazyConfig\n    {\n        priv"
  },
  {
    "path": "v2rayN/v2rayN/Handler/MainFormHandler.cs",
    "chars": 7901,
    "preview": "using Microsoft.Win32;\nusing System.Drawing;\nusing System.IO;\nusing System.Windows.Media.Imaging;\nusing v2rayN.Mode;\nus"
  },
  {
    "path": "v2rayN/v2rayN/Handler/NoticeHandler.cs",
    "chars": 893,
    "preview": "using MaterialDesignThemes.Wpf;\nusing ReactiveUI;\n\nnamespace v2rayN.Handler\n{\n    public class NoticeHandler\n    {\n    "
  },
  {
    "path": "v2rayN/v2rayN/Handler/ProfileExHandler.cs",
    "chars": 4310,
    "preview": "using System.Collections.Concurrent;\nusing System.Reactive.Linq;\nusing v2rayN.Base;\nusing v2rayN.Mode;\n\nnamespace v2ray"
  },
  {
    "path": "v2rayN/v2rayN/Handler/ProxySetting.cs",
    "chars": 8253,
    "preview": "using Microsoft.Win32;\nusing System.Runtime.InteropServices;\n\nnamespace v2rayN.Handler\n{\n    internal class ProxySettin"
  },
  {
    "path": "v2rayN/v2rayN/Handler/QRCodeHelper.cs",
    "chars": 718,
    "preview": "using QRCoder;\nusing QRCoder.Xaml;\nusing System.Windows.Media;\n\nnamespace v2rayN.Handler\n{\n    /// <summary>\n    /// 含有"
  },
  {
    "path": "v2rayN/v2rayN/Handler/ShareHandler.cs",
    "chars": 28942,
    "preview": "using System.Collections.Specialized;\nusing System.Text.RegularExpressions;\nusing System.Web;\nusing v2rayN.Base;\nusing "
  },
  {
    "path": "v2rayN/v2rayN/Handler/SpeedtestHandler.cs",
    "chars": 14317,
    "preview": "using System.Diagnostics;\nusing System.Net;\nusing System.Net.NetworkInformation;\nusing System.Net.Sockets;\nusing v2rayN"
  },
  {
    "path": "v2rayN/v2rayN/Handler/StatisticsHandler.cs",
    "chars": 8133,
    "preview": "using Grpc.Core;\nusing Grpc.Net.Client;\nusing ProtosLib.Statistics;\nusing System.Net;\nusing System.Net.Sockets;\nusing v"
  },
  {
    "path": "v2rayN/v2rayN/Handler/SysProxyHandle.cs",
    "chars": 7529,
    "preview": "using PacLib;\nusing System.Diagnostics;\nusing System.IO;\nusing System.Text;\nusing v2rayN.Mode;\nusing v2rayN.Properties;"
  },
  {
    "path": "v2rayN/v2rayN/Handler/TunHandler.cs",
    "chars": 12746,
    "preview": "using System.Diagnostics;\nusing System.IO;\nusing System.Reactive.Linq;\nusing v2rayN.Handler;\nusing v2rayN.Mode;\nusing v"
  },
  {
    "path": "v2rayN/v2rayN/Handler/UpdateHandle.cs",
    "chars": 25632,
    "preview": "using DynamicData;\nusing Splat;\nusing System.Diagnostics;\nusing System.IO;\nusing System.Runtime.InteropServices;\nusing "
  },
  {
    "path": "v2rayN/v2rayN/Mode/BalancerItem.cs",
    "chars": 1026,
    "preview": "namespace v2rayN.Mode\n{\n    [Serializable]\n    public class BalancerItem\n    {\n        public string tag { get; set; }\n"
  },
  {
    "path": "v2rayN/v2rayN/Mode/ComboItem.cs",
    "chars": 202,
    "preview": "namespace v2rayN.Mode\n{\n    public class ComboItem\n    {\n        public string ID\n        {\n            get; set;\n     "
  },
  {
    "path": "v2rayN/v2rayN/Mode/Config.cs",
    "chars": 1161,
    "preview": "namespace v2rayN.Mode\n{\n    /// <summary>\n    /// 本软件配置文件实体类\n    /// </summary>\n    [Serializable]\n    public class Con"
  },
  {
    "path": "v2rayN/v2rayN/Mode/ConfigItems.cs",
    "chars": 5602,
    "preview": "using System.Windows.Input;\n\nnamespace v2rayN.Mode\n{\n    [Serializable]\n    public class CoreBasicItem\n    {\n        //"
  },
  {
    "path": "v2rayN/v2rayN/Mode/ConfigOld.cs",
    "chars": 8037,
    "preview": "namespace v2rayN.Mode\n{\n    [Serializable]\n    public class ConfigOld\n    {\n        #region property\n\n        /// <summ"
  },
  {
    "path": "v2rayN/v2rayN/Mode/CoreInfo.cs",
    "chars": 636,
    "preview": "namespace v2rayN.Mode\n{\n    [Serializable]\n    public class CoreInfo\n    {\n        public ECoreType coreType { get; set"
  },
  {
    "path": "v2rayN/v2rayN/Mode/DNSItem.cs",
    "chars": 500,
    "preview": "using SQLite;\n\nnamespace v2rayN.Mode\n{\n    [Serializable]\n    public class DNSItem\n    {\n        [PrimaryKey]\n        p"
  },
  {
    "path": "v2rayN/v2rayN/Mode/EConfigType.cs",
    "chars": 260,
    "preview": "namespace v2rayN.Mode\n{\n    public enum EConfigType\n    {\n        VMess = 1,\n        Custom = 2,\n        Shadowsocks = "
  },
  {
    "path": "v2rayN/v2rayN/Mode/ECoreType.cs",
    "chars": 300,
    "preview": "namespace v2rayN.Mode\n{\n    public enum ECoreType\n    {\n        v2fly = 1,\n        Xray = 2,\n        SagerNet = 3,\n    "
  },
  {
    "path": "v2rayN/v2rayN/Mode/EGlobalHotkey.cs",
    "chars": 210,
    "preview": "namespace v2rayN.Mode\n{\n    public enum EGlobalHotkey\n    {\n        ShowForm = 0,\n        SystemProxyClear = 1,\n       "
  },
  {
    "path": "v2rayN/v2rayN/Mode/EMove.cs",
    "chars": 152,
    "preview": "namespace v2rayN.Mode\n{\n    public enum EMove\n    {\n        Top = 1,\n        Up = 2,\n        Down = 3,\n        Bottom ="
  },
  {
    "path": "v2rayN/v2rayN/Mode/EServerColName.cs",
    "chars": 341,
    "preview": "namespace v2rayN.Mode\n{\n    public enum EServerColName\n    {\n        def = 0,\n        configType,\n        remarks,\n    "
  },
  {
    "path": "v2rayN/v2rayN/Mode/ESpeedActionType.cs",
    "chars": 156,
    "preview": "namespace v2rayN.Mode\n{\n    public enum ESpeedActionType\n    {\n        Ping,\n        Tcping,\n        Realping,\n        "
  },
  {
    "path": "v2rayN/v2rayN/Mode/ESysProxyType.cs",
    "chars": 158,
    "preview": "namespace v2rayN.Mode\n{\n    public enum ESysProxyType\n    {\n        ForcedClear = 0,\n        ForcedChange = 1,\n        "
  },
  {
    "path": "v2rayN/v2rayN/Mode/EViewAction.cs",
    "chars": 118,
    "preview": "namespace v2rayN.Mode\n{\n    public enum EViewAction\n    {\n        AdjustMainLvColWidth,\n        ProfilesFocus\n    }\n}"
  },
  {
    "path": "v2rayN/v2rayN/Mode/GitHubRelease.cs",
    "chars": 2252,
    "preview": "using Newtonsoft.Json;\n\nnamespace v2rayN.Mode\n{\n    public class GitHubReleaseAsset\n    {\n        [JsonProperty(\"url\")]"
  },
  {
    "path": "v2rayN/v2rayN/Mode/HiddifyEnums.cs",
    "chars": 1710,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.ComponentModel;\nusing System.Linq;\nusing System.Text;\nusin"
  },
  {
    "path": "v2rayN/v2rayN/Mode/ProfileExItem.cs",
    "chars": 289,
    "preview": "using SQLite;\n\nnamespace v2rayN.Mode\n{\n    [Serializable]\n    public class ProfileExItem\n    {\n        [PrimaryKey]\n   "
  },
  {
    "path": "v2rayN/v2rayN/Mode/ProfileItem.cs",
    "chars": 4940,
    "preview": "using SQLite;\nusing v2rayN.Base;\n\nnamespace v2rayN.Mode\n{\n    [Serializable]\n    public class ProfileItem\n    {\n       "
  },
  {
    "path": "v2rayN/v2rayN/Mode/ProfileItemModel.cs",
    "chars": 585,
    "preview": "namespace v2rayN.Mode\n{\n    [Serializable]\n    public class ProfileItemModel : ProfileItem\n    {\n        public bool is"
  },
  {
    "path": "v2rayN/v2rayN/Mode/ProxyMode.cs",
    "chars": 262,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nna"
  },
  {
    "path": "v2rayN/v2rayN/Mode/RoutingItem.cs",
    "chars": 617,
    "preview": "using SQLite;\n\nnamespace v2rayN.Mode\n{\n    [Serializable]\n    public class RoutingItem\n    {\n        [PrimaryKey]\n     "
  },
  {
    "path": "v2rayN/v2rayN/Mode/RoutingItemModel.cs",
    "chars": 148,
    "preview": "namespace v2rayN.Mode\n{\n    [Serializable]\n    public class RoutingItemModel : RoutingItem\n    {\n        public bool is"
  },
  {
    "path": "v2rayN/v2rayN/Mode/RulesItem.cs",
    "chars": 556,
    "preview": "namespace v2rayN.Mode\n{\n    [Serializable]\n    public class RulesItem\n    {\n        public string id { get; set; }\n    "
  },
  {
    "path": "v2rayN/v2rayN/Mode/RulesItemModel.cs",
    "chars": 282,
    "preview": "namespace v2rayN.Mode\n{\n    [Serializable]\n    public class RulesItemModel : RulesItem\n    {\n        public string inbo"
  },
  {
    "path": "v2rayN/v2rayN/Mode/ServerSpeedItem.cs",
    "chars": 398,
    "preview": "namespace v2rayN.Mode\n{\n    [Serializable]\n    internal class ServerSpeedItem : ServerStatItem\n    {\n        public lon"
  },
  {
    "path": "v2rayN/v2rayN/Mode/ServerStatItem.cs",
    "chars": 556,
    "preview": "using SQLite;\n\nnamespace v2rayN.Mode\n{\n    [Serializable]\n    public class ServerStatItem\n    {\n        [PrimaryKey]\n  "
  },
  {
    "path": "v2rayN/v2rayN/Mode/ServerTestItem.cs",
    "chars": 352,
    "preview": "namespace v2rayN.Mode\n{\n    [Serializable]\n    internal class ServerTestItem\n    {\n        public string indexId { get;"
  },
  {
    "path": "v2rayN/v2rayN/Mode/SingboxConfig.cs",
    "chars": 5994,
    "preview": "namespace v2rayN.Mode\n{\n    public class SingboxConfig\n    {\n        public Log4Sbox log { get; set; }\n        public o"
  },
  {
    "path": "v2rayN/v2rayN/Mode/SsSIP008.cs",
    "chars": 440,
    "preview": "namespace v2rayN.Mode\n{\n    public class SsSIP008\n    {\n        public List<SsServer> servers { get; set; }\n    }\n\n    "
  },
  {
    "path": "v2rayN/v2rayN/Mode/SubItem.cs",
    "chars": 3092,
    "preview": "\nusing SQLite;\nusing System.Windows;\nnamespace v2rayN.Mode\n{\n    [Serializable]\n    public class SubItem\n    {\n        "
  },
  {
    "path": "v2rayN/v2rayN/Mode/SubscriptionInfo.cs",
    "chars": 520,
    "preview": "\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nn"
  },
  {
    "path": "v2rayN/v2rayN/Mode/SysproxyConfig.cs",
    "chars": 446,
    "preview": "namespace v2rayN.Mode\n{\n    internal class SysproxyConfig\n    {\n        public bool UserSettingsRecorded;\n        publi"
  },
  {
    "path": "v2rayN/v2rayN/Mode/V2rayConfig.cs",
    "chars": 13505,
    "preview": "using Newtonsoft.Json;\nusing System.Windows.Documents;\n\nnamespace v2rayN.Mode\n{\n    /// <summary>\n    /// v2ray配置文件实体类\n"
  },
  {
    "path": "v2rayN/v2rayN/Mode/V2rayTcpRequest.cs",
    "chars": 399,
    "preview": "namespace v2rayN.Mode\n{\n    /// <summary>\n    /// Tcp伪装http的Request,只要Host\n    /// </summary>\n    public class V2rayTcp"
  },
  {
    "path": "v2rayN/v2rayN/Mode/VmessQRCode.cs",
    "chars": 1984,
    "preview": "namespace v2rayN.Mode\n{\n    /// <summary>\n    /// https://github.com/2dust/v2rayN/wiki/\n    /// </summary>\n    [Seriali"
  },
  {
    "path": "v2rayN/v2rayN/Resx/Hiddify.Designer.cs",
    "chars": 3028,
    "preview": "//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code w"
  },
  {
    "path": "v2rayN/v2rayN/Resx/Hiddify.resx",
    "chars": 5780,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<root>\n  <!-- \n    Microsoft ResX Schema \n    \n    Version 2.0\n    \n    The prim"
  },
  {
    "path": "v2rayN/v2rayN/Resx/ResUI.Designer.cs",
    "chars": 119006,
    "preview": "//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code w"
  },
  {
    "path": "v2rayN/v2rayN/Resx/ResUI.fa-Ir.resx",
    "chars": 40685,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<root>\n  <!-- \n    Microsoft ResX Schema \n    \n    Version 2.0\n    \n    The prim"
  },
  {
    "path": "v2rayN/v2rayN/Resx/ResUI.resx",
    "chars": 45625,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<root>\n  <!-- \n    Microsoft ResX Schema \n    \n    Version 2.0\n    \n    The prim"
  },
  {
    "path": "v2rayN/v2rayN/Resx/ResUI.ru.resx",
    "chars": 41555,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<root>\n  <!-- \n    Microsoft ResX Schema \n    \n    Version 2.0\n    \n    The prim"
  },
  {
    "path": "v2rayN/v2rayN/Resx/ResUI.zh-Hans.resx",
    "chars": 38551,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<root>\n  <!-- \n    Microsoft ResX Schema \n    \n    Version 2.0\n    \n    The prim"
  },
  {
    "path": "v2rayN/v2rayN/Sample/SampleClientConfig",
    "chars": 1939,
    "preview": "{\n\t\"log\": {\n\t\t\"access\": \"Vaccess.log\",\n\t\t\"error\": \"Verror.log\",\n\t\t\"loglevel\": \"warning\"\n\t},\n\t\"inbounds\": [\n\t\t{\n\t\t\t\"tag\""
  },
  {
    "path": "v2rayN/v2rayN/Sample/SampleHttprequest",
    "chars": 209,
    "preview": "{\"version\":\"1.1\",\"method\":\"GET\",\"path\":[$requestPath$],\"headers\":{\"Host\":[$requestHost$],\"User-Agent\":[$requestUserAgen"
  },
  {
    "path": "v2rayN/v2rayN/Sample/SampleHttpresponse",
    "chars": 196,
    "preview": "{\"version\":\"1.1\",\"status\":\"200\",\"reason\":\"OK\",\"headers\":{\"Content-Type\":[\"application/octet-stream\",\"video/mpeg\"],\"Tran"
  },
  {
    "path": "v2rayN/v2rayN/Sample/SampleInbound",
    "chars": 246,
    "preview": "{\n\t\"tag\": \"tag1\",\n\t\"port\": 10808,\n\t\"protocol\": \"socks\",\n\t\"listen\": \"127.0.0.1\",\n\t\"settings\": {\n\t\t\"auth\": \"noauth\",\n\t\t\"u"
  },
  {
    "path": "v2rayN/v2rayN/Sample/SingboxSampleClientConfig",
    "chars": 405,
    "preview": "{\n\t\"log\": {\n\t\t\"level\": \"debug\",\n\t\t\"timestamp\": true\n\t},\n\t\"inbounds\": [\n\t\t{\n\t\t\t\"type\": \"socks\",\n\t\t\t\"tag\": \"socks\",\n\t\t\t\"l"
  },
  {
    "path": "v2rayN/v2rayN/Sample/custom_routing_black",
    "chars": 1863,
    "preview": "[\n  {\n    \"outboundTag\": \"proxy\",\n    \"domain\": [\n      \"domain:example.com\",\n      \"domain:example2.com\"\n    ]\n  },\n  {"
  },
  {
    "path": "v2rayN/v2rayN/Sample/custom_routing_global",
    "chars": 55,
    "preview": "[\n\t{\n\t\t\"port\": \"0-65535\",\n\t\t\"outboundTag\": \"proxy\"\n\t}\n]"
  },
  {
    "path": "v2rayN/v2rayN/Sample/custom_routing_locked",
    "chars": 308,
    "preview": "[\n  {\n    \"domain\": [\n      \"geosite:google\"\n    ],\n    \"outboundTag\": \"proxy\"\n  },\n  {\n    \"outboundTag\": \"direct\",\n   "
  },
  {
    "path": "v2rayN/v2rayN/Sample/custom_routing_rules",
    "chars": 390,
    "preview": "[{\n\t\t\"remarks\": \"block\",\n\t\t\"outboundTag\": \"block\",\n\t\t\"domain\": [\n\t\t\t\"geosite:category-ads-all\"\n\t\t]\n\t},\n\t{\n\t\t\"remarks\": \""
  },
  {
    "path": "v2rayN/v2rayN/Sample/custom_routing_white",
    "chars": 761,
    "preview": "[\n  {\n    \"outboundTag\": \"direct\",\n    \"domain\": [\n      \"domain:example.com\",\n      \"domain:example2.com\"\n    ]\n  },\n  "
  },
  {
    "path": "v2rayN/v2rayN/Sample/dns_singbox_normal",
    "chars": 462,
    "preview": "{\n  \"servers\": [\n    {\n      \"tag\": \"remote\",\n      \"address\": \"tcp://8.8.8.8\",\n      \"detour\": \"proxy\"\n    },\n    {\n   "
  },
  {
    "path": "v2rayN/v2rayN/Sample/dns_v2ray_normal",
    "chars": 311,
    "preview": "{\n  \"hosts\": {\n    \"dns.google\": \"8.8.8.8\",\n    \"proxy.example.com\": \"127.0.0.1\"\n  },\n  \"servers\": [\n    {\n      \"addres"
  },
  {
    "path": "v2rayN/v2rayN/Sample/tun_singbox",
    "chars": 1735,
    "preview": "{\n  \"log\": {\n    \"disabled\": $log_disabled$,\n    \"level\": \"debug\",\n    $log_output$\n    \"timestamp\": true\n  },\n  \"dns\": "
  },
  {
    "path": "v2rayN/v2rayN/Sample/tun_singbox_dns",
    "chars": 547,
    "preview": "{\n  \"servers\": [\n    {\n      \"tag\": \"remote\",\n      \"address\": \"tcp://8.8.8.8\",\n      \"detour\": \"proxy\"\n    },\n    {\n   "
  },
  {
    "path": "v2rayN/v2rayN/Sample/tun_singbox_inbound",
    "chars": 209,
    "preview": "{\n   \"type\":\"tun\",\n   \"tag\":\"tun-in\",\n   \"interface_name\":\"singbox_tun\",\n   \"inet4_address\":\"172.19.0.1/30\",\n   \"mtu\":90"
  },
  {
    "path": "v2rayN/v2rayN/Sample/tun_singbox_rules",
    "chars": 456,
    "preview": "[\n  {\n    \"inbound\": [ \"dns_in\" ],\n    \"outbound\": \"dns_out\"\n  },\n  {\n    \"protocol\": [ \"dns\" ],\n    \"outbound\": \"dns_ou"
  },
  {
    "path": "v2rayN/v2rayN/Tool/DeepLinking.cs",
    "chars": 7925,
    "preview": "using Microsoft.Win32;\nusing v2rayN.Handler;\n\nnamespace v2rayN.Tool\n{\n    public class DeepLinking\n    {\n        const "
  },
  {
    "path": "v2rayN/v2rayN/Tool/FileManager.cs",
    "chars": 2688,
    "preview": "using System.IO;\nusing System.IO.Compression;\nusing System.Text;\n\nnamespace v2rayN.Tool\n{\n    public static class FileM"
  },
  {
    "path": "v2rayN/v2rayN/Tool/Job.cs",
    "chars": 5167,
    "preview": "using System.Diagnostics;\nusing System.Runtime.InteropServices;\n\nnamespace v2rayN\n{\n    /*\n     * See:\n     * http://st"
  },
  {
    "path": "v2rayN/v2rayN/Tool/Logging.cs",
    "chars": 1601,
    "preview": "using NLog;\nusing NLog.Config;\nusing NLog.Targets;\nusing System.IO;\n\nnamespace v2rayN.Tool\n{\n    public class Logging\n "
  },
  {
    "path": "v2rayN/v2rayN/Tool/QueryableExtension.cs",
    "chars": 1934,
    "preview": "using System.Linq.Expressions;\nusing System.Reflection;\n\nnamespace v2rayN.Tool\n{\n    public static class QueryableExten"
  },
  {
    "path": "v2rayN/v2rayN/Tool/TestSpeed.cs",
    "chars": 2734,
    "preview": "using v2rayN;\nusing Newtonsoft;\nusing System.Diagnostics;\nusing Newtonsoft.Json.Linq;\nusing System.Net;\nusing Newtonsof"
  },
  {
    "path": "v2rayN/v2rayN/Tool/UI.cs",
    "chars": 838,
    "preview": "using System.Windows;\n\nnamespace v2rayN\n{\n    internal class UI\n    {\n        private static readonly string caption = "
  },
  {
    "path": "v2rayN/v2rayN/Tool/Utils.cs",
    "chars": 52872,
    "preview": "using Downloader;\nusing Microsoft.Win32;\nusing Microsoft.Win32.TaskScheduler;\nusing Newtonsoft.Json;\nusing Newtonsoft.J"
  },
  {
    "path": "v2rayN/v2rayN/ViewModels/AddServer2ViewModel.cs",
    "chars": 4683,
    "preview": "using Microsoft.Win32;\nusing ReactiveUI;\nusing ReactiveUI.Fody.Helpers;\nusing ReactiveUI.Validation.Helpers;\nusing Splat"
  },
  {
    "path": "v2rayN/v2rayN/ViewModels/AddServerViewModel.cs",
    "chars": 5332,
    "preview": "using ReactiveUI;\nusing ReactiveUI.Fody.Helpers;\nusing Splat;\nusing System.Reactive;\nusing System.Windows;\nusing v2rayN"
  },
  {
    "path": "v2rayN/v2rayN/ViewModels/AnotherCommandImplementation.cs",
    "chars": 1274,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\nusi"
  },
  {
    "path": "v2rayN/v2rayN/ViewModels/DNSSettingViewModel.cs",
    "chars": 3254,
    "preview": "using ReactiveUI;\nusing ReactiveUI.Fody.Helpers;\nusing Splat;\nusing System.Reactive;\nusing System.Windows;\nusing v2rayN"
  },
  {
    "path": "v2rayN/v2rayN/ViewModels/DemoItem.cs",
    "chars": 2798,
    "preview": "using MaterialDesignThemes.Wpf;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nu"
  },
  {
    "path": "v2rayN/v2rayN/ViewModels/HomeWindowViewModel.cs",
    "chars": 4693,
    "preview": "using Google.Protobuf.Collections;\nusing Google.Protobuf.WellKnownTypes;\nusing MaterialDesignThemes.Wpf;\nusing Material"
  },
  {
    "path": "v2rayN/v2rayN/ViewModels/MainWindowViewModel.cs",
    "chars": 89531,
    "preview": "using DynamicData;\nusing DynamicData.Binding;\nusing MaterialDesignColors;\nusing MaterialDesignColors.ColorManipulation;\n"
  },
  {
    "path": "v2rayN/v2rayN/ViewModels/OptionSettingViewModel.cs",
    "chars": 16956,
    "preview": "using ReactiveUI;\nusing ReactiveUI.Fody.Helpers;\nusing Splat;\nusing System.Reactive;\nusing System.Windows;\nusing v2rayN"
  },
  {
    "path": "v2rayN/v2rayN/ViewModels/RoutingRuleDetailsViewModel.cs",
    "chars": 3072,
    "preview": "using ReactiveUI;\nusing ReactiveUI.Fody.Helpers;\nusing Splat;\nusing System.Reactive;\nusing System.Windows;\nusing v2rayN"
  },
  {
    "path": "v2rayN/v2rayN/ViewModels/RoutingRuleSettingViewModel.cs",
    "chars": 11080,
    "preview": "using DynamicData.Binding;\nusing Microsoft.Win32;\nusing ReactiveUI;\nusing ReactiveUI.Fody.Helpers;\nusing Splat;\nusing S"
  },
  {
    "path": "v2rayN/v2rayN/ViewModels/RoutingSettingViewModel.cs",
    "chars": 9886,
    "preview": "using DynamicData.Binding;\nusing ReactiveUI;\nusing ReactiveUI.Fody.Helpers;\nusing Splat;\nusing System.Reactive;\nusing S"
  },
  {
    "path": "v2rayN/v2rayN/ViewModels/SubEditViewModel.cs",
    "chars": 2581,
    "preview": "using ReactiveUI;\nusing ReactiveUI.Fody.Helpers;\nusing Splat;\nusing System.Reactive;\nusing System.Windows;\nusing v2rayN"
  },
  {
    "path": "v2rayN/v2rayN/ViewModels/SubSettingViewModel.cs",
    "chars": 3779,
    "preview": "using DynamicData;\nusing DynamicData.Binding;\nusing MaterialDesignThemes.Wpf;\nusing ReactiveUI;\nusing ReactiveUI.Fody.H"
  },
  {
    "path": "v2rayN/v2rayN/ViewModels/ViewModelBase.cs",
    "chars": 1735,
    "preview": "using ReactiveUI;\nusing System;\nusing System.Collections.Generic;\nusing System.ComponentModel;\nusing System.Linq;\nusing"
  },
  {
    "path": "v2rayN/v2rayN/Views/AddServer2Window.xaml",
    "chars": 8420,
    "preview": "<reactiveui:ReactiveWindow\n    x:Class=\"v2rayN.Views.AddServer2Window\"\n    xmlns=\"http://schemas.microsoft.com/winfx/20"
  },
  {
    "path": "v2rayN/v2rayN/Views/AddServer2Window.xaml.cs",
    "chars": 2214,
    "preview": "using ReactiveUI;\nusing System.Reactive.Disposables;\nusing System.Windows;\nusing v2rayN.Mode;\nusing v2rayN.ViewModels;\n"
  },
  {
    "path": "v2rayN/v2rayN/Views/AddServerWindow.xaml",
    "chars": 32345,
    "preview": "<reactiveui:ReactiveWindow\n    x:Class=\"v2rayN.Views.AddServerWindow\"\n    xmlns=\"http://schemas.microsoft.com/winfx/200"
  },
  {
    "path": "v2rayN/v2rayN/Views/AddServerWindow.xaml.cs",
    "chars": 12810,
    "preview": "using ReactiveUI;\nusing System.Reactive.Disposables;\nusing System.Windows;\nusing System.Windows.Controls;\nusing v2rayN."
  },
  {
    "path": "v2rayN/v2rayN/Views/DNSSettingWindow.xaml",
    "chars": 6308,
    "preview": "<reactiveui:ReactiveWindow\n    x:Class=\"v2rayN.Views.DNSSettingWindow\"\n    xmlns=\"http://schemas.microsoft.com/winfx/20"
  },
  {
    "path": "v2rayN/v2rayN/Views/DNSSettingWindow.xaml.cs",
    "chars": 1974,
    "preview": "using ReactiveUI;\nusing System.Reactive.Disposables;\nusing System.Windows;\nusing v2rayN.Handler;\nusing v2rayN.Mode;\nusi"
  },
  {
    "path": "v2rayN/v2rayN/Views/GlobalHotkeySettingWindow.xaml",
    "chars": 7509,
    "preview": "<reactiveui:ReactiveWindow\n    x:Class=\"v2rayN.Views.GlobalHotkeySettingWindow\"\n    xmlns=\"http://schemas.microsoft.com"
  },
  {
    "path": "v2rayN/v2rayN/Views/GlobalHotkeySettingWindow.xaml.cs",
    "chars": 5419,
    "preview": "using System.Text;\nusing System.Windows;\nusing System.Windows.Controls;\nusing System.Windows.Input;\nusing v2rayN.Handle"
  },
  {
    "path": "v2rayN/v2rayN/Views/HiddifyUI.xaml",
    "chars": 17873,
    "preview": "<UserControl x:Class=\"v2rayN.Views.HiddifyUI\"\n                     xmlns:materialDesign=\"http://materialdesigninxaml.ne"
  },
  {
    "path": "v2rayN/v2rayN/Views/HiddifyUI.xaml.cs",
    "chars": 4461,
    "preview": "using MaterialDesignThemes.Wpf;\nusing ReactiveUI;\nusing System;\nusing System.Collections.Generic;\nusing System.Diagnost"
  },
  {
    "path": "v2rayN/v2rayN/Views/MainSubInfoView.xaml",
    "chars": 7091,
    "preview": "<UserControl x:Class=\"v2rayN.Views.MainSubInfoView\"\n             xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/pr"
  },
  {
    "path": "v2rayN/v2rayN/Views/MainSubInfoView.xaml.cs",
    "chars": 654,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\nusi"
  },
  {
    "path": "v2rayN/v2rayN/Views/MainWindow.xaml",
    "chars": 51384,
    "preview": "<reactiveui:ReactiveWindow\n    x:Class=\"v2rayN.Views.MainWindow\"\n    xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml"
  },
  {
    "path": "v2rayN/v2rayN/Views/MainWindow.xaml.cs",
    "chars": 37521,
    "preview": "using DynamicData;\nusing DynamicData.Binding;\nusing ReactiveUI;\nusing Splat;\nusing System.ComponentModel;\nusing System."
  },
  {
    "path": "v2rayN/v2rayN/Views/MsgView.xaml",
    "chars": 3590,
    "preview": "<UserControl\n    x:Class=\"v2rayN.Views.MsgView\"\n    xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n  "
  },
  {
    "path": "v2rayN/v2rayN/Views/MsgView.xaml.cs",
    "chars": 3333,
    "preview": "using ReactiveUI;\nusing System.Reactive.Linq;\nusing System.Text.RegularExpressions;\nusing System.Windows.Threading;\nusin"
  },
  {
    "path": "v2rayN/v2rayN/Views/OptionSettingWindow.xaml",
    "chars": 56135,
    "preview": "<reactiveui:ReactiveWindow\n    x:Class=\"v2rayN.Views.OptionSettingWindow\"\n    xmlns=\"http://schemas.microsoft.com/winfx"
  },
  {
    "path": "v2rayN/v2rayN/Views/OptionSettingWindow.xaml.cs",
    "chars": 12530,
    "preview": "using Microsoft.Win32;\nusing ReactiveUI;\nusing System.Globalization;\nusing System.IO;\nusing System.Reactive.Disposables"
  },
  {
    "path": "v2rayN/v2rayN/Views/QrcodeView.xaml",
    "chars": 1595,
    "preview": "<UserControl\n    x:Class=\"v2rayN.Views.QrcodeView\"\n    xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  },
  {
    "path": "v2rayN/v2rayN/Views/QrcodeView.xaml.cs",
    "chars": 204,
    "preview": "using System.Windows.Controls;\n\nnamespace v2rayN.Views\n{\n    public partial class QrcodeView : UserControl\n    {\n      "
  },
  {
    "path": "v2rayN/v2rayN/Views/RoutingRuleDetailsWindow.xaml",
    "chars": 7606,
    "preview": "<reactiveui:ReactiveWindow\n    x:Class=\"v2rayN.Views.RoutingRuleDetailsWindow\"\n    xmlns=\"http://schemas.microsoft.com/"
  },
  {
    "path": "v2rayN/v2rayN/Views/RoutingRuleDetailsWindow.xaml.cs",
    "chars": 3191,
    "preview": "using ReactiveUI;\nusing System.Reactive.Disposables;\nusing System.Windows;\nusing v2rayN.Base;\nusing v2rayN.Mode;\nusing "
  },
  {
    "path": "v2rayN/v2rayN/Views/RoutingRuleSettingWindow.xaml",
    "chars": 13467,
    "preview": "<reactiveui:ReactiveWindow\n    x:Class=\"v2rayN.Views.RoutingRuleSettingWindow\"\n    xmlns=\"http://schemas.microsoft.com/"
  },
  {
    "path": "v2rayN/v2rayN/Views/RoutingRuleSettingWindow.xaml.cs",
    "chars": 5755,
    "preview": "using Microsoft.Win32;\nusing ReactiveUI;\nusing System.Reactive.Disposables;\nusing System.Windows;\nusing System.Windows."
  },
  {
    "path": "v2rayN/v2rayN/Views/RoutingSettingWindow.xaml",
    "chars": 17127,
    "preview": "<reactiveui:ReactiveWindow\n    x:Class=\"v2rayN.Views.RoutingSettingWindow\"\n    xmlns=\"http://schemas.microsoft.com/winf"
  },
  {
    "path": "v2rayN/v2rayN/Views/RoutingSettingWindow.xaml.cs",
    "chars": 6370,
    "preview": "using ReactiveUI;\nusing System.Reactive.Disposables;\nusing System.Windows;\nusing System.Windows.Input;\nusing v2rayN.Mod"
  },
  {
    "path": "v2rayN/v2rayN/Views/SubEditWindow.xaml",
    "chars": 10784,
    "preview": "<reactiveui:ReactiveWindow\n    x:Class=\"v2rayN.Views.SubEditWindow\"\n    xmlns=\"http://schemas.microsoft.com/winfx/2006/"
  },
  {
    "path": "v2rayN/v2rayN/Views/SubEditWindow.xaml.cs",
    "chars": 2121,
    "preview": "using ReactiveUI;\nusing System.Reactive.Disposables;\nusing System.Windows;\nusing v2rayN.Mode;\nusing v2rayN.ViewModels;\n"
  },
  {
    "path": "v2rayN/v2rayN/Views/SubInfoView.xaml",
    "chars": 5370,
    "preview": "<UserControl x:Class=\"v2rayN.Views.SubInfoView\"\n             xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presen"
  },
  {
    "path": "v2rayN/v2rayN/Views/SubInfoView.xaml.cs",
    "chars": 642,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\nusi"
  },
  {
    "path": "v2rayN/v2rayN/Views/SubSettingWindow.xaml",
    "chars": 6288,
    "preview": "<reactiveui:ReactiveWindow\n    x:Class=\"v2rayN.Views.SubSettingWindow\"\n    xmlns=\"http://schemas.microsoft.com/winfx/20"
  },
  {
    "path": "v2rayN/v2rayN/Views/SubSettingWindow.xaml.cs",
    "chars": 2363,
    "preview": "using ReactiveUI;\nusing System.ComponentModel;\nusing System.Reactive.Disposables;\nusing System.Windows;\nusing System.Wi"
  },
  {
    "path": "v2rayN/v2rayN/app.manifest",
    "chars": 1093,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<assembly xmlns=\"urn:schemas-microsoft-com:asm.v1\" manifestVers"
  },
  {
    "path": "v2rayN/v2rayN/v2rayN.csproj",
    "chars": 5797,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n\t<PropertyGroup>\n\t\t<GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssemb"
  },
  {
    "path": "v2rayN/v2rayN.sln",
    "chars": 3024,
    "preview": "\nMicrosoft Visual Studio Solution File, Format Version 12.00\n# Visual Studio Version 17\nVisualStudioVersion = 17.3.3281"
  }
]

About this extraction

This page contains the full source code of the hiddify/HiddifyN GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 179 files (1.5 MB), approximately 341.5k tokens, and a symbol index with 909 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!