Skip to content

Commit a3e08d1

Browse files
committed
Initial commit R2024a
1 parent 1471ff7 commit a3e08d1

File tree

970 files changed

+993
-993
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

970 files changed

+993
-993
lines changed

Models/BOF_TOF/Excavator_BOFTOFLoad_plot.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function Excavator_BOFTOFLoad_plot(ExcvGlobal,fLoad,test_type,pBoom,pStick,pBucket,pinForces,varargin)
22
% Code to plot load chart
33

4-
% Copyright 2022-2023 The MathWorks, Inc
4+
% Copyright 2022-2024 The MathWorks, Inc
55

66
% Assume no new figure needed
77
createFigure = false;

Models/BOF_TOF/Excavator_LoadChart_Create.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function Excavator_LoadChart_Create(qBoomSet,qStickSet,qBucketSet,setupMdl,calcMdl,useFastRestart,varargin)
22
% Code to create load chart based on simulations
33

4-
% Copyright 2022-2023 The MathWorks, Inc
4+
% Copyright 2022-2024 The MathWorks, Inc
55

66
% If an axis handle has been passed, plot on that axis
77
% Else, the standard figure will be used

Models/BOF_TOF/Excavator_LoadChart_Plot.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function Excavator_LoadChart_Plot(ExcvGlobal,bucketEdgeXY_set,load_set,varargin)
22
% Code to plot load chart
33

4-
% Copyright 2022-2023 The MathWorks, Inc
4+
% Copyright 2022-2024 The MathWorks, Inc
55

66
% Assume no new figure needed
77
createFigure = false;
6.72 KB
Binary file not shown.
Binary file not shown.

Models/BOF_TOF/Excavator_RunBOFTOF.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function [fLoad,test_type,pBoom,pStick,pBucket,PinForces] = Excavator_RunBOFTOF(setup_mdl,calc_mdl,testType)
22
% Code to run BOF, TOF, or Load Capacity test
33

4-
% Copyright 2022-2023 The MathWorks, Inc
4+
% Copyright 2022-2024 The MathWorks, Inc
55

66
if(endsWith(setup_mdl,'.slx'))
77
setup_mdl = setup_mdl(1:end-4);

Models/BOF_TOF/Excavator_RunBOFTOF_sweep_pinLocRand.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
% Script to sweep pin locations
2-
% Copyright 2022-2023 The MathWorks, Inc
2+
% Copyright 2022-2024 The MathWorks, Inc
33

44
[~, PinLocTable] = Excavator_Pin_Locations_global('Design A');
55
PinLocTableFINISH = PinLocTable;

Models/BOF_TOF/Excavator_getDesignPosition.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function [boomAngle, stickAngle, bucketAngle] = Excavator_getDesignPosition(ExcvGlobal)
22
% Function to calculate angles that describe current position of excavator.
33

4-
% Copyright 2022-2023 The MathWorks, Inc
4+
% Copyright 2022-2024 The MathWorks, Inc
55

66
% Boom Angle
77
vecA = ExcvGlobal.Chassis.ToBoom-ExcvGlobal.Chassis.ToBoomCyl;

Models/BOF_TOF/Excavator_simlogToBOFTOF.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function [fLoad,test_type,pBoom,pStick,pBucket,pinForces]= Excavator_simlogToBOFTOF(logsoutData)
22
% Function to extract load and pressures from simulation results.
33

4-
% Copyright 2022-2023 The MathWorks, Inc
4+
% Copyright 2022-2024 The MathWorks, Inc
55

66
fLoad = logsoutData.get('Load_kN').Values.Data;
77
pBoom = logsoutData.get('CylPr_bar').Values.Data(1);

Models/BOF_TOF/Excavator_simlogToBOFTOFPos.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
% Function to extract initial configuration from simulation results of
33
% setup model.
44

5-
% Copyright 2022-2023 The MathWorks, Inc
5+
% Copyright 2022-2024 The MathWorks, Inc
66

77
BOFTOFPos.initBoomPistonPos = simlogData.LeftBoomPistonPos.Data(end); % [mm]
88
BOFTOFPos.initStickPistonPos = simlogData.StickPistonPos.Data(end); % [mm]

