Working with Single Agents
To support complex extensions of the base model, we implemented a way to retrieve single agents from containers of multiple instances having a SoA (Struct-Of-Arrays) layout under the hood.
In practice, this allows to operate on agents as if they were single structs. Let's see how this unfolds with a concrete example. As usual, we create a model instance with
import BeforeIT as Bit
parameters = Bit.AUSTRIA2010Q1.parameters
initial_conditions = Bit.AUSTRIA2010Q1.initial_conditions
model = Bit.Model(parameters, initial_conditions);Three containers in this model have multiple instances of agents: model.firms, model.w_act, model.w_inact. Each of them to be compatible with this approach contains IDs which correspond to single instances. IDs are UInt and are set internally.
One invariant of IDs one could rely on is that at initialization IDs are mapped one-to-one to indices of the arrays. Though, if any deletion happens this won't be true anymore.
id = 1
agent = model.w_act[id]Agent{Workers}(ID = 1, Y_h = 0.7661282859097249, D_h = 3.7818066335944875, K_h = 6.973481059156251, w_h = 0.2697101055708983, O_h = 1, C_d_h = 0.0, I_d_h = 0.0, C_h = 0.0, I_h = 0.0)Then we can access or modify attributes of the agent simply with
agent.Y_h0.7661282859097249and
agent.Y_h = 1.01.0Now, we will show how to add or remove agent instances from the model. Since agents are added by passing a NamedTuple of the fields we will use the fields of the agent we retrieved for ease of exposition
agentfields = Bit.getfields(agent)(Y_h = 1.0, D_h = 3.7818066335944875, K_h = 6.973481059156251, w_h = 0.2697101055708983, O_h = 1, C_d_h = 0.0, I_d_h = 0.0, C_h = 0.0, I_h = 0.0)Importantly, fields can be accessed as long as the agent is still inside the model, and not after that. So, if you need those fields for something else after removing an agent, retrieve the fields before removing it.
delete!(model.w_act, id)
push!(model.w_act, agentfields);We can also retrieve the id of the last agent added to the container with
id = Bit.lastid(model.w_act)4119Let's finally verify that the last agent has Y_h equal to 1.0 as it should be
agent = model.w_act[id]
agent.Y_h1.0A More Complex Example
Let's now use this capability to extend the base model.
When extending the BeforeIT models it is required to first create a new model type to use instead of the default model, we can do so by using
Bit.@object struct NewModel(Bit.Model) <: Bit.AbstractModel endLet's say that we want to add the posssibilty for workers to sign financial contracts to borrow money. At issuance, the worker’s deposit would increase by principal, and in time step period the money_to_be_paid should be paid by the debtor. In each time step a worker signs a new ConsumerLoanContract with a probability of 30% for a principal which is 20% of its Y_h, which should be repaid by a 10% margin 5 time steps later. A worker can have multiple ConsumerLoanContracts. A worker can only sign a new ConsumerLoanContract if the sum of money_to_be_paid is less than its Y_h.
To perform this last operation efficiently, we first store the sum of money_to_be_paid as a new field for the workers with
Bit.@object mutable struct NewWorkers(Bit.Workers) <: Bit.AbstractWorkers
sum_money_to_be_paid::Vector{Float64}
endLet’s introduce a new ConsumerLoanContract struct into the model. A worker could sign a ConsumerLoanContract and get a credit which would be repaid.
To do so, we first define it with
struct ConsumerLoanContract
principal::Float64
money_to_be_paid::Float64
period::Int32
debtor::Bit.Agent{NewWorkers}
endand store a vector of contracts into the properties of the model
Bit.@object mutable struct NewProperties(Bit.Properties) <: Bit.AbstractProperties
contracts::Vector{ConsumerLoanContract}
endWe want that to happen before the search & matching process, to do so we could either specialize the step! function or the function we want to call immediately after this new process. For the matter of brevity, we will follow this second approach:
function Bit.search_and_matching_credit!(model::NewModel)
sign_and_repay_contracts!(model.w_act, model)
return @invoke Bit.search_and_matching_credit!(model::Bit.AbstractModel)
end
function sign_and_repay_contracts!(workers, model)
for id in Bit.allids(workers)
agent = workers[id]
if rand() < 0.3 && agent.sum_money_to_be_paid <= agent.Y_h
principal = 0.2 * agent.Y_h
agent.Y_h += principal
money_to_be_paid = 1.1 * principal
period = model.agg.t + 5
new_contract = ConsumerLoanContract(principal, money_to_be_paid, period, agent)
push!(model.prop.contracts, new_contract)
agent.sum_money_to_be_paid += money_to_be_paid
end
end
repaid_contracts_indices = Int[]
for (i, contract) in enumerate(model.prop.contracts)
if contract.period == model.agg.t
debtor = contract.debtor
if debtor.Y_h <= contract.money_to_be_paid
debtor.Y_h -= contract.money_to_be_paid
debtor.sum_money_to_be_paid -= contract.money_to_be_paid
push!(repaid_contracts_indices, i)
end
end
end
for i in repaid_contracts_indices
contracts = model.prop.contracts
contracts[i], contracts[end] = contracts[end], contracts[i]
pop!(contracts)
end
return
endsign_and_repay_contracts! (generic function with 1 method)Now, we just create the new model
p, ic = Bit.AUSTRIA2010Q1.parameters, Bit.AUSTRIA2010Q1.initial_conditions
firms = Bit.Firms(p, ic)
w_act, w_inact = Bit.Workers(p, ic)
cb = Bit.CentralBank(p, ic)
bank = Bit.Bank(p, ic)
gov = Bit.Government(p, ic)
rotw = Bit.RestOfTheWorld(p, ic)
agg = Bit.Aggregates(p, ic)
prop = Bit.Properties(p, ic)
data = Bit.Data()
w_act_new = NewWorkers(Bit.fields(w_act)..., zeros(length(w_act.Y_h)))
prop_new = NewProperties(Bit.fields(prop)..., ConsumerLoanContract[])
model = NewModel(w_act_new, w_inact, firms, bank, cb, gov, rotw, agg, prop_new, data)Main.NewModel{Main.NewWorkers, BeforeIT.Workers, BeforeIT.Firms, BeforeIT.Bank, BeforeIT.CentralBank, BeforeIT.Government, BeforeIT.RestOfTheWorld, BeforeIT.Aggregates, Main.NewProperties, BeforeIT.Data}(Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]), BeforeIT.Workers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4130), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4121, 4122, 4123, 4124, 4125, 4126, 4127, 4128, 4129, 4130], [2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714 … 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714, 2.8287542404944714], [621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451 … 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451, 621876.1609845451], [1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6 … 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6, 1.1467116248735033e6], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1 … -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]), BeforeIT.Firms(Base.RefValue{Bool}(false), Base.RefValue{Int64}(624), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 615, 616, 617, 618, 619, 620, 621, 622, 623, 624], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 62, 62, 62, 62, 62, 62, 62, 62, 62, 62], [10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621 … 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951], [1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485 … 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877], [0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754 … 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983 … 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687], [0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721 … 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782], [0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832 … 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318], [-0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635 … 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037], [1, 2, 1, 1, 2, 1, 27, 1, 1, 1 … 1, 1, 1, 1, 1, 1, 1, 1, 1, 27], [10.822026659306621, 21.644053318613242, 10.822026659306621, 10.822026659306621, 21.644053318613242, 10.822026659306621, 292.1947198012788, 10.822026659306621, 10.822026659306621, 10.822026659306621 … 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 323.67879148407167], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [10.822026659306621, 21.644053318613242, 10.822026659306621, 10.822026659306621, 21.644053318613242, 10.822026659306621, 292.1947198012788, 10.822026659306621, 10.822026659306621, 10.822026659306621 … 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 323.67879148407167], [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 … 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [298.15365853658534, 596.3073170731707, 298.15365853658534, 298.15365853658534, 596.3073170731707, 298.15365853658534, 8050.148780487805, 298.15365853658534, 298.15365853658534, 298.15365853658534 … 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 2138.625], [7.65511425407355, 15.3102285081471, 7.65511425407355, 7.65511425407355, 15.3102285081471, 7.65511425407355, 206.68808485998585, 7.65511425407355, 7.65511425407355, 7.65511425407355 … 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 109.55214015337074], [94.08074124607997, 188.16148249215993, 94.08074124607997, 94.08074124607997, 188.16148249215993, 94.08074124607997, 2540.1800136441593, 94.08074124607997, 94.08074124607997, 94.08074124607997 … 24.99375238071137, 24.99375238071137, 24.99375238071137, 24.99375238071137, 24.99375238071137, 24.99375238071137, 24.99375238071137, 24.99375238071137, 24.99375238071137, 674.8313142792068], [0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726 … 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956], [12.384292053067004, 24.768584106134007, 12.384292053067004, 12.384292053067004, 24.768584106134007, 12.384292053067004, 334.37588543280907, 12.384292053067004, 12.384292053067004, 12.384292053067004 … 13.530111496595195, 13.530111496595195, 13.530111496595195, 13.530111496595195, 13.530111496595195, 13.530111496595195, 13.530111496595195, 13.530111496595195, 13.530111496595195, 365.3130104080702], [1.2548454674764373, 2.5096909349528747, 1.2548454674764373, 1.2548454674764373, 2.5096909349528747, 1.2548454674764373, 33.88082762186381, 1.2548454674764373, 1.2548454674764373, 1.2548454674764373 … 3.5771064837982878, 3.5771064837982878, 3.5771064837982878, 3.5771064837982878, 3.5771064837982878, 3.5771064837982878, 3.5771064837982878, 3.5771064837982878, 3.5771064837982878, 96.58187506255376], [1, 2, 1, 1, 2, 1, 27, 1, 1, 1 … 1, 1, 1, 1, 1, 1, 1, 1, 1, 27], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.3061857958470848, 2.02208568733654, 1.3061857958470848, 1.3061857958470848, 2.02208568733654, 1.3061857958470848, 19.91958297457291, 1.3061857958470848, 1.3061857958470848, 1.3061857958470848 … 2.631055234104208, 2.631055234104208, 2.631055234104208, 2.631055234104208, 2.631055234104208, 2.631055234104208, 2.631055234104208, 2.631055234104208, 2.631055234104208, 55.691057807515215], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [529497.5487445241, 819706.8274668558, 529497.5487445241, 529497.5487445241, 819706.8274668558, 529497.5487445241, 8.074938795525146e6, 529497.5487445241, 529497.5487445241, 529497.5487445241 … 1.066569014529938e6, 1.066569014529938e6, 1.066569014529938e6, 1.066569014529938e6, 1.066569014529938e6, 1.066569014529938e6, 1.066569014529938e6, 1.066569014529938e6, 1.066569014529938e6, 2.2575868371731315e7], [287153.191544819, 444537.33958975226, 287153.191544819, 287153.191544819, 444537.33958975226, 287153.191544819, 4.379141040713083e6, 287153.191544819, 287153.191544819, 287153.191544819 … 578413.8137207031, 578413.8137207031, 578413.8137207031, 578413.8137207031, 578413.8137207031, 578413.8137207031, 578413.8137207031, 578413.8137207031, 578413.8137207031, 1.2243177839461952e7]), BeforeIT.Bank(89460.0, 0.0, 0.0, 0.0, 0.028359903595743693, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), BeforeIT.CentralBank(0.0016459319014481277, 0.0089810924595537, 0.9259668580654086, -0.003424572940686137, 0.0049629315732038215, 0.30996974466133875, 1.328593153520194, 106179.90000000002), BeforeIT.Government(0.9905949533296431, 0.09373211872949586, 0.011235005057648862, 0.0, 14732.121510837034, 232610.9, 2.238468336136841, 0.5902859043576301, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 0.0, 0.0), BeforeIT.RestOfTheWorld(0.962809216044625, 0.39260026877953946, 0.020320381298662014, 0.9662360466537488, 0.35492769963078624, 0.02122821278168188, 2.3548476e6, 0.0, 0.0019383188997990075, 0.38456173629534834, 0.0026219533879005877, 0.0025327891562467505, 0.9635784504324201, 0.5360029623199525, 0.006618207536795881, 0.0, 33097.63671130043, 34095.03119997918, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 0.0, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 0.0), BeforeIT.Aggregates([104531.39273728609, 105062.38754395355, 105399.12953350678, 106689.88106040593, 107938.33111423723, 108890.48532381697, 110110.17779727321, 110374.00540561741, 110808.89423399912, 111932.48072916963 … 139382.61162744602, 141288.21877604182, 140554.06557898276, 139768.5198028018, 137144.71527593565, 135054.13194905635, 133851.32295827195, 134293.63309771818, 135709.0626505015, 134635.75553779321], [-0.007497362866886709, -0.007895434153021436, -0.0019938777296781562, -0.0035311300388783107, 0.001212170001002849, -0.001672412335241874, 0.001839696090252002, 0.004290005139261838, 0.00600429551344886, 0.0036060572293247772 … 0.010368416047796258, 0.005161476804794514, -0.0025695603517498014, 0.0006033009671786438, 0.013376536173073151, 0.005811645790062013, -0.0003164402217366337, 0.004034477127754229, 0.005303186518592234, 0.0010079589742698286], 1.0, [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 … 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1), Main.NewProperties(62, 54, 4743, 4130, 156, 312, [48, 2, 1, 1, 5, 2, 4, 1, 1, 1 … 14, 10, 13, 41, 20, 16, 7, 7, 2, 19], 624, 8873, 0.21340742230566648, 0.07701197259426128, 0.1528683933530887, 0.21215146534992413, 0.17114894621657745, 0.0029486201783457183, 0.08761417854834112, 0.009147800682711324, 0.3585824478060919, 0.9096681249468772, 0.07125099957246343, 0.026713971694295565, 0.7858074440019603, 0.05, 0.03, 0.6, 0.5, [0.0033476048872100555, 0.0, 0.0, 0.0008050086095806136, 0.0, 0.003306696048303853, 0.0030629933432974495, 0.0, 0.0, 0.0 … 0.0017883064872300512, 0.0, 0.0, 0.0, 0.0, 0.002291709084994238, 0.0, 0.0, 0.0, 0.0], [0.0006092803753845975, 0.0, 0.0, 0.004372477702289994, 0.0, 0.0, 0.06710603871527036, 0.0, 0.0, 0.0 … 0.0041711096896454745, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.011287997598927976, 0.0020040637862256817, 0.0003326837475323491, 0.00034402684015257527, 0.06305103828047173, 0.03068200872784047, 0.0003505790613555631, 0.0020473225369636873, 0.0, 0.0191077565617325 … 0.005591228759882936, 0.0004356874830029748, 0.014434120586233577, 0.03514505772295519, 0.024907176866291014, 0.013342154173060372, 0.009686226103767459, 0.011051272187723254, 0.0021206651420422927, 0.01721782824162338], [0.0, 0.0, 0.0, 0.0, 8.57086390274792e-6, 0.0, 0.0, 0.0, 2.4536198623552867e-5, 0.0 … 0.008555738848801895, 0.3324338967920097, 0.22067672180252998, 0.2370889178393625, 0.0477595425645907, 0.012942508661614227, 0.004667927760053456, 0.021757222045203074, 0.0, 0.002000708524749294], [0.005090338238241512, 0.0005933402816643566, 1.793599921320476e-5, 0.007268146142708006, 0.05434404438533037, 0.02138421321578873, 0.023894091259534518, 0.028037089231640524, 0.005923381894006229, 0.011927802553688313 … 0.0014618202435669027, 0.0009447261124040238, 0.0001280209174610526, 0.0010477673386531637, 0.0, 0.0013030104043795392, 5.5260305268213854e-5, 0.0, 1.307076865739618e-5, 8.641230390167474e-6], [0.016810689305736877, 0.004087420487057966, 0.00036885674795364003, 0.05818437780960789, 0.04895082866561155, 0.04689140072807505, 0.010101572733480902, 0.016066325760592727, 0.00037371898454196314, 0.041008926225895866 … 0.0018123421762754539, 0.000401097116716159, 0.0003479865324437806, 0.0006664256271585853, 0.0028556289501379516, 0.001307065586721844, 6.418152296577174e-5, 0.0, 3.538212163497461e-5, 0.00020458795490837936], [0.37790282216028437 0.0 … 0.0 0.0; 0.0006712800413285777 0.8149348034258406 … 2.4029219530949635e-5 0.00019143106686926454; … ; 0.00037430822580994426 0.000357977071568566 … 0.3197327950788158 0.0011366219595362582; 0.0 5.36965607352849e-5 … 0.0 0.05594572929254256], [4.3800671000101816e-5 0.00010629745355671226 9.959785873214212e-5; 0.00010629745355671226 0.0004129178961230129 0.0003596689472264872; 9.959785873214212e-5 0.0003596689472264872 0.0004506370179043619], 219841.0, 405376.9, 0.5902859043576301, 89460.0, 0.0016459319014481277, Main.ConsumerLoanContract[]), BeforeIT.Data(Int64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Vector{Float64}[], Vector{Float64}[]))and evolve it
Bit.step!(model)Main.NewModel{Main.NewWorkers, BeforeIT.Workers, BeforeIT.Firms, BeforeIT.Bank, BeforeIT.CentralBank, BeforeIT.Government, BeforeIT.RestOfTheWorld, BeforeIT.Aggregates, Main.NewProperties, BeforeIT.Data}(Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]), BeforeIT.Workers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4130), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4121, 4122, 4123, 4124, 4125, 4126, 4127, 4128, 4129, 4130], [2.829450886625452, 2.829450886625452, 2.829450886625452, 2.829450886625452, 2.829450886625452, 2.829450886625452, 2.829450886625452, 2.829450886625452, 2.829450886625452, 2.829450886625452 … 2.829450886625452, 2.829450886625452, 2.829450886625452, 2.829450886625452, 2.829450886625452, 2.829450886625452, 2.829450886625452, 2.829450886625452, 2.829450886625452, 2.829450886625452], [623264.3285498517, 623264.3285498517, 623264.3285498517, 623264.3285498517, 623264.3285498517, 623264.3285498517, 623264.3285498517, 623264.3285498517, 623264.3285498517, 623264.3285498517 … 623264.3285498517, 623264.3285498517, 623264.3285498517, 623264.3285498517, 623264.3285498517, 623264.3285498517, 623264.3285498517, 623264.3285498517, 623264.3285498517, 623264.3285498517], [1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6 … 1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6, 1.1467118102344593e6], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1 … -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], [2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134 … 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134], [0.18536095601690036, 0.18536095601690036, 0.18536095601690036, 0.18536095601690036, 0.18536095601690036, 0.18536095601690036, 0.18536095601690036, 0.18536095601690036, 0.18536095601690036, 0.18536095601690036 … 0.18536095601690036, 0.18536095601690036, 0.18536095601690036, 0.18536095601690036, 0.18536095601690036, 0.18536095601690036, 0.18536095601690036, 0.18536095601690036, 0.18536095601690036, 0.18536095601690036], [2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134 … 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134, 2.2325716426138134], [0.1853609560169003, 0.1853609560169003, 0.1853609560169003, 0.1853609560169003, 0.1853609560169003, 0.1853609560169003, 0.1853609560169003, 0.1853609560169003, 0.1853609560169003, 0.1853609560169003 … 0.1853609560169003, 0.1853609560169003, 0.1853609560169003, 0.1853609560169003, 0.1853609560169003, 0.1853609560169003, 0.1853609560169003, 0.1853609560169003, 0.1853609560169003, 0.1853609560169003]), BeforeIT.Firms(Base.RefValue{Bool}(false), Base.RefValue{Int64}(624), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 615, 616, 617, 618, 619, 620, 621, 622, 623, 624], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 62, 62, 62, 62, 62, 62, 62, 62, 62, 62], [10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621, 10.822026659306621 … 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951, 11.988103388298951], [1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485, 1.6631751855300485 … 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877, 3.4759574544453877], [0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754, 0.042702129272078754 … 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946, 0.17805766706016946], [0.27089924417097017, 0.27089924417097017, 0.27089924417097017, 0.27089924417097017, 0.27089924417097017, 0.27089924417097017, 0.27089924417097017, 0.27089924417097017, 0.27089924417097017, 0.27089924417097017 … 2.6134855304936075, 2.6134855304936075, 2.6134855304936075, 2.6134855304936075, 2.6134855304936075, 2.6134855304936075, 2.6134855304936075, 2.6134855304936075, 2.6134855304936075, 2.6134855304936075], [0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983, 0.2697101055708983 … 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687, 2.6020133813757687], [0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721, 0.011078553057541721 … 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782, 0.012425621091468782], [0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832, 0.009528627732528832 … 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318, 0.010357147774366318], [-0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635, -0.26105054841223635 … 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037, 0.013413693877270037], [1, 2, 1, 1, 2, 1, 27, 1, 1, 1 … 1, 1, 1, 1, 1, 1, 1, 1, 1, 27], [10.869740442979458, 21.739480885958915, 10.869740442979458, 10.869740442979458, 21.739480885958915, 10.869740442979458, 293.48299196044536, 10.869740442979458, 10.869740442979458, 10.869740442979458 … 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 325.10587536794617], [10.869740442979458, 21.739480885958915, 10.869740442979458, 10.869740442979458, 18.432864011956287, 10.869740442979458, 293.48299196044536, 10.869740442979458, 10.869740442979458, 10.869740442979458 … 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 259.5621487029159], [10.869740442979458, 21.739480885958915, 10.869740442979458, 10.869740442979458, 18.432864011956287, 10.869740442979458, 293.48299196044536, 10.869740442979458, 10.869740442979458, 10.869740442979458 … 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 259.5621487029159], [0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451 … 0.995855594745345, 0.995855594745345, 0.995855594745345, 0.995855594745345, 0.995855594745345, 0.995855594745345, 0.995855594745345, 0.995855594745345, 0.995855594745345, 0.995855594745345], [0.0, 0.0, 0.0, 0.0, 3.3066168740026285, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 65.54372666503025], [298.15365853658534, 596.3073170731707, 298.15365853658534, 298.15365853658534, 596.3073170731707, 298.15365853658534, 8050.148780487805, 298.15365853658534, 298.15365853658534, 298.15365853658534 … 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 2138.625], [7.655114254073556, 15.310228508147112, 7.655114254073556, 7.655114254073556, 15.310228508147112, 7.655114254073556, 206.688084859986, 7.655114254073556, 7.655114254073556, 7.655114254073556 … 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 109.5521401533707], [89.37670418377597, 178.75340836755194, 89.37670418377597, 89.37670418377597, 178.75340836755194, 89.37670418377597, 2413.1710129619514, 89.37670418377597, 89.37670418377597, 89.37670418377597 … 23.7440647616758, 23.7440647616758, 23.7440647616758, 23.7440647616758, 23.7440647616758, 23.7440647616758, 23.7440647616758, 23.7440647616758, 23.7440647616758, 641.0897485652464], [0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726, 0.36061475737617726 … 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956, 0.35565736393550956], [7.919056478158705, 15.83811295631741, 7.919056478158705, 7.919056478158705, 12.545200042662529, 7.919056478158705, 213.81452491028503, 7.919056478158705, 7.919056478158705, 7.919056478158705 … 12.986486737536604, 12.986486737536604, 12.986486737536604, 12.986486737536604, 12.986486737536604, 12.986486737536604, 12.986486737536604, 12.986486737536604, 12.986486737536604, 285.3630550136583], [1.2079155900033767, 2.4158311800067533, 1.2079155900033767, 1.2079155900033767, 2.4158311800067533, 1.2079155900033767, 32.61372093009126, 1.2079155900033767, 1.2079155900033767, 1.2079155900033767 … 3.5714364486990235, 3.5714364486990235, 3.5714364486990235, 3.5714364486990227, 3.5714364486990235, 3.5714364486990235, 3.5714364486990235, 3.5714364486990235, 3.5714364486990227, 96.42878411487354], [1, 2, 1, 1, 2, 1, 27, 1, 1, 1 … 1, 1, 1, 1, 1, 1, 1, 1, 1, 27], [2.8200232230104145, 5.640046446020829, 2.8200232230104145, 2.8200232230104145, 5.640046446020829, 2.8200232230104145, 76.1406270212812, 2.8200232230104145, 2.8200232230104145, 2.8200232230104145 … 0.8402692704433595, 0.8402692704433595, 0.8402692704433595, 0.8402692704433595, 0.8402692704433595, 0.8402692704433595, 0.8402692704433595, 0.8402692704433595, 0.8402692704433595, 22.687270301970713], [223.08372960016828, 446.16745920033657, 223.08372960016828, 223.08372960016828, 446.16745920033657, 223.08372960016828, 6023.260699204544, 223.08372960016828, 223.08372960016828, 223.08372960016828 … 72.16315467957648, 72.16315467957648, 72.16315467957648, 72.16315467957648, 72.16315467957648, 72.16315467957648, 72.16315467957648, 72.16315467957648, 72.16315467957648, 1948.405176348565], [0.9958555947453447, 0.9958555947453447, 0.9958555947453447, 0.9958555947453447, 0.9958555947453447, 0.9958555947453447, 0.9958555947453448, 0.9958555947453447, 0.9958555947453447, 0.9958555947453447 … 0.9958555947453452, 0.9958555947453452, 0.9958555947453452, 0.9958555947453452, 0.9958555947453452, 0.9958555947453452, 0.9958555947453452, 0.9958555947453452, 0.9958555947453452, 0.9958555947453455], [0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453454, 0.9958555947453451, 0.9958555947453451, 0.9958555947453454 … 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453454, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453454, 0.9958555947453452], [0.0, 0.0, 0.0, 0.0, 3.3066168740026285, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 65.54372666503025], [6.535535485106049, 13.071070970212098, 6.535535485106049, 6.535535485106049, 13.071070970212098, 6.535535485106049, 176.4594580978633, 6.535535485106049, 6.535535485106049, 6.535535485106049 … 3.464069541921992, 3.464069541921992, 3.464069541921992, 3.464069541921992, 3.464069541921992, 3.464069541921992, 3.464069541921992, 3.464069541921992, 3.464069541921992, 93.52987763189375], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [296.91798894745176, 593.8359778949035, 296.91798894745176, 296.91798894745176, 593.8359778949035, 296.91798894745176, 8016.785701581198, 296.91798894745176, 296.91798894745176, 296.91798894745176 … 78.88006190045422, 78.88006190045422, 78.88006190045422, 78.88006190045422, 78.88006190045422, 78.88006190045422, 78.88006190045422, 78.88006190045422, 78.88006190045422, 2129.761671312264], [89.37670418377597, 178.75340836755194, 89.37670418377597, 89.37670418377597, 178.75340836755194, 89.37670418377597, 2413.1710129619514, 89.37670418377597, 89.37670418377597, 89.37670418377597 … 23.7440647616758, 23.7440647616758, 23.7440647616758, 23.7440647616758, 23.7440647616758, 23.7440647616758, 23.7440647616758, 23.7440647616758, 23.7440647616758, 641.0897485652464], [10.869740442979458, 21.739480885958915, 10.869740442979458, 10.869740442979458, 21.739480885958915, 10.869740442979458, 293.48299196044536, 10.869740442979458, 10.869740442979458, 10.869740442979458 … 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 12.040958346960968, 325.10587536794617], [2.8200232230104163, 5.640046446020833, 2.8200232230104163, 2.8200232230104163, 5.640046446020833, 2.8200232230104163, 76.14062702128125, 2.8200232230104163, 2.8200232230104163, 2.8200232230104163 … 0.84026927044336, 0.84026927044336, 0.84026927044336, 0.84026927044336, 0.84026927044336, 0.84026927044336, 0.84026927044336, 0.84026927044336, 0.84026927044336, 22.687270301970724], [6.535535485106043, 13.071070970212086, 6.535535485106043, 6.535535485106043, 13.071070970212086, 6.535535485106043, 176.45945809786315, 6.535535485106043, 6.535535485106043, 6.535535485106043 … 3.464069541921992, 3.464069541921992, 3.464069541921992, 3.464069541921992, 3.464069541921992, 3.464069541921992, 3.464069541921992, 3.464069541921992, 3.464069541921992, 93.5298776318938], [1, 2, 1, 1, 2, 1, 27, 1, 1, 1 … 1, 1, 1, 1, 1, 1, 1, 1, 1, 27], [1.2551545021841475, 2.510309004368295, 1.2551545021841475, 1.2551545021841475, 2.510309004368295, 1.2551545021841475, 33.88917155897198, 1.2551545021841475, 1.2551545021841475, 1.2551545021841475 … 3.5779874289706775, 3.5779874289706775, 3.5779874289706775, 3.5779874289706775, 3.5779874289706775, 3.5779874289706775, 3.5779874289706775, 3.5779874289706775, 3.5779874289706775, 96.60566058220829], [1.2795572776552335, 1.9686832794017999, 1.2795572776552335, 1.2795572776552335, 1.9686832794017999, 1.2795572776552335, 19.19683332306601, 1.2795572776552335, 1.2795572776552335, 1.2795572776552335 … 2.62796580295044, 2.62796580295044, 2.62796580295044, 2.6279658029504396, 2.62796580295044, 2.62796580295044, 2.62796580295044, 2.62796580295044, 2.6279658029504396, 55.603863506036475], [1.0308966845007395, 1.5959149437081135, 1.0308966845007395, 1.0308966845007395, 1.5959149437081135, 1.0308966845007395, 15.721371423892457, 1.0308966845007395, 1.0308966845007395, 1.0308966845007395 … 2.076539284227432, 2.076539284227432, 2.076539284227432, 2.076539284227432, 2.076539284227432, 2.076539284227432, 2.076539284227432, 2.076539284227432, 2.076539284227432, 43.95372161651315], [0.08559098008160274, 0.13250205012057664, 0.08559098008160274, 0.08559098008160274, 0.13250205012057664, 0.08559098008160274, 1.3052788010949246, 0.08559098008160274, 0.08559098008160274, 0.08559098008160274 … 0.17240625097271642, 0.17240625097271642, 0.17240625097271642, 0.17240625097271642, 0.17240625097271642, 0.17240625097271642, 0.17240625097271642, 0.17240625097271642, 0.17240625097271642, 3.649291115154993], [1.0308966845007392, 1.5959149437081133, 1.0308966845007392, 1.0308966845007392, 1.5959149437081133, 1.0308966845007392, 15.721371423892457, 1.0308966845007392, 1.0308966845007392, 1.0308966845007392 … 2.076539284227432, 2.076539284227432, 2.076539284227432, 2.076539284227432, 2.076539284227432, 2.076539284227432, 2.076539284227432, 2.076539284227432, 2.076539284227432, 43.95372161651315], [0.08559098008160274, 0.13250205012057664, 0.08559098008160274, 0.08559098008160274, 0.13250205012057664, 0.08559098008160274, 1.3052788010949241, 0.08559098008160274, 0.08559098008160274, 0.08559098008160274 … 0.17240625097271636, 0.17240625097271636, 0.17240625097271636, 0.17240625097271636, 0.17240625097271636, 0.17240625097271636, 0.17240625097271636, 0.17240625097271636, 0.17240625097271636, 3.6492911151549925], [529497.6343355043, 819706.9599689059, 529497.6343355043, 529497.6343355043, 819706.9599689059, 529497.6343355043, 8.074940100803947e6, 529497.6343355043, 529497.6343355043, 529497.6343355043 … 1.0665691869361892e6, 1.0665691869361892e6, 1.0665691869361892e6, 1.0665691869361892e6, 1.0665691869361892e6, 1.0665691869361892e6, 1.0665691869361892e6, 1.0665691869361892e6, 1.0665691869361892e6, 2.257587202102243e7], [287794.15515156166, 445529.5930892908, 287794.15515156166, 287794.15515156166, 445529.5930892908, 287794.15515156166, 4.388915541532517e6, 287794.15515156166, 287794.15515156166, 287794.15515156166 … 579704.9598068753, 579704.9598068753, 579704.9598068753, 579704.9598068753, 579704.9598068753, 579704.9598068753, 579704.9598068753, 579704.9598068753, 579704.9598068753, 1.2270507267225984e7]), BeforeIT.Bank(-9.184004387182716e6, -9.273464387182716e6, 0.0, 4.1574486365578694e9, 0.028946109962321172, 0.5904312759086672, 0.4658784252933656, 0.03867991004262882, 0.4658784252933656, 0.03867991004262883, 0.03867991004262883, 0.0112659456555003), BeforeIT.CentralBank(0.002232138268025605, 0.0089810924595537, 0.9259668580654086, -0.003424572940686137, 0.0049629315732038215, 0.30996974466133875, 1.328593153520194, 108269.00000000003), BeforeIT.Government(0.9905949533296431, 0.09373211872949586, 0.011235005057648862, 10315.650286839444, 15001.534524284114, 270416.6335202972, 2.2483376330172993, 0.592888445899276, [95.76514157547297, 95.76514157547297, 95.76514157547297, 95.76514157547297, 95.76514157547297, 95.76514157547297, 95.76514157547297, 95.76514157547297, 95.76514157547297, 95.76514157547297 … 95.76514157547297, 95.76514157547297, 95.76514157547297, 95.76514157547297, 95.76514157547297, 95.76514157547297, 95.76514157547297, 95.76514157547297, 95.76514157547297, 95.76514157547297], 14874.056868320236, 0.9958555947453457), BeforeIT.RestOfTheWorld(0.962809216044625, 0.39260026877953946, 0.020320381298662014, 0.9662360466537488, 0.35492769963078624, 0.02122821278168188, 2.3702529838117273e6, 0.006541987605366506, 0.002814640366480159, 0.38456173629534834, 0.0026219533879005877, 0.0025327891562467505, 0.9635784504324201, 0.5360029623199525, 0.006618207536795881, -1809.1639149880575, 33871.300762064726, 34364.35769602517, [109.68569830582346, 109.68569830582346, 109.68569830582346, 109.68569830582346, 109.68569830582346, 109.68569830582346, 109.68569830582346, 109.68569830582346, 109.68569830582346, 109.68569830582346 … 109.68569830582346, 109.68569830582346, 109.68569830582346, 109.68569830582346, 109.68569830582346, 109.68569830582346, 109.68569830582346, 109.68569830582346, 109.68569830582346, 109.68569830582346], 34221.463554799615, [569.3999134922389, 138.44624865816544, 12.493657848054845, 1970.7805604428336, 1658.0282402852283, 1588.272737215131, 342.1534082256039, 544.1873519783446, 12.658348125914252, 1389.0256741266428 … 61.386386936400825, 13.58568107509, 11.786756501551286, 22.572702853036052, 96.7238670349817, 44.27201160360017, 2.173911667741019, 0.0, 1.1984384834981823, 6.929660152997454], [541.2731420344107, 125.58765094908733, 10.543878853920981, 1931.464626307121, 1410.0616984790172, 1402.7197742629237, 342.1534082256039, 544.1873519783446, 12.658348125914252, 1274.3191016287306 … 61.386386936400825, 13.58568107509, 11.786756501551286, 22.572702853036052, 96.7238670349817, 44.27201160360017, 2.173911667741019, 0.0, 1.1984384834981823, 6.929660152997454], [541.2731420344107, 125.58765094908733, 10.543878853920981, 1931.464626307121, 1410.0616984790172, 1402.7197742629237, 342.1534082256039, 544.1873519783446, 12.658348125914252, 1274.3191016287306 … 61.386386936400825, 13.58568107509, 11.786756501551286, 22.572702853036052, 96.7238670349817, 44.27201160360017, 2.173911667741019, 0.0, 1.1984384834981823, 6.929660152997454], [0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451 … 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451, 0.9958555947453451], 0.9958555947453451), BeforeIT.Aggregates([104531.39273728609, 105062.38754395355, 105399.12953350678, 106689.88106040593, 107938.33111423723, 108890.48532381697, 110110.17779727321, 110374.00540561741, 110808.89423399912, 111932.48072916963 … 141288.21877604182, 140554.06557898276, 139768.5198028018, 137144.71527593565, 135054.13194905635, 133851.32295827195, 134293.63309771818, 135709.0626505015, 134635.75553779321, 135229.35796704213], [-0.007497362866886709, -0.007895434153021436, -0.0019938777296781562, -0.0035311300388783107, 0.001212170001002849, -0.001672412335241874, 0.001839696090252002, 0.004290005139261838, 0.00600429551344886, 0.0036060572293247772 … 0.005161476804794514, -0.0025695603517498014, 0.0006033009671786438, 0.013376536173073151, 0.005811645790062013, -0.0003164402217366337, 0.004034477127754229, 0.005303186518592234, 0.0010079589742698286, -0.004153017104346452], 0.9958555947453436, [0.9958555947453449, 0.9958555947453451, 0.9958555947453449, 0.995855594745345, 0.9958555947453455, 0.995855594745345, 0.9958555947453455, 0.9958555947453447, 0.9958555947453454, 0.9958555947453449 … 0.9958555947453451, 0.9958555947453452, 0.9958555947453449, 0.9958555947453454, 0.9958555947453451, 0.9958555947453455, 0.9958555947453454, 0.995855594745345, 0.9958555947453451, 0.995855594745345], 0.9958555947453456, 0.9958555947453446, 0.9958555947453452, 0.9958555947453458, 135229.357967042, 0.004408950853193927, -0.00414440525465487, 0.004894205468871666, 0.0034247350832895228, 0.019567284293180026, 2), Main.NewProperties(62, 54, 4743, 4130, 156, 312, [48, 2, 1, 1, 5, 2, 4, 1, 1, 1 … 14, 10, 13, 41, 20, 16, 7, 7, 2, 19], 624, 8873, 0.21340742230566648, 0.07701197259426128, 0.1528683933530887, 0.21215146534992413, 0.17114894621657745, 0.0029486201783457183, 0.08761417854834112, 0.009147800682711324, 0.3585824478060919, 0.9096681249468772, 0.07125099957246343, 0.026713971694295565, 0.7858074440019603, 0.05, 0.03, 0.6, 0.5, [0.0033476048872100555, 0.0, 0.0, 0.0008050086095806136, 0.0, 0.003306696048303853, 0.0030629933432974495, 0.0, 0.0, 0.0 … 0.0017883064872300512, 0.0, 0.0, 0.0, 0.0, 0.002291709084994238, 0.0, 0.0, 0.0, 0.0], [0.0006092803753845975, 0.0, 0.0, 0.004372477702289994, 0.0, 0.0, 0.06710603871527036, 0.0, 0.0, 0.0 … 0.0041711096896454745, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.011287997598927976, 0.0020040637862256817, 0.0003326837475323491, 0.00034402684015257527, 0.06305103828047173, 0.03068200872784047, 0.0003505790613555631, 0.0020473225369636873, 0.0, 0.0191077565617325 … 0.005591228759882936, 0.0004356874830029748, 0.014434120586233577, 0.03514505772295519, 0.024907176866291014, 0.013342154173060372, 0.009686226103767459, 0.011051272187723254, 0.0021206651420422927, 0.01721782824162338], [0.0, 0.0, 0.0, 0.0, 8.57086390274792e-6, 0.0, 0.0, 0.0, 2.4536198623552867e-5, 0.0 … 0.008555738848801895, 0.3324338967920097, 0.22067672180252998, 0.2370889178393625, 0.0477595425645907, 0.012942508661614227, 0.004667927760053456, 0.021757222045203074, 0.0, 0.002000708524749294], [0.005090338238241512, 0.0005933402816643566, 1.793599921320476e-5, 0.007268146142708006, 0.05434404438533037, 0.02138421321578873, 0.023894091259534518, 0.028037089231640524, 0.005923381894006229, 0.011927802553688313 … 0.0014618202435669027, 0.0009447261124040238, 0.0001280209174610526, 0.0010477673386531637, 0.0, 0.0013030104043795392, 5.5260305268213854e-5, 0.0, 1.307076865739618e-5, 8.641230390167474e-6], [0.016810689305736877, 0.004087420487057966, 0.00036885674795364003, 0.05818437780960789, 0.04895082866561155, 0.04689140072807505, 0.010101572733480902, 0.016066325760592727, 0.00037371898454196314, 0.041008926225895866 … 0.0018123421762754539, 0.000401097116716159, 0.0003479865324437806, 0.0006664256271585853, 0.0028556289501379516, 0.001307065586721844, 6.418152296577174e-5, 0.0, 3.538212163497461e-5, 0.00020458795490837936], [0.37790282216028437 0.0 … 0.0 0.0; 0.0006712800413285777 0.8149348034258406 … 2.4029219530949635e-5 0.00019143106686926454; … ; 0.00037430822580994426 0.000357977071568566 … 0.3197327950788158 0.0011366219595362582; 0.0 5.36965607352849e-5 … 0.0 0.05594572929254256], [4.3800671000101816e-5 0.00010629745355671226 9.959785873214212e-5; 0.00010629745355671226 0.0004129178961230129 0.0003596689472264872; 9.959785873214212e-5 0.0003596689472264872 0.0004506370179043619], 219841.0, 405376.9, 0.5902859043576301, 89460.0, 0.0016459319014481277, Main.ConsumerLoanContract[Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(1, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(5, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(8, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(13, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(16, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(21, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(31, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(32, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(34, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(40, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))) … Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4096, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4100, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4101, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4103, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4104, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4107, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4108, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4109, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4110, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4111, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534 … 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534, 4.639042066442534], [0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294 … 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294, 0.08851698401933294], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522 … 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435 … 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435, 3.660425355106435], [0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703 … 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703, 0.3039095947920703], [3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434 … 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434, 3.660425355106434], [0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025 … 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025, 0.30390959479207025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0])))]), BeforeIT.Data(Int64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Float64[], Vector{Float64}[], Vector{Float64}[]))