mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-07-25 19:32:03 +08:00
phonelibs -> third_party (#22477)
* git mv to third_party * find and replace * fix release tests * update pre-commit * update tici bins * update eon bins Co-authored-by: Comma Device <device@comma.ai> old-commit-hash: 5b641379ae04d3408093381629b9d60dee81da27
This commit is contained in:
@@ -49,7 +49,7 @@ jobs:
|
||||
cp Dockerfile.openpilot_base $STRIPPED_DIR
|
||||
|
||||
# need this to build on x86
|
||||
cp -pR --parents phonelibs/libyuv phonelibs/snpe selfdrive/modeld/runners $STRIPPED_DIR
|
||||
cp -pR --parents third_party/libyuv third_party/snpe selfdrive/modeld/runners $STRIPPED_DIR
|
||||
- name: Build Docker image
|
||||
run: eval "$BUILD"
|
||||
- name: Build openpilot and run checks
|
||||
|
||||
@@ -38,7 +38,7 @@ repos:
|
||||
entry: cppcheck
|
||||
language: system
|
||||
types: [c++]
|
||||
exclude: '^(phonelibs)|(pyextra)|(cereal)|(opendbc)|(panda)|(tools)|(selfdrive/modeld/thneed/debug)|(selfdrive/modeld/test)|(selfdrive/camerad/test)/|(installer)'
|
||||
exclude: '^(third_party)|(pyextra)|(cereal)|(opendbc)|(panda)|(tools)|(selfdrive/modeld/thneed/debug)|(selfdrive/modeld/test)|(selfdrive/camerad/test)/|(installer)'
|
||||
args:
|
||||
- --error-exitcode=1
|
||||
- --language=c++
|
||||
|
||||
@@ -16,7 +16,7 @@ RUN pip install --no-cache-dir pipenv==2020.8.13 && \
|
||||
COPY SConstruct ${OPENPILOT_PATH}
|
||||
|
||||
COPY ./pyextra ${OPENPILOT_PATH}/pyextra
|
||||
COPY ./phonelibs ${OPENPILOT_PATH}/phonelibs
|
||||
COPY ./third_party ${OPENPILOT_PATH}/third_party
|
||||
COPY ./site_scons ${OPENPILOT_PATH}/site_scons
|
||||
COPY ./laika ${OPENPILOT_PATH}/laika
|
||||
COPY ./laika_repo ${OPENPILOT_PATH}/laika_repo
|
||||
|
||||
@@ -97,8 +97,8 @@ Directory Structure
|
||||
├── docs # Documentation
|
||||
├── opendbc # Files showing how to interpret data from cars
|
||||
├── panda # Code used to communicate on CAN
|
||||
├── phonelibs # External libraries
|
||||
├── pyextra # Extra python packages not shipped in NEOS
|
||||
├── third_party # External libraries
|
||||
├── pyextra # Extra python packages
|
||||
└── selfdrive # Code needed to drive the car
|
||||
├── assets # Fonts, images, and sounds for UI
|
||||
├── athena # Allows communication with the app
|
||||
|
||||
+37
-37
@@ -64,11 +64,11 @@ USE_FRAME_STREAM = os.getenv("USE_FRAME_STREAM") is not None
|
||||
|
||||
lenv = {
|
||||
"PATH": os.environ['PATH'],
|
||||
"LD_LIBRARY_PATH": [Dir(f"#phonelibs/acados/{arch}/lib").abspath],
|
||||
"LD_LIBRARY_PATH": [Dir(f"#third_party/acados/{arch}/lib").abspath],
|
||||
"PYTHONPATH": Dir("#").abspath + ":" + Dir("#pyextra/").abspath,
|
||||
|
||||
"ACADOS_SOURCE_DIR": Dir("#phonelibs/acados/acados").abspath,
|
||||
"TERA_PATH": Dir("#").abspath + f"/phonelibs/acados/{arch}/t_renderer",
|
||||
"ACADOS_SOURCE_DIR": Dir("#third_party/acados/acados").abspath,
|
||||
"TERA_PATH": Dir("#").abspath + f"/third_party/acados/{arch}/t_renderer",
|
||||
}
|
||||
|
||||
rpath = lenv["LD_LIBRARY_PATH"].copy()
|
||||
@@ -82,7 +82,7 @@ if arch == "aarch64" or arch == "larch64":
|
||||
lenv["ANDROID_ROOT"] = os.environ['ANDROID_ROOT']
|
||||
|
||||
cpppath = [
|
||||
"#phonelibs/opencl/include",
|
||||
"#third_party/opencl/include",
|
||||
]
|
||||
|
||||
libpath = [
|
||||
@@ -90,14 +90,14 @@ if arch == "aarch64" or arch == "larch64":
|
||||
"/usr/lib",
|
||||
"/system/vendor/lib64",
|
||||
"/system/comma/usr/lib",
|
||||
"#phonelibs/nanovg",
|
||||
f"#phonelibs/acados/{arch}/lib",
|
||||
"#third_party/nanovg",
|
||||
f"#third_party/acados/{arch}/lib",
|
||||
]
|
||||
|
||||
if arch == "larch64":
|
||||
libpath += [
|
||||
"#phonelibs/snpe/larch64",
|
||||
"#phonelibs/libyuv/larch64/lib",
|
||||
"#third_party/snpe/larch64",
|
||||
"#third_party/libyuv/larch64/lib",
|
||||
"/usr/lib/aarch64-linux-gnu"
|
||||
]
|
||||
cpppath += [
|
||||
@@ -109,8 +109,8 @@ if arch == "aarch64" or arch == "larch64":
|
||||
else:
|
||||
rpath = []
|
||||
libpath += [
|
||||
"#phonelibs/snpe/aarch64",
|
||||
"#phonelibs/libyuv/lib",
|
||||
"#third_party/snpe/aarch64",
|
||||
"#third_party/libyuv/lib",
|
||||
"/system/vendor/lib64"
|
||||
]
|
||||
cflags = ["-DQCOM", "-D_USING_LIBCXX", "-mcpu=cortex-a57"]
|
||||
@@ -123,7 +123,7 @@ else:
|
||||
if arch == "Darwin":
|
||||
yuv_dir = "mac" if real_arch != "arm64" else "mac_arm64"
|
||||
libpath = [
|
||||
f"#phonelibs/libyuv/{yuv_dir}/lib",
|
||||
f"#third_party/libyuv/{yuv_dir}/lib",
|
||||
"/usr/local/lib",
|
||||
"/opt/homebrew/lib",
|
||||
"/usr/local/opt/openssl/lib",
|
||||
@@ -139,10 +139,10 @@ else:
|
||||
]
|
||||
else:
|
||||
libpath = [
|
||||
"#phonelibs/acados/x86_64/lib",
|
||||
"#phonelibs/snpe/x86_64-linux-clang",
|
||||
"#phonelibs/libyuv/x64/lib",
|
||||
"#phonelibs/mapbox-gl-native-qt/x86_64",
|
||||
"#third_party/acados/x86_64/lib",
|
||||
"#third_party/snpe/x86_64-linux-clang",
|
||||
"#third_party/libyuv/x64/lib",
|
||||
"#third_party/mapbox-gl-native-qt/x86_64",
|
||||
"#cereal",
|
||||
"#selfdrive/common",
|
||||
"/usr/lib",
|
||||
@@ -150,7 +150,7 @@ else:
|
||||
]
|
||||
|
||||
rpath += [
|
||||
Dir("#phonelibs/snpe/x86_64-linux-clang").abspath,
|
||||
Dir("#third_party/snpe/x86_64-linux-clang").abspath,
|
||||
Dir("#cereal").abspath,
|
||||
Dir("#selfdrive/common").abspath
|
||||
]
|
||||
@@ -191,25 +191,25 @@ env = Environment(
|
||||
|
||||
CPPPATH=cpppath + [
|
||||
"#",
|
||||
"#phonelibs/acados/include",
|
||||
"#phonelibs/acados/include/blasfeo/include",
|
||||
"#phonelibs/acados/include/hpipm/include",
|
||||
"#phonelibs/catch2/include",
|
||||
"#phonelibs/bzip2",
|
||||
"#phonelibs/libyuv/include",
|
||||
"#phonelibs/openmax/include",
|
||||
"#phonelibs/json11",
|
||||
"#phonelibs/curl/include",
|
||||
"#phonelibs/libgralloc/include",
|
||||
"#phonelibs/android_frameworks_native/include",
|
||||
"#phonelibs/android_hardware_libhardware/include",
|
||||
"#phonelibs/android_system_core/include",
|
||||
"#phonelibs/linux/include",
|
||||
"#phonelibs/snpe/include",
|
||||
"#phonelibs/mapbox-gl-native-qt/include",
|
||||
"#phonelibs/nanovg",
|
||||
"#phonelibs/qrcode",
|
||||
"#phonelibs",
|
||||
"#third_party/acados/include",
|
||||
"#third_party/acados/include/blasfeo/include",
|
||||
"#third_party/acados/include/hpipm/include",
|
||||
"#third_party/catch2/include",
|
||||
"#third_party/bzip2",
|
||||
"#third_party/libyuv/include",
|
||||
"#third_party/openmax/include",
|
||||
"#third_party/json11",
|
||||
"#third_party/curl/include",
|
||||
"#third_party/libgralloc/include",
|
||||
"#third_party/android_frameworks_native/include",
|
||||
"#third_party/android_hardware_libhardware/include",
|
||||
"#third_party/android_system_core/include",
|
||||
"#third_party/linux/include",
|
||||
"#third_party/snpe/include",
|
||||
"#third_party/mapbox-gl-native-qt/include",
|
||||
"#third_party/nanovg",
|
||||
"#third_party/qrcode",
|
||||
"#third_party",
|
||||
"#cereal",
|
||||
"#opendbc/can",
|
||||
],
|
||||
@@ -224,7 +224,7 @@ env = Environment(
|
||||
CXXFLAGS=["-std=c++1z"] + cxxflags,
|
||||
LIBPATH=libpath + [
|
||||
"#cereal",
|
||||
"#phonelibs",
|
||||
"#third_party",
|
||||
"#opendbc/can",
|
||||
"#selfdrive/boardd",
|
||||
"#selfdrive/common",
|
||||
@@ -403,7 +403,7 @@ SConscript(['cereal/SConscript'])
|
||||
SConscript(['panda/board/SConscript'])
|
||||
SConscript(['opendbc/can/SConscript'])
|
||||
|
||||
SConscript(['phonelibs/SConscript'])
|
||||
SConscript(['third_party/SConscript'])
|
||||
|
||||
SConscript(['common/SConscript'])
|
||||
SConscript(['common/kalman/SConscript'])
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
path_classifiers:
|
||||
library:
|
||||
- external
|
||||
- phonelibs
|
||||
- third_party
|
||||
- pyextra
|
||||
- tools/lib/mkvparse
|
||||
extraction:
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6f0c49035e54d1c6781f4d167142d87708f646fc9afb618532a4feab095c4686
|
||||
size 185
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:be2bcee07d20268d1f74037c0ccefb2cba8f9cb8fcadbea35c5e03bdf6894231
|
||||
size 42
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b02465849c50d6b6fe667496e6e8c4de5ef5d18f05cc899fe687219b231e0a27
|
||||
size 567737
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:12daa25b7f65de216d956702459f499920b91aa527c5c10fc14d118fff00bc4a
|
||||
size 694193
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:670b3c68dd7a53eb7808daa4472676e1b524773419a71a44af58a96eb9170641
|
||||
size 1324401
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e4d2e7d59a76faf2725d240969fbf7f65f2def0d0e76a69932427daf7cbd8acd
|
||||
size 218545
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d5c3a2f90f4903e82ea927b13433f01dc0c3fbbe8b7b7f6353fb5981aeefd32f
|
||||
size 2053
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bcba7f75bba4563f87ad279f2bff2e2a4c6022dcab13f6116d11cf4cbb40035a
|
||||
size 5161
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:15e5aa613ecac95fabdb3039616a774b25e7e3e607f540dadb217c9bffbb544d
|
||||
size 3241
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:aede06c3a0a8d3175709916b60e90396af05fa7fdcba9e4874e1a58231342a21
|
||||
size 4007
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1d16a34f6be587acf4bd93c051d54bcbbe6c57bf726adfea31450c79e758f377
|
||||
size 4510
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d797138da438cb0485efa43adcb989ce71c5a7989dc84a9095e0ba9621eb18dc
|
||||
size 4599
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f21311165629693194a9bb357c74eb2aae61120419a2f47bd2ba7c6cd9445174
|
||||
size 15387
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c624302d1202c3a29ee485c7c6439fd37abd12df9c910110fe57f988789e2278
|
||||
size 8967
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8bf88b31d1fbd7373da7d4ac7882c179953d340f85c8602666ff9fa6c366c110
|
||||
size 7928
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:edce02786dd294770f09a309491bb126862b9b5070f943314fc65b88a9507791
|
||||
size 5139
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9832ce7ae50388c08154fbc9ccbcc3f871f78d9f68f0351d5598c26012754983
|
||||
size 4762
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4572c42fe67a768d0ad7316de3f9a4995b9d5eff5006c35f7c32347a56920011
|
||||
size 6967
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b2d76d11b9fe1cbc9e67b2fc09be4d996f6106d66f1e5f9705cfbfe030de67b3
|
||||
size 9865
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0018f9dffe4ebb436baa06edab26ff0256c8bd8e0f64af4cb5888f207aa74840
|
||||
size 7527
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b84a171185858fae169a5961e84ed58c9efc84717bfbd0abfe3f907ea87af6ee
|
||||
size 5369
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:09ea064fb27818d6cdb80914431812bdafc7bc87c96d50b33db46100f3c9bae3
|
||||
size 7747
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fc204667f34e8ea13060a91ff945a97374cc0678cd9ad636934296c969fa81e8
|
||||
size 6979
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:18061d7ebd1f475f4c69d3e49905b78f0e12bf42df1cde54aa7211772630706b
|
||||
size 4752
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b822d13b49cba3f7563951df93cce49dbd7f8ff4069695097e4562c6187e7711
|
||||
size 4639
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7d2c80d77d528ce7c1576ee51ff83b64deaeacb34546da97241e4c5f7355c0c5
|
||||
size 3705
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7900102f0d11c76ac9cc1ceaab2b433c7c788ff2a5fbab65161fbe2f1847902a
|
||||
size 3461
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:beaaf564a480993faf6d740de023f19d04d1d93539e338281aa5b110f38f39fb
|
||||
size 3717
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a621bd20e767353d7baf7d9aea547953eec6539c9c87d3bf4c6faf79a83256cf
|
||||
size 4291
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:77ad530b810b53cc7ad6e672e0d712af99a94425c180950e9b756d903accb6ac
|
||||
size 5159
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d7ab8a006ad906996ec45e400f130c36351909a754122726553bc6ef6c4d387a
|
||||
size 5210
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dd0f94762b8c013649ac88763137c0b0b8fb296835cbfa200ce1aff63126ed67
|
||||
size 6435
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e00230340731fbcb4541b3db9737494bc1ba1a0f934f81c7b2b29d9c758b9836
|
||||
size 3586
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d0ac8ad9968c24f9257032fbd9b28a01b153d9fe1ebaf565d57ea773f9731cfd
|
||||
size 4034
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:493859e58715a2e87264d1074ecf94b44936ff78762eb80b060bf2d5fa97ce6a
|
||||
size 3446
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1fc142b3e3c092823d37e69ecc9a1f59f20465eec69c279db26975aedf1596fd
|
||||
size 4177
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:38bb50fc78a3ac0085bfd4afec0038bc0e36d5b1a75851e562252e06ac44b31a
|
||||
size 4388
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:790ca8b918a0cd1e60824ab0b0e5b55097721903c185f201f9c53200121f72cc
|
||||
size 3313
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b801e8ae5a49009fc9e8c2ef25eeb47f4c1df493110dd5fe1ee3575fae811b18
|
||||
size 4096
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7773a561ce51805a20a46f6bbfcea51149917a2f5a91791a3bed54ac7337509f
|
||||
size 4078
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:78f6af2e60aadb7c4544014a498e219727a6f32cf90ea6eca8aeaa9ff9bac983
|
||||
size 5782
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e315c07173f1f71efc2f699bdb71578704ee01d8a5eeb9232bf4282f304f8946
|
||||
size 2650
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1f060ebd8a8d026e7f2e1caada6a574d11b97ed31ca3b6dc1c7890e053ca3e51
|
||||
size 6810
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f9f31f970c29cc7c6df47391f6d4a242ff4ff7b5046e547b0c6c34fb6732ae6d
|
||||
size 4224
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e4e245e2afb96fcba1d7e17bd3c981decd73d33956ec96e28ed1cf3d63eed345
|
||||
size 10474
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:83af390445458b7fe64b4cd80ff1b0460479659e62b5ae992a601bb191b47aa7
|
||||
size 7743
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5d29db793df6ab90ac5837f8a31419ea7d3d0a2fb8d5ee7aa0f1c75f601acbf2
|
||||
size 5216
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9b2d768115a825e1bdd67dd8a346212a038bca70ac711bb7c3f0f5d449c07179
|
||||
size 8997
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1b974ffe09c78da82f359f0d659cae29fd1bc37f63456aaf5ea1a12cb3d08dae
|
||||
size 3971
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:27992c7e47f179d2d58a0ffa5103d5f778721751425e79a57b8c024598692a5f
|
||||
size 4330
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bbf20bc0512e21ab0703efc5141bce8cf8983852dced4221ebb11f8c751ce527
|
||||
size 3887
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:759d60b8852d9ad2d5986dec60eae107d9f9266a57c7611a5ba1f8f2b5d3ef54
|
||||
size 2288
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dc13a928a2730827817e46fcb6acfb8a20ecc6b4bab563c866d7d122fa19308d
|
||||
size 3452
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:166ac3a8ab303293963f807cecd00a0fc33dd1b46fa3170e8ec905eee266a92b
|
||||
size 2385
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9d16d30e4d0ca754c13ff4404cf74df5d9154336cfc99c8d091a77369ceed78a
|
||||
size 3033
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:31c2934faf9d0d89d7d5d31954f4e82f72b5f08434360695b65ae032be6f21ef
|
||||
size 3561
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f9ca7ef5da6eb653bb3f42d0894b25048f915463994c1c304857932ded63de58
|
||||
size 3339
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ac860325a13f943617e009d1d116581637b756fc663480e377dc19c82f1c72e9
|
||||
size 13099
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:35ea4e1363f1c6f734d08d55f25ca2a276611468029f856a5509447bf7733052
|
||||
size 8103
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:80cc256102c8f7b4ba40247dcd711a9a377982d8494108564f9c3361e9bf75dc
|
||||
size 3873
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b2c8c29ab257b73ca06cdbdf6941835c67256d0201573ae6be1f1763a793a8ae
|
||||
size 3923
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e8e47b0f3ad81625d103628ee4a813c1d825c8035f33c707037ecf22b2414576
|
||||
size 13129
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2219235ea0b923bcbfe047739585acc5409b9c8676a7556366e3428b8eb84a37
|
||||
size 9258
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:56bc2d9a299ef565a212fdd6901c59859ad916cc546b735d8673f33511a26c37
|
||||
size 12952
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8ae8b39d6e508b7f6d71eeb59c6e2d9a18368369120eaa819abe402d37ed8061
|
||||
size 7907
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f308d215eaaccb218db3da16f0e825f8cdb225e2dea32fc8402f166785ada71d
|
||||
size 5370
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:69cab442ed00763485bf203a6330e1c6591c176c881e2cab84d2530978baae05
|
||||
size 5728
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c940751ff3f89faa997ae255d06d8405ded90df7f8f5987d5d1b72a7173b906c
|
||||
size 12262
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a597a1f9d9ae96acd387cd6259c21d34dd03adc1d930dee3166fd0b0002ccb4a
|
||||
size 14062
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a0f2d1d4fc0b5a41f8aadecf774e6a78c4cd3043c29798f834a8b84dccb39b8a
|
||||
size 3555
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a93cde00903aa055a19290ed5576cd9afbcee8aebe774848c7e1fcb9ff5da528
|
||||
size 7052
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:78b521eadb2e11ce6ff829032db2a8400ea173689b8245a53f8864acccec42c1
|
||||
size 33575
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:edceee138b322a1274822a9f776ad575d278b04d5f665b264d6bca8b7ce39f90
|
||||
size 16855
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4623fb808d852f08952b1ac4b1d53ffee7c821300a67ff07a609030de3319396
|
||||
size 23284
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7ffbc25770ccb1ce20c53c71d2119e0036e6fc314a8d766b1bec31f0b70477a6
|
||||
size 125913
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:160d59061c314f477ea429df0bb4999e8d45eed0170c5af4f6b0b3c2fdf5158d
|
||||
size 3956
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7d33a31ba11069ae3548a9eb564d179ae21426fb0e4443f5fcda4f8ef521d54a
|
||||
size 4036
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c99782d8f4b11e96aa73c6bbde7bc91419f1453a1d4d2736885bb1656be8b91a
|
||||
size 3663
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:58005fa04cee53e05361cb31e19195e9ce713718811f5118b15b48b975c6a5c2
|
||||
size 4260
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9b4ac440c96f229f11c075b688be0c69a63854fcaafc133ad7a00ebedf5ff090
|
||||
size 5623
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7f57ee42fd8150860e14d2cfedf82d0bafccec27f7820b72040c1cff08059849
|
||||
size 11540
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:74836d9cf8f95f26f2845a184ecef44ce5b656da41e797f3bc6def59f5f8cb00
|
||||
size 7864
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c793134d304d446e8af3f27e985a38bde08d056fc48a2a054f9f454bf12bb610
|
||||
size 5262
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f70c5e7e6efcec36aab4269cc7ac929398dfbee3ea8690f61d68e193ce8ab4f2
|
||||
size 5583
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e14b32a9430e0998e5df6d4ee5b970234a6a80bcd2bf76c9cc5c3ec233a60699
|
||||
size 11036
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:37ed335d52190e7a21533b1a00caee9c95f964dff21c73334e7c8fc220096ad3
|
||||
size 13091
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:780a11c0d8c9c6201ae164bd0fb2cbc63d0e490c6e661d021fde06df13227cb8
|
||||
size 3555
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d3a10fffb90cef39d2e11e25bf2c572ae829a1c005e6c01e03e6e45d959b4d17
|
||||
size 4806
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:479f7fb5ad2796393d6908172e637c84063c267298441ae2f27501000826e8a0
|
||||
size 23789
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d032001fd13205ddc36f369979a7528d3c9807b73b26d571e90d49a832ee18fb
|
||||
size 14671
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ddd2d332f38208adbe08efdef5d1159801fc52ac0c481423973dc7ca6d259672
|
||||
size 19548
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b469ee02da81680123fa61e12430c1ecdc0bb06ee2aeeed72b6b9616ac1f1f93
|
||||
size 62022
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:855207cbf26d3b90d5ade10ddcb2f2ae38f6451cf8ccba0d8fce3fac898dcc9f
|
||||
size 3753
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a3642aac15379df0da9796034dae5b974342b66b20a3d75755d660add8052030
|
||||
size 1155
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user