Models/BOF_TOF/Excavator_simlogToPinForces.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function PinForces = Excavator_simlogToPinForces(logsoutData)
22
% Function to extract pin forces from simulation results.
33

4-
% Copyright 2022-2023 The MathWorks, Inc
4+
% Copyright 2022-2024 The MathWorks, Inc
55

66
pinForcesLog = logsoutData.get('Pin_Forces');
77
pinNames = sort(fieldnames(pinForcesLog.Values));

Models/BOF_TOF/Pin_Locations/Excavator_Pin_Locations_global.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
% Input argument is the name of the sheet where the pin locations are
44
% stored.
55

6-
% Copyright 2022-2023 The MathWorks, Inc
6+
% Copyright 2022-2024 The MathWorks, Inc
77

88
ExcvGlobalTable = readtable('Excavator_Pin_Locations_global.xlsx','Sheet',designName,'Range','B2:F15','VariableNamingRule','preserve');
99
ExcvGlobalStruct = Excavator_Pin_Locations_table2struct(ExcvGlobalTable);

Models/BOF_TOF/Pin_Locations/Excavator_Pin_Locations_global2local.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
% in Simscape Multibody. The Rigid Transform blocks must have the same
1313
% reference frame as defined below.
1414
%
15-
% Copyright 2022-2023 The MathWorks, Inc.
15+
% Copyright 2022-2024 The MathWorks, Inc.
1616

1717
% Offset to local reference within part
1818
boom_offset = ExcvGlobal.Chassis.ToBoom;

Models/BOF_TOF/Pin_Locations/Excavator_Pin_Locations_plotGlobal.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ function Excavator_Pin_Locations_plotGlobal(ExcvGlobal,varargin)
44
% Excavator_Pin_Locations_plotGlobal(ExcvGlobal,<axis handle>)
55
%
66

7-
% Copyright 2022-2023 The MathWorks, Inc
7+
% Copyright 2022-2024 The MathWorks, Inc
88

99
partfill_clr = [1 1 0.2];
1010
partedge_clr = [0.6 0.6 0.6];

Models/BOF_TOF/Pin_Locations/Excavator_Pin_Locations_simlogToGlobal.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
% Function to extract pin locations relative to global frame from
33
% simulation results
44

5-
% Copyright 2022-2023 The MathWorks, Inc
5+
% Copyright 2022-2024 The MathWorks, Inc
66

77
Boom.ToBoomCyl = simlogData.Boom.B1.Data;
88
Boom.ToStickCyl = simlogData.Boom.B2.Data;

Models/BOF_TOF/Pin_Locations/Excavator_Pin_Locations_table2struct.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
% MATLAB structure is used by model as a mask parameter to apply
44
% pin locations to Simscape model.
55

6-
% Copyright 2022-2023 The MathWorks, Inc
6+
% Copyright 2022-2024 The MathWorks, Inc
77

88
Chassis.ToBoom = ExcvTable{1,4:5};
99
Chassis.ToBoomCyl = ExcvTable{2,4:5};

Models/BOF_TOF/Pin_Locations/Extrusions/Extr_Data_Excv_Boom.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function [xy_boomArm, xy_boomSticklink] = Extr_Data_Excv_Boom(Boom)
22
% Function to create extrusion for boom from pin locations
33

4-
% Copyright 2022-2023 The MathWorks, Inc
4+
% Copyright 2022-2024 The MathWorks, Inc
55

66
A = [0 0];
77
B = Boom.ToBoomCyl;

Models/BOF_TOF/Pin_Locations/Extrusions/Extr_Data_Excv_Bucket.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function [xy_bucketBracket, xy_bucketScoop] = Extr_Data_Excv_Bucket(Bucket)
22
% Function to create extrusion for bucket from pin locations
33

4-
% Copyright 2022-2023 The MathWorks, Inc
4+
% Copyright 2022-2024 The MathWorks, Inc
55

66
A = [0 0];
77
B = Bucket.ToBucketLinkage;

Models/BOF_TOF/Pin_Locations/Extrusions/Extr_Data_Excv_Linkage.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function [xy_linkage_stickLink, xy_linkage_bucketLink] = Extr_Data_Excv_Linkage(Linkage)
22
% Function to create extrusion for linkage from pin locations
33

