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.781806633594487, K_h = 6.973481059156249, 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.781806633594487, K_h = 6.973481059156249, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 1, 1, 1, 1, 1, 9, 3, 1, 20, 1], [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, 107.89293049469056, 35.96431016489685, 11.988103388298951, 239.76206776597903, 11.988103388298951], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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, 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, 107.89293049469056, 35.96431016489685, 11.988103388298951, 239.76206776597903, 11.988103388298951], [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, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534 … 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 712.8750000000001, 237.625, 79.20833333333334, 1584.1666666666667, 79.20833333333334], [7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355, 7.65511425407355 … 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 36.51738005112358, 12.172460017041193, 4.057486672347064, 81.1497334469413, 4.057486672347064], [94.08074124607998, 94.08074124607998, 94.08074124607998, 94.08074124607998, 94.08074124607998, 94.08074124607998, 94.08074124607998, 94.08074124607998, 94.08074124607998, 94.08074124607998 … 24.993752380711374, 24.993752380711374, 24.993752380711374, 24.993752380711374, 24.993752380711374, 224.94377142640235, 74.98125714213411, 24.993752380711374, 499.87504761422736, 24.993752380711374], [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.384292053067005, 12.384292053067005, 12.384292053067005, 12.384292053067005, 12.384292053067005, 12.384292053067005, 12.384292053067005, 12.384292053067005, 12.384292053067005, 12.384292053067005 … 13.530111496595199, 13.530111496595199, 13.530111496595199, 13.530111496595199, 13.530111496595199, 121.77100346935677, 40.59033448978559, 13.530111496595199, 270.602229931904, 13.530111496595199], [1.2548454674764369, 1.2548454674764369, 1.2548454674764369, 1.2548454674764369, 1.2548454674764369, 1.2548454674764369, 1.2548454674764369, 1.2548454674764369, 1.2548454674764369, 1.2548454674764369 … 3.5771064837982878, 3.5771064837982878, 3.5771064837982878, 3.5771064837982878, 3.5771064837982878, 32.19395835418459, 10.731319451394864, 3.5771064837982878, 71.54212967596575, 3.5771064837982878], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 1, 1, 1, 1, 1, 9, 3, 1, 20, 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], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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, 1.3061857958470848, 1.3061857958470848, 1.3061857958470848, 1.3061857958470848, 1.3061857958470848, 1.3061857958470848, 1.3061857958470848, 1.3061857958470848, 1.3061857958470848 … 2.631055234104208, 2.631055234104208, 2.631055234104208, 2.631055234104208, 2.631055234104208, 18.957209872076824, 6.712593893597363, 2.631055234104208, 41.405672499289174, 2.631055234104208], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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, 529497.5487445241, 529497.5487445241, 529497.5487445241, 529497.5487445241, 529497.5487445241, 529497.5487445241, 529497.5487445241, 529497.5487445241, 529497.5487445241 … 1.066569014529938e6, 1.066569014529938e6, 1.066569014529938e6, 1.066569014529938e6, 1.066569014529938e6, 7.6848149705919e6, 2.721130503545429e6, 1.066569014529938e6, 1.67849031601771e7, 1.066569014529938e6], [287153.191544819, 287153.191544819, 287153.191544819, 287153.191544819, 287153.191544819, 287153.191544819, 287153.191544819, 287153.191544819, 287153.191544819, 287153.191544819 … 578413.8137207031, 578413.8137207031, 578413.8137207031, 578413.8137207031, 578413.8137207031, 4.167571975487241e6, 1.475703354162338e6, 578413.8137207031, 9.102664447916232e6, 578413.8137207031]), 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.799865059149053, 2.799865059149053, 2.799865059149053, 2.799865059149053, 2.799865059149053, 2.799865059149053, 2.799865059149053, 2.799865059149053, 2.799865059149053, 2.799865059149053 … 2.799865059149053, 2.799865059149053, 2.799865059149053, 2.799865059149053, 2.799865059149053, 2.799865059149053, 2.799865059149053, 2.799865059149053, 2.799865059149053, 2.799865059149053], [622899.4342196081, 622899.436813632, 622899.4342196081, 622899.4342196081, 622899.4342196081, 622899.4342196081, 622899.4342196081, 622899.4342196081, 622899.4342196081, 622899.4342196081 … 622899.4342196081, 622899.4342196081, 622899.4342196081, 622899.4342196081, 622899.4342196081, 622899.4342196081, 622899.4342196081, 622899.4342836691, 622899.4342196081, 622899.4342196081], [1.146711808296254e6, 1.1467118078969833e6, 1.146711808296254e6, 1.146711808296254e6, 1.146711808296254e6, 1.146711808296254e6, 1.146711808296254e6, 1.146711808296254e6, 1.146711808296254e6, 1.146711808296254e6 … 1.146711808296254e6, 1.146711808296254e6, 1.146711808296254e6, 1.146711808296254e6, 1.146711808296254e6, 1.146711808296254e6, 1.146711808296254e6, 1.146711808296254e6, 1.146711808296254e6, 1.146711808296254e6], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.209227014241115, 2.209227014241115, 2.209227014241115, 2.209227014241115, 2.209227014241115, 2.209227014241115, 2.209227014241115, 2.209227014241115, 2.209227014241115, 2.209227014241115 … 2.209227014241115, 2.209227014241115, 2.209227014241115, 2.209227014241115, 2.209227014241115, 2.209227014241115, 2.209227014241115, 2.209227014241115, 2.209227014241115, 2.209227014241115], [0.18342275051861834, 0.18342275051861834, 0.18342275051861834, 0.18342275051861834, 0.18342275051861834, 0.18342275051861834, 0.18342275051861834, 0.18342275051861834, 0.18342275051861834, 0.18342275051861834 … 0.18342275051861834, 0.18342275051861834, 0.18342275051861834, 0.18342275051861834, 0.18342275051861834, 0.18342275051861834, 0.18342275051861834, 0.18342275051861834, 0.18342275051861834, 0.18342275051861834], [2.209227014241114, 2.2073536245485745, 2.209227014241114, 2.209227014241114, 2.209227014241114, 2.209227014241114, 2.209227014241114, 2.209227014241114, 2.209227014241114, 2.209227014241114 … 2.209227014241114, 2.209227014241114, 2.209227014241114, 2.209227014241114, 2.209227014241114, 2.209227014241114, 2.209227014241114, 2.209171447597691, 2.209227014241114, 2.209227014241114], [0.1834227505186183, 0.18302348006005223, 0.1834227505186183, 0.1834227505186183, 0.1834227505186183, 0.1834227505186183, 0.1834227505186183, 0.1834227505186183, 0.1834227505186183, 0.1834227505186183 … 0.1834227505186183, 0.1834227505186183, 0.1834227505186183, 0.1834227505186183, 0.1834227505186183, 0.1834227505186183, 0.1834227505186183, 0.1834227505186183, 0.1834227505186183, 0.1834227505186183]), 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.2678912563662851, 0.2678912563662851, 0.2678912563662851, 0.2678912563662851, 0.2678912563662851, 0.2678912563662851, 0.2678912563662851, 0.2678912563662851, 0.2678912563662851, 0.2678912563662851 … 2.5844661339002224, 2.5844661339002224, 2.5844661339002224, 2.5844661339002224, 2.5844661339002224, 2.584466133900222, 2.5844661339002224, 2.5844661339002224, 2.5844661339002224, 2.5844661339002224], [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, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 1, 1, 1, 1, 1, 9, 3, 1, 20, 1], [10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304 … 11.907258985874819, 11.907258985874819, 11.907258985874819, 11.907258985874819, 11.907258985874819, 107.16533087287337, 35.721776957624456, 11.907258985874819, 238.14517971749638, 11.907258985874819], [10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 8.219724116469061, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304 … 11.907258985874819, 11.907258985874819, 11.907258985874819, 11.907258985874819, 11.907258985874819, 92.32486691935222, 35.721776957624456, 11.907258985874819, 190.17080238037278, 11.907258985874819], [10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 8.219724116469061, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304 … 11.907258985874819, 11.907258985874819, 11.907258985874819, 11.907258985874819, 11.907258985874819, 92.32486691935222, 35.721776957624456, 11.907258985874819, 190.17080238037278, 11.907258985874819], [0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013 … 0.9965074796871012, 0.9965074796871012, 0.9965074796871012, 0.9965074796871012, 0.9965074796871012, 0.9965074796871012, 0.9965074796871012, 0.9965074796871012, 0.9965074796871012, 0.9965074796871012], [0.0, 0.0, 0.0, 0.0, 2.529321834384243, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 14.840463953521152, 0.0, 0.0, 47.9743773371236, 0.0], [298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534, 298.15365853658534 … 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 79.20833333333334, 712.8750000000001, 237.625, 79.20833333333334, 1584.1666666666667, 79.20833333333334], [7.655114254073552, 7.655114254073552, 7.655114254073552, 7.655114254073552, 7.655114254073552, 7.655114254073552, 7.655114254073552, 7.655114254073552, 7.655114254073552, 7.655114254073552 … 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 4.057486672347064, 36.517380051123574, 12.172460017041193, 4.057486672347064, 81.14973344694128, 4.057486672347064], [89.37670418377598, 89.37670418377598, 89.37670418377598, 89.37670418377598, 89.37670418377598, 89.37670418377598, 89.37670418377598, 89.37670418377598, 89.37670418377598, 89.37670418377598 … 23.744064761675805, 23.744064761675805, 23.744064761675805, 23.744064761675805, 23.744064761675805, 213.69658285508223, 71.2321942850274, 23.744064761675805, 474.88129523351597, 23.744064761675805], [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.920463978896203, 7.920463978896203, 7.920463978896203, 7.920463978896203, 5.399975852396404, 7.920463978896203, 7.920463978896203, 7.920463978896202, 7.920463978896202, 7.920463978896203 … 12.979000542314962, 12.979000542314962, 12.979000542314962, 12.979000542314962, 12.979000542314962, 102.02237154912402, 38.93700162694488, 12.979000542314962, 211.7731849965242, 12.979000542314962], [1.2150350686226257, 1.2150350686226257, 1.2150350686226257, 1.2150350686226257, 1.215035068622624, 1.2150350686226257, 1.2150350686226257, 1.2150350686226252, 1.2150350686226252, 1.2150350686226257 … 3.533569465471022, 3.533569465471022, 3.533569465471022, 3.533569465471022, 3.533569465471022, 31.802125189239177, 10.600708396413069, 3.533569465471022, 70.67138930942043, 3.533569465471022], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 1, 1, 1, 1, 1, 9, 3, 1, 20, 1], [2.7887104908922318, 2.7887104908922318, 2.7887104908922318, 2.7887104908922318, 2.7887104908922318, 2.7887104908922318, 2.7887104908922318, 2.7887104908922318, 2.7887104908922318, 2.7887104908922318 … 0.8309391605499922, 0.8309391605499922, 0.8309391605499922, 0.8309391605499922, 0.8309391605499922, 7.478452444949934, 2.4928174816499773, 0.8309391605499922, 16.618783210999855, 0.8309391605499922], [223.28448923494494, 223.28448923494494, 223.28448923494494, 223.28448923494494, 223.28448923494494, 223.28448923494494, 223.28448923494494, 223.28448923494494, 223.28448923494494, 223.28448923494494 … 72.20994821857951, 72.20994821857951, 72.20994821857951, 72.20994821857951, 72.20994821857951, 649.8895339672156, 216.62984465573857, 72.20994821857951, 1444.1989643715901, 72.20994821857951], [0.9965074796871009, 0.9965074796871009, 0.9965074796871009, 0.9965074796871009, 0.9965074796871009, 0.9965074796871009, 0.9965074796871009, 0.9965074796871009, 0.9965074796871009, 0.9965074796871009 … 0.9965074796871011, 0.9965074796871011, 0.9965074796871011, 0.9965074796871011, 0.9965074796871011, 0.9965074796871015, 0.9965074796871009, 0.9965074796871011, 0.9965074796871017, 0.9965074796871011], [0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871015, 0.9965074796871015, 0.9965074796871013 … 0.9965074796871016, 0.9965074796871016, 0.9965074796871016, 0.9965074796871018, 0.9965074796871018, 0.9965074796871012, 0.9965074796871015, 0.9965074796871016, 0.9965074796871011, 0.9965074796871018], [0.0, 0.0, 0.0, 0.0, 2.529321834384243, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 14.840463953521152, 0.0, 0.0, 47.9743773371236, 0.0], [6.4629667664429595, 6.4629667664429595, 6.4629667664429595, 6.4629667664429595, 6.4629667664429595, 6.4629667664429595, 6.4629667664429595, 6.4629667664429595, 6.4629667664429595, 6.4629667664429595 … 3.4256055034985184, 3.4256055034985184, 3.4256055034985184, 3.4256055034985184, 3.4256055034985184, 30.830449531486654, 10.276816510495554, 3.4256055034985184, 68.51211006997035, 3.4256055034985184], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [297.11235082778126, 297.11235082778126, 297.11235082778126, 297.11235082778126, 297.11235082778126, 297.11235082778126, 297.11235082778126, 297.11235082778126, 297.11235082778126, 297.11235082778126 … 78.93169662021583, 78.93169662021583, 78.93169662021583, 78.93169662021583, 78.93169662021583, 710.3852695819425, 236.79508986064744, 78.93169662021583, 1578.6339324043163, 78.93169662021583], [89.37670418377598, 89.37670418377598, 89.37670418377598, 89.37670418377598, 89.37670418377598, 89.37670418377598, 89.37670418377598, 89.37670418377598, 89.37670418377598, 89.37670418377598 … 23.744064761675805, 23.744064761675805, 23.744064761675805, 23.744064761675805, 23.744064761675805, 213.69658285508223, 71.2321942850274, 23.744064761675805, 474.88129523351597, 23.744064761675805], [10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304, 10.749045950853304 … 11.907258985874819, 11.907258985874819, 11.907258985874819, 11.907258985874819, 11.907258985874819, 107.16533087287337, 35.721776957624456, 11.907258985874819, 238.1451797174964, 11.907258985874819], [2.788710490892233, 2.788710490892233, 2.788710490892233, 2.788710490892233, 2.788710490892233, 2.788710490892233, 2.788710490892233, 2.788710490892233, 2.788710490892233, 2.788710490892233 … 0.8309391605499928, 0.8309391605499928, 0.8309391605499928, 0.8309391605499928, 0.8309391605499928, 7.478452444949936, 2.4928174816499786, 0.8309391605499928, 16.618783210999858, 0.8309391605499928], [6.462966766442958, 6.462966766442958, 6.462966766442958, 6.462966766442958, 6.462966766442958, 6.462966766442958, 6.462966766442958, 6.462966766442958, 6.462966766442958, 6.462966766442958 … 3.425605503498518, 3.425605503498518, 3.425605503498518, 3.425605503498518, 3.425605503498518, 30.83044953148666, 10.276816510495554, 3.425605503498518, 68.51211006997036, 3.425605503498518], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 1, 1, 1, 1, 1, 9, 3, 1, 20, 1], [1.2420301236224343, 1.2420301236224343, 1.2420301236224343, 1.2420301236224343, 1.2420301236224343, 1.2420301236224343, 1.2420301236224343, 1.2420301236224343, 1.2420301236224343, 1.2420301236224343 … 3.540574615308977, 3.540574615308977, 3.540574615308977, 3.540574615308977, 3.540574615308977, 31.86517153778079, 10.621723845926931, 3.540574615308977, 70.81149230617953, 3.540574615308977], [1.2774452234093983, 1.2774452234093983, 1.2774452234093983, 1.2774452234093983, 1.2774452234093974, 1.2774452234093983, 1.2774452234093983, 1.277445223409398, 1.277445223409398, 1.2774452234093983 … 2.6001885939188853, 2.6001885939188853, 2.6001885939188853, 2.6001885939188853, 2.6001885939188853, 18.72763735134067, 6.6320507832743365, 2.6001885939188853, 40.902879392795654, 2.6001885939188853], [1.020117231993611, 1.020117231993611, 1.020117231993611, 1.020117231993611, 1.020117231993611, 1.020117231993611, 1.020117231993611, 1.020117231993611, 1.020117231993611, 1.020117231993611 … 2.054826190248129, 2.054826190248129, 2.054826190248129, 2.054826190248129, 2.054826190248129, 14.805379542872425, 5.242464528404204, 2.054826190248129, 32.33739040273083, 2.054826190248129], [0.08469600785140777, 0.08469600785140777, 0.08469600785140777, 0.08469600785140777, 0.08469600785140777, 0.08469600785140777, 0.08469600785140777, 0.08469600785140777, 0.08469600785140777, 0.08469600785140777 … 0.17060350485641426, 0.17060350485641426, 0.17060350485641426, 0.17060350485641426, 0.17060350485641426, 1.229227879579676, 0.43525959853722984, 0.17060350485641426, 2.684836394824161, 0.17060350485641426], [1.0201172319936105, 1.0201172319936105, 1.0201172319936105, 1.0201172319936105, 1.0201172319936105, 1.0201172319936105, 1.0201172319936105, 1.0201172319936105, 1.0201172319936105, 1.0201172319936105 … 2.054826190248129, 2.054826190248129, 2.054826190248129, 2.054826190248129, 2.054826190248129, 14.805379542872423, 5.242464528404203, 2.054826190248129, 32.33739040273083, 2.054826190248129], [0.08469600785140777, 0.08469600785140777, 0.08469600785140777, 0.08469600785140777, 0.08469600785140777, 0.08469600785140777, 0.08469600785140777, 0.08469600785140777, 0.08469600785140777, 0.08469600785140777 … 0.1706035048564142, 0.1706035048564142, 0.1706035048564142, 0.1706035048564142, 0.1706035048564142, 1.229227879579676, 0.43525959853722984, 0.1706035048564142, 2.684836394824161, 0.1706035048564142], [529497.633440532, 529497.633440532, 529497.633440532, 529497.633440532, 529497.633440532, 529497.633440532, 529497.633440532, 529497.633440532, 529497.633440532, 529497.633440532 … 1.066569185133443e6, 1.066569185133443e6, 1.066569185133443e6, 1.066569185133443e6, 1.066569185133443e6, 7.68481619981978e6, 2.7211309388050274e6, 1.066569185133443e6, 1.6784905845013496e7, 1.066569185133443e6], [287625.675644144, 287625.675644144, 287625.675644144, 287625.675644144, 287625.675644144, 287625.675644144, 287625.675644144, 287625.675644144, 287625.675644144, 287625.675644144 … 579365.5673433342, 579365.5673433342, 579365.5673433342, 579365.5673433342, 579365.5673433342, 4.174429518447286e6, 1.4781315551193224e6, 579365.5673433342, 9.11764245121522e6, 579365.5673433342]), BeforeIT.Bank(-6.744622748817577e6, -6.834082748817577e6, 0.0, 4.157449021988007e9, 0.02835934721338035, 0.5842574992411604, 0.4610070211700923, 0.038275458016006535, 0.46100702117009223, 0.038275458016006535, 0.038275458016006535, 0.011148144591662391), BeforeIT.CentralBank(0.0016453755190847866, 0.0089810924595537, 0.9259668580654086, -0.003424572940686137, 0.0049629315732038215, 0.30996974466133875, 1.328593153520194, 108269.00000000003), BeforeIT.Government(0.9905949533296431, 0.09373211872949586, 0.011235005057648862, 10236.47479583026, 14614.099017793025, 270043.63122198405, 2.2233727343457392, 0.586305181998849, [93.35294218024787, 93.35294218024787, 93.35294218024787, 93.35294218024787, 93.35294218024787, 93.35294218024787, 93.35294218024787, 93.35294218024787, 93.35294218024787, 93.35294218024787 … 93.35294218024787, 93.35294218024787, 93.35294218024787, 93.35294218024787, 93.35294218024787, 93.35294218024787, 93.35294218024787, 93.35294218024787, 93.35294218024787, 93.35294218024787], 14562.437196350911, 0.9965074796871012), BeforeIT.RestOfTheWorld(0.962809216044625, 0.39260026877953946, 0.020320381298662014, 0.9662360466537488, 0.35492769963078624, 0.02122821278168188, 2.3558682658927143e6, 0.000433431824935937, 0.0034279540176880285, 0.38456173629534834, 0.0026219533879005877, 0.0025327891562467505, 0.9635784504324201, 0.5360029623199525, 0.006618207536795881, -2208.365476651772, 33284.66669233009, 34598.66508323784, [110.50586071357515, 110.50586071357515, 110.50586071357515, 110.50586071357515, 110.50586071357515, 110.50586071357515, 110.50586071357515, 110.50586071357515, 110.50586071357515, 110.50586071357515 … 110.50586071357515, 110.50586071357515, 110.50586071357515, 110.50586071357515, 110.50586071357515, 110.50586071357515, 110.50586071357515, 110.50586071357515, 110.50586071357515, 110.50586071357515], 34397.82900109438, [559.5381904097699, 136.04842854312588, 12.277273912853717, 1936.6476220934055, 1629.3120164482375, 1560.7646439704624, 336.2274815022416, 534.7622979117256, 12.439111837075304, 1364.968440839298 … 60.32320526978062, 13.35038384115197, 11.582615745810946, 22.181754875200554, 95.04865780231022, 43.50524239905144, 2.136260599721841, 0.0, 1.177682125487611, 6.809641888390864], [509.1866887718309, 136.04842854312588, 10.905241431315252, 1914.5982064614443, 1415.7149998046361, 1404.8148730614932, 336.2274815022416, 534.7622979117256, 12.439111837075304, 1261.9852605208023 … 60.32320526978062, 13.35038384115197, 11.582615745810946, 22.181754875200554, 95.04865780231022, 43.50524239905144, 2.136260599721841, 0.0, 1.177682125487611, 6.809641888390864], [509.1866887718309, 136.04842854312588, 10.905241431315252, 1914.5982064614443, 1415.7149998046361, 1404.8148730614932, 336.2274815022416, 538.5420075405176, 13.095974357302344, 1261.9852605208023 … 60.32320526978062, 13.35038384115197, 11.582615745810946, 22.181754875200554, 95.04865780231022, 43.50524239905144, 2.136260599721841, 0.0, 1.177682125487611, 6.809641888390864], [0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013 … 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013, 0.9965074796871013], 0.9965074796871013), 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, 133727.80981453584], [-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.003498633399504296], 0.9965074796871001, [0.9965074796871009, 0.9965074796871015, 0.9965074796871011, 0.9965074796871014, 0.9965074796871013, 0.9965074796871012, 0.9965074796871017, 0.9965074796871009, 0.9965074796871015, 0.9965074796871012 … 0.9965074796871013, 0.9965074796871012, 0.9965074796871013, 0.9965074796871012, 0.9965074796871012, 0.9965074796871016, 0.9965074796871014, 0.9965074796871013, 0.9965074796871013, 0.9965074796871015], 0.9965074796871016, 0.9965074796871007, 0.9965074796871009, 0.9965074796871006, 133727.80981453575, -0.006743719152692673, -0.003492520312898706, -0.0011931382866864164, 0.010219921238297252, 0.0020960449047219745, 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}(3, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(6, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(10, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(14, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(23, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(24, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(26, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(27, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4086, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4089, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4091, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4097, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4102, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4105, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4115, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4116, 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.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788 … 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788, 4.635518501736788], [0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521 … 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521, 0.08844975131993521], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [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.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905 … 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905, 3.657645094568905], [0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446 … 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446, 0.30367876154964446], [3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043 … 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043, 3.6576450945689043], [0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435 … 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435, 0.30367876154964435], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}[]))