summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2024-01-08 18:55:26 -0500
committerJordan Wiens <jordan@psifertex.com>2024-01-08 18:55:26 -0500
commit7df8225edc9bb62217b3864b5bc63b2698759d46 (patch)
tree890f35c6c92b0062098221dbe1ce4458baf1b2f8 /python
parent69b6b8a0853a8d54151a1888e29817f67b0ee645 (diff)
update copyright year
Diffstat (limited to 'python')
-rw-r--r--python/__init__.py2
-rw-r--r--python/architecture.py2
-rw-r--r--python/associateddatastore.py2
-rw-r--r--python/basicblock.py2
-rw-r--r--python/binaryview.py2
-rw-r--r--python/callingconvention.py2
-rw-r--r--python/commonil.py2
-rw-r--r--python/compatibility.py2
-rw-r--r--python/database.py2
-rw-r--r--python/databuffer.py2
-rw-r--r--python/datarender.py2
-rw-r--r--python/debuginfo.py2
-rw-r--r--python/demangle.py2
-rw-r--r--python/downloadprovider.py2
-rw-r--r--python/examples/angr_plugin.py2
-rw-r--r--python/examples/asm_to_llil_view.py2
-rw-r--r--python/examples/bin_info.py2
-rw-r--r--python/examples/breakpoint.py2
-rwxr-xr-xpython/examples/cli_dis.py2
-rwxr-xr-xpython/examples/cli_lift.py2
-rw-r--r--python/examples/helloglobalarea.py2
-rw-r--r--python/examples/hellopane.py2
-rw-r--r--python/examples/hellosidebar.py2
-rw-r--r--python/examples/instruction_iterator.py2
-rw-r--r--python/examples/jump_table.py2
-rw-r--r--python/examples/linear_mlil.py2
-rw-r--r--python/examples/mappedview.py2
-rw-r--r--python/examples/nds.py2
-rw-r--r--python/examples/nes.py2
-rw-r--r--python/examples/notification_callbacks.py2
-rw-r--r--python/examples/nsf.py2
-rwxr-xr-xpython/examples/pe_stat.py2
-rw-r--r--python/examples/print_syscalls.py2
-rw-r--r--python/examples/typelibexplorer.py2
-rw-r--r--python/examples/ui_notifications.py2
-rw-r--r--python/examples/version_switcher.py2
-rw-r--r--python/fileaccessor.py2
-rw-r--r--python/filemetadata.py2
-rw-r--r--python/flowgraph.py2
-rw-r--r--python/function.py2
-rw-r--r--python/functionrecognizer.py2
-rw-r--r--python/generator.cpp2
-rw-r--r--python/highlevelil.py2
-rw-r--r--python/highlight.py2
-rw-r--r--python/interaction.py2
-rw-r--r--python/lineardisassembly.py2
-rw-r--r--python/log.py2
-rw-r--r--python/lowlevelil.py2
-rw-r--r--python/mainthread.py2
-rw-r--r--python/mediumlevelil.py2
-rw-r--r--python/metadata.py2
-rw-r--r--python/platform.py2
-rw-r--r--python/plugin.py2
-rw-r--r--python/pluginmanager.py2
-rw-r--r--python/scriptingprovider.py2
-rw-r--r--python/secretsprovider.py2
-rw-r--r--python/settings.py2
-rw-r--r--python/transform.py2
-rw-r--r--python/typecontainer.py2
-rw-r--r--python/typelibrary.py2
-rw-r--r--python/typeparser.py2
-rw-r--r--python/typeprinter.py2
-rw-r--r--python/types.py2
-rw-r--r--python/update.py2
-rw-r--r--python/variable.py2
-rw-r--r--python/websocketprovider.py2
-rw-r--r--python/workflow.py2
67 files changed, 67 insertions, 67 deletions
diff --git a/python/__init__.py b/python/__init__.py
index b3528017..f06b0681 100644
--- a/python/__init__.py
+++ b/python/__init__.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/architecture.py b/python/architecture.py
index 623c3284..9fb32e0d 100644
--- a/python/architecture.py
+++ b/python/architecture.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/associateddatastore.py b/python/associateddatastore.py
index 417f1372..9240cb6f 100644
--- a/python/associateddatastore.py
+++ b/python/associateddatastore.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/basicblock.py b/python/basicblock.py
index 64f2101b..a22b540f 100644
--- a/python/basicblock.py
+++ b/python/basicblock.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/binaryview.py b/python/binaryview.py
index de7e438b..33d0b3e8 100644
--- a/python/binaryview.py
+++ b/python/binaryview.py
@@ -1,5 +1,5 @@
# coding=utf-8
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/callingconvention.py b/python/callingconvention.py
index 90fdb90c..ce722e80 100644
--- a/python/callingconvention.py
+++ b/python/callingconvention.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/commonil.py b/python/commonil.py
index 288db8d9..a98995ce 100644
--- a/python/commonil.py
+++ b/python/commonil.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2019-2023 Vector 35 Inc
+# Copyright (c) 2019-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/compatibility.py b/python/compatibility.py
index 34e6a89c..68d04360 100644
--- a/python/compatibility.py
+++ b/python/compatibility.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/database.py b/python/database.py
index 79cc5038..ded5a49b 100644
--- a/python/database.py
+++ b/python/database.py
@@ -1,5 +1,5 @@
# coding=utf-8
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/databuffer.py b/python/databuffer.py
index dba40950..ce8a68e7 100644
--- a/python/databuffer.py
+++ b/python/databuffer.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/datarender.py b/python/datarender.py
index 0305785f..f5e6d986 100644
--- a/python/datarender.py
+++ b/python/datarender.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/debuginfo.py b/python/debuginfo.py
index 6884a9ca..2898fb38 100644
--- a/python/debuginfo.py
+++ b/python/debuginfo.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/demangle.py b/python/demangle.py
index d3d01c97..89532f78 100644
--- a/python/demangle.py
+++ b/python/demangle.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/downloadprovider.py b/python/downloadprovider.py
index e746abee..9ac5faae 100644
--- a/python/downloadprovider.py
+++ b/python/downloadprovider.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/angr_plugin.py b/python/examples/angr_plugin.py
index a3bd622a..85b2bb12 100644
--- a/python/examples/angr_plugin.py
+++ b/python/examples/angr_plugin.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/asm_to_llil_view.py b/python/examples/asm_to_llil_view.py
index f6676744..835d2af2 100644
--- a/python/examples/asm_to_llil_view.py
+++ b/python/examples/asm_to_llil_view.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2019-2023 Vector 35 Inc
+# Copyright (c) 2019-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/bin_info.py b/python/examples/bin_info.py
index 8aaf2a38..bcf5adcd 100644
--- a/python/examples/bin_info.py
+++ b/python/examples/bin_info.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/breakpoint.py b/python/examples/breakpoint.py
index f33705cf..998a05f4 100644
--- a/python/examples/breakpoint.py
+++ b/python/examples/breakpoint.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/cli_dis.py b/python/examples/cli_dis.py
index 64e24bbe..9486598b 100755
--- a/python/examples/cli_dis.py
+++ b/python/examples/cli_dis.py
@@ -2,7 +2,7 @@
#
# command-line BinaryNinja disassembler
#
-# Copyright (c) 2020-2023 Vector 35 Inc
+# Copyright (c) 2020-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/cli_lift.py b/python/examples/cli_lift.py
index 43c1f189..134c79b5 100755
--- a/python/examples/cli_lift.py
+++ b/python/examples/cli_lift.py
@@ -2,7 +2,7 @@
#
# command-line BinaryNinja lifter
#
-# Copyright (c) 2020-2023 Vector 35 Inc
+# Copyright (c) 2020-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/helloglobalarea.py b/python/examples/helloglobalarea.py
index be9a0950..ca288525 100644
--- a/python/examples/helloglobalarea.py
+++ b/python/examples/helloglobalarea.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/hellopane.py b/python/examples/hellopane.py
index 6863fe6f..fbabf3fc 100644
--- a/python/examples/hellopane.py
+++ b/python/examples/hellopane.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/hellosidebar.py b/python/examples/hellosidebar.py
index c400234d..2fc0cbf7 100644
--- a/python/examples/hellosidebar.py
+++ b/python/examples/hellosidebar.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/instruction_iterator.py b/python/examples/instruction_iterator.py
index 62329f02..a73aeadf 100644
--- a/python/examples/instruction_iterator.py
+++ b/python/examples/instruction_iterator.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/jump_table.py b/python/examples/jump_table.py
index 54c48afc..357869d1 100644
--- a/python/examples/jump_table.py
+++ b/python/examples/jump_table.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/linear_mlil.py b/python/examples/linear_mlil.py
index c7272ec8..b5b0649f 100644
--- a/python/examples/linear_mlil.py
+++ b/python/examples/linear_mlil.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2019-2023 Vector 35 Inc
+# Copyright (c) 2019-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/mappedview.py b/python/examples/mappedview.py
index 30c0edfd..7f6ca070 100644
--- a/python/examples/mappedview.py
+++ b/python/examples/mappedview.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/nds.py b/python/examples/nds.py
index 5e9aca38..acf0e31e 100644
--- a/python/examples/nds.py
+++ b/python/examples/nds.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/nes.py b/python/examples/nes.py
index 8eefb0d2..64a33d22 100644
--- a/python/examples/nes.py
+++ b/python/examples/nes.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/notification_callbacks.py b/python/examples/notification_callbacks.py
index 89e60ad8..46f40f4a 100644
--- a/python/examples/notification_callbacks.py
+++ b/python/examples/notification_callbacks.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/nsf.py b/python/examples/nsf.py
index 654ff179..8115bccf 100644
--- a/python/examples/nsf.py
+++ b/python/examples/nsf.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/pe_stat.py b/python/examples/pe_stat.py
index bc3a3992..9eb1bf83 100755
--- a/python/examples/pe_stat.py
+++ b/python/examples/pe_stat.py
@@ -3,7 +3,7 @@
# BinaryNinja multiplatform version of Z0MBIE's PE_STAT for opcode frequency
# statistics http://z0mbie.dreamhosters.com/opcodes.html
#
-# Copyright (c) 2020-2023 Vector 35 Inc
+# Copyright (c) 2020-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/print_syscalls.py b/python/examples/print_syscalls.py
index 7f10fdd0..9aa4cb93 100644
--- a/python/examples/print_syscalls.py
+++ b/python/examples/print_syscalls.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/typelibexplorer.py b/python/examples/typelibexplorer.py
index be80c8c5..8d1d863b 100644
--- a/python/examples/typelibexplorer.py
+++ b/python/examples/typelibexplorer.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/ui_notifications.py b/python/examples/ui_notifications.py
index 827cf6d0..94959217 100644
--- a/python/examples/ui_notifications.py
+++ b/python/examples/ui_notifications.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/examples/version_switcher.py b/python/examples/version_switcher.py
index 9159c315..3b3c8dd0 100644
--- a/python/examples/version_switcher.py
+++ b/python/examples/version_switcher.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/fileaccessor.py b/python/fileaccessor.py
index b5821496..f90c0987 100644
--- a/python/fileaccessor.py
+++ b/python/fileaccessor.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/filemetadata.py b/python/filemetadata.py
index 9b7167b8..b21537f2 100644
--- a/python/filemetadata.py
+++ b/python/filemetadata.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/flowgraph.py b/python/flowgraph.py
index b8a0b42a..431b8657 100644
--- a/python/flowgraph.py
+++ b/python/flowgraph.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/function.py b/python/function.py
index 7d588202..e311d890 100644
--- a/python/function.py
+++ b/python/function.py
@@ -1,5 +1,5 @@
# coding=utf-8
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/functionrecognizer.py b/python/functionrecognizer.py
index 246b14aa..3623d066 100644
--- a/python/functionrecognizer.py
+++ b/python/functionrecognizer.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/generator.cpp b/python/generator.cpp
index fb9c3567..4831e5ae 100644
--- a/python/generator.cpp
+++ b/python/generator.cpp
@@ -1,4 +1,4 @@
-// Copyright (c) 2015-2023 Vector 35 Inc
+// Copyright (c) 2015-2024 Vector 35 Inc
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
diff --git a/python/highlevelil.py b/python/highlevelil.py
index 976d23f4..0041c780 100644
--- a/python/highlevelil.py
+++ b/python/highlevelil.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2019-2023 Vector 35 Inc
+# Copyright (c) 2019-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/highlight.py b/python/highlight.py
index a13bd0ba..1f9397a4 100644
--- a/python/highlight.py
+++ b/python/highlight.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/interaction.py b/python/interaction.py
index 56d9a6fb..c767af7c 100644
--- a/python/interaction.py
+++ b/python/interaction.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/lineardisassembly.py b/python/lineardisassembly.py
index f3f7d1d8..a19148ca 100644
--- a/python/lineardisassembly.py
+++ b/python/lineardisassembly.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/log.py b/python/log.py
index 4b70fcf9..d52fdd9d 100644
--- a/python/log.py
+++ b/python/log.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index df8f352b..f4f852b8 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/mainthread.py b/python/mainthread.py
index f7211ca6..14698b6a 100644
--- a/python/mainthread.py
+++ b/python/mainthread.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py
index 90f15e7d..9e8fb3b4 100644
--- a/python/mediumlevelil.py
+++ b/python/mediumlevelil.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2018-2023 Vector 35 Inc
+# Copyright (c) 2018-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/metadata.py b/python/metadata.py
index 3fe552fe..e2483749 100644
--- a/python/metadata.py
+++ b/python/metadata.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/platform.py b/python/platform.py
index 74fd8248..d67f4901 100644
--- a/python/platform.py
+++ b/python/platform.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/plugin.py b/python/plugin.py
index 9ab01749..4d65db0b 100644
--- a/python/plugin.py
+++ b/python/plugin.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/pluginmanager.py b/python/pluginmanager.py
index 81df0b28..489cb7f7 100644
--- a/python/pluginmanager.py
+++ b/python/pluginmanager.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/scriptingprovider.py b/python/scriptingprovider.py
index 578dcdb5..7042b988 100644
--- a/python/scriptingprovider.py
+++ b/python/scriptingprovider.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/secretsprovider.py b/python/secretsprovider.py
index 4840f59e..7d57315b 100644
--- a/python/secretsprovider.py
+++ b/python/secretsprovider.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/settings.py b/python/settings.py
index ffec58b9..8ddfc945 100644
--- a/python/settings.py
+++ b/python/settings.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/transform.py b/python/transform.py
index 98c86ec1..89fc2585 100644
--- a/python/transform.py
+++ b/python/transform.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/typecontainer.py b/python/typecontainer.py
index d8b5562c..2124f961 100644
--- a/python/typecontainer.py
+++ b/python/typecontainer.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/typelibrary.py b/python/typelibrary.py
index 90c4a6d3..db22ee22 100644
--- a/python/typelibrary.py
+++ b/python/typelibrary.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/typeparser.py b/python/typeparser.py
index 9bbe2045..d56f6b59 100644
--- a/python/typeparser.py
+++ b/python/typeparser.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/typeprinter.py b/python/typeprinter.py
index d6bf579e..dfddfed4 100644
--- a/python/typeprinter.py
+++ b/python/typeprinter.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/types.py b/python/types.py
index 3aea1fca..53454a17 100644
--- a/python/types.py
+++ b/python/types.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/update.py b/python/update.py
index b90c003b..e110eb07 100644
--- a/python/update.py
+++ b/python/update.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/variable.py b/python/variable.py
index ee96cb46..402b82f1 100644
--- a/python/variable.py
+++ b/python/variable.py
@@ -1,5 +1,5 @@
# coding=utf-8
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/websocketprovider.py b/python/websocketprovider.py
index a60ab4f8..93e88eb8 100644
--- a/python/websocketprovider.py
+++ b/python/websocketprovider.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
diff --git a/python/workflow.py b/python/workflow.py
index e2401eda..0ed013ab 100644
--- a/python/workflow.py
+++ b/python/workflow.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2015-2023 Vector 35 Inc
+# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to