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, 2, 2, 1, 18, 2, 1, 1 … 5, 4, 1, 3, 3, 1, 4, 1, 2, 1], [10.822026659306621, 10.822026659306621, 10.822026659306621, 21.644053318613242, 21.644053318613242, 10.822026659306621, 194.79647986751917, 21.644053318613242, 10.822026659306621, 10.822026659306621 … 59.94051694149476, 47.952413553195804, 11.988103388298951, 35.96431016489685, 35.96431016489685, 11.988103388298951, 47.952413553195804, 11.988103388298951, 23.976206776597902, 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, 21.644053318613242, 21.644053318613242, 10.822026659306621, 194.79647986751917, 21.644053318613242, 10.822026659306621, 10.822026659306621 … 59.94051694149476, 47.952413553195804, 11.988103388298951, 35.96431016489685, 35.96431016489685, 11.988103388298951, 47.952413553195804, 11.988103388298951, 23.976206776597902, 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, 596.3073170731707, 596.3073170731707, 298.15365853658534, 5366.765853658536, 596.3073170731707, 298.15365853658534, 298.15365853658534 … 396.0416666666667, 316.83333333333337, 79.20833333333334, 237.625, 237.625, 79.20833333333334, 316.83333333333337, 79.20833333333334, 158.41666666666669, 79.20833333333334], [7.65511425407355, 7.65511425407355, 7.65511425407355, 15.3102285081471, 15.3102285081471, 7.65511425407355, 137.7920565733239, 15.3102285081471, 7.65511425407355, 7.65511425407355 … 20.287433361735324, 16.229946689388257, 4.057486672347064, 12.172460017041193, 12.172460017041193, 4.057486672347064, 16.229946689388257, 4.057486672347064, 8.114973344694128, 4.057486672347064], [94.08074124608, 94.08074124608, 94.08074124608, 188.16148249216, 188.16148249216, 94.08074124608, 1693.4533424294395, 188.16148249216, 94.08074124608, 94.08074124608 … 124.96876190355687, 99.97500952284551, 24.993752380711378, 74.98125714213411, 74.98125714213411, 24.993752380711378, 99.97500952284551, 24.993752380711378, 49.987504761422755, 24.993752380711378], [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.38429205306701, 12.38429205306701, 12.38429205306701, 24.76858410613402, 24.76858410613402, 12.38429205306701, 222.9172569552062, 24.76858410613402, 12.38429205306701, 12.38429205306701 … 67.65055748297603, 54.120445986380815, 13.530111496595204, 40.59033448978561, 40.59033448978561, 13.530111496595204, 54.120445986380815, 13.530111496595204, 27.060222993190408, 13.530111496595204], [1.2548454674764367, 1.2548454674764367, 1.2548454674764367, 2.5096909349528733, 2.5096909349528733, 1.2548454674764367, 22.587218414575872, 2.5096909349528733, 1.2548454674764367, 1.2548454674764367 … 17.88553241899144, 14.30842593519315, 3.5771064837982873, 10.731319451394864, 10.731319451394864, 3.5771064837982873, 14.30842593519315, 3.5771064837982873, 7.154212967596575, 3.5771064837982873], [1, 1, 1, 2, 2, 1, 18, 2, 1, 1 … 5, 4, 1, 3, 3, 1, 4, 1, 2, 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.3061857958470844, 1.3061857958470844, 1.3061857958470844, 2.022085687336539, 2.022085687336539, 1.3061857958470844, 13.476483951167818, 2.022085687336539, 1.3061857958470844, 1.3061857958470844 … 10.794132553090517, 8.75336322334394, 2.631055234104207, 6.712593893597363, 6.712593893597363, 2.631055234104207, 8.75336322334394, 2.631055234104207, 4.671824563850785, 2.631055234104207], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.548744524, 529497.548744524, 529497.548744524, 819706.8274668554, 819706.8274668554, 529497.548744524, 5.463055287024162e6, 819706.8274668554, 529497.548744524, 529497.548744524 … 4.375691992560919e6, 3.548411248053174e6, 1.0665690145299379e6, 2.721130503545429e6, 2.721130503545429e6, 1.0665690145299379e6, 3.548411248053174e6, 1.0665690145299379e6, 1.8938497590376833e6, 1.0665690145299379e6], [287153.19154481887, 287153.19154481887, 287153.19154481887, 444537.3395897521, 444537.3395897521, 287153.19154481887, 2.962683708308684e6, 444537.3395897521, 287153.19154481887, 287153.19154481887 … 2.3729928946039723e6, 1.924348124383155e6, 578413.813720703, 1.475703354162338e6, 1.475703354162338e6, 578413.813720703, 1.924348124383155e6, 578413.813720703, 1.0270585839415203e6, 578413.813720703]), 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.874907885212247, 2.874907885212247, 2.874907885212247, 2.874907885212247, 2.874907885212247, 2.874907885212247, 2.874907885212247, 2.874907885212247, 2.874907885212247, 2.874907885212247 … 2.874907885212247, 2.874907885212247, 2.874907885212247, 2.874907885212247, 2.874907885212247, 2.874907885212247, 2.874907885212247, 2.874907885212247, 2.874907885212247, 2.874907885212247], [623547.5211030431, 623547.5211030431, 623547.5211030431, 623547.5211030431, 623547.5211030431, 623547.5211030431, 623547.5211030431, 623547.5211030431, 623547.5211030431, 623547.5211030431 … 623547.5211030431, 623547.5211030431, 623547.5211030431, 623547.5211030431, 623547.5211030431, 623547.5211030431, 623547.5211030431, 623547.5211030431, 623547.5211030431, 623547.5211030431], [1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6 … 1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6, 1.1467118132124057e6], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.2684393816450608, 2.2684393816450608, 2.2684393816450608, 2.2684393816450608, 2.2684393816450608, 2.2684393816450608, 2.2684393816450608, 2.2684393816450608, 2.2684393816450608, 2.2684393816450608 … 2.2684393816450608, 2.2684393816450608, 2.2684393816450608, 2.2684393816450608, 2.2684393816450608, 2.2684393816450608, 2.2684393816450608, 2.2684393816450608, 2.2684393816450608, 2.2684393816450608], [0.1883389022875127, 0.1883389022875127, 0.1883389022875127, 0.1883389022875127, 0.1883389022875127, 0.1883389022875127, 0.1883389022875127, 0.1883389022875127, 0.1883389022875127, 0.1883389022875127 … 0.1883389022875127, 0.1883389022875127, 0.1883389022875127, 0.1883389022875127, 0.1883389022875127, 0.1883389022875127, 0.1883389022875127, 0.1883389022875127, 0.1883389022875127, 0.1883389022875127], [2.26843938164506, 2.26843938164506, 2.26843938164506, 2.26843938164506, 2.26843938164506, 2.26843938164506, 2.26843938164506, 2.26843938164506, 2.26843938164506, 2.26843938164506 … 2.26843938164506, 2.26843938164506, 2.26843938164506, 2.26843938164506, 2.26843938164506, 2.26843938164506, 2.26843938164506, 2.26843938164506, 2.26843938164506, 2.26843938164506], [0.18833890228751268, 0.18833890228751268, 0.18833890228751268, 0.18833890228751268, 0.18833890228751268, 0.18833890228751268, 0.18833890228751268, 0.18833890228751268, 0.18833890228751268, 0.18833890228751268 … 0.18833890228751268, 0.18833890228751268, 0.18833890228751268, 0.18833890228751268, 0.18833890228751268, 0.18833890228751268, 0.18833890228751268, 0.18833890228751268, 0.18833890228751268, 0.18833890228751268]), 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.2728850523863511, 0.2728850523863511, 0.2728850523863511, 0.2728850523863511, 0.2728850523863511, 0.2728850523863511, 0.2728850523863511, 0.2728850523863511, 0.2728850523863511, 0.2728850523863511 … 2.6326435058254174, 2.6326435058254174, 2.6326435058254174, 2.6326435058254174, 2.6326435058254174, 2.6326435058254174, 2.6326435058254174, 2.6326435058254174, 2.6326435058254174, 2.6326435058254174], [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, 2, 2, 1, 18, 2, 1, 1 … 5, 4, 1, 3, 3, 1, 4, 1, 2, 1], [10.949420325205724, 10.949420325205724, 10.949420325205724, 21.898840650411447, 21.898840650411447, 10.949420325205724, 197.089565853703, 21.898840650411447, 10.949420325205724, 10.949420325205724 … 60.64611880604916, 48.51689504483933, 12.129223761209833, 36.387671283629494, 36.387671283629494, 12.129223761209833, 48.51689504483933, 12.129223761209833, 24.258447522419665, 12.129223761209833], [10.949420325205724, 10.949420325205724, 10.949420325205724, 21.898840650411447, 21.898840650411447, 10.949420325205724, 151.77307347825828, 21.898840650411447, 10.949420325205724, 10.949420325205724 … 52.66788604839859, 37.024717894079956, 12.129223761209833, 36.387671283629494, 36.387671283629494, 12.129223761209833, 40.23026052355512, 12.129223761209833, 24.258447522419665, 12.129223761209833], [10.949420325205724, 10.949420325205724, 10.949420325205724, 21.898840650411447, 21.898840650411447, 10.949420325205724, 151.77307347825828, 21.898840650411447, 10.949420325205724, 10.949420325205724 … 52.66788604839859, 37.024717894079956, 12.129223761209833, 36.387671283629494, 36.387671283629494, 12.129223761209833, 40.23026052355512, 12.129223761209833, 24.258447522419665, 12.129223761209833], [1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606 … 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.31649237544471, 0.0, 0.0, 0.0 … 7.9782327576505665, 11.492177150759375, 0.0, 0.0, 0.0, 0.0, 8.286634521284213, 0.0, 0.0, 0.0], [298.15365853658534, 298.15365853658534, 298.15365853658534, 596.3073170731707, 596.3073170731707, 298.15365853658534, 5366.765853658536, 596.3073170731707, 298.15365853658534, 298.15365853658534 … 396.0416666666667, 316.83333333333337, 79.20833333333334, 237.625, 237.625, 79.20833333333334, 316.83333333333337, 79.20833333333334, 158.41666666666669, 79.20833333333334], [7.65511425407355, 7.65511425407355, 7.65511425407355, 15.3102285081471, 15.3102285081471, 7.65511425407355, 137.79205657332392, 15.3102285081471, 7.65511425407355, 7.65511425407355 … 20.28743336173532, 16.229946689388257, 4.057486672347064, 12.172460017041196, 12.172460017041196, 4.057486672347064, 16.229946689388257, 4.057486672347064, 8.114973344694128, 4.057486672347064], [89.37670418377598, 89.37670418377598, 89.37670418377598, 178.75340836755197, 178.75340836755197, 89.37670418377598, 1608.7806753079674, 178.75340836755197, 89.37670418377598, 89.37670418377598 … 118.72032380837902, 94.97625904670323, 23.74406476167581, 71.2321942850274, 71.2321942850274, 23.74406476167581, 94.97625904670323, 23.74406476167581, 47.48812952335162, 23.74406476167581], [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.924099703829368, 7.924099703829368, 7.924099703829368, 15.848199407658736, 15.848199407658736, 7.924099703829368, 97.11377148027238, 15.848199407658736, 7.924099703829368, 7.924099703829368 … 56.980934350253854, 40.45220773380066, 12.99899997890267, 38.99699993670801, 38.99699993670801, 12.99899997890267, 43.672147477084984, 12.99899997890267, 25.99799995780534, 12.99899997890267], [1.233425443304212, 1.233425443304212, 1.233425443304212, 2.466850886608424, 2.466850886608424, 1.233425443304212, 22.201657979475875, 2.466850886608424, 1.233425443304212, 1.233425443304212 … 18.173657226385206, 14.538925781108183, 3.634731445277046, 10.904194335831134, 10.904194335831134, 3.634731445277046, 14.538925781108183, 3.634731445277046, 7.269462890554092, 3.634731445277045], [1, 1, 1, 2, 2, 1, 18, 2, 1, 1 … 5, 4, 1, 3, 3, 1, 4, 1, 2, 1], [2.84069520864462, 2.84069520864462, 2.84069520864462, 5.68139041728924, 5.68139041728924, 2.84069520864462, 51.13251375560316, 5.68139041728924, 2.84069520864462, 2.84069520864462 … 4.2321440317283265, 3.3857152253826617, 0.8464288063456654, 2.5392864190369964, 2.5392864190369964, 0.8464288063456654, 3.3857152253826617, 0.8464288063456654, 1.6928576126913308, 0.8464288063456654], [225.72965299477886, 225.72965299477886, 225.72965299477886, 451.4593059895577, 451.4593059895577, 225.72965299477886, 4063.1337539060196, 451.4593059895577, 225.72965299477886, 225.72965299477886 … 364.4736428198047, 291.57891425584376, 72.89472856396094, 218.68418569188282, 218.68418569188282, 72.89472856396094, 291.57891425584376, 72.89472856396094, 145.78945712792188, 72.89472856396094], [1.0044913187791609, 1.0044913187791609, 1.0044913187791609, 1.0044913187791609, 1.0044913187791609, 1.0044913187791609, 1.0044913187791604, 1.0044913187791609, 1.0044913187791609, 1.0044913187791609 … 1.0044913187791613, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604], [1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604, 1.0044913187791606, 1.0044913187791604, 1.0044913187791604, 1.0044913187791604 … 1.0044913187791609, 1.0044913187791606, 1.0044913187791606, 1.0044913187791602, 1.0044913187791602, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791609], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.31649237544471, 0.0, 0.0, 0.0 … 7.9782327576505665, 11.492177150759375, 0.0, 0.0, 0.0, 0.0, 8.286634521284213, 0.0, 0.0, 0.0], [6.583443776980221, 6.583443776980221, 6.583443776980221, 13.166887553960443, 13.166887553960443, 6.583443776980221, 118.50198798564399, 13.166887553960443, 6.583443776980221, 6.583443776980221 … 17.44731332326553, 13.95785065861243, 3.4894626646531073, 10.468387993959324, 10.468387993959324, 3.4894626646531073, 13.95785065861243, 3.4894626646531073, 6.978925329306215, 3.4894626646531073], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [299.49276166224615, 299.49276166224615, 299.49276166224615, 598.9855233244923, 598.9855233244923, 299.49276166224615, 5390.869709920431, 598.9855233244923, 299.49276166224615, 299.49276166224615 … 397.82041604149674, 318.25633283319746, 79.56408320829937, 238.69224962489804, 238.69224962489804, 79.56408320829937, 318.25633283319746, 79.56408320829937, 159.12816641659873, 79.56408320829937], [89.37670418377598, 89.37670418377598, 89.37670418377598, 178.75340836755197, 178.75340836755197, 89.37670418377598, 1608.7806753079674, 178.75340836755197, 89.37670418377598, 89.37670418377598 … 118.72032380837902, 94.97625904670323, 23.74406476167581, 71.2321942850274, 71.2321942850274, 23.74406476167581, 94.97625904670323, 23.74406476167581, 47.48812952335162, 23.74406476167581], [10.949420325205724, 10.949420325205724, 10.949420325205724, 21.898840650411447, 21.898840650411447, 10.949420325205724, 197.089565853703, 21.898840650411447, 10.949420325205724, 10.949420325205724 … 60.64611880604916, 48.51689504483933, 12.129223761209833, 36.387671283629494, 36.387671283629494, 12.129223761209833, 48.51689504483933, 12.129223761209833, 24.258447522419665, 12.129223761209833], [2.8406952086446213, 2.8406952086446213, 2.8406952086446213, 5.681390417289243, 5.681390417289243, 2.8406952086446213, 51.13251375560317, 5.681390417289243, 2.8406952086446213, 2.8406952086446213 … 4.232144031728328, 3.385715225382663, 0.8464288063456658, 2.5392864190369973, 2.5392864190369973, 0.8464288063456658, 3.385715225382663, 0.8464288063456658, 1.6928576126913315, 0.8464288063456658], [6.583443776980221, 6.583443776980221, 6.583443776980221, 13.166887553960443, 13.166887553960443, 6.583443776980221, 118.50198798564398, 13.166887553960443, 6.583443776980221, 6.583443776980221 … 17.447313323265533, 13.957850658612427, 3.489462664653107, 10.46838799395932, 10.46838799395932, 3.489462664653107, 13.957850658612427, 3.489462664653107, 6.978925329306214, 3.489462664653107], [1, 1, 1, 2, 2, 1, 18, 2, 1, 1 … 5, 4, 1, 3, 3, 1, 4, 1, 2, 1], [1.2753193888417274, 1.2753193888417274, 1.2753193888417274, 2.5506387776834547, 2.5506387776834547, 1.2753193888417274, 22.955748999151105, 2.5506387776834547, 1.2753193888417274, 1.2753193888417274 … 18.17735080923451, 14.541880647387607, 3.635470161846902, 10.906410485540707, 10.906410485540707, 3.635470161846902, 14.541880647387607, 3.635470161846902, 7.270940323693804, 3.635470161846902], [1.3035965321680492, 1.3035965321680492, 1.3035965321680492, 2.007276119741169, 2.007276119741169, 1.3035965321680492, 13.266149520911119, 2.007276119741169, 1.3035965321680492, 1.3035965321680492 … 10.96814121885603, 8.89449636400382, 2.673561799447152, 6.820851509151596, 6.820851509151596, 2.673561799447152, 8.89449636400382, 2.673561799447152, 4.747206654299375, 2.6735617994471514], [1.0474587210965998, 1.0474587210965998, 1.0474587210965998, 1.6215543720804866, 1.6215543720804866, 1.0474587210965998, 10.807084787822683, 1.6215543720804866, 1.0474587210965998, 1.0474587210965998 … 8.656049021016159, 7.019511830835469, 2.1099002602934016, 5.382974640654781, 5.382974640654781, 2.1099002602934016, 7.019511830835469, 2.1099002602934016, 3.7464374504740907, 2.1099002602934016], [0.08696605574699162, 0.08696605574699162, 0.08696605574699162, 0.13463078313147606, 0.13463078313147606, 0.08696605574699162, 0.8972664212832278, 0.13463078313147606, 0.08696605574699162, 0.08696605574699162 … 0.7186750432726213, 0.5828003002905986, 0.17517607134453, 0.44692555730857575, 0.44692555730857575, 0.17517607134453, 0.5828003002905986, 0.17517607134453, 0.3110508143265528, 0.17517607134453], [1.0474587210965995, 1.0474587210965995, 1.0474587210965995, 1.6215543720804866, 1.6215543720804866, 1.0474587210965995, 10.807084787822683, 1.6215135866234, 1.0474587210965995, 1.0474587210965995 … 8.65604902101616, 7.019511830835468, 2.109900260293401, 5.382974640654781, 5.382974640654781, 2.109900260293401, 7.019511830835468, 2.109900260293401, 3.7464374504740916, 2.109900260293401], [0.0869660557469916, 0.0869660557469916, 0.0869660557469916, 0.13463078313147606, 0.13463078313147606, 0.0869660557469916, 0.8972664212832275, 0.13463078313147606, 0.0869660557469916, 0.0869660557469916 … 0.7186750432726211, 0.5828003002905985, 0.17517607134453, 0.44692555730857575, 0.44692555730857575, 0.17517607134453, 0.5828003002905985, 0.17517607134453, 0.3110508143265528, 0.17517607134453], [529497.6357105798, 529497.6357105798, 529497.6357105798, 819706.9620976385, 819706.9620976385, 529497.6357105798, 5.463056184290583e6, 819706.9620976385, 529497.6357105798, 529497.6357105798 … 4.375692711235963e6, 3.5484118308534743e6, 1.066569189706009e6, 2.7211309504709863e6, 2.7211309504709863e6, 1.066569189706009e6, 3.5484118308534743e6, 1.066569189706009e6, 1.8938500700884976e6, 1.066569189706009e6], [287924.9232158318, 287924.9232158318, 287924.9232158318, 445732.0344509634, 445732.0344509634, 287924.9232158318, 2.9706458142130696e6, 445732.03449798364, 287924.9232158318, 287924.9232158318 … 2.3793705701347585e6, 1.9295200185039467e6, 579968.3636115119, 1.4796694668731354e6, 1.4796694668731354e6, 579968.3636115119, 1.9295200185039467e6, 579968.3636115119, 1.0298189152423234e6, 579968.3636115119]), BeforeIT.Bank(-1.1077192661291847e7, -1.1166652661291847e7, 0.0, 4.15744864160804e9, 0.02940149272757117, 0.5999169445949294, 0.4733630701127127, 0.03930132836250717, 0.4733630701127128, 0.03930132836250715, 0.03930132836250715, 0.01144694051855391), BeforeIT.CentralBank(0.0026875210332756067, 0.0089810924595537, 0.9259668580654086, -0.003424572940686137, 0.0049629315732038215, 0.30996974466133875, 1.328593153520194, 108269.00000000003), BeforeIT.Government(0.9905949533296431, 0.09373211872949586, 0.011235005057648862, 10533.14646710265, 14889.440775275434, 270597.01297142846, 2.2648189168845145, 0.597234573738334, [95.87380769385017, 95.87380769385017, 95.87380769385017, 95.87380769385017, 95.87380769385017, 95.87380769385017, 95.87380769385017, 95.87380769385017, 95.87380769385017, 95.87380769385017 … 95.87380769385017, 95.87380769385017, 95.87380769385017, 95.87380769385017, 95.87380769385017, 95.87380769385017, 95.87380769385017, 95.87380769385017, 95.87380769385017, 95.87380769385017], 14955.884835193543, 1.0044913187791606), BeforeIT.RestOfTheWorld(0.962809216044625, 0.39260026877953946, 0.020320381298662014, 0.9662360466537488, 0.35492769963078624, 0.02122821278168188, 2.3830277426753337e6, 0.011966864724211268, -0.0005933964048435714, 0.38456173629534834, 0.0026219533879005877, 0.0025327891562467505, 0.9635784504324201, 0.5360029623199525, 0.006618207536795881, -2054.7250328211085, 33448.93706407747, 34722.56082483403, [111.79009908438191, 111.79009908438191, 111.79009908438191, 111.79009908438191, 111.79009908438191, 111.79009908438191, 111.79009908438191, 111.79009908438191, 111.79009908438191, 111.79009908438191 … 111.79009908438191, 111.79009908438191, 111.79009908438191, 111.79009908438191, 111.79009908438191, 111.79009908438191, 111.79009908438191, 111.79009908438191, 111.79009908438191, 111.79009908438191], 34829.368370201, [562.2996885913531, 136.71987062602278, 12.337866147961593, 1946.2055914660803, 1637.35318727048, 1568.467511799819, 337.8868706104037, 537.4015192170327, 12.500502793595066, 1371.7049923953869 … 60.620919392810855, 13.416272213621738, 11.63977962285857, 22.291228860715876, 95.51775303152198, 43.71995454888045, 2.1468037223587415, 0.0, 1.1834943597617995, 6.843249627798701], [562.2996885913531, 136.71987062602278, 12.337866147961593, 1946.2055914660803, 1413.3466526060922, 1412.5267870921261, 337.8868706104037, 537.4015192170327, 12.500502793595066, 1274.7282632586084 … 60.620919392810855, 13.416272213621738, 11.63977962285857, 22.291228860715876, 95.51775303152198, 43.71995454888045, 2.1468037223587415, 0.0, 1.1834943597617995, 6.843249627798701], [562.2996885913531, 136.71987062602278, 12.337866147961593, 1946.2055914660803, 1413.3466526060922, 1412.5267870921261, 337.8868706104037, 537.4015192170327, 13.159717499054528, 1274.7282632586084 … 60.620919392810855, 13.416272213621738, 11.63977962285857, 22.291228860715876, 95.51775303152198, 43.71995454888045, 2.1468037223587415, 0.0, 1.1834943597617995, 6.843249627798701], [1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606 … 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606, 1.0044913187791606], 1.004491318779161), 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, 136220.64744381196], [-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.00448126290515524], 1.0044913187791618, [1.0044913187791604, 1.0044913187791606, 1.0044913187791606, 1.0044913187791609, 1.0044913187791609, 1.0044913187791606, 1.004491318779161, 1.0044913187791604, 1.004491318779161, 1.0044913187791606 … 1.0044913187791609, 1.0044913187791609, 1.0044913187791606, 1.0044913187791609, 1.0044913187791604, 1.004491318779161, 1.0044913187791606, 1.0044913187791609, 1.0044913187791606, 1.0044913187791606], 1.0044913187791613, 1.00449131877916, 1.0044913187791609, 1.0044913187791613, 136220.64744381202, 0.011771701355914432, 0.004491318779160647, 0.01026935175466965, 0.013794464876120027, 0.007019222862899655, 2), Main.NewProperties(62, 54, 4743, 4130, 156, 312, [48, 2, 1, 1, 5, 2, 4, 1, 1, 1 … 14, 10, 13, 41, 20, 16, 7, 7, 2, 19], 624, 8873, 0.21340742230566648, 0.07701197259426128, 0.1528683933530887, 0.21215146534992413, 0.17114894621657745, 0.0029486201783457183, 0.08761417854834112, 0.009147800682711324, 0.3585824478060919, 0.9096681249468772, 0.07125099957246343, 0.026713971694295565, 0.7858074440019603, 0.05, 0.03, 0.6, 0.5, [0.0033476048872100555, 0.0, 0.0, 0.0008050086095806136, 0.0, 0.003306696048303853, 0.0030629933432974495, 0.0, 0.0, 0.0 … 0.0017883064872300512, 0.0, 0.0, 0.0, 0.0, 0.002291709084994238, 0.0, 0.0, 0.0, 0.0], [0.0006092803753845975, 0.0, 0.0, 0.004372477702289994, 0.0, 0.0, 0.06710603871527036, 0.0, 0.0, 0.0 … 0.0041711096896454745, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.011287997598927976, 0.0020040637862256817, 0.0003326837475323491, 0.00034402684015257527, 0.06305103828047173, 0.03068200872784047, 0.0003505790613555631, 0.0020473225369636873, 0.0, 0.0191077565617325 … 0.005591228759882936, 0.0004356874830029748, 0.014434120586233577, 0.03514505772295519, 0.024907176866291014, 0.013342154173060372, 0.009686226103767459, 0.011051272187723254, 0.0021206651420422927, 0.01721782824162338], [0.0, 0.0, 0.0, 0.0, 8.57086390274792e-6, 0.0, 0.0, 0.0, 2.4536198623552867e-5, 0.0 … 0.008555738848801895, 0.3324338967920097, 0.22067672180252998, 0.2370889178393625, 0.0477595425645907, 0.012942508661614227, 0.004667927760053456, 0.021757222045203074, 0.0, 0.002000708524749294], [0.005090338238241512, 0.0005933402816643566, 1.793599921320476e-5, 0.007268146142708006, 0.05434404438533037, 0.02138421321578873, 0.023894091259534518, 0.028037089231640524, 0.005923381894006229, 0.011927802553688313 … 0.0014618202435669027, 0.0009447261124040238, 0.0001280209174610526, 0.0010477673386531637, 0.0, 0.0013030104043795392, 5.5260305268213854e-5, 0.0, 1.307076865739618e-5, 8.641230390167474e-6], [0.016810689305736877, 0.004087420487057966, 0.00036885674795364003, 0.05818437780960789, 0.04895082866561155, 0.04689140072807505, 0.010101572733480902, 0.016066325760592727, 0.00037371898454196314, 0.041008926225895866 … 0.0018123421762754539, 0.000401097116716159, 0.0003479865324437806, 0.0006664256271585853, 0.0028556289501379516, 0.001307065586721844, 6.418152296577174e-5, 0.0, 3.538212163497461e-5, 0.00020458795490837936], [0.37790282216028437 0.0 … 0.0 0.0; 0.0006712800413285777 0.8149348034258406 … 2.4029219530949635e-5 0.00019143106686926454; … ; 0.00037430822580994426 0.000357977071568566 … 0.3197327950788158 0.0011366219595362582; 0.0 5.36965607352849e-5 … 0.0 0.05594572929254256], [4.3800671000101816e-5 0.00010629745355671226 9.959785873214212e-5; 0.00010629745355671226 0.0004129178961230129 0.0003596689472264872; 9.959785873214212e-5 0.0003596689472264872 0.0004506370179043619], 219841.0, 405376.9, 0.5902859043576301, 89460.0, 0.0016459319014481277, Main.ConsumerLoanContract[Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(1, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(7, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(8, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(12, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(18, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(19, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(20, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(30, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(33, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4082, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4083, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4085, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4090, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4094, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]))), Main.ConsumerLoanContract(0.0, 0.0, 6, BeforeIT.Agent{Main.NewWorkers}(4100, Main.NewWorkers(Base.RefValue{Bool}(false), Base.RefValue{Int64}(4118), Dict{Int64, Int64}(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118], [4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}(4113, 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.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279 … 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279, 4.683635923195279], [0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688 … 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688, 0.08936787384723688], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 11.337587012313522, 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.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358 … 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358, 3.6956120340806358], [0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736 … 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736, 0.30683099553425736], [3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344 … 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344, 3.6956120340806344], [0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724 … 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724, 0.30683099553425724], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 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}[]))