4-
% Copyright 2022-2023 The MathWorks, Inc
4+
% Copyright 2022-2024 The MathWorks, Inc
55

66
L = Linkage.LengthToStick;
77
W = 0.2;

Models/BOF_TOF/Pin_Locations/Extrusions/Extr_Data_Excv_Stick.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function [xy_stickArm, xy_stickBucketlink] = Extr_Data_Excv_Stick(Stick)
22
% Function to create extrusion for stick from pin locations
33

4-
% Copyright 2022-2023 The MathWorks, Inc
4+
% Copyright 2022-2024 The MathWorks, Inc
55

66
A = Stick.ToBucket;
77
B = [0 0];

Models/BOF_TOF/Pin_Locations/Extrusions/Extr_Data_LinkHoles.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
% add 'plot' as the final argument
1818
% >> Extr_Data_LinkHoles(10,5,1,3,'plot')
1919
%
20-
% Copyright 2014-2023 The MathWorks, Inc.
20+
% Copyright 2014-2024 The MathWorks, Inc.
2121

2222
% Default data to show diagram
2323
if (nargin == 0)

Models/BOF_TOF/Pin_Locations/Extrusions/Extr_Data_TriangleRounded_Holes.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
% add 'plot' as the final argument
2020
% >> Extr_Data_TriangleRounded_Holes(10,5,1,2,'plot')
2121
%
22-
% Copyright 2014-2023 The MathWorks, Inc.
22+
% Copyright 2014-2024 The MathWorks, Inc.
2323

2424
% Default data to show diagram
2525
if (nargin == 0)
133 KB
Binary file not shown.

Models/Complete/Excavator_Complete_plot1operatorcmds.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function Excavator_Complete_plot1operatorcmds(varargin)
22
% Code to plot operator commands for Excavator_Complete.slx
33

4-
% Copyright 2022-2023 The MathWorks, Inc.
4+
% Copyright 2022-2024 The MathWorks, Inc.
55

66
if (nargin==0)
77

Models/Complete/Excavator_Complete_plot2position.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
% faster than the DC motor but has a limited range. The control system
77
% uses them together to track the reference signal.
88

9-
% Copyright 2016-2023 The MathWorks, Inc.
9+
% Copyright 2016-2024 The MathWorks, Inc.
1010

1111
% Generate new simulation results if they don't exist or if they need to be updated
1212
%if ~exist('simlog', 'var'))

Models/Complete/Excavator_Complete_plot3pressure.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
%
44
% The plot below shows the pressures in the actuators.
55

6-
% Copyright 2016-2023 The MathWorks, Inc.
6+
% Copyright 2016-2024 The MathWorks, Inc.
77

88
% Generate new simulation results if they don't exist or if they need to be updated
99
%if ~exist('simlog', 'var'))

Models/Complete/Excavator_Complete_plot4loadsoil.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
% reported in the cab swing motor reference frame (swing motor angle is
88
% ignored).
99

10-
% Copyright 2022-2023 The MathWorks, Inc.
10+
% Copyright 2022-2024 The MathWorks, Inc.
1111

1212
% Generate new simulation results if they don't exist or if they need to be updated
1313
%if ~exist('simlog', 'var'))

Models/Complete/Excavator_Energy_Calc.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
% gravity. This calculation will give misleading results if the system
88
% does not return to its original height.
99

10-
% Copyright 2022-2023 The MathWorks, Inc
10+
% Copyright 2022-2024 The MathWorks, Inc
1111

1212
% Time
1313
if(~exist('simOut'))

Models/Complete/Excavator_Motion.slx

42.2 KB
Binary file not shown.

Models/Complete/Excavator_Motion_plot2position.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
% faster than the DC motor but has a limited range. The control system
77
% uses them together to track the reference signal.
88

9-
% Copyright 2016-2023 The MathWorks, Inc.
9+
% Copyright 2016-2024 The MathWorks, Inc.
1010

1111
% Generate new simulation results if they don't exist or if they need to be updated
1212
%if ~exist('simlog', 'var'))

Models/Complete/Excavator_Motion_plot3forces.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
%
44
% The plot below shows the force required of the actuators to complete the test.
55

6-
% Copyright 2016-2023 The MathWorks, Inc.
6+
% Copyright 2016-2024 The MathWorks, Inc.
77

