├── .devcontainer └── devcontainer.json ├── .gitignore ├── .gitmodules ├── .streamlit └── config.toml ├── GPTLens.pdf ├── README.md ├── data ├── CVE │ ├── 2018-10706.sol │ ├── 2018-10944.sol │ └── 2018-11239.sol ├── CVE_clean │ ├── 2018-10706.sol │ ├── 2018-10944.sol │ └── 2018-11239.sol └── CVE_label │ ├── CVE2description.json │ └── CVE2label.json ├── data_full ├── CVE │ ├── 2018-10299.sol │ ├── 2018-10376.sol │ ├── 2018-10468.sol │ ├── 2018-10666.sol │ ├── 2018-10705.sol │ ├── 2018-10706.sol │ ├── 2018-10944.sol │ ├── 2018-11239.sol │ ├── 2018-11335.sol │ ├── 2018-11411.sol │ ├── 2018-11429.sol │ ├── 2018-11446.sol │ ├── 2018-11561.sol │ ├── 2018-11687.sol │ ├── 2018-12025-1.sol │ ├── 2018-12025-2.sol │ ├── 2018-12025-3.sol │ ├── 2018-12062.sol │ ├── 2018-12063.sol │ ├── 2018-12067.sol │ ├── 2018-12068.sol │ ├── 2018-12070.sol │ ├── 2018-12078.sol │ ├── 2018-12079.sol │ ├── 2018-12080.sol │ ├── 2018-12081.sol │ ├── 2018-12082.sol │ ├── 2018-12083.sol │ ├── 2018-12084.sol │ ├── 2018-12230.sol │ ├── 2018-12454.sol │ ├── 2018-12511.sol │ ├── 2018-12702.sol │ ├── 2018-12703.sol │ ├── 2018-12885.sol │ ├── 2018-12959.sol │ ├── 2018-12975.sol │ ├── 2018-13041.sol │ ├── 2018-13068.sol │ ├── 2018-13069.sol │ ├── 2018-13070.sol │ ├── 2018-13071.sol │ ├── 2018-13072.sol │ ├── 2018-13073.sol │ ├── 2018-13074.sol │ ├── 2018-13075.sol │ ├── 2018-13076.sol │ ├── 2018-13077.sol │ ├── 2018-13078.sol │ ├── 2018-13079.sol │ ├── 2018-13080.sol │ ├── 2018-13081.sol │ ├── 2018-13082.sol │ ├── 2018-13083.sol │ ├── 2018-13084.sol │ ├── 2018-13085.sol │ ├── 2018-13086.sol │ ├── 2018-13087.sol │ ├── 2018-13088.sol │ ├── 2018-13089.sol │ ├── 2018-13090.sol │ ├── 2018-13091.sol │ ├── 2018-13092.sol │ ├── 2018-13113.sol │ ├── 2018-13126.sol │ ├── 2018-13127.sol │ ├── 2018-13128.sol │ ├── 2018-13129.sol │ ├── 2018-13131.sol │ ├── 2018-13132.sol │ ├── 2018-13144.sol │ ├── 2018-13189.sol │ ├── 2018-13202.sol │ ├── 2018-13208.sol │ ├── 2018-13220.sol │ ├── 2018-13221.sol │ ├── 2018-13225.sol │ ├── 2018-13227.sol │ ├── 2018-13228.sol │ ├── 2018-13230.sol │ ├── 2018-13325.sol │ ├── 2018-13326.sol │ ├── 2018-13327.sol │ ├── 2018-13493.sol │ ├── 2018-13533.sol │ ├── 2018-13625.sol │ ├── 2018-13670.sol │ ├── 2018-13695.sol │ ├── 2018-13698.sol │ ├── 2018-13703.sol │ ├── 2018-13722.sol │ ├── 2018-13777.sol │ ├── 2018-13778.sol │ ├── 2018-13779.sol │ ├── 2018-13782.sol │ ├── 2018-13783.sol │ ├── 2018-13836.sol │ ├── 2018-14001.sol │ ├── 2018-14002.sol │ ├── 2018-14003.sol │ ├── 2018-14004.sol │ ├── 2018-14005.sol │ ├── 2018-14006.sol │ ├── 2018-14063.sol │ ├── 2018-14084.sol │ ├── 2018-14085.sol │ ├── 2018-14086.sol │ ├── 2018-14087.sol │ ├── 2018-14089.sol │ ├── 2018-14576.sol │ ├── 2018-14715.sol │ ├── 2018-15552.sol │ ├── 2018-17050.sol │ ├── 2018-17071.sol │ ├── 2018-17111.sol │ ├── 2018-17877.sol │ ├── 2018-17882.sol │ ├── 2018-17968.sol │ ├── 2018-17987.sol │ ├── 2018-18425.sol │ ├── 2018-18665.sol │ ├── 2018-19830.sol │ ├── 2018-19831.sol │ ├── 2018-19832.sol │ ├── 2018-19833.sol │ ├── 2018-19834.sol │ ├── 2019-15078.sol │ ├── 2019-15079.sol │ ├── 2019-15080.sol │ ├── 2020-17752.sol │ ├── 2020-17753.sol │ ├── 2020-35962.sol │ ├── 2021-3004.sol │ ├── 2021-3006.sol │ ├── 2021-33403.sol │ ├── 2021-34270.sol │ ├── 2021-34272.sol │ └── 2021-34273.sol ├── CVE_clean │ ├── 2018-10299.sol │ ├── 2018-10376.sol │ ├── 2018-10468.sol │ ├── 2018-10666.sol │ ├── 2018-10705.sol │ ├── 2018-10706.sol │ ├── 2018-10944.sol │ ├── 2018-11239.sol │ ├── 2018-11335.sol │ ├── 2018-11411.sol │ ├── 2018-11429.sol │ ├── 2018-11446.sol │ ├── 2018-11561.sol │ ├── 2018-11687.sol │ ├── 2018-12025.sol │ ├── 2018-12062.sol │ ├── 2018-12063.sol │ ├── 2018-12067.sol │ ├── 2018-12068.sol │ ├── 2018-12070.sol │ ├── 2018-12078.sol │ ├── 2018-12079.sol │ ├── 2018-12080.sol │ ├── 2018-12081.sol │ ├── 2018-12082.sol │ ├── 2018-12083.sol │ ├── 2018-12084.sol │ ├── 2018-12230.sol │ ├── 2018-12454.sol │ ├── 2018-12511.sol │ ├── 2018-12702.sol │ ├── 2018-12703.sol │ ├── 2018-12885.sol │ ├── 2018-12959.sol │ ├── 2018-12975.sol │ ├── 2018-13041.sol │ ├── 2018-13068.sol │ ├── 2018-13069.sol │ ├── 2018-13070.sol │ ├── 2018-13071.sol │ ├── 2018-13072.sol │ ├── 2018-13073.sol │ ├── 2018-13074.sol │ ├── 2018-13075.sol │ ├── 2018-13076.sol │ ├── 2018-13077.sol │ ├── 2018-13078.sol │ ├── 2018-13079.sol │ ├── 2018-13080.sol │ ├── 2018-13081.sol │ ├── 2018-13082.sol │ ├── 2018-13083.sol │ ├── 2018-13084.sol │ ├── 2018-13085.sol │ ├── 2018-13086.sol │ ├── 2018-13087.sol │ ├── 2018-13088.sol │ ├── 2018-13089.sol │ ├── 2018-13090.sol │ ├── 2018-13091.sol │ ├── 2018-13092.sol │ ├── 2018-13113.sol │ ├── 2018-13126.sol │ ├── 2018-13127.sol │ ├── 2018-13128.sol │ ├── 2018-13129.sol │ ├── 2018-13131.sol │ ├── 2018-13132.sol │ ├── 2018-13144.sol │ ├── 2018-13189.sol │ ├── 2018-13202.sol │ ├── 2018-13208.sol │ ├── 2018-13220.sol │ ├── 2018-13221.sol │ ├── 2018-13225.sol │ ├── 2018-13227.sol │ ├── 2018-13228.sol │ ├── 2018-13230.sol │ ├── 2018-13325.sol │ ├── 2018-13326.sol │ ├── 2018-13327.sol │ ├── 2018-13493.sol │ ├── 2018-13533.sol │ ├── 2018-13625.sol │ ├── 2018-13670.sol │ ├── 2018-13695.sol │ ├── 2018-13698.sol │ ├── 2018-13703.sol │ ├── 2018-13722.sol │ ├── 2018-13777.sol │ ├── 2018-13778.sol │ ├── 2018-13779.sol │ ├── 2018-13782.sol │ ├── 2018-13783.sol │ ├── 2018-13836.sol │ ├── 2018-14001.sol │ ├── 2018-14002.sol │ ├── 2018-14003.sol │ ├── 2018-14004.sol │ ├── 2018-14005.sol │ ├── 2018-14006.sol │ ├── 2018-14063.sol │ ├── 2018-14084.sol │ ├── 2018-14085.sol │ ├── 2018-14086.sol │ ├── 2018-14087.sol │ ├── 2018-14089.sol │ ├── 2018-14576.sol │ ├── 2018-14715.sol │ ├── 2018-15552.sol │ ├── 2018-17050.sol │ ├── 2018-17071.sol │ ├── 2018-17111.sol │ ├── 2018-17877.sol │ ├── 2018-17882.sol │ ├── 2018-17968.sol │ ├── 2018-17987.sol │ ├── 2018-18425.sol │ ├── 2018-18665.sol │ ├── 2018-19830.sol │ ├── 2018-19831.sol │ ├── 2018-19832.sol │ ├── 2018-19833.sol │ ├── 2018-19834.sol │ ├── 2019-15078.sol │ ├── 2019-15079.sol │ ├── 2019-15080.sol │ ├── 2020-17752.sol │ ├── 2020-17753.sol │ ├── 2020-35962.sol │ ├── 2021-3004.sol │ ├── 2021-3006.sol │ ├── 2021-33403.sol │ ├── 2021-34270.sol │ ├── 2021-34272.sol │ └── 2021-34273.sol └── CVE_label │ ├── CVE2description.json │ └── CVE2label.json ├── data_sample ├── CVE │ ├── 2018-13071.sol │ ├── 2018-13072.sol │ ├── 2018-13073.sol │ └── 2018-13074.sol ├── CVE_clean │ ├── 2018-13071.sol │ ├── 2018-13072.sol │ ├── 2018-13073.sol │ └── 2018-13074.sol ├── CVE_label │ ├── CVE2description.json │ └── CVE2label.json └── prompts.py ├── requirements.txt ├── results └── auditor_gpt-4-turbo-preview_0.7_top3_1 │ ├── 2018-13071.json │ ├── 2018-13072.json │ ├── 2018-13073.json │ ├── 2018-13074.json │ └── critic_gpt-4-turbo-preview_0.0_1_few │ ├── 2018-13071.json │ ├── 2018-13072.json │ ├── 2018-13073.json │ ├── 2018-13074.json │ └── ranker_default │ ├── 2018-13071.json │ ├── 2018-13072.json │ ├── 2018-13073.json │ └── 2018-13074.json └── src ├── CS8903_Aditya_PAL_GPTLens_Demo.pdf ├── Gradio_UI_Files ├── README.md ├── UI Files │ ├── UI_gradio.py │ └── UI_static_gradio.py └── images │ ├── auditor_prompt.png │ ├── auditor_reasoning.png │ ├── author.png │ ├── critic_prompt.png │ ├── criticism.png │ ├── developer.png │ ├── header.png │ ├── model.png │ └── professor.png ├── UI.py ├── UI_demo.py ├── environment_old.yml ├── logs ├── auditor_gpt-4-turbo-preview_0.7_top3_1 │ ├── 2018-10706.json │ ├── 2018-10944.json │ ├── 2018-11239.json │ └── critic_gpt-4-turbo-preview_0.0_1_few │ │ ├── 2018-10706.json │ │ ├── 2018-10944.json │ │ ├── 2018-11239.json │ │ └── ranker_default │ │ ├── 2018-10706.json │ │ ├── 2018-10944.json │ │ └── 2018-11239.json └── auditor_gpt-4_0.7_top3_1 │ ├── CVE-2018-10299.json │ ├── CVE-2018-10376.json │ ├── CVE-2018-10468.json │ ├── CVE-2018-11411.json │ ├── CVE-2018-12025.json │ ├── CVE-2018-13836.json │ ├── CVE-2018-15552.json │ ├── CVE-2018-17877.json │ └── CVE-2018-17882.json ├── model.py ├── pre_process.py ├── prompts.py ├── run_auditor.py ├── run_auditor_user_defined.py ├── run_critic.py ├── run_critic_user_defined.py ├── run_rank.py └── utils.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/.gitmodules -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- 1 | [server] 2 | port = 8501 3 | enableStaticServing = true -------------------------------------------------------------------------------- /GPTLens.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/GPTLens.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/README.md -------------------------------------------------------------------------------- /data/CVE/2018-10706.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data/CVE/2018-10706.sol -------------------------------------------------------------------------------- /data/CVE/2018-10944.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data/CVE/2018-10944.sol -------------------------------------------------------------------------------- /data/CVE/2018-11239.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data/CVE/2018-11239.sol -------------------------------------------------------------------------------- /data/CVE_clean/2018-10706.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data/CVE_clean/2018-10706.sol -------------------------------------------------------------------------------- /data/CVE_clean/2018-10944.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data/CVE_clean/2018-10944.sol -------------------------------------------------------------------------------- /data/CVE_clean/2018-11239.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data/CVE_clean/2018-11239.sol -------------------------------------------------------------------------------- /data/CVE_label/CVE2description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data/CVE_label/CVE2description.json -------------------------------------------------------------------------------- /data/CVE_label/CVE2label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data/CVE_label/CVE2label.json -------------------------------------------------------------------------------- /data_full/CVE/2018-10299.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-10299.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-10376.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-10376.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-10468.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-10468.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-10666.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-10666.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-10705.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-10705.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-10706.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-10706.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-10944.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-10944.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-11239.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-11239.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-11335.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-11335.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-11411.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-11411.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-11429.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-11429.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-11446.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-11446.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-11561.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-11561.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-11687.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-11687.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12025-1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12025-1.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12025-2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12025-2.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12025-3.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12025-3.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12062.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12062.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12063.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12063.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12067.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12067.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12068.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12068.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12070.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12070.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12078.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12078.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12079.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12079.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12080.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12080.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12081.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12081.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12082.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12082.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12083.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12083.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12084.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12084.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12230.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12230.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12454.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12454.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12511.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12511.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12702.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12702.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12703.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12703.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12885.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12885.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12959.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12959.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-12975.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-12975.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13041.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13041.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13068.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13068.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13069.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13069.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13070.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13070.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13071.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13071.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13072.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13072.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13073.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13073.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13074.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13074.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13075.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13075.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13076.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13076.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13077.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13077.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13078.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13078.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13079.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13079.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13080.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13080.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13081.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13081.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13082.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13082.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13083.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13083.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13084.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13084.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13085.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13085.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13086.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13086.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13087.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13087.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13088.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13088.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13089.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13089.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13090.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13090.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13091.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13091.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13092.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13092.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13113.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13113.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13126.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13126.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13127.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13127.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13128.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13128.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13129.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13129.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13131.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13131.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13132.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13132.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13144.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13144.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13189.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13189.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13202.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13202.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13208.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13208.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13220.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13220.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13221.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13221.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13225.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13225.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13227.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13227.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13228.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13228.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13230.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13230.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13325.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13325.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13326.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13326.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13327.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13327.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13493.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13493.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13533.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13533.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13625.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13625.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13670.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13670.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13695.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13695.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13698.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13698.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13703.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13703.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13722.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13722.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13777.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13777.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13778.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13778.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13779.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13779.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13782.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13782.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13783.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13783.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-13836.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-13836.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-14001.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-14001.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-14002.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-14002.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-14003.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-14003.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-14004.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-14004.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-14005.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-14005.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-14006.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-14006.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-14063.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-14063.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-14084.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-14084.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-14085.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-14085.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-14086.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-14086.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-14087.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-14087.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-14089.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-14089.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-14576.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-14576.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-14715.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-14715.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-15552.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-15552.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-17050.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-17050.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-17071.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-17071.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-17111.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-17111.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-17877.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-17877.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-17882.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-17882.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-17968.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-17968.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-17987.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-17987.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-18425.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-18425.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-18665.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-18665.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-19830.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-19830.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-19831.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-19831.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-19832.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-19832.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-19833.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-19833.sol -------------------------------------------------------------------------------- /data_full/CVE/2018-19834.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2018-19834.sol -------------------------------------------------------------------------------- /data_full/CVE/2019-15078.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2019-15078.sol -------------------------------------------------------------------------------- /data_full/CVE/2019-15079.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2019-15079.sol -------------------------------------------------------------------------------- /data_full/CVE/2019-15080.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2019-15080.sol -------------------------------------------------------------------------------- /data_full/CVE/2020-17752.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2020-17752.sol -------------------------------------------------------------------------------- /data_full/CVE/2020-17753.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2020-17753.sol -------------------------------------------------------------------------------- /data_full/CVE/2020-35962.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2020-35962.sol -------------------------------------------------------------------------------- /data_full/CVE/2021-3004.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2021-3004.sol -------------------------------------------------------------------------------- /data_full/CVE/2021-3006.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2021-3006.sol -------------------------------------------------------------------------------- /data_full/CVE/2021-33403.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2021-33403.sol -------------------------------------------------------------------------------- /data_full/CVE/2021-34270.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2021-34270.sol -------------------------------------------------------------------------------- /data_full/CVE/2021-34272.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2021-34272.sol -------------------------------------------------------------------------------- /data_full/CVE/2021-34273.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE/2021-34273.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-10299.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-10299.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-10376.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-10376.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-10468.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-10468.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-10666.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-10666.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-10705.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-10705.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-10706.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-10706.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-10944.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-10944.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-11239.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-11239.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-11335.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-11335.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-11411.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-11411.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-11429.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-11429.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-11446.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-11446.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-11561.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-11561.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-11687.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-11687.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12025.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12025.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12062.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12062.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12063.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12063.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12067.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12067.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12068.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12068.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12070.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12070.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12078.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12078.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12079.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12079.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12080.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12080.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12081.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12081.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12082.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12082.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12083.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12083.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12084.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12084.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12230.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12230.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12454.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12454.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12511.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12511.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12702.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12702.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12703.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12703.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12885.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12885.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12959.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12959.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-12975.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-12975.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13041.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13041.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13068.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13068.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13069.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13069.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13070.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13070.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13071.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13071.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13072.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13072.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13073.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13073.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13074.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13074.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13075.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13075.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13076.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13076.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13077.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13077.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13078.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13078.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13079.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13079.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13080.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13080.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13081.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13081.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13082.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13082.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13083.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13083.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13084.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13084.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13085.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13085.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13086.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13086.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13087.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13087.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13088.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13088.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13089.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13089.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13090.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13090.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13091.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13091.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13092.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13092.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13113.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13113.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13126.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13126.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13127.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13127.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13128.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13128.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13129.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13129.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13131.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13131.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13132.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13132.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13144.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13144.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13189.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13189.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13202.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13202.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13208.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13208.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13220.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13220.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13221.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13221.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13225.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13225.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13227.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13227.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13228.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13228.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13230.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13230.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13325.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13325.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13326.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13326.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13327.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13327.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13493.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13493.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13533.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13533.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13625.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13625.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13670.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13670.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13695.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13695.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13698.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13698.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13703.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13703.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13722.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13722.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13777.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13777.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13778.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13778.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13779.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13779.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13782.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13782.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13783.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13783.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-13836.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-13836.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-14001.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-14001.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-14002.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-14002.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-14003.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-14003.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-14004.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-14004.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-14005.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-14005.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-14006.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-14006.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-14063.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-14063.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-14084.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-14084.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-14085.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-14085.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-14086.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-14086.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-14087.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-14087.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-14089.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-14089.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-14576.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-14576.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-14715.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-14715.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-15552.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-15552.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-17050.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-17050.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-17071.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-17071.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-17111.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-17111.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-17877.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-17877.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-17882.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-17882.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-17968.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-17968.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-17987.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-17987.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-18425.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-18425.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-18665.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-18665.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-19830.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-19830.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-19831.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-19831.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-19832.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-19832.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-19833.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-19833.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2018-19834.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2018-19834.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2019-15078.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2019-15078.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2019-15079.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2019-15079.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2019-15080.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2019-15080.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2020-17752.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2020-17752.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2020-17753.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2020-17753.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2020-35962.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2020-35962.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2021-3004.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2021-3004.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2021-3006.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2021-3006.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2021-33403.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2021-33403.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2021-34270.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2021-34270.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2021-34272.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2021-34272.sol -------------------------------------------------------------------------------- /data_full/CVE_clean/2021-34273.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_clean/2021-34273.sol -------------------------------------------------------------------------------- /data_full/CVE_label/CVE2description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_label/CVE2description.json -------------------------------------------------------------------------------- /data_full/CVE_label/CVE2label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_full/CVE_label/CVE2label.json -------------------------------------------------------------------------------- /data_sample/CVE/2018-13071.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_sample/CVE/2018-13071.sol -------------------------------------------------------------------------------- /data_sample/CVE/2018-13072.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_sample/CVE/2018-13072.sol -------------------------------------------------------------------------------- /data_sample/CVE/2018-13073.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_sample/CVE/2018-13073.sol -------------------------------------------------------------------------------- /data_sample/CVE/2018-13074.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_sample/CVE/2018-13074.sol -------------------------------------------------------------------------------- /data_sample/CVE_clean/2018-13071.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_sample/CVE_clean/2018-13071.sol -------------------------------------------------------------------------------- /data_sample/CVE_clean/2018-13072.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_sample/CVE_clean/2018-13072.sol -------------------------------------------------------------------------------- /data_sample/CVE_clean/2018-13073.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_sample/CVE_clean/2018-13073.sol -------------------------------------------------------------------------------- /data_sample/CVE_clean/2018-13074.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_sample/CVE_clean/2018-13074.sol -------------------------------------------------------------------------------- /data_sample/CVE_label/CVE2description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_sample/CVE_label/CVE2description.json -------------------------------------------------------------------------------- /data_sample/CVE_label/CVE2label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_sample/CVE_label/CVE2label.json -------------------------------------------------------------------------------- /data_sample/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/data_sample/prompts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-13071.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/results/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-13071.json -------------------------------------------------------------------------------- /results/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-13072.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/results/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-13072.json -------------------------------------------------------------------------------- /results/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-13073.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/results/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-13073.json -------------------------------------------------------------------------------- /results/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-13074.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/results/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-13074.json -------------------------------------------------------------------------------- /results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-13071.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-13072.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-13073.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-13073.json -------------------------------------------------------------------------------- /results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-13074.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-13074.json -------------------------------------------------------------------------------- /results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-13071.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-13072.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-13073.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-13073.json -------------------------------------------------------------------------------- /results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-13074.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-13074.json -------------------------------------------------------------------------------- /src/CS8903_Aditya_PAL_GPTLens_Demo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/CS8903_Aditya_PAL_GPTLens_Demo.pdf -------------------------------------------------------------------------------- /src/Gradio_UI_Files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/Gradio_UI_Files/README.md -------------------------------------------------------------------------------- /src/Gradio_UI_Files/UI Files/UI_gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/Gradio_UI_Files/UI Files/UI_gradio.py -------------------------------------------------------------------------------- /src/Gradio_UI_Files/UI Files/UI_static_gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/Gradio_UI_Files/UI Files/UI_static_gradio.py -------------------------------------------------------------------------------- /src/Gradio_UI_Files/images/auditor_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/Gradio_UI_Files/images/auditor_prompt.png -------------------------------------------------------------------------------- /src/Gradio_UI_Files/images/auditor_reasoning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/Gradio_UI_Files/images/auditor_reasoning.png -------------------------------------------------------------------------------- /src/Gradio_UI_Files/images/author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/Gradio_UI_Files/images/author.png -------------------------------------------------------------------------------- /src/Gradio_UI_Files/images/critic_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/Gradio_UI_Files/images/critic_prompt.png -------------------------------------------------------------------------------- /src/Gradio_UI_Files/images/criticism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/Gradio_UI_Files/images/criticism.png -------------------------------------------------------------------------------- /src/Gradio_UI_Files/images/developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/Gradio_UI_Files/images/developer.png -------------------------------------------------------------------------------- /src/Gradio_UI_Files/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/Gradio_UI_Files/images/header.png -------------------------------------------------------------------------------- /src/Gradio_UI_Files/images/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/Gradio_UI_Files/images/model.png -------------------------------------------------------------------------------- /src/Gradio_UI_Files/images/professor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/Gradio_UI_Files/images/professor.png -------------------------------------------------------------------------------- /src/UI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/UI.py -------------------------------------------------------------------------------- /src/UI_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/UI_demo.py -------------------------------------------------------------------------------- /src/environment_old.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/environment_old.yml -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-10706.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-10706.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-10944.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-10944.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-11239.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-11239.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-10706.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-10706.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-10944.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-10944.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-11239.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-11239.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-10706.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-10706.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-10944.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-10944.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-11239.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-11239.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-10299.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-10299.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-10376.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-10376.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-10468.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-10468.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-11411.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-11411.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-12025.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-12025.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-13836.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-13836.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-15552.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-15552.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-17877.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-17877.json -------------------------------------------------------------------------------- /src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-17882.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/logs/auditor_gpt-4_0.7_top3_1/CVE-2018-17882.json -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/model.py -------------------------------------------------------------------------------- /src/pre_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/pre_process.py -------------------------------------------------------------------------------- /src/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/prompts.py -------------------------------------------------------------------------------- /src/run_auditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/run_auditor.py -------------------------------------------------------------------------------- /src/run_auditor_user_defined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/run_auditor_user_defined.py -------------------------------------------------------------------------------- /src/run_critic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/run_critic.py -------------------------------------------------------------------------------- /src/run_critic_user_defined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/run_critic_user_defined.py -------------------------------------------------------------------------------- /src/run_rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/run_rank.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-disl/GPTLens/HEAD/src/utils.py --------------------------------------------------------------------------------