88
% Generate new simulation results if they don't exist or if they need to be updated
99
%if ~exist('simlog', 'var'))

Models/Complete/Excavator_Motion_plot4loadsoil.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
% reported in the cab swing motor reference frame (swing motor angle is
88
% ignored).
99

10-
% Copyright 2022-2023 The MathWorks, Inc.
10+
% Copyright 2022-2024 The MathWorks, Inc.
1111

1212
% Generate new simulation results if they don't exist or if they need to be updated
1313
%if ~exist('simlog', 'var'))

Models/Cosim/B3D_Bucket/Overview/html/Excavator_Motion_B3D.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ <h2 id="2">Model</h2>
160160
<p>The simulation actuates the excavator arm to dig the bucket into the bed of particles which models the soil. The soil loads are plotted below.</p>
161161
<p>
162162
<img vspace="5" hspace="5" src="Excavator_Motion_B3D_results_soil_loads.png" alt=""> </p>
163-
<p class="footer">Copyright 2022-2023 The MathWorks, Inc.<br>
163+
<p class="footer">Copyright 2022-2024 The MathWorks, Inc.<br>
164164
<a href="https://www.mathworks.com/products/matlab/">Published with MATLAB&reg; R2023b</a>
165165
<br>
166166
</p>
@@ -196,7 +196,7 @@ <h2 id="2">Model</h2>
196196
% <matlab:try,open_system('Excavator_Motion_B3D'),catch,warning('Model%20Excavator_Motion_B3D.slx%20not%20found.%20Please%20obtain%20the%20correct%20release%20from%20GitHub.'),end Open Excavator with
197197
% ThreeParticle DEM Soil Loads Model>
198198
%
199-
% Copyright 2022-2023 The MathWorks, Inc.
199+
% Copyright 2022-2024 The MathWorks, Inc.
200200
201201
%% Cosimulation Setup
202202
%

Models/Examples/Excavator_Motion_Part_Trajectory.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
% Code to take simulation results and add motion profiles to variable
22
% activeTestPos, for use in Excavator_Motion.slx
33

4-
% Copyright 2022-2023 The MathWorks, Inc
4+
% Copyright 2022-2024 The MathWorks, Inc
55

66
% Extract bucket trajectory from motion test model
77
bucket_posOri = simOut.logsout_Excavator_Motion.get('FramePosOri').Values.Bucket;
42.4 KB
Binary file not shown.
8.12 KB
Binary file not shown.

Models/Examples/bucket_position_trajectory_test.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
% Code to extract bucket part trajectory from motion test and apply it in
22
% test harness model that only contains bucket part.
33

4-
% Copyright 2022-2023 The MathWorks, Inc
4+
% Copyright 2022-2024 The MathWorks, Inc
55

66
%% Open model to generate part trajectory
77
open_system('Excavator_Motion')
Binary file not shown.
9.7 KB
Binary file not shown.

Models/Libraries/Arrowhead_Lib.slx

9.71 KB
Binary file not shown.
52.3 KB
Binary file not shown.
29.7 KB
Binary file not shown.
12.2 KB
Binary file not shown.

Models/Libraries/ValveCmdLib.slx

109 Bytes
Binary file not shown.

Models/Overview/Excavator_Complete.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
%
1212
% <matlab:open_system('Excavator_Complete') Open Hydromechanical Model with Controls>
1313
%
14-
% Copyright 2022-2023 The MathWorks, Inc.
14+
% Copyright 2022-2024 The MathWorks, Inc.
1515

1616
%% Model
1717
open_system('Excavator_Complete')

Models/Overview/Excavator_Complete_Tests.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
% pressures, and the energy expended are reported in plots for each
1111
% scenario.
1212
%
13-
% Copyright 2022-2023 The MathWorks, Inc.
13+
% Copyright 2022-2024 The MathWorks, Inc.
1414

1515
%% Model
1616
clear

Models/Overview/Excavator_Motion.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
%
1313
% <matlab:open_system('Excavator_Motion') Open Actuator Force Calculation Model>
1414
%
15-
% Copyright 2022-2023 The MathWorks, Inc.
15+
% Copyright 2022-2024 The MathWorks, Inc.
1616

1717
%% Model
1818
open_system('Excavator_Motion')

Models/Overview/Excavator_Motion_Tests.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
% individually, and then a full dig cycle is completed. Positions and
1111
% forces/torques for each actuator are reported in plots for each scenario.
1212
%
13-
% Copyright 2022-2023 The MathWorks, Inc.
13+
% Copyright 2022-2024 The MathWorks, Inc.
1414

1515
%% Model
1616
clear

Models/Overview/Excavator_Param_BOF_TOF.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
%
2323
% <matlab:Excavator_Design_app_run Open App for Calculating BOF, TOF, and Load Capacity>
2424
%
25-
% Copyright 2022-2023 The MathWorks, Inc.
25+
% Copyright 2022-2024 The MathWorks, Inc.
2626

2727

2828
%% Excavator Design App: Define Pin Locations

Models/Overview/Excavator_Param_Load_Chart.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
%
2424
% <matlab:Excavator_Design_app_run Open App for Calculating BOF, TOF, and Load Capacity>
2525
%
26-
% Copyright 2022-2023 The MathWorks, Inc.
26+
% Copyright 2022-2024 The MathWorks, Inc.
2727

2828
%% Excavator Design App: Define Pin Locations
2929
%

Models/Overview/html/Excavator_Complete.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
To make changes, update the MATLAB code and republish this document.
88
-->
99
<title>Excavator Design with Simscape&trade;: Hydromechanical Model with Controls</title>
10-
<meta name="generator" content="MATLAB 23.2">
10+
<meta name="generator" content="MATLAB 24.1">
1111
<link rel="schema.DC" href="http://purl.org/dc/elements/1.1/">
12-
<meta name="DC.date" content="2023-12-08">
12+
<meta name="DC.date" content="2024-03-21">
1313
<meta name="DC.source" content="Excavator_Complete.m">
1414
<style type="text/css">
1515
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}:focus{outine:0}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}
@@ -165,8 +165,8 @@ <h2 id="1">Model</h2>
165165
Excavator_Complete_plot4loadsoil
166166
Excavator_Energy_Calc
167167
</pre>
168-
<img vspace="5" hspace="5" src="Excavator_Complete_09.png" alt=""> <img vspace="5" hspace="5" src="Excavator_Complete_10.png" alt=""> <img vspace="5" hspace="5" src="Excavator_Complete_11.png" alt=""> <img vspace="5" hspace="5" src="Excavator_Complete_12.png" alt=""> <img vspace="5" hspace="5" src="Excavator_Complete_13.png" alt=""> <img vspace="5" hspace="5" src="Excavator_Complete_14.png" alt=""> <p class="footer">Copyright 2022-2023 The MathWorks, Inc.<br>
169-
<a href="https://www.mathworks.com/products/matlab/">Published with MATLAB&reg; R2023b</a>
168+
<img vspace="5" hspace="5" src="Excavator_Complete_09.png" alt=""> <img vspace="5" hspace="5" src="Excavator_Complete_10.png" alt=""> <img vspace="5" hspace="5" src="Excavator_Complete_11.png" alt=""> <img vspace="5" hspace="5" src="Excavator_Complete_12.png" alt=""> <img vspace="5" hspace="5" src="Excavator_Complete_13.png" alt=""> <img vspace="5" hspace="5" src="Excavator_Complete_14.png" alt=""> <p class="footer">Copyright 2022-2024 The MathWorks, Inc.<br>
169+
<a href="https://www.mathworks.com/products/matlab/">Published with MATLAB&reg; R2024a</a>
170170
<br>
171171
</p>
172172
</div>
@@ -185,7 +185,7 @@ <h2 id="1">Model</h2>
185185
%
186186
% <matlab:open_system('Excavator_Complete') Open Hydromechanical Model with Controls>
187187
%
188-
% Copyright 2022-2023 The MathWorks, Inc.
188+
% Copyright 2022-2024 The MathWorks, Inc.
189189
190190
%% Model
191191
open_system('Excavator_Complete')
-4 Bytes
0 Bytes
0 Bytes
-10 Bytes
-65 Bytes
-141 Bytes
-157 Bytes
-20 Bytes
0 Bytes
0 Bytes
-10 Bytes
158 Bytes
-95 Bytes
-179 Bytes
-367 Bytes

0 commit comments

Comments
 